🥑MANIPULACION DE DATOS :

Note
Important
  • Es un lenguaje proporcionado por los sistemas gestores de bases de datos.
  • Que permite a los usuario de la misma llevar a cabo las tareas de consulta o modificacion de los datos.

🥑IMPORTANDO DATOS DE AGUACATE Y REGION

library(readxl)
Caso_Aguacate_xls<-read_excel("avocado.csv..xlsx")
library(readxl)

REGION_VOLUMEN_xls<-read_excel("REGION_VENTAS DE AGUACATE.xlsx")
REGION_VOLUMEN_xls
# A tibble: 338 × 54
   Albany Atlanta Baltimo…¹ Boise Boston Buffa…² Calif…³ Charl…⁴ Chicago Cinci…⁵
    <dbl>   <dbl>     <dbl> <dbl>  <dbl>   <dbl>   <dbl>   <dbl>   <dbl>   <dbl>
 1  64237  386100    596819 62910 450816   96233 5040365  156698  661137  162994
 2  54877  331378    642682 57504 489803   90868 4695737  139918  690669  175426
 3 118220  417772    619509 58461 549946   98473 5259354  157146  668602  207386
 4  78992  357637    649141 95295 488679  108458 5775536  156114  664020  207513
 5  51040  333281    545800 49069 350560   79973 4575711  138859  602481  141356
 6  55980  356415    572020 52876 466760   90242 4804278  133618  751898  174893
 7  83454  339861    718330 68648 513739   99704 5755191  169281  641882  193723
 8 109428  334042    830967 55848 641760  111039 5148984  164322  711147  239070
 9  99811  419089    742221 53586 553097  118541 5830428  171794  807041  254760
10  74339  358478    656892 59874 534249   99555 4592462  140921  687650  203682
# … with 328 more rows, 44 more variables: Columbus <dbl>, DallasFtWorth <dbl>,
#   Denver <dbl>, Detroit <dbl>, GrandRapids <dbl>, GreatLakes <dbl>,
#   HarrisburgScranton <dbl>, HartfordSpringfield <dbl>, Houston <dbl>,
#   Indianapolis <dbl>, Jacksonville <dbl>, LasVegas <dbl>, LosAngeles <dbl>,
#   Louisville <dbl>, MiamiFtLauderdale <dbl>, Midsouth <dbl>, Nashville <dbl>,
#   NewOrleansMobile <dbl>, NewYork <dbl>, Northeast <dbl>,
#   NorthernNewEngland <dbl>, Orlando <dbl>, Philadelphia <dbl>, …

🥑CONVERTIMOS EN DATAFRAME

REGION_VOLUMEN_xls_frame <- as.data.frame(Caso_Aguacate_xls)
REGION_VOLUMEN_xls_frame
     INDICE Date           (FECHA DE OBSERVACION)
1         0                            2015-12-27
2         1                            2015-12-20
3         2                            2015-12-13
4         3                            2015-12-06
5         4                            2015-11-29
6         5                            2015-11-22
7         6                            2015-11-15
8         7                            2015-11-08
9         8                            2015-11-01
10        9                            2015-10-25
11       10                            2015-10-18
12       11                            2015-10-11
13       12                            2015-10-04
14       13                            2015-09-27
15       14                            2015-09-20
16       15                            2015-09-13
17       16                            2015-09-06
18       17                            2015-08-30
19       18                            2015-08-23
20       19                            2015-08-16
21       20                            2015-08-09
22       21                            2015-08-02
23       22                            2015-07-26
24       23                            2015-07-19
25       24                            2015-07-12
26       25                            2015-07-05
27       26                            2015-06-28
28       27                            2015-06-21
29       28                            2015-06-14
30       29                            2015-06-07
31       30                            2015-05-31
32       31                            2015-05-24
33       32                            2015-05-17
34       33                            2015-05-10
35       34                            2015-05-03
36       35                            2015-04-26
37       36                            2015-04-19
38       37                            2015-04-12
39       38                            2015-04-05
40       39                            2015-03-29
41       40                            2015-03-22
42       41                            2015-03-15
43       42                            2015-03-08
44       43                            2015-03-01
45       44                            2015-02-22
46       45                            2015-02-15
47       46                            2015-02-08
48       47                            2015-02-01
49       48                            2015-01-25
50       49                            2015-01-18
51       50                            2015-01-11
52       51                            2015-01-04
53        0                            2015-12-27
54        1                            2015-12-20
55        2                            2015-12-13
56        3                            2015-12-06
57        4                            2015-11-29
58        5                            2015-11-22
59        6                            2015-11-15
60        7                            2015-11-08
61        8                            2015-11-01
62        9                            2015-10-25
63       10                            2015-10-18
64       11                            2015-10-11
65       12                            2015-10-04
66       13                            2015-09-27
67       14                            2015-09-20
68       15                            2015-09-13
69       16                            2015-09-06
70       17                            2015-08-30
71       18                            2015-08-23
72       19                            2015-08-16
73       20                            2015-08-09
74       21                            2015-08-02
75       22                            2015-07-26
76       23                            2015-07-19
77       24                            2015-07-12
78       25                            2015-07-05
79       26                            2015-06-28
80       27                            2015-06-21
81       28                            2015-06-14
82       29                            2015-06-07
83       30                            2015-05-31
84       31                            2015-05-24
85       32                            2015-05-17
86       33                            2015-05-10
87       34                            2015-05-03
88       35                            2015-04-26
89       36                            2015-04-19
90       37                            2015-04-12
91       38                            2015-04-05
92       39                            2015-03-29
93       40                            2015-03-22
94       41                            2015-03-15
95       42                            2015-03-08
96       43                            2015-03-01
97       44                            2015-02-22
98       45                            2015-02-15
99       46                            2015-02-08
100      47                            2015-02-01
101      48                            2015-01-25
102      49                            2015-01-18
103      50                            2015-01-11
104      51                            2015-01-04
105       0                            2015-12-27
106       1                            2015-12-20
107       2                            2015-12-13
108       3                            2015-12-06
109       4                            2015-11-29
110       5                            2015-11-22
111       6                            2015-11-15
112       7                            2015-11-08
113       8                            2015-11-01
114       9                            2015-10-25
115      10                            2015-10-18
116      11                            2015-10-11
117      12                            2015-10-04
118      13                            2015-09-27
119      14                            2015-09-20
120      15                            2015-09-13
121      16                            2015-09-06
122      17                            2015-08-30
123      18                            2015-08-23
124      19                            2015-08-16
125      20                            2015-08-09
126      21                            2015-08-02
127      22                            2015-07-26
128      23                            2015-07-19
129      24                            2015-07-12
130      25                            2015-07-05
131      26                            2015-06-28
132      27                            2015-06-21
133      28                            2015-06-14
134      29                            2015-06-07
135      30                            2015-05-31
136      31                            2015-05-24
137      32                            2015-05-17
138      33                            2015-05-10
139      34                            2015-05-03
140      35                            2015-04-26
141      36                            2015-04-19
142      37                            2015-04-12
143      38                            2015-04-05
144      39                            2015-03-29
145      40                            2015-03-22
146      41                            2015-03-15
147      42                            2015-03-08
148      43                            2015-03-01
149      44                            2015-02-22
150      45                            2015-02-15
151      46                            2015-02-08
152      47                            2015-02-01
153      48                            2015-01-25
154      49                            2015-01-18
155      50                            2015-01-11
156      51                            2015-01-04
157       0                            2015-12-27
158       1                            2015-12-20
159       2                            2015-12-13
160       3                            2015-12-06
161       4                            2015-11-29
162       5                            2015-11-22
163       6                            2015-11-15
164       7                            2015-11-08
165       8                            2015-11-01
166       9                            2015-10-25
167      10                            2015-10-18
168      11                            2015-10-11
169      12                            2015-10-04
170      13                            2015-09-27
171      14                            2015-09-20
172      15                            2015-09-13
173      16                            2015-09-06
174      17                            2015-08-30
175      18                            2015-08-23
176      19                            2015-08-16
177      20                            2015-08-09
178      21                            2015-08-02
179      22                            2015-07-26
180      23                            2015-07-19
181      24                            2015-07-12
182      25                            2015-07-05
183      26                            2015-06-28
184      27                            2015-06-21
185      28                            2015-06-14
186      29                            2015-06-07
187      30                            2015-05-31
188      31                            2015-05-24
189      32                            2015-05-17
190      33                            2015-05-10
191      34                            2015-05-03
192      35                            2015-04-26
193      36                            2015-04-19
194      37                            2015-04-12
195      38                            2015-04-05
196      39                            2015-03-29
197      40                            2015-03-22
198      41                            2015-03-15
199      42                            2015-03-08
200      43                            2015-03-01
201      44                            2015-02-22
202      45                            2015-02-15
203      46                            2015-02-08
204      47                            2015-02-01
205      48                            2015-01-25
206      49                            2015-01-18
207      50                            2015-01-11
208      51                            2015-01-04
209       0                            2015-12-27
210       1                            2015-12-20
211       2                            2015-12-13
212       3                            2015-12-06
213       4                            2015-11-29
214       5                            2015-11-22
215       6                            2015-11-15
216       7                            2015-11-08
217       8                            2015-11-01
218       9                            2015-10-25
219      10                            2015-10-18
220      11                            2015-10-11
221      12                            2015-10-04
222      13                            2015-09-27
223      14                            2015-09-20
224      15                            2015-09-13
225      16                            2015-09-06
226      17                            2015-08-30
227      18                            2015-08-23
228      19                            2015-08-16
229      20                            2015-08-09
230      21                            2015-08-02
231      22                            2015-07-26
232      23                            2015-07-19
233      24                            2015-07-12
234      25                            2015-07-05
235      26                            2015-06-28
236      27                            2015-06-21
237      28                            2015-06-14
238      29                            2015-06-07
239      30                            2015-05-31
240      31                            2015-05-24
241      32                            2015-05-17
242      33                            2015-05-10
243      34                            2015-05-03
244      35                            2015-04-26
245      36                            2015-04-19
246      37                            2015-04-12
247      38                            2015-04-05
248      39                            2015-03-29
249      40                            2015-03-22
250      41                            2015-03-15
251      42                            2015-03-08
252      43                            2015-03-01
253      44                            2015-02-22
254      45                            2015-02-15
255      46                            2015-02-08
256      47                            2015-02-01
257      48                            2015-01-25
258      49                            2015-01-18
259      50                            2015-01-11
260      51                            2015-01-04
261       0                            2015-12-27
262       1                            2015-12-20
263       2                            2015-12-13
264       3                            2015-12-06
265       4                            2015-11-29
266       5                            2015-11-22
267       6                            2015-11-15
268       7                            2015-11-08
269       8                            2015-11-01
270       9                            2015-10-25
271      10                            2015-10-18
272      11                            2015-10-11
273      12                            2015-10-04
274      13                            2015-09-27
275      14                            2015-09-20
276      15                            2015-09-13
277      16                            2015-09-06
278      17                            2015-08-30
279      18                            2015-08-23
280      19                            2015-08-16
281      20                            2015-08-09
282      21                            2015-08-02
283      22                            2015-07-26
284      23                            2015-07-19
285      24                            2015-07-12
286      25                            2015-07-05
287      26                            2015-06-28
288      27                            2015-06-21
289      28                            2015-06-14
290      29                            2015-06-07
291      30                            2015-05-31
292      31                            2015-05-24
293      32                            2015-05-17
294      33                            2015-05-10
295      34                            2015-05-03
296      35                            2015-04-26
297      36                            2015-04-19
298      37                            2015-04-12
299      38                            2015-04-05
300      39                            2015-03-29
301      40                            2015-03-22
302      41                            2015-03-15
303      42                            2015-03-08
304      43                            2015-03-01
305      44                            2015-02-22
306      45                            2015-02-15
307      46                            2015-02-08
308      47                            2015-02-01
309      48                            2015-01-25
310      49                            2015-01-18
311      50                            2015-01-11
312      51                            2015-01-04
313       0                            2015-12-27
314       1                            2015-12-20
315       2                            2015-12-13
316       3                            2015-12-06
317       4                            2015-11-29
318       5                            2015-11-22
319       6                            2015-11-15
320       7                            2015-11-08
321       8                            2015-11-01
322       9                            2015-10-25
323      10                            2015-10-18
324      11                            2015-10-11
325      12                            2015-10-04
326      13                            2015-09-27
327      14                            2015-09-20
328      15                            2015-09-13
329      16                            2015-09-06
330      17                            2015-08-30
331      18                            2015-08-23
332      19                            2015-08-16
333      20                            2015-08-09
334      21                            2015-08-02
335      22                            2015-07-26
336      23                            2015-07-19
337      24                            2015-07-12
338      25                            2015-07-05
339      26                            2015-06-28
340      27                            2015-06-21
341      28                            2015-06-14
342      29                            2015-06-07
343      30                            2015-05-31
344      31                            2015-05-24
345      32                            2015-05-17
346      33                            2015-05-10
347      34                            2015-05-03
348      35                            2015-04-26
349      36                            2015-04-19
350      37                            2015-04-12
351      38                            2015-04-05
352      39                            2015-03-29
353      40                            2015-03-22
354      41                            2015-03-15
355      42                            2015-03-08
356      43                            2015-03-01
357      44                            2015-02-22
358      45                            2015-02-15
359      46                            2015-02-08
360      47                            2015-02-01
361      48                            2015-01-25
362      49                            2015-01-18
363      50                            2015-01-11
364      51                            2015-01-04
365       0                            2015-12-27
366       1                            2015-12-20
367       2                            2015-12-13
368       3                            2015-12-06
369       4                            2015-11-29
370       5                            2015-11-22
371       6                            2015-11-15
372       7                            2015-11-08
373       8                            2015-11-01
374       9                            2015-10-25
375      10                            2015-10-18
376      11                            2015-10-11
377      12                            2015-10-04
378      13                            2015-09-27
379      14                            2015-09-20
380      15                            2015-09-13
381      16                            2015-09-06
382      17                            2015-08-30
383      18                            2015-08-23
384      19                            2015-08-16
385      20                            2015-08-09
386      21                            2015-08-02
387      22                            2015-07-26
388      23                            2015-07-19
389      24                            2015-07-12
390      25                            2015-07-05
391      26                            2015-06-28
392      27                            2015-06-21
393      28                            2015-06-14
394      29                            2015-06-07
395      30                            2015-05-31
396      31                            2015-05-24
397      32                            2015-05-17
398      33                            2015-05-10
399      34                            2015-05-03
400      35                            2015-04-26
401      36                            2015-04-19
402      37                            2015-04-12
403      38                            2015-04-05
404      39                            2015-03-29
405      40                            2015-03-22
406      41                            2015-03-15
407      42                            2015-03-08
408      43                            2015-03-01
409      44                            2015-02-22
410      45                            2015-02-15
411      46                            2015-02-08
412      47                            2015-02-01
413      48                            2015-01-25
414      49                            2015-01-18
415      50                            2015-01-11
416      51                            2015-01-04
417       0                            2015-12-27
418       1                            2015-12-20
419       2                            2015-12-13
420       3                            2015-12-06
421       4                            2015-11-29
422       5                            2015-11-22
423       6                            2015-11-15
424       7                            2015-11-08
425       8                            2015-11-01
426       9                            2015-10-25
427      10                            2015-10-18
428      11                            2015-10-11
429      12                            2015-10-04
430      13                            2015-09-27
431      14                            2015-09-20
432      15                            2015-09-13
433      16                            2015-09-06
434      17                            2015-08-30
435      18                            2015-08-23
436      19                            2015-08-16
437      20                            2015-08-09
438      21                            2015-08-02
439      22                            2015-07-26
440      23                            2015-07-19
441      24                            2015-07-12
442      25                            2015-07-05
443      26                            2015-06-28
444      27                            2015-06-21
445      28                            2015-06-14
446      29                            2015-06-07
447      30                            2015-05-31
448      31                            2015-05-24
449      32                            2015-05-17
450      33                            2015-05-10
451      34                            2015-05-03
452      35                            2015-04-26
453      36                            2015-04-19
454      37                            2015-04-12
455      38                            2015-04-05
456      39                            2015-03-29
457      40                            2015-03-22
458      41                            2015-03-15
459      42                            2015-03-08
460      43                            2015-03-01
461      44                            2015-02-22
462      45                            2015-02-15
463      46                            2015-02-08
464      47                            2015-02-01
465      48                            2015-01-25
466      49                            2015-01-18
467      50                            2015-01-11
468      51                            2015-01-04
469       0                            2015-12-27
470       1                            2015-12-20
471       2                            2015-12-13
472       3                            2015-12-06
473       4                            2015-11-29
474       5                            2015-11-22
475       6                            2015-11-15
476       7                            2015-11-08
477       8                            2015-11-01
478       9                            2015-10-25
479      10                            2015-10-18
480      11                            2015-10-11
481      12                            2015-10-04
482      13                            2015-09-27
483      14                            2015-09-20
484      15                            2015-09-13
485      16                            2015-09-06
486      17                            2015-08-30
487      18                            2015-08-23
488      19                            2015-08-16
489      20                            2015-08-09
490      21                            2015-08-02
491      22                            2015-07-26
492      23                            2015-07-19
493      24                            2015-07-12
494      25                            2015-07-05
495      26                            2015-06-28
496      27                            2015-06-21
497      28                            2015-06-14
498      29                            2015-06-07
499      30                            2015-05-31
500      31                            2015-05-24
501      32                            2015-05-17
502      33                            2015-05-10
503      34                            2015-05-03
504      35                            2015-04-26
505      36                            2015-04-19
506      37                            2015-04-12
507      38                            2015-04-05
508      39                            2015-03-29
509      40                            2015-03-22
510      41                            2015-03-15
511      42                            2015-03-08
512      43                            2015-03-01
513      44                            2015-02-22
514      45                            2015-02-15
515      46                            2015-02-08
516      47                            2015-02-01
517      48                            2015-01-25
518      49                            2015-01-18
519      50                            2015-01-11
520      51                            2015-01-04
521       0                            2015-12-27
522       1                            2015-12-20
523       2                            2015-12-13
524       3                            2015-12-06
525       4                            2015-11-29
526       5                            2015-11-22
527       6                            2015-11-15
528       7                            2015-11-08
529       8                            2015-11-01
530       9                            2015-10-25
531      10                            2015-10-18
532      11                            2015-10-11
533      12                            2015-10-04
534      13                            2015-09-27
535      14                            2015-09-20
536      15                            2015-09-13
537      16                            2015-09-06
538      17                            2015-08-30
539      18                            2015-08-23
540      19                            2015-08-16
541      20                            2015-08-09
542      21                            2015-08-02
543      22                            2015-07-26
544      23                            2015-07-19
545      24                            2015-07-12
546      25                            2015-07-05
547      26                            2015-06-28
548      27                            2015-06-21
549      28                            2015-06-14
550      29                            2015-06-07
551      30                            2015-05-31
552      31                            2015-05-24
553      32                            2015-05-17
554      33                            2015-05-10
555      34                            2015-05-03
556      35                            2015-04-26
557      36                            2015-04-19
558      37                            2015-04-12
559      38                            2015-04-05
560      39                            2015-03-29
561      40                            2015-03-22
562      41                            2015-03-15
563      42                            2015-03-08
564      43                            2015-03-01
565      44                            2015-02-22
566      45                            2015-02-15
567      46                            2015-02-08
568      47                            2015-02-01
569      48                            2015-01-25
570      49                            2015-01-18
571      50                            2015-01-11
572      51                            2015-01-04
573       0                            2015-12-27
574       1                            2015-12-20
575       2                            2015-12-13
576       3                            2015-12-06
577       4                            2015-11-29
578       5                            2015-11-22
579       6                            2015-11-15
580       7                            2015-11-08
581       8                            2015-11-01
582       9                            2015-10-25
583      10                            2015-10-18
584      11                            2015-10-11
585      12                            2015-10-04
586      13                            2015-09-27
587      14                            2015-09-20
588      15                            2015-09-13
589      16                            2015-09-06
590      17                            2015-08-30
591      18                            2015-08-23
592      19                            2015-08-16
593      20                            2015-08-09
594      21                            2015-08-02
595      22                            2015-07-26
596      23                            2015-07-19
597      24                            2015-07-12
598      25                            2015-07-05
599      26                            2015-06-28
600      27                            2015-06-21
601      28                            2015-06-14
602      29                            2015-06-07
603      30                            2015-05-31
604      31                            2015-05-24
605      32                            2015-05-17
606      33                            2015-05-10
607      34                            2015-05-03
608      35                            2015-04-26
609      36                            2015-04-19
610      37                            2015-04-12
611      38                            2015-04-05
612      39                            2015-03-29
613      40                            2015-03-22
614      41                            2015-03-15
615      42                            2015-03-08
616      43                            2015-03-01
617      44                            2015-02-22
618      45                            2015-02-15
619      46                            2015-02-08
620      47                            2015-02-01
621      48                            2015-01-25
622      49                            2015-01-18
623      50                            2015-01-11
624      51                            2015-01-04
625       0                            2015-12-27
626       1                            2015-12-20
627       2                            2015-12-13
628       3                            2015-12-06
629       4                            2015-11-29
630       5                            2015-11-22
631       6                            2015-11-15
632       7                            2015-11-08
633       8                            2015-11-01
634       9                            2015-10-25
635      10                            2015-10-18
636      11                            2015-10-11
637      12                            2015-10-04
638      13                            2015-09-27
639      14                            2015-09-20
640      15                            2015-09-13
641      16                            2015-09-06
642      17                            2015-08-30
643      18                            2015-08-23
644      19                            2015-08-16
645      20                            2015-08-09
646      21                            2015-08-02
647      22                            2015-07-26
648      23                            2015-07-19
649      24                            2015-07-12
650      25                            2015-07-05
651      26                            2015-06-28
652      27                            2015-06-21
653      28                            2015-06-14
654      29                            2015-06-07
655      30                            2015-05-31
656      31                            2015-05-24
657      32                            2015-05-17
658      33                            2015-05-10
659      34                            2015-05-03
660      35                            2015-04-26
661      36                            2015-04-19
662      37                            2015-04-12
663      38                            2015-04-05
664      39                            2015-03-29
665      40                            2015-03-22
666      41                            2015-03-15
667      42                            2015-03-08
668      43                            2015-03-01
669      44                            2015-02-22
670      45                            2015-02-15
671      46                            2015-02-08
672      47                            2015-02-01
673      48                            2015-01-25
674      49                            2015-01-18
675      50                            2015-01-11
676      51                            2015-01-04
677       0                            2015-12-27
678       1                            2015-12-20
679       2                            2015-12-13
680       3                            2015-12-06
681       4                            2015-11-29
682       5                            2015-11-22
683       6                            2015-11-15
684       7                            2015-11-08
685       8                            2015-11-01
686       9                            2015-10-25
687      10                            2015-10-18
688      11                            2015-10-11
689      12                            2015-10-04
690      13                            2015-09-27
691      14                            2015-09-20
692      15                            2015-09-13
693      16                            2015-09-06
694      17                            2015-08-30
695      18                            2015-08-23
696      19                            2015-08-16
697      20                            2015-08-09
698      21                            2015-08-02
699      22                            2015-07-26
700      23                            2015-07-19
701      24                            2015-07-12
702      25                            2015-07-05
703      26                            2015-06-28
704      27                            2015-06-21
705      28                            2015-06-14
706      29                            2015-06-07
707      30                            2015-05-31
708      31                            2015-05-24
709      32                            2015-05-17
710      33                            2015-05-10
711      34                            2015-05-03
712      35                            2015-04-26
713      36                            2015-04-19
714      37                            2015-04-12
715      38                            2015-04-05
716      39                            2015-03-29
717      40                            2015-03-22
718      41                            2015-03-15
719      42                            2015-03-08
720      43                            2015-03-01
721      44                            2015-02-22
722      45                            2015-02-15
723      46                            2015-02-08
724      47                            2015-02-01
725      48                            2015-01-25
726      49                            2015-01-18
727      50                            2015-01-11
728      51                            2015-01-04
729       0                            2015-12-27
730       1                            2015-12-20
731       2                            2015-12-13
732       3                            2015-12-06
733       4                            2015-11-29
734       5                            2015-11-22
735       6                            2015-11-15
736       7                            2015-11-08
737       8                            2015-11-01
738       9                            2015-10-25
739      10                            2015-10-18
740      11                            2015-10-11
741      12                            2015-10-04
742      13                            2015-09-27
743      14                            2015-09-20
744      15                            2015-09-13
745      16                            2015-09-06
746      17                            2015-08-30
747      18                            2015-08-23
748      19                            2015-08-16
749      20                            2015-08-09
750      21                            2015-08-02
751      22                            2015-07-26
752      23                            2015-07-19
753      24                            2015-07-12
754      25                            2015-07-05
755      26                            2015-06-28
756      27                            2015-06-21
757      28                            2015-06-14
758      29                            2015-06-07
759      30                            2015-05-31
760      31                            2015-05-24
761      32                            2015-05-17
762      33                            2015-05-10
763      34                            2015-05-03
764      35                            2015-04-26
765      36                            2015-04-19
766      37                            2015-04-12
767      38                            2015-04-05
768      39                            2015-03-29
769      40                            2015-03-22
770      41                            2015-03-15
771      42                            2015-03-08
772      43                            2015-03-01
773      44                            2015-02-22
774      45                            2015-02-15
775      46                            2015-02-08
776      47                            2015-02-01
777      48                            2015-01-25
778      49                            2015-01-18
779      50                            2015-01-11
780      51                            2015-01-04
781       0                            2015-12-27
782       1                            2015-12-20
783       2                            2015-12-13
784       3                            2015-12-06
785       4                            2015-11-29
786       5                            2015-11-22
787       6                            2015-11-15
788       7                            2015-11-08
789       8                            2015-11-01
790       9                            2015-10-25
791      10                            2015-10-18
792      11                            2015-10-11
793      12                            2015-10-04
794      13                            2015-09-27
795      14                            2015-09-20
796      15                            2015-09-13
797      16                            2015-09-06
798      17                            2015-08-30
799      18                            2015-08-23
800      19                            2015-08-16
801      20                            2015-08-09
802      21                            2015-08-02
803      22                            2015-07-26
804      23                            2015-07-19
805      24                            2015-07-12
806      25                            2015-07-05
807      26                            2015-06-28
808      27                            2015-06-21
809      28                            2015-06-14
810      29                            2015-06-07
811      30                            2015-05-31
812      31                            2015-05-24
813      32                            2015-05-17
814      33                            2015-05-10
815      34                            2015-05-03
816      35                            2015-04-26
817      36                            2015-04-19
818      37                            2015-04-12
819      38                            2015-04-05
820      39                            2015-03-29
821      40                            2015-03-22
822      41                            2015-03-15
823      42                            2015-03-08
824      43                            2015-03-01
825      44                            2015-02-22
826      45                            2015-02-15
827      46                            2015-02-08
828      47                            2015-02-01
829      48                            2015-01-25
830      49                            2015-01-18
831      50                            2015-01-11
832      51                            2015-01-04
833       0                            2015-12-27
834       1                            2015-12-20
835       2                            2015-12-13
836       3                            2015-12-06
837       4                            2015-11-29
838       5                            2015-11-22
839       6                            2015-11-15
840       7                            2015-11-08
841       8                            2015-11-01
842       9                            2015-10-25
843      10                            2015-10-18
844      11                            2015-10-11
845      12                            2015-10-04
846      13                            2015-09-27
847      14                            2015-09-20
848      15                            2015-09-13
849      16                            2015-09-06
850      17                            2015-08-30
851      18                            2015-08-23
852      19                            2015-08-16
853      20                            2015-08-09
854      21                            2015-08-02
855      22                            2015-07-26
856      23                            2015-07-19
857      24                            2015-07-12
858      25                            2015-07-05
859      26                            2015-06-28
860      27                            2015-06-21
861      28                            2015-06-14
862      29                            2015-06-07
863      30                            2015-05-31
864      31                            2015-05-24
865      32                            2015-05-17
866      33                            2015-05-10
867      34                            2015-05-03
868      35                            2015-04-26
869      36                            2015-04-19
870      37                            2015-04-12
871      38                            2015-04-05
872      39                            2015-03-29
873      40                            2015-03-22
874      41                            2015-03-15
875      42                            2015-03-08
876      43                            2015-03-01
877      44                            2015-02-22
878      45                            2015-02-15
879      46                            2015-02-08
880      47                            2015-02-01
881      48                            2015-01-25
882      49                            2015-01-18
883      50                            2015-01-11
884      51                            2015-01-04
885       0                            2015-12-27
886       1                            2015-12-20
887       2                            2015-12-13
888       3                            2015-12-06
889       4                            2015-11-29
890       5                            2015-11-22
891       6                            2015-11-15
892       7                            2015-11-08
893       8                            2015-11-01
894       9                            2015-10-25
895      10                            2015-10-18
896      11                            2015-10-11
897      12                            2015-10-04
898      13                            2015-09-27
899      14                            2015-09-20
900      15                            2015-09-13
901      16                            2015-09-06
902      17                            2015-08-30
903      18                            2015-08-23
904      19                            2015-08-16
905      20                            2015-08-09
906      21                            2015-08-02
907      22                            2015-07-26
908      23                            2015-07-19
909      24                            2015-07-12
910      25                            2015-07-05
911      26                            2015-06-28
912      27                            2015-06-21
913      28                            2015-06-14
914      29                            2015-06-07
915      30                            2015-05-31
916      31                            2015-05-24
917      32                            2015-05-17
918      33                            2015-05-10
919      34                            2015-05-03
920      35                            2015-04-26
921      36                            2015-04-19
922      37                            2015-04-12
923      38                            2015-04-05
924      39                            2015-03-29
925      40                            2015-03-22
926      41                            2015-03-15
927      42                            2015-03-08
928      43                            2015-03-01
929      44                            2015-02-22
930      45                            2015-02-15
931      46                            2015-02-08
932      47                            2015-02-01
933      48                            2015-01-25
934      49                            2015-01-18
935      50                            2015-01-11
936      51                            2015-01-04
937       0                            2015-12-27
938       1                            2015-12-20
939       2                            2015-12-13
940       3                            2015-12-06
941       4                            2015-11-29
942       5                            2015-11-22
943       6                            2015-11-15
944       7                            2015-11-08
945       8                            2015-11-01
946       9                            2015-10-25
947      10                            2015-10-18
948      11                            2015-10-11
949      12                            2015-10-04
950      13                            2015-09-27
951      14                            2015-09-20
952      15                            2015-09-13
953      16                            2015-09-06
954      17                            2015-08-30
955      18                            2015-08-23
956      19                            2015-08-16
957      20                            2015-08-09
958      21                            2015-08-02
959      22                            2015-07-26
960      23                            2015-07-19
961      24                            2015-07-12
962      25                            2015-07-05
963      26                            2015-06-28
964      27                            2015-06-21
965      28                            2015-06-14
966      29                            2015-06-07
967      30                            2015-05-31
968      31                            2015-05-24
969      32                            2015-05-17
970      33                            2015-05-10
971      34                            2015-05-03
972      35                            2015-04-26
973      36                            2015-04-19
974      37                            2015-04-12
975      38                            2015-04-05
976      39                            2015-03-29
977      40                            2015-03-22
978      41                            2015-03-15
979      42                            2015-03-08
980      43                            2015-03-01
981      44                            2015-02-22
982      45                            2015-02-15
983      46                            2015-02-08
984      47                            2015-02-01
985      48                            2015-01-25
986      49                            2015-01-18
987      50                            2015-01-11
988      51                            2015-01-04
989       0                            2015-12-27
990       1                            2015-12-20
991       2                            2015-12-13
992       3                            2015-12-06
993       4                            2015-11-29
994       5                            2015-11-22
995       6                            2015-11-15
996       7                            2015-11-08
997       8                            2015-11-01
998       9                            2015-10-25
999      10                            2015-10-18
1000     11                            2015-10-11
1001     12                            2015-10-04
1002     13                            2015-09-27
1003     14                            2015-09-20
1004     15                            2015-09-13
1005     16                            2015-09-06
1006     17                            2015-08-30
1007     18                            2015-08-23
1008     19                            2015-08-16
1009     20                            2015-08-09
1010     21                            2015-08-02
1011     22                            2015-07-26
1012     23                            2015-07-19
1013     24                            2015-07-12
1014     25                            2015-07-05
1015     26                            2015-06-28
1016     27                            2015-06-21
1017     28                            2015-06-14
1018     29                            2015-06-07
1019     30                            2015-05-31
1020     31                            2015-05-24
1021     32                            2015-05-17
1022     33                            2015-05-10
1023     34                            2015-05-03
1024     35                            2015-04-26
1025     36                            2015-04-19
1026     37                            2015-04-12
1027     38                            2015-04-05
1028     39                            2015-03-29
1029     40                            2015-03-22
1030     41                            2015-03-15
1031     42                            2015-03-08
1032     43                            2015-03-01
1033     44                            2015-02-22
1034     45                            2015-02-15
1035     46                            2015-02-08
1036     47                            2015-02-01
1037     48                            2015-01-25
1038     49                            2015-01-18
1039     50                            2015-01-11
1040     51                            2015-01-04
1041      0                            2015-12-27
1042      1                            2015-12-20
1043      2                            2015-12-13
1044      3                            2015-12-06
1045      4                            2015-11-29
1046      5                            2015-11-22
1047      6                            2015-11-15
1048      7                            2015-11-08
1049      8                            2015-11-01
1050      9                            2015-10-25
1051     10                            2015-10-18
1052     11                            2015-10-11
1053     12                            2015-10-04
1054     13                            2015-09-27
1055     14                            2015-09-20
1056     15                            2015-09-13
1057     16                            2015-09-06
1058     17                            2015-08-30
1059     18                            2015-08-23
1060     19                            2015-08-16
1061     20                            2015-08-09
1062     21                            2015-08-02
1063     22                            2015-07-26
1064     23                            2015-07-19
1065     24                            2015-07-12
1066     25                            2015-07-05
1067     26                            2015-06-28
1068     27                            2015-06-21
1069     28                            2015-06-14
1070     29                            2015-06-07
1071     30                            2015-05-31
1072     31                            2015-05-24
1073     32                            2015-05-17
1074     33                            2015-05-10
1075     34                            2015-05-03
1076     35                            2015-04-26
1077     36                            2015-04-19
1078     37                            2015-04-12
1079     38                            2015-04-05
1080     39                            2015-03-29
1081     40                            2015-03-22
1082     41                            2015-03-15
1083     42                            2015-03-08
1084     43                            2015-03-01
1085     44                            2015-02-22
1086     45                            2015-02-15
1087     46                            2015-02-08
1088     47                            2015-02-01
1089     48                            2015-01-25
1090     49                            2015-01-18
1091     50                            2015-01-11
1092     51                            2015-01-04
1093      0                            2015-12-27
1094      1                            2015-12-20
1095      2                            2015-12-13
1096      3                            2015-12-06
1097      4                            2015-11-29
1098      5                            2015-11-22
1099      6                            2015-11-15
1100      7                            2015-11-08
1101      8                            2015-11-01
1102      9                            2015-10-25
1103     10                            2015-10-18
1104     11                            2015-10-11
1105     12                            2015-10-04
1106     13                            2015-09-27
1107     14                            2015-09-20
1108     15                            2015-09-13
1109     16                            2015-09-06
1110     17                            2015-08-30
1111     18                            2015-08-23
1112     19                            2015-08-16
1113     20                            2015-08-09
1114     21                            2015-08-02
1115     22                            2015-07-26
1116     23                            2015-07-19
1117     24                            2015-07-12
1118     25                            2015-07-05
1119     26                            2015-06-28
1120     27                            2015-06-21
1121     28                            2015-06-14
1122     29                            2015-06-07
1123     30                            2015-05-31
1124     31                            2015-05-24
1125     32                            2015-05-17
1126     33                            2015-05-10
1127     34                            2015-05-03
1128     35                            2015-04-26
1129     36                            2015-04-19
1130     37                            2015-04-12
1131     38                            2015-04-05
1132     39                            2015-03-29
1133     40                            2015-03-22
1134     41                            2015-03-15
1135     42                            2015-03-08
1136     43                            2015-03-01
1137     44                            2015-02-22
1138     45                            2015-02-15
1139     46                            2015-02-08
1140     47                            2015-02-01
1141     48                            2015-01-25
1142     49                            2015-01-18
1143     50                            2015-01-11
1144     51                            2015-01-04
1145      0                            2015-12-27
1146      1                            2015-12-20
1147      2                            2015-12-13
1148      3                            2015-12-06
1149      4                            2015-11-29
1150      5                            2015-11-22
1151      6                            2015-11-15
1152      7                            2015-11-08
1153      8                            2015-11-01
1154      9                            2015-10-25
1155     10                            2015-10-18
1156     11                            2015-10-11
1157     12                            2015-10-04
1158     13                            2015-09-27
1159     14                            2015-09-20
1160     15                            2015-09-13
1161     16                            2015-09-06
1162     17                            2015-08-30
1163     18                            2015-08-23
1164     19                            2015-08-16
1165     20                            2015-08-09
1166     21                            2015-08-02
1167     22                            2015-07-26
1168     23                            2015-07-19
1169     24                            2015-07-12
1170     25                            2015-07-05
1171     26                            2015-06-28
1172     27                            2015-06-21
1173     28                            2015-06-14
1174     29                            2015-06-07
1175     30                            2015-05-31
1176     31                            2015-05-24
1177     32                            2015-05-17
1178     33                            2015-05-10
1179     34                            2015-05-03
1180     35                            2015-04-26
1181     36                            2015-04-19
1182     37                            2015-04-12
1183     38                            2015-04-05
1184     39                            2015-03-29
1185     40                            2015-03-22
1186     41                            2015-03-15
1187     42                            2015-03-08
1188     43                            2015-03-01
1189     44                            2015-02-22
1190     45                            2015-02-15
1191     46                            2015-02-08
1192     47                            2015-02-01
1193     48                            2015-01-25
1194     49                            2015-01-18
1195     50                            2015-01-11
1196     51                            2015-01-04
1197      0                            2015-12-27
1198      1                            2015-12-20
1199      2                            2015-12-13
1200      3                            2015-12-06
1201      4                            2015-11-29
1202      5                            2015-11-22
1203      6                            2015-11-15
1204      7                            2015-11-08
1205      8                            2015-11-01
1206      9                            2015-10-25
1207     10                            2015-10-18
1208     11                            2015-10-11
1209     12                            2015-10-04
1210     13                            2015-09-27
1211     14                            2015-09-20
1212     15                            2015-09-13
1213     16                            2015-09-06
1214     17                            2015-08-30
1215     18                            2015-08-23
1216     19                            2015-08-16
1217     20                            2015-08-09
1218     21                            2015-08-02
1219     22                            2015-07-26
1220     23                            2015-07-19
1221     24                            2015-07-12
1222     25                            2015-07-05
1223     26                            2015-06-28
1224     27                            2015-06-21
1225     28                            2015-06-14
1226     29                            2015-06-07
1227     30                            2015-05-31
1228     31                            2015-05-24
1229     32                            2015-05-17
1230     33                            2015-05-10
1231     34                            2015-05-03
1232     35                            2015-04-26
1233     36                            2015-04-19
1234     37                            2015-04-12
1235     38                            2015-04-05
1236     39                            2015-03-29
1237     40                            2015-03-22
1238     41                            2015-03-15
1239     42                            2015-03-08
1240     43                            2015-03-01
1241     44                            2015-02-22
1242     45                            2015-02-15
1243     46                            2015-02-08
1244     47                            2015-02-01
1245     48                            2015-01-25
1246     49                            2015-01-18
1247     50                            2015-01-11
1248     51                            2015-01-04
1249      0                            2015-12-27
1250      1                            2015-12-20
1251      2                            2015-12-13
1252      3                            2015-12-06
1253      4                            2015-11-29
1254      5                            2015-11-22
1255      6                            2015-11-15
1256      7                            2015-11-08
1257      8                            2015-11-01
1258      9                            2015-10-25
1259     10                            2015-10-18
1260     11                            2015-10-11
1261     12                            2015-10-04
1262     13                            2015-09-27
1263     14                            2015-09-20
1264     15                            2015-09-13
1265     16                            2015-09-06
1266     17                            2015-08-30
1267     18                            2015-08-23
1268     19                            2015-08-16
1269     20                            2015-08-09
1270     21                            2015-08-02
1271     22                            2015-07-26
1272     23                            2015-07-19
1273     24                            2015-07-12
1274     25                            2015-07-05
1275     26                            2015-06-28
1276     27                            2015-06-21
1277     28                            2015-06-14
1278     29                            2015-06-07
1279     30                            2015-05-31
1280     31                            2015-05-24
1281     32                            2015-05-17
1282     33                            2015-05-10
1283     34                            2015-05-03
1284     35                            2015-04-26
1285     36                            2015-04-19
1286     37                            2015-04-12
1287     38                            2015-04-05
1288     39                            2015-03-29
1289     40                            2015-03-22
1290     41                            2015-03-15
1291     42                            2015-03-08
1292     43                            2015-03-01
1293     44                            2015-02-22
1294     45                            2015-02-15
1295     46                            2015-02-08
1296     47                            2015-02-01
1297     48                            2015-01-25
1298     49                            2015-01-18
1299     50                            2015-01-11
1300     51                            2015-01-04
1301      0                            2015-12-27
1302      1                            2015-12-20
1303      2                            2015-12-13
1304      3                            2015-12-06
1305      4                            2015-11-29
1306      5                            2015-11-22
1307      6                            2015-11-15
1308      7                            2015-11-08
1309      8                            2015-11-01
1310      9                            2015-10-25
1311     10                            2015-10-18
1312     11                            2015-10-11
1313     12                            2015-10-04
1314     13                            2015-09-27
1315     14                            2015-09-20
1316     15                            2015-09-13
1317     16                            2015-09-06
1318     17                            2015-08-30
1319     18                            2015-08-23
1320     19                            2015-08-16
1321     20                            2015-08-09
1322     21                            2015-08-02
1323     22                            2015-07-26
1324     23                            2015-07-19
1325     24                            2015-07-12
1326     25                            2015-07-05
1327     26                            2015-06-28
1328     27                            2015-06-21
1329     28                            2015-06-14
1330     29                            2015-06-07
1331     30                            2015-05-31
1332     31                            2015-05-24
1333     32                            2015-05-17
1334     33                            2015-05-10
1335     34                            2015-05-03
1336     35                            2015-04-26
1337     36                            2015-04-19
1338     37                            2015-04-12
1339     38                            2015-04-05
1340     39                            2015-03-29
1341     40                            2015-03-22
1342     41                            2015-03-15
1343     42                            2015-03-08
1344     43                            2015-03-01
1345     44                            2015-02-22
1346     45                            2015-02-15
1347     46                            2015-02-08
1348     47                            2015-02-01
1349     48                            2015-01-25
1350     49                            2015-01-18
1351     50                            2015-01-11
1352     51                            2015-01-04
1353      0                            2015-12-27
1354      1                            2015-12-20
1355      2                            2015-12-13
1356      3                            2015-12-06
1357      4                            2015-11-29
1358      5                            2015-11-22
1359      6                            2015-11-15
1360      7                            2015-11-08
1361      8                            2015-11-01
1362      9                            2015-10-25
1363     10                            2015-10-18
1364     11                            2015-10-11
1365     12                            2015-10-04
1366     13                            2015-09-27
1367     14                            2015-09-20
1368     15                            2015-09-13
1369     16                            2015-09-06
1370     17                            2015-08-30
1371     18                            2015-08-23
1372     19                            2015-08-16
1373     20                            2015-08-09
1374     21                            2015-08-02
1375     22                            2015-07-26
1376     23                            2015-07-19
1377     24                            2015-07-12
1378     25                            2015-07-05
1379     26                            2015-06-28
1380     27                            2015-06-21
1381     28                            2015-06-14
1382     29                            2015-06-07
1383     30                            2015-05-31
1384     31                            2015-05-24
1385     32                            2015-05-17
1386     33                            2015-05-10
1387     34                            2015-05-03
1388     35                            2015-04-26
1389     36                            2015-04-19
1390     37                            2015-04-12
1391     38                            2015-04-05
1392     39                            2015-03-29
1393     40                            2015-03-22
1394     41                            2015-03-15
1395     42                            2015-03-08
1396     43                            2015-03-01
1397     44                            2015-02-22
1398     45                            2015-02-15
1399     46                            2015-02-08
1400     47                            2015-02-01
1401     48                            2015-01-25
1402     49                            2015-01-18
1403     50                            2015-01-11
1404     51                            2015-01-04
1405      0                            2015-12-27
1406      1                            2015-12-20
1407      2                            2015-12-13
1408      3                            2015-12-06
1409      4                            2015-11-29
1410      5                            2015-11-22
1411      6                            2015-11-15
1412      7                            2015-11-08
1413      8                            2015-11-01
1414      9                            2015-10-25
1415     10                            2015-10-18
1416     11                            2015-10-11
1417     12                            2015-10-04
1418     13                            2015-09-27
1419     14                            2015-09-20
1420     15                            2015-09-13
1421     16                            2015-09-06
1422     17                            2015-08-30
1423     18                            2015-08-23
1424     19                            2015-08-16
1425     20                            2015-08-09
1426     21                            2015-08-02
1427     22                            2015-07-26
1428     23                            2015-07-19
1429     24                            2015-07-12
1430     25                            2015-07-05
1431     26                            2015-06-28
1432     27                            2015-06-21
1433     28                            2015-06-14
1434     29                            2015-06-07
1435     30                            2015-05-31
1436     31                            2015-05-24
1437     32                            2015-05-17
1438     33                            2015-05-10
1439     34                            2015-05-03
1440     35                            2015-04-26
1441     36                            2015-04-19
1442     37                            2015-04-12
1443     38                            2015-04-05
1444     39                            2015-03-29
1445     40                            2015-03-22
1446     41                            2015-03-15
1447     42                            2015-03-08
1448     43                            2015-03-01
1449     44                            2015-02-22
1450     45                            2015-02-15
1451     46                            2015-02-08
1452     47                            2015-02-01
1453     48                            2015-01-25
1454     49                            2015-01-18
1455     50                            2015-01-11
1456     51                            2015-01-04
1457      0                            2015-12-27
1458      1                            2015-12-20
1459      2                            2015-12-13
1460      3                            2015-12-06
1461      4                            2015-11-29
1462      5                            2015-11-22
1463      6                            2015-11-15
1464      7                            2015-11-08
1465      8                            2015-11-01
1466      9                            2015-10-25
1467     10                            2015-10-18
1468     11                            2015-10-11
1469     12                            2015-10-04
1470     13                            2015-09-27
1471     14                            2015-09-20
1472     15                            2015-09-13
1473     16                            2015-09-06
1474     17                            2015-08-30
1475     18                            2015-08-23
1476     19                            2015-08-16
1477     20                            2015-08-09
1478     21                            2015-08-02
1479     22                            2015-07-26
1480     23                            2015-07-19
1481     24                            2015-07-12
1482     25                            2015-07-05
1483     26                            2015-06-28
1484     27                            2015-06-21
1485     28                            2015-06-14
1486     29                            2015-06-07
1487     30                            2015-05-31
1488     31                            2015-05-24
1489     32                            2015-05-17
1490     33                            2015-05-10
1491     34                            2015-05-03
1492     35                            2015-04-26
1493     36                            2015-04-19
1494     37                            2015-04-12
1495     38                            2015-04-05
1496     39                            2015-03-29
1497     40                            2015-03-22
1498     41                            2015-03-15
1499     42                            2015-03-08
1500     43                            2015-03-01
1501     44                            2015-02-22
1502     45                            2015-02-15
1503     46                            2015-02-08
1504     47                            2015-02-01
1505     48                            2015-01-25
1506     49                            2015-01-18
1507     50                            2015-01-11
1508     51                            2015-01-04
1509      0                            2015-12-27
1510      1                            2015-12-20
1511      2                            2015-12-13
1512      3                            2015-12-06
1513      4                            2015-11-29
1514      5                            2015-11-22
1515      6                            2015-11-15
1516      7                            2015-11-08
1517      8                            2015-11-01
1518      9                            2015-10-25
1519     10                            2015-10-18
1520     11                            2015-10-11
1521     12                            2015-10-04
1522     13                            2015-09-27
1523     14                            2015-09-20
1524     15                            2015-09-13
1525     16                            2015-09-06
1526     17                            2015-08-30
1527     18                            2015-08-23
1528     19                            2015-08-16
1529     20                            2015-08-09
1530     21                            2015-08-02
1531     22                            2015-07-26
1532     23                            2015-07-19
1533     24                            2015-07-12
1534     25                            2015-07-05
1535     26                            2015-06-28
1536     27                            2015-06-21
1537     28                            2015-06-14
1538     29                            2015-06-07
1539     30                            2015-05-31
1540     31                            2015-05-24
1541     32                            2015-05-17
1542     33                            2015-05-10
1543     34                            2015-05-03
1544     35                            2015-04-26
1545     36                            2015-04-19
1546     37                            2015-04-12
1547     38                            2015-04-05
1548     39                            2015-03-29
1549     40                            2015-03-22
1550     41                            2015-03-15
1551     42                            2015-03-08
1552     43                            2015-03-01
1553     44                            2015-02-22
1554     45                            2015-02-15
1555     46                            2015-02-08
1556     47                            2015-02-01
1557     48                            2015-01-25
1558     49                            2015-01-18
1559     50                            2015-01-11
1560     51                            2015-01-04
1561      0                            2015-12-27
1562      1                            2015-12-20
1563      2                            2015-12-13
1564      3                            2015-12-06
1565      4                            2015-11-29
1566      5                            2015-11-22
1567      6                            2015-11-15
1568      7                            2015-11-08
1569      8                            2015-11-01
1570      9                            2015-10-25
1571     10                            2015-10-18
1572     11                            2015-10-11
1573     12                            2015-10-04
1574     13                            2015-09-27
1575     14                            2015-09-20
1576     15                            2015-09-13
1577     16                            2015-09-06
1578     17                            2015-08-30
1579     18                            2015-08-23
1580     19                            2015-08-16
1581     20                            2015-08-09
1582     21                            2015-08-02
1583     22                            2015-07-26
1584     23                            2015-07-19
1585     24                            2015-07-12
1586     25                            2015-07-05
1587     26                            2015-06-28
1588     27                            2015-06-21
1589     28                            2015-06-14
1590     29                            2015-06-07
1591     30                            2015-05-31
1592     31                            2015-05-24
1593     32                            2015-05-17
1594     33                            2015-05-10
1595     34                            2015-05-03
1596     35                            2015-04-26
1597     36                            2015-04-19
1598     37                            2015-04-12
1599     38                            2015-04-05
1600     39                            2015-03-29
1601     40                            2015-03-22
1602     41                            2015-03-15
1603     42                            2015-03-08
1604     43                            2015-03-01
1605     44                            2015-02-22
1606     45                            2015-02-15
1607     46                            2015-02-08
1608     47                            2015-02-01
1609     48                            2015-01-25
1610     49                            2015-01-18
1611     50                            2015-01-11
1612     51                            2015-01-04
1613      0                            2015-12-27
1614      1                            2015-12-20
1615      2                            2015-12-13
1616      3                            2015-12-06
1617      4                            2015-11-29
1618      5                            2015-11-22
1619      6                            2015-11-15
1620      7                            2015-11-08
1621      8                            2015-11-01
1622      9                            2015-10-25
1623     10                            2015-10-18
1624     11                            2015-10-11
1625     12                            2015-10-04
1626     13                            2015-09-27
1627     14                            2015-09-20
1628     15                            2015-09-13
1629     16                            2015-09-06
1630     17                            2015-08-30
1631     18                            2015-08-23
1632     19                            2015-08-16
1633     20                            2015-08-09
1634     21                            2015-08-02
1635     22                            2015-07-26
1636     23                            2015-07-19
1637     24                            2015-07-12
1638     25                            2015-07-05
1639     26                            2015-06-28
1640     27                            2015-06-21
1641     28                            2015-06-14
1642     29                            2015-06-07
1643     30                            2015-05-31
1644     31                            2015-05-24
1645     32                            2015-05-17
1646     33                            2015-05-10
1647     34                            2015-05-03
1648     35                            2015-04-26
1649     36                            2015-04-19
1650     37                            2015-04-12
1651     38                            2015-04-05
1652     39                            2015-03-29
1653     40                            2015-03-22
1654     41                            2015-03-15
1655     42                            2015-03-08
1656     43                            2015-03-01
1657     44                            2015-02-22
1658     45                            2015-02-15
1659     46                            2015-02-08
1660     47                            2015-02-01
1661     48                            2015-01-25
1662     49                            2015-01-18
1663     50                            2015-01-11
1664     51                            2015-01-04
1665      0                            2015-12-27
1666      1                            2015-12-20
1667      2                            2015-12-13
1668      3                            2015-12-06
1669      4                            2015-11-29
1670      5                            2015-11-22
1671      6                            2015-11-15
1672      7                            2015-11-08
1673      8                            2015-11-01
1674      9                            2015-10-25
1675     10                            2015-10-18
1676     11                            2015-10-11
1677     12                            2015-10-04
1678     13                            2015-09-27
1679     14                            2015-09-20
1680     15                            2015-09-13
1681     16                            2015-09-06
1682     17                            2015-08-30
1683     18                            2015-08-23
1684     19                            2015-08-16
1685     20                            2015-08-09
1686     21                            2015-08-02
1687     22                            2015-07-26
1688     23                            2015-07-19
1689     24                            2015-07-12
1690     25                            2015-07-05
1691     26                            2015-06-28
1692     27                            2015-06-21
1693     28                            2015-06-14
1694     29                            2015-06-07
1695     30                            2015-05-31
1696     31                            2015-05-24
1697     32                            2015-05-17
1698     33                            2015-05-10
1699     34                            2015-05-03
1700     35                            2015-04-26
1701     36                            2015-04-19
1702     37                            2015-04-12
1703     38                            2015-04-05
1704     39                            2015-03-29
1705     40                            2015-03-22
1706     41                            2015-03-15
1707     42                            2015-03-08
1708     43                            2015-03-01
1709     44                            2015-02-22
1710     45                            2015-02-15
1711     46                            2015-02-08
1712     47                            2015-02-01
1713     48                            2015-01-25
1714     49                            2015-01-18
1715     50                            2015-01-11
1716     51                            2015-01-04
1717      0                            2015-12-27
1718      1                            2015-12-20
1719      2                            2015-12-13
1720      3                            2015-12-06
1721      4                            2015-11-29
1722      5                            2015-11-22
1723      6                            2015-11-15
1724      7                            2015-11-08
1725      8                            2015-11-01
1726      9                            2015-10-25
1727     10                            2015-10-18
1728     11                            2015-10-11
1729     12                            2015-10-04
1730     13                            2015-09-27
1731     14                            2015-09-20
1732     15                            2015-09-13
1733     16                            2015-09-06
1734     17                            2015-08-30
1735     18                            2015-08-23
1736     19                            2015-08-16
1737     20                            2015-08-09
1738     21                            2015-08-02
1739     22                            2015-07-26
1740     23                            2015-07-19
1741     24                            2015-07-12
1742     25                            2015-07-05
1743     26                            2015-06-28
1744     27                            2015-06-21
1745     28                            2015-06-14
1746     29                            2015-06-07
1747     30                            2015-05-31
1748     31                            2015-05-24
1749     32                            2015-05-17
1750     33                            2015-05-10
1751     34                            2015-05-03
1752     35                            2015-04-26
1753     36                            2015-04-19
1754     37                            2015-04-12
1755     38                            2015-04-05
1756     39                            2015-03-29
1757     40                            2015-03-22
1758     41                            2015-03-15
1759     42                            2015-03-08
1760     43                            2015-03-01
1761     44                            2015-02-22
1762     45                            2015-02-15
1763     46                            2015-02-08
1764     47                            2015-02-01
1765     48                            2015-01-25
1766     49                            2015-01-18
1767     50                            2015-01-11
1768     51                            2015-01-04
1769      0                            2015-12-27
1770      1                            2015-12-20
1771      2                            2015-12-13
1772      3                            2015-12-06
1773      4                            2015-11-29
1774      5                            2015-11-22
1775      6                            2015-11-15
1776      7                            2015-11-08
1777      8                            2015-11-01
1778      9                            2015-10-25
1779     10                            2015-10-18
1780     11                            2015-10-11
1781     12                            2015-10-04
1782     13                            2015-09-27
1783     14                            2015-09-20
1784     15                            2015-09-13
1785     16                            2015-09-06
1786     17                            2015-08-30
1787     18                            2015-08-23
1788     19                            2015-08-16
1789     20                            2015-08-09
1790     21                            2015-08-02
1791     22                            2015-07-26
1792     23                            2015-07-19
1793     24                            2015-07-12
1794     25                            2015-07-05
1795     26                            2015-06-28
1796     27                            2015-06-21
1797     28                            2015-06-14
1798     29                            2015-06-07
1799     30                            2015-05-31
1800     31                            2015-05-24
1801     32                            2015-05-17
1802     33                            2015-05-10
1803     34                            2015-05-03
1804     35                            2015-04-26
1805     36                            2015-04-19
1806     37                            2015-04-12
1807     38                            2015-04-05
1808     39                            2015-03-29
1809     40                            2015-03-22
1810     41                            2015-03-15
1811     42                            2015-03-08
1812     43                            2015-03-01
1813     44                            2015-02-22
1814     45                            2015-02-15
1815     46                            2015-02-08
1816     47                            2015-02-01
1817     48                            2015-01-25
1818     49                            2015-01-18
1819     50                            2015-01-11
1820     51                            2015-01-04
1821      0                            2015-12-27
1822      1                            2015-12-20
1823      2                            2015-12-13
1824      3                            2015-12-06
1825      4                            2015-11-29
1826      5                            2015-11-22
1827      6                            2015-11-15
1828      7                            2015-11-08
1829      8                            2015-11-01
1830      9                            2015-10-25
1831     10                            2015-10-18
1832     11                            2015-10-11
1833     12                            2015-10-04
1834     13                            2015-09-27
1835     14                            2015-09-20
1836     15                            2015-09-13
1837     16                            2015-09-06
1838     17                            2015-08-30
1839     18                            2015-08-23
1840     19                            2015-08-16
1841     20                            2015-08-09
1842     21                            2015-08-02
1843     22                            2015-07-26
1844     23                            2015-07-19
1845     24                            2015-07-12
1846     25                            2015-07-05
1847     26                            2015-06-28
1848     27                            2015-06-21
1849     28                            2015-06-14
1850     29                            2015-06-07
1851     30                            2015-05-31
1852     31                            2015-05-24
1853     32                            2015-05-17
1854     33                            2015-05-10
1855     34                            2015-05-03
1856     35                            2015-04-26
1857     36                            2015-04-19
1858     37                            2015-04-12
1859     38                            2015-04-05
1860     39                            2015-03-29
1861     40                            2015-03-22
1862     41                            2015-03-15
1863     42                            2015-03-08
1864     43                            2015-03-01
1865     44                            2015-02-22
1866     45                            2015-02-15
1867     46                            2015-02-08
1868     47                            2015-02-01
1869     48                            2015-01-25
1870     49                            2015-01-18
1871     50                            2015-01-11
1872     51                            2015-01-04
1873      0                            2015-12-27
1874      1                            2015-12-20
1875      2                            2015-12-13
1876      3                            2015-12-06
1877      4                            2015-11-29
1878      5                            2015-11-22
1879      6                            2015-11-15
1880      7                            2015-11-08
1881      8                            2015-11-01
1882      9                            2015-10-25
1883     10                            2015-10-18
1884     11                            2015-10-11
1885     12                            2015-10-04
1886     13                            2015-09-27
1887     14                            2015-09-20
1888     15                            2015-09-13
1889     16                            2015-09-06
1890     17                            2015-08-30
1891     18                            2015-08-23
1892     19                            2015-08-16
1893     20                            2015-08-09
1894     21                            2015-08-02
1895     22                            2015-07-26
1896     23                            2015-07-19
1897     24                            2015-07-12
1898     25                            2015-07-05
1899     26                            2015-06-28
1900     27                            2015-06-21
1901     28                            2015-06-14
1902     29                            2015-06-07
1903     30                            2015-05-31
1904     31                            2015-05-24
1905     32                            2015-05-17
1906     33                            2015-05-10
1907     34                            2015-05-03
1908     35                            2015-04-26
1909     36                            2015-04-19
1910     37                            2015-04-12
1911     38                            2015-04-05
1912     39                            2015-03-29
1913     40                            2015-03-22
1914     41                            2015-03-15
1915     42                            2015-03-08
1916     43                            2015-03-01
1917     44                            2015-02-22
1918     45                            2015-02-15
1919     46                            2015-02-08
1920     47                            2015-02-01
1921     48                            2015-01-25
1922     49                            2015-01-18
1923     50                            2015-01-11
1924     51                            2015-01-04
1925      0                            2015-12-27
1926      1                            2015-12-20
1927      2                            2015-12-13
1928      3                            2015-12-06
1929      4                            2015-11-29
1930      5                            2015-11-22
1931      6                            2015-11-15
1932      7                            2015-11-08
1933      8                            2015-11-01
1934      9                            2015-10-25
1935     10                            2015-10-18
1936     11                            2015-10-11
1937     12                            2015-10-04
1938     13                            2015-09-27
1939     14                            2015-09-20
1940     15                            2015-09-13
1941     16                            2015-09-06
1942     17                            2015-08-30
1943     18                            2015-08-23
1944     19                            2015-08-16
1945     20                            2015-08-09
1946     21                            2015-08-02
1947     22                            2015-07-26
1948     23                            2015-07-19
1949     24                            2015-07-12
1950     25                            2015-07-05
1951     26                            2015-06-28
1952     27                            2015-06-21
1953     28                            2015-06-14
1954     29                            2015-06-07
1955     30                            2015-05-31
1956     31                            2015-05-24
1957     32                            2015-05-17
1958     33                            2015-05-10
1959     34                            2015-05-03
1960     35                            2015-04-26
1961     36                            2015-04-19
1962     37                            2015-04-12
1963     38                            2015-04-05
1964     39                            2015-03-29
1965     40                            2015-03-22
1966     41                            2015-03-15
1967     42                            2015-03-08
1968     43                            2015-03-01
1969     44                            2015-02-22
1970     45                            2015-02-15
1971     46                            2015-02-08
1972     47                            2015-02-01
1973     48                            2015-01-25
1974     49                            2015-01-18
1975     50                            2015-01-11
1976     51                            2015-01-04
1977      0                            2015-12-27
1978      1                            2015-12-20
1979      2                            2015-12-13
1980      3                            2015-12-06
1981      4                            2015-11-29
1982      5                            2015-11-22
1983      6                            2015-11-15
1984      7                            2015-11-08
1985      8                            2015-11-01
1986      9                            2015-10-25
1987     10                            2015-10-18
1988     11                            2015-10-11
1989     12                            2015-10-04
1990     13                            2015-09-27
1991     14                            2015-09-20
1992     15                            2015-09-13
1993     16                            2015-09-06
1994     17                            2015-08-30
1995     18                            2015-08-23
1996     19                            2015-08-16
1997     20                            2015-08-09
1998     21                            2015-08-02
1999     22                            2015-07-26
2000     23                            2015-07-19
2001     24                            2015-07-12
2002     25                            2015-07-05
2003     26                            2015-06-28
2004     27                            2015-06-21
2005     28                            2015-06-14
2006     29                            2015-06-07
2007     30                            2015-05-31
2008     31                            2015-05-24
2009     32                            2015-05-17
2010     33                            2015-05-10
2011     34                            2015-05-03
2012     35                            2015-04-26
2013     36                            2015-04-19
2014     37                            2015-04-12
2015     38                            2015-04-05
2016     39                            2015-03-29
2017     40                            2015-03-22
2018     41                            2015-03-15
2019     42                            2015-03-08
2020     43                            2015-03-01
2021     44                            2015-02-22
2022     45                            2015-02-15
2023     46                            2015-02-08
2024     47                            2015-02-01
2025     48                            2015-01-25
2026     49                            2015-01-18
2027     50                            2015-01-11
2028     51                            2015-01-04
2029      0                            2015-12-27
2030      1                            2015-12-20
2031      2                            2015-12-13
2032      3                            2015-12-06
2033      4                            2015-11-29
2034      5                            2015-11-22
2035      6                            2015-11-15
2036      7                            2015-11-08
2037      8                            2015-11-01
2038      9                            2015-10-25
2039     10                            2015-10-18
2040     11                            2015-10-11
2041     12                            2015-10-04
2042     13                            2015-09-27
2043     14                            2015-09-20
2044     15                            2015-09-13
2045     16                            2015-09-06
2046     17                            2015-08-30
2047     18                            2015-08-23
2048     19                            2015-08-16
2049     20                            2015-08-09
2050     21                            2015-08-02
2051     22                            2015-07-26
2052     23                            2015-07-19
2053     24                            2015-07-12
2054     25                            2015-07-05
2055     26                            2015-06-28
2056     27                            2015-06-21
2057     28                            2015-06-14
2058     29                            2015-06-07
2059     30                            2015-05-31
2060     31                            2015-05-24
2061     32                            2015-05-17
2062     33                            2015-05-10
2063     34                            2015-05-03
2064     35                            2015-04-26
2065     36                            2015-04-19
2066     37                            2015-04-12
2067     38                            2015-04-05
2068     39                            2015-03-29
2069     40                            2015-03-22
2070     41                            2015-03-15
2071     42                            2015-03-08
2072     43                            2015-03-01
2073     44                            2015-02-22
2074     45                            2015-02-15
2075     46                            2015-02-08
2076     47                            2015-02-01
2077     48                            2015-01-25
2078     49                            2015-01-18
2079     50                            2015-01-11
2080     51                            2015-01-04
2081      0                            2015-12-27
2082      1                            2015-12-20
2083      2                            2015-12-13
2084      3                            2015-12-06
2085      4                            2015-11-29
2086      5                            2015-11-22
2087      6                            2015-11-15
2088      7                            2015-11-08
2089      8                            2015-11-01
2090      9                            2015-10-25
2091     10                            2015-10-18
2092     11                            2015-10-11
2093     12                            2015-10-04
2094     13                            2015-09-27
2095     14                            2015-09-20
2096     15                            2015-09-13
2097     16                            2015-09-06
2098     17                            2015-08-30
2099     18                            2015-08-23
2100     19                            2015-08-16
2101     20                            2015-08-09
2102     21                            2015-08-02
2103     22                            2015-07-26
2104     23                            2015-07-19
2105     24                            2015-07-12
2106     25                            2015-07-05
2107     26                            2015-06-28
2108     27                            2015-06-21
2109     28                            2015-06-14
2110     29                            2015-06-07
2111     30                            2015-05-31
2112     31                            2015-05-24
2113     32                            2015-05-17
2114     33                            2015-05-10
2115     34                            2015-05-03
2116     35                            2015-04-26
2117     36                            2015-04-19
2118     37                            2015-04-12
2119     38                            2015-04-05
2120     39                            2015-03-29
2121     40                            2015-03-22
2122     41                            2015-03-15
2123     42                            2015-03-08
2124     43                            2015-03-01
2125     44                            2015-02-22
2126     45                            2015-02-15
2127     46                            2015-02-08
2128     47                            2015-02-01
2129     48                            2015-01-25
2130     49                            2015-01-18
2131     50                            2015-01-11
2132     51                            2015-01-04
2133      0                            2015-12-27
2134      1                            2015-12-20
2135      2                            2015-12-13
2136      3                            2015-12-06
2137      4                            2015-11-29
2138      5                            2015-11-22
2139      6                            2015-11-15
2140      7                            2015-11-08
2141      8                            2015-11-01
2142      9                            2015-10-25
2143     10                            2015-10-18
2144     11                            2015-10-11
2145     12                            2015-10-04
2146     13                            2015-09-27
2147     14                            2015-09-20
2148     15                            2015-09-13
2149     16                            2015-09-06
2150     17                            2015-08-30
2151     18                            2015-08-23
2152     19                            2015-08-16
2153     20                            2015-08-09
2154     21                            2015-08-02
2155     22                            2015-07-26
2156     23                            2015-07-19
2157     24                            2015-07-12
2158     25                            2015-07-05
2159     26                            2015-06-28
2160     27                            2015-06-21
2161     28                            2015-06-14
2162     29                            2015-06-07
2163     30                            2015-05-31
2164     31                            2015-05-24
2165     32                            2015-05-17
2166     33                            2015-05-10
2167     34                            2015-05-03
2168     35                            2015-04-26
2169     36                            2015-04-19
2170     37                            2015-04-12
2171     38                            2015-04-05
2172     39                            2015-03-29
2173     40                            2015-03-22
2174     41                            2015-03-15
2175     42                            2015-03-08
2176     43                            2015-03-01
2177     44                            2015-02-22
2178     45                            2015-02-15
2179     46                            2015-02-08
2180     47                            2015-02-01
2181     48                            2015-01-25
2182     49                            2015-01-18
2183     50                            2015-01-11
2184     51                            2015-01-04
2185      0                            2015-12-27
2186      1                            2015-12-20
2187      2                            2015-12-13
2188      3                            2015-12-06
2189      4                            2015-11-29
2190      5                            2015-11-22
2191      6                            2015-11-15
2192      7                            2015-11-08
2193      8                            2015-11-01
2194      9                            2015-10-25
2195     10                            2015-10-18
2196     11                            2015-10-11
2197     12                            2015-10-04
2198     13                            2015-09-27
2199     14                            2015-09-20
2200     15                            2015-09-13
2201     16                            2015-09-06
2202     17                            2015-08-30
2203     18                            2015-08-23
2204     19                            2015-08-16
2205     20                            2015-08-09
2206     21                            2015-08-02
2207     22                            2015-07-26
2208     23                            2015-07-19
2209     24                            2015-07-12
2210     25                            2015-07-05
2211     26                            2015-06-28
2212     27                            2015-06-21
2213     28                            2015-06-14
2214     29                            2015-06-07
2215     30                            2015-05-31
2216     31                            2015-05-24
2217     32                            2015-05-17
2218     33                            2015-05-10
2219     34                            2015-05-03
2220     35                            2015-04-26
2221     36                            2015-04-19
2222     37                            2015-04-12
2223     38                            2015-04-05
2224     39                            2015-03-29
2225     40                            2015-03-22
2226     41                            2015-03-15
2227     42                            2015-03-08
2228     43                            2015-03-01
2229     44                            2015-02-22
2230     45                            2015-02-15
2231     46                            2015-02-08
2232     47                            2015-02-01
2233     48                            2015-01-25
2234     49                            2015-01-18
2235     50                            2015-01-11
2236     51                            2015-01-04
2237      0                            2015-12-27
2238      1                            2015-12-20
2239      2                            2015-12-13
2240      3                            2015-12-06
2241      4                            2015-11-29
2242      5                            2015-11-22
2243      6                            2015-11-15
2244      7                            2015-11-08
2245      8                            2015-11-01
2246      9                            2015-10-25
2247     10                            2015-10-18
2248     11                            2015-10-11
2249     12                            2015-10-04
2250     13                            2015-09-27
2251     14                            2015-09-20
2252     15                            2015-09-13
2253     16                            2015-09-06
2254     17                            2015-08-30
2255     18                            2015-08-23
2256     19                            2015-08-16
2257     20                            2015-08-09
2258     21                            2015-08-02
2259     22                            2015-07-26
2260     23                            2015-07-19
2261     24                            2015-07-12
2262     25                            2015-07-05
2263     26                            2015-06-28
2264     27                            2015-06-21
2265     28                            2015-06-14
2266     29                            2015-06-07
2267     30                            2015-05-31
2268     31                            2015-05-24
2269     32                            2015-05-17
2270     33                            2015-05-10
2271     34                            2015-05-03
2272     35                            2015-04-26
2273     36                            2015-04-19
2274     37                            2015-04-12
2275     38                            2015-04-05
2276     39                            2015-03-29
2277     40                            2015-03-22
2278     41                            2015-03-15
2279     42                            2015-03-08
2280     43                            2015-03-01
2281     44                            2015-02-22
2282     45                            2015-02-15
2283     46                            2015-02-08
2284     47                            2015-02-01
2285     48                            2015-01-25
2286     49                            2015-01-18
2287     50                            2015-01-11
2288     51                            2015-01-04
2289      0                            2015-12-27
2290      1                            2015-12-20
2291      2                            2015-12-13
2292      3                            2015-12-06
2293      4                            2015-11-29
2294      5                            2015-11-22
2295      6                            2015-11-15
2296      7                            2015-11-08
2297      8                            2015-11-01
2298      9                            2015-10-25
2299     10                            2015-10-18
2300     11                            2015-10-11
2301     12                            2015-10-04
2302     13                            2015-09-27
2303     14                            2015-09-20
2304     15                            2015-09-13
2305     16                            2015-09-06
2306     17                            2015-08-30
2307     18                            2015-08-23
2308     19                            2015-08-16
2309     20                            2015-08-09
2310     21                            2015-08-02
2311     22                            2015-07-26
2312     23                            2015-07-19
2313     24                            2015-07-12
2314     25                            2015-07-05
2315     26                            2015-06-28
2316     27                            2015-06-21
2317     28                            2015-06-14
2318     29                            2015-06-07
2319     30                            2015-05-31
2320     31                            2015-05-24
2321     32                            2015-05-17
2322     33                            2015-05-10
2323     34                            2015-05-03
2324     35                            2015-04-26
2325     36                            2015-04-19
2326     37                            2015-04-12
2327     38                            2015-04-05
2328     39                            2015-03-29
2329     40                            2015-03-22
2330     41                            2015-03-15
2331     42                            2015-03-08
2332     43                            2015-03-01
2333     44                            2015-02-22
2334     45                            2015-02-15
2335     46                            2015-02-08
2336     47                            2015-02-01
2337     48                            2015-01-25
2338     49                            2015-01-18
2339     50                            2015-01-11
2340     51                            2015-01-04
2341      0                            2015-12-27
2342      1                            2015-12-20
2343      2                            2015-12-13
2344      3                            2015-12-06
2345      4                            2015-11-29
2346      5                            2015-11-22
2347      6                            2015-11-15
2348      7                            2015-11-08
2349      8                            2015-11-01
2350      9                            2015-10-25
2351     10                            2015-10-18
2352     11                            2015-10-11
2353     12                            2015-10-04
2354     13                            2015-09-27
2355     14                            2015-09-20
2356     15                            2015-09-13
2357     16                            2015-09-06
2358     17                            2015-08-30
2359     18                            2015-08-23
2360     19                            2015-08-16
2361     20                            2015-08-09
2362     21                            2015-08-02
2363     22                            2015-07-26
2364     23                            2015-07-19
2365     24                            2015-07-12
2366     25                            2015-07-05
2367     26                            2015-06-28
2368     27                            2015-06-21
2369     28                            2015-06-14
2370     29                            2015-06-07
2371     30                            2015-05-31
2372     31                            2015-05-24
2373     32                            2015-05-17
2374     33                            2015-05-10
2375     34                            2015-05-03
2376     35                            2015-04-26
2377     36                            2015-04-19
2378     37                            2015-04-12
2379     38                            2015-04-05
2380     39                            2015-03-29
2381     40                            2015-03-22
2382     41                            2015-03-15
2383     42                            2015-03-08
2384     43                            2015-03-01
2385     44                            2015-02-22
2386     45                            2015-02-15
2387     46                            2015-02-08
2388     47                            2015-02-01
2389     48                            2015-01-25
2390     49                            2015-01-18
2391     50                            2015-01-11
2392     51                            2015-01-04
2393      0                            2015-12-27
2394      1                            2015-12-20
2395      2                            2015-12-13
2396      3                            2015-12-06
2397      4                            2015-11-29
2398      5                            2015-11-22
2399      6                            2015-11-15
2400      7                            2015-11-08
2401      8                            2015-11-01
2402      9                            2015-10-25
2403     10                            2015-10-18
2404     11                            2015-10-11
2405     12                            2015-10-04
2406     13                            2015-09-27
2407     14                            2015-09-20
2408     15                            2015-09-13
2409     16                            2015-09-06
2410     17                            2015-08-30
2411     18                            2015-08-23
2412     19                            2015-08-16
2413     20                            2015-08-09
2414     21                            2015-08-02
2415     22                            2015-07-26
2416     23                            2015-07-19
2417     24                            2015-07-12
2418     25                            2015-07-05
2419     26                            2015-06-28
2420     27                            2015-06-21
2421     28                            2015-06-14
2422     29                            2015-06-07
2423     30                            2015-05-31
2424     31                            2015-05-24
2425     32                            2015-05-17
2426     33                            2015-05-10
2427     34                            2015-05-03
2428     35                            2015-04-26
2429     36                            2015-04-19
2430     37                            2015-04-12
2431     38                            2015-04-05
2432     39                            2015-03-29
2433     40                            2015-03-22
2434     41                            2015-03-15
2435     42                            2015-03-08
2436     43                            2015-03-01
2437     44                            2015-02-22
2438     45                            2015-02-15
2439     46                            2015-02-08
2440     47                            2015-02-01
2441     48                            2015-01-25
2442     49                            2015-01-18
2443     50                            2015-01-11
2444     51                            2015-01-04
2445      0                            2015-12-27
2446      1                            2015-12-20
2447      2                            2015-12-13
2448      3                            2015-12-06
2449      4                            2015-11-29
2450      5                            2015-11-22
2451      6                            2015-11-15
2452      7                            2015-11-08
2453      8                            2015-11-01
2454      9                            2015-10-25
2455     10                            2015-10-18
2456     11                            2015-10-11
2457     12                            2015-10-04
2458     13                            2015-09-27
2459     14                            2015-09-20
2460     15                            2015-09-13
2461     16                            2015-09-06
2462     17                            2015-08-30
2463     18                            2015-08-23
2464     19                            2015-08-16
2465     20                            2015-08-09
2466     21                            2015-08-02
2467     22                            2015-07-26
2468     23                            2015-07-19
2469     24                            2015-07-12
2470     25                            2015-07-05
2471     26                            2015-06-28
2472     27                            2015-06-21
2473     28                            2015-06-14
2474     29                            2015-06-07
2475     30                            2015-05-31
2476     31                            2015-05-24
2477     32                            2015-05-17
2478     33                            2015-05-10
2479     34                            2015-05-03
2480     35                            2015-04-26
2481     36                            2015-04-19
2482     37                            2015-04-12
2483     38                            2015-04-05
2484     39                            2015-03-29
2485     40                            2015-03-22
2486     41                            2015-03-15
2487     42                            2015-03-08
2488     43                            2015-03-01
2489     44                            2015-02-22
2490     45                            2015-02-15
2491     46                            2015-02-08
2492     47                            2015-02-01
2493     48                            2015-01-25
2494     49                            2015-01-18
2495     50                            2015-01-11
2496     51                            2015-01-04
2497      0                            2015-12-27
2498      1                            2015-12-20
2499      2                            2015-12-13
2500      3                            2015-12-06
2501      4                            2015-11-29
2502      5                            2015-11-22
2503      6                            2015-11-15
2504      7                            2015-11-08
2505      8                            2015-11-01
2506      9                            2015-10-25
2507     10                            2015-10-18
2508     11                            2015-10-11
2509     12                            2015-10-04
2510     13                            2015-09-27
2511     14                            2015-09-20
2512     15                            2015-09-13
2513     16                            2015-09-06
2514     17                            2015-08-30
2515     18                            2015-08-23
2516     19                            2015-08-16
2517     20                            2015-08-09
2518     21                            2015-08-02
2519     22                            2015-07-26
2520     23                            2015-07-19
2521     24                            2015-07-12
2522     25                            2015-07-05
2523     26                            2015-06-28
2524     27                            2015-06-21
2525     28                            2015-06-14
2526     29                            2015-06-07
2527     30                            2015-05-31
2528     31                            2015-05-24
2529     32                            2015-05-17
2530     33                            2015-05-10
2531     34                            2015-05-03
2532     35                            2015-04-26
2533     36                            2015-04-19
2534     37                            2015-04-12
2535     38                            2015-04-05
2536     39                            2015-03-29
2537     40                            2015-03-22
2538     41                            2015-03-15
2539     42                            2015-03-08
2540     43                            2015-03-01
2541     44                            2015-02-22
2542     45                            2015-02-15
2543     46                            2015-02-08
2544     47                            2015-02-01
2545     48                            2015-01-25
2546     49                            2015-01-18
2547     50                            2015-01-11
2548     51                            2015-01-04
2549      0                            2015-12-27
2550      1                            2015-12-20
2551      2                            2015-12-13
2552      3                            2015-12-06
2553      4                            2015-11-29
2554      5                            2015-11-22
2555      6                            2015-11-15
2556      7                            2015-11-08
2557      8                            2015-11-01
2558      9                            2015-10-25
2559     10                            2015-10-18
2560     11                            2015-10-11
2561     12                            2015-10-04
2562     13                            2015-09-27
2563     14                            2015-09-20
2564     15                            2015-09-13
2565     16                            2015-09-06
2566     17                            2015-08-30
2567     18                            2015-08-23
2568     19                            2015-08-16
2569     20                            2015-08-09
2570     21                            2015-08-02
2571     22                            2015-07-26
2572     23                            2015-07-19
2573     24                            2015-07-12
2574     25                            2015-07-05
2575     26                            2015-06-28
2576     27                            2015-06-21
2577     28                            2015-06-14
2578     29                            2015-06-07
2579     30                            2015-05-31
2580     31                            2015-05-24
2581     32                            2015-05-17
2582     33                            2015-05-10
2583     34                            2015-05-03
2584     35                            2015-04-26
2585     36                            2015-04-19
2586     37                            2015-04-12
2587     38                            2015-04-05
2588     39                            2015-03-29
2589     40                            2015-03-22
2590     41                            2015-03-15
2591     42                            2015-03-08
2592     43                            2015-03-01
2593     44                            2015-02-22
2594     45                            2015-02-15
2595     46                            2015-02-08
2596     47                            2015-02-01
2597     48                            2015-01-25
2598     49                            2015-01-18
2599     50                            2015-01-11
2600     51                            2015-01-04
2601      0                            2015-12-27
2602      1                            2015-12-20
2603      2                            2015-12-13
2604      3                            2015-12-06
2605      4                            2015-11-29
2606      5                            2015-11-22
2607      6                            2015-11-15
2608      7                            2015-11-08
2609      8                            2015-11-01
2610      9                            2015-10-25
2611     10                            2015-10-18
2612     11                            2015-10-11
2613     12                            2015-10-04
2614     13                            2015-09-27
2615     14                            2015-09-20
2616     15                            2015-09-13
2617     16                            2015-09-06
2618     17                            2015-08-30
2619     18                            2015-08-23
2620     19                            2015-08-16
2621     20                            2015-08-09
2622     21                            2015-08-02
2623     22                            2015-07-26
2624     23                            2015-07-19
2625     24                            2015-07-12
2626     25                            2015-07-05
2627     26                            2015-06-28
2628     27                            2015-06-21
2629     28                            2015-06-14
2630     29                            2015-06-07
2631     30                            2015-05-31
2632     31                            2015-05-24
2633     32                            2015-05-17
2634     33                            2015-05-10
2635     34                            2015-05-03
2636     35                            2015-04-26
2637     36                            2015-04-19
2638     37                            2015-04-12
2639     38                            2015-04-05
2640     39                            2015-03-29
2641     40                            2015-03-22
2642     41                            2015-03-15
2643     42                            2015-03-08
2644     43                            2015-03-01
2645     44                            2015-02-22
2646     45                            2015-02-15
2647     46                            2015-02-08
2648     47                            2015-02-01
2649     48                            2015-01-25
2650     49                            2015-01-18
2651     50                            2015-01-11
2652     51                            2015-01-04
2653      0                            2015-12-27
2654      1                            2015-12-20
2655      2                            2015-12-13
2656      3                            2015-12-06
2657      4                            2015-11-29
2658      5                            2015-11-22
2659      6                            2015-11-15
2660      7                            2015-11-08
2661      8                            2015-11-01
2662      9                            2015-10-25
2663     10                            2015-10-18
2664     11                            2015-10-11
2665     12                            2015-10-04
2666     13                            2015-09-27
2667     14                            2015-09-20
2668     15                            2015-09-13
2669     16                            2015-09-06
2670     17                            2015-08-30
2671     18                            2015-08-23
2672     19                            2015-08-16
2673     20                            2015-08-09
2674     21                            2015-08-02
2675     22                            2015-07-26
2676     23                            2015-07-19
2677     24                            2015-07-12
2678     25                            2015-07-05
2679     26                            2015-06-28
2680     27                            2015-06-21
2681     28                            2015-06-14
2682     29                            2015-06-07
2683     30                            2015-05-31
2684     31                            2015-05-24
2685     32                            2015-05-17
2686     33                            2015-05-10
2687     34                            2015-05-03
2688     35                            2015-04-26
2689     36                            2015-04-19
2690     37                            2015-04-12
2691     38                            2015-04-05
2692     39                            2015-03-29
2693     40                            2015-03-22
2694     41                            2015-03-15
2695     42                            2015-03-08
2696     43                            2015-03-01
2697     44                            2015-02-22
2698     45                            2015-02-15
2699     46                            2015-02-08
2700     47                            2015-02-01
2701     48                            2015-01-25
2702     49                            2015-01-18
2703     50                            2015-01-11
2704     51                            2015-01-04
2705      0                            2015-12-27
2706      1                            2015-12-20
2707      2                            2015-12-13
2708      3                            2015-12-06
2709      4                            2015-11-29
2710      5                            2015-11-22
2711      6                            2015-11-15
2712      7                            2015-11-08
2713      8                            2015-11-01
2714      9                            2015-10-25
2715     10                            2015-10-18
2716     11                            2015-10-11
2717     12                            2015-10-04
2718     13                            2015-09-27
2719     14                            2015-09-20
2720     15                            2015-09-13
2721     16                            2015-09-06
2722     17                            2015-08-30
2723     18                            2015-08-23
2724     19                            2015-08-16
2725     20                            2015-08-09
2726     21                            2015-08-02
2727     22                            2015-07-26
2728     23                            2015-07-19
2729     24                            2015-07-12
2730     25                            2015-07-05
2731     26                            2015-06-28
2732     27                            2015-06-21
2733     28                            2015-06-14
2734     29                            2015-06-07
2735     30                            2015-05-31
2736     31                            2015-05-24
2737     32                            2015-05-17
2738     33                            2015-05-10
2739     34                            2015-05-03
2740     35                            2015-04-26
2741     36                            2015-04-19
2742     37                            2015-04-12
2743     38                            2015-04-05
2744     39                            2015-03-29
2745     40                            2015-03-22
2746     41                            2015-03-15
2747     42                            2015-03-08
2748     43                            2015-03-01
2749     44                            2015-02-22
2750     45                            2015-02-15
2751     46                            2015-02-08
2752     47                            2015-02-01
2753     48                            2015-01-25
2754     49                            2015-01-18
2755     50                            2015-01-11
2756     51                            2015-01-04
2757      0                            2015-12-27
2758      1                            2015-12-20
2759      2                            2015-12-13
2760      3                            2015-12-06
2761      4                            2015-11-29
2762      5                            2015-11-22
2763      6                            2015-11-15
2764      7                            2015-11-08
2765      8                            2015-11-01
2766      9                            2015-10-25
2767     10                            2015-10-18
2768     11                            2015-10-11
2769     12                            2015-10-04
2770     13                            2015-09-27
2771     14                            2015-09-20
2772     15                            2015-09-13
2773     16                            2015-09-06
2774     17                            2015-08-30
2775     18                            2015-08-23
2776     19                            2015-08-16
2777     20                            2015-08-09
2778     21                            2015-08-02
2779     22                            2015-07-26
2780     23                            2015-07-19
2781     24                            2015-07-12
2782     25                            2015-07-05
2783     26                            2015-06-28
2784     27                            2015-06-21
2785     28                            2015-06-14
2786     29                            2015-06-07
2787     30                            2015-05-31
2788     31                            2015-05-24
2789     32                            2015-05-17
2790     33                            2015-05-10
2791     34                            2015-05-03
2792     35                            2015-04-26
2793     36                            2015-04-19
2794     37                            2015-04-12
2795     38                            2015-04-05
2796     39                            2015-03-29
2797     40                            2015-03-22
2798     41                            2015-03-15
2799     42                            2015-03-08
2800     43                            2015-03-01
2801     44                            2015-02-22
2802     45                            2015-02-15
2803     46                            2015-02-08
2804     47                            2015-02-01
2805     48                            2015-01-25
2806     49                            2015-01-18
2807     50                            2015-01-11
2808     51                            2015-01-04
2809      0                            2016-12-25
2810      1                            2016-12-18
2811      2                            2016-12-11
2812      3                            2016-12-04
2813      4                            2016-11-27
2814      5                            2016-11-20
2815      6                            2016-11-13
2816      7                            2016-11-06
2817      8                            2016-10-30
2818      9                            2016-10-23
2819     10                            2016-10-16
2820     11                            2016-10-09
2821     12                            2016-10-02
2822     13                            2016-09-25
2823     14                            2016-09-18
2824     15                            2016-09-11
2825     16                            2016-09-04
2826     17                            2016-08-28
2827     18                            2016-08-21
2828     19                            2016-08-14
2829     20                            2016-08-07
2830     21                            2016-07-31
2831     22                            2016-07-24
2832     23                            2016-07-17
2833     24                            2016-07-10
2834     25                            2016-07-03
2835     26                            2016-06-26
2836     27                            2016-06-19
2837     28                            2016-06-12
2838     29                            2016-06-05
2839     30                            2016-05-29
2840     31                            2016-05-22
2841     32                            2016-05-15
2842     33                            2016-05-08
2843     34                            2016-05-01
2844     35                            2016-04-24
2845     36                            2016-04-17
2846     37                            2016-04-10
2847     38                            2016-04-03
2848     39                            2016-03-27
2849     40                            2016-03-20
2850     41                            2016-03-13
2851     42                            2016-03-06
2852     43                            2016-02-28
2853     44                            2016-02-21
2854     45                            2016-02-14
2855     46                            2016-02-07
2856     47                            2016-01-31
2857     48                            2016-01-24
2858     49                            2016-01-17
2859     50                            2016-01-10
2860     51                            2016-01-03
2861      0                            2016-12-25
2862      1                            2016-12-18
2863      2                            2016-12-11
2864      3                            2016-12-04
2865      4                            2016-11-27
2866      5                            2016-11-20
2867      6                            2016-11-13
2868      7                            2016-11-06
2869      8                            2016-10-30
2870      9                            2016-10-23
2871     10                            2016-10-16
2872     11                            2016-10-09
2873     12                            2016-10-02
2874     13                            2016-09-25
2875     14                            2016-09-18
2876     15                            2016-09-11
2877     16                            2016-09-04
2878     17                            2016-08-28
2879     18                            2016-08-21
2880     19                            2016-08-14
2881     20                            2016-08-07
2882     21                            2016-07-31
2883     22                            2016-07-24
2884     23                            2016-07-17
2885     24                            2016-07-10
2886     25                            2016-07-03
2887     26                            2016-06-26
2888     27                            2016-06-19
2889     28                            2016-06-12
2890     29                            2016-06-05
2891     30                            2016-05-29
2892     31                            2016-05-22
2893     32                            2016-05-15
2894     33                            2016-05-08
2895     34                            2016-05-01
2896     35                            2016-04-24
2897     36                            2016-04-17
2898     37                            2016-04-10
2899     38                            2016-04-03
2900     39                            2016-03-27
2901     40                            2016-03-20
2902     41                            2016-03-13
2903     42                            2016-03-06
2904     43                            2016-02-28
2905     44                            2016-02-21
2906     45                            2016-02-14
2907     46                            2016-02-07
2908     47                            2016-01-31
2909     48                            2016-01-24
2910     49                            2016-01-17
2911     50                            2016-01-10
2912     51                            2016-01-03
2913      0                            2016-12-25
2914      1                            2016-12-18
2915      2                            2016-12-11
2916      3                            2016-12-04
2917      4                            2016-11-27
2918      5                            2016-11-20
2919      6                            2016-11-13
2920      7                            2016-11-06
2921      8                            2016-10-30
2922      9                            2016-10-23
2923     10                            2016-10-16
2924     11                            2016-10-09
2925     12                            2016-10-02
2926     13                            2016-09-25
2927     14                            2016-09-18
2928     15                            2016-09-11
2929     16                            2016-09-04
2930     17                            2016-08-28
2931     18                            2016-08-21
2932     19                            2016-08-14
2933     20                            2016-08-07
2934     21                            2016-07-31
2935     22                            2016-07-24
2936     23                            2016-07-17
2937     24                            2016-07-10
2938     25                            2016-07-03
2939     26                            2016-06-26
2940     27                            2016-06-19
2941     28                            2016-06-12
2942     29                            2016-06-05
2943     30                            2016-05-29
2944     31                            2016-05-22
2945     32                            2016-05-15
2946     33                            2016-05-08
2947     34                            2016-05-01
2948     35                            2016-04-24
2949     36                            2016-04-17
2950     37                            2016-04-10
2951     38                            2016-04-03
2952     39                            2016-03-27
2953     40                            2016-03-20
2954     41                            2016-03-13
2955     42                            2016-03-06
2956     43                            2016-02-28
2957     44                            2016-02-21
2958     45                            2016-02-14
2959     46                            2016-02-07
2960     47                            2016-01-31
2961     48                            2016-01-24
2962     49                            2016-01-17
2963     50                            2016-01-10
2964     51                            2016-01-03
2965      0                            2016-12-25
2966      1                            2016-12-18
2967      2                            2016-12-11
2968      3                            2016-12-04
2969      4                            2016-11-27
2970      5                            2016-11-20
2971      6                            2016-11-13
2972      7                            2016-11-06
2973      8                            2016-10-30
2974      9                            2016-10-23
2975     10                            2016-10-16
2976     11                            2016-10-09
2977     12                            2016-10-02
2978     13                            2016-09-25
2979     14                            2016-09-18
2980     15                            2016-09-11
2981     16                            2016-09-04
2982     17                            2016-08-28
2983     18                            2016-08-21
2984     19                            2016-08-14
2985     20                            2016-08-07
2986     21                            2016-07-31
2987     22                            2016-07-24
2988     23                            2016-07-17
2989     24                            2016-07-10
2990     25                            2016-07-03
2991     26                            2016-06-26
2992     27                            2016-06-19
2993     28                            2016-06-12
2994     29                            2016-06-05
2995     30                            2016-05-29
2996     31                            2016-05-22
2997     32                            2016-05-15
2998     33                            2016-05-08
2999     34                            2016-05-01
3000     35                            2016-04-24
3001     36                            2016-04-17
3002     37                            2016-04-10
3003     38                            2016-04-03
3004     39                            2016-03-27
3005     40                            2016-03-20
3006     41                            2016-03-13
3007     42                            2016-03-06
3008     43                            2016-02-28
3009     44                            2016-02-21
3010     45                            2016-02-14
3011     46                            2016-02-07
3012     47                            2016-01-31
3013     48                            2016-01-24
3014     49                            2016-01-17
3015     50                            2016-01-10
3016     51                            2016-01-03
3017      0                            2016-12-25
3018      1                            2016-12-18
3019      2                            2016-12-11
3020      3                            2016-12-04
3021      4                            2016-11-27
3022      5                            2016-11-20
3023      6                            2016-11-13
3024      7                            2016-11-06
3025      8                            2016-10-30
3026      9                            2016-10-23
3027     10                            2016-10-16
3028     11                            2016-10-09
3029     12                            2016-10-02
3030     13                            2016-09-25
3031     14                            2016-09-18
3032     15                            2016-09-11
3033     16                            2016-09-04
3034     17                            2016-08-28
3035     18                            2016-08-21
3036     19                            2016-08-14
3037     20                            2016-08-07
3038     21                            2016-07-31
3039     22                            2016-07-24
3040     23                            2016-07-17
3041     24                            2016-07-10
3042     25                            2016-07-03
3043     26                            2016-06-26
3044     27                            2016-06-19
3045     28                            2016-06-12
3046     29                            2016-06-05
3047     30                            2016-05-29
3048     31                            2016-05-22
3049     32                            2016-05-15
3050     33                            2016-05-08
3051     34                            2016-05-01
3052     35                            2016-04-24
3053     36                            2016-04-17
3054     37                            2016-04-10
3055     38                            2016-04-03
3056     39                            2016-03-27
3057     40                            2016-03-20
3058     41                            2016-03-13
3059     42                            2016-03-06
3060     43                            2016-02-28
3061     44                            2016-02-21
3062     45                            2016-02-14
3063     46                            2016-02-07
3064     47                            2016-01-31
3065     48                            2016-01-24
3066     49                            2016-01-17
3067     50                            2016-01-10
3068     51                            2016-01-03
3069      0                            2016-12-25
3070      1                            2016-12-18
3071      2                            2016-12-11
3072      3                            2016-12-04
3073      4                            2016-11-27
3074      5                            2016-11-20
3075      6                            2016-11-13
3076      7                            2016-11-06
3077      8                            2016-10-30
3078      9                            2016-10-23
3079     10                            2016-10-16
3080     11                            2016-10-09
3081     12                            2016-10-02
3082     13                            2016-09-25
3083     14                            2016-09-18
3084     15                            2016-09-11
3085     16                            2016-09-04
3086     17                            2016-08-28
3087     18                            2016-08-21
3088     19                            2016-08-14
3089     20                            2016-08-07
3090     21                            2016-07-31
3091     22                            2016-07-24
3092     23                            2016-07-17
3093     24                            2016-07-10
3094     25                            2016-07-03
3095     26                            2016-06-26
3096     27                            2016-06-19
3097     28                            2016-06-12
3098     29                            2016-06-05
3099     30                            2016-05-29
3100     31                            2016-05-22
3101     32                            2016-05-15
3102     33                            2016-05-08
3103     34                            2016-05-01
3104     35                            2016-04-24
3105     36                            2016-04-17
3106     37                            2016-04-10
3107     38                            2016-04-03
3108     39                            2016-03-27
3109     40                            2016-03-20
3110     41                            2016-03-13
3111     42                            2016-03-06
3112     43                            2016-02-28
3113     44                            2016-02-21
3114     45                            2016-02-14
3115     46                            2016-02-07
3116     47                            2016-01-31
3117     48                            2016-01-24
3118     49                            2016-01-17
3119     50                            2016-01-10
3120     51                            2016-01-03
3121      0                            2016-12-25
3122      1                            2016-12-18
3123      2                            2016-12-11
3124      3                            2016-12-04
3125      4                            2016-11-27
3126      5                            2016-11-20
3127      6                            2016-11-13
3128      7                            2016-11-06
3129      8                            2016-10-30
3130      9                            2016-10-23
3131     10                            2016-10-16
3132     11                            2016-10-09
3133     12                            2016-10-02
3134     13                            2016-09-25
3135     14                            2016-09-18
3136     15                            2016-09-11
3137     16                            2016-09-04
3138     17                            2016-08-28
3139     18                            2016-08-21
3140     19                            2016-08-14
3141     20                            2016-08-07
3142     21                            2016-07-31
3143     22                            2016-07-24
3144     23                            2016-07-17
3145     24                            2016-07-10
3146     25                            2016-07-03
3147     26                            2016-06-26
3148     27                            2016-06-19
3149     28                            2016-06-12
3150     29                            2016-06-05
3151     30                            2016-05-29
3152     31                            2016-05-22
3153     32                            2016-05-15
3154     33                            2016-05-08
3155     34                            2016-05-01
3156     35                            2016-04-24
3157     36                            2016-04-17
3158     37                            2016-04-10
3159     38                            2016-04-03
3160     39                            2016-03-27
3161     40                            2016-03-20
3162     41                            2016-03-13
3163     42                            2016-03-06
3164     43                            2016-02-28
3165     44                            2016-02-21
3166     45                            2016-02-14
3167     46                            2016-02-07
3168     47                            2016-01-31
3169     48                            2016-01-24
3170     49                            2016-01-17
3171     50                            2016-01-10
3172     51                            2016-01-03
3173      0                            2016-12-25
3174      1                            2016-12-18
3175      2                            2016-12-11
3176      3                            2016-12-04
3177      4                            2016-11-27
3178      5                            2016-11-20
3179      6                            2016-11-13
3180      7                            2016-11-06
3181      8                            2016-10-30
3182      9                            2016-10-23
3183     10                            2016-10-16
3184     11                            2016-10-09
3185     12                            2016-10-02
3186     13                            2016-09-25
3187     14                            2016-09-18
3188     15                            2016-09-11
3189     16                            2016-09-04
3190     17                            2016-08-28
3191     18                            2016-08-21
3192     19                            2016-08-14
3193     20                            2016-08-07
3194     21                            2016-07-31
3195     22                            2016-07-24
3196     23                            2016-07-17
3197     24                            2016-07-10
3198     25                            2016-07-03
3199     26                            2016-06-26
3200     27                            2016-06-19
3201     28                            2016-06-12
3202     29                            2016-06-05
3203     30                            2016-05-29
3204     31                            2016-05-22
3205     32                            2016-05-15
3206     33                            2016-05-08
3207     34                            2016-05-01
3208     35                            2016-04-24
3209     36                            2016-04-17
3210     37                            2016-04-10
3211     38                            2016-04-03
3212     39                            2016-03-27
3213     40                            2016-03-20
3214     41                            2016-03-13
3215     42                            2016-03-06
3216     43                            2016-02-28
3217     44                            2016-02-21
3218     45                            2016-02-14
3219     46                            2016-02-07
3220     47                            2016-01-31
3221     48                            2016-01-24
3222     49                            2016-01-17
3223     50                            2016-01-10
3224     51                            2016-01-03
3225      0                            2016-12-25
3226      1                            2016-12-18
3227      2                            2016-12-11
3228      3                            2016-12-04
3229      4                            2016-11-27
3230      5                            2016-11-20
3231      6                            2016-11-13
3232      7                            2016-11-06
3233      8                            2016-10-30
3234      9                            2016-10-23
3235     10                            2016-10-16
3236     11                            2016-10-09
3237     12                            2016-10-02
3238     13                            2016-09-25
3239     14                            2016-09-18
3240     15                            2016-09-11
3241     16                            2016-09-04
3242     17                            2016-08-28
3243     18                            2016-08-21
3244     19                            2016-08-14
3245     20                            2016-08-07
3246     21                            2016-07-31
3247     22                            2016-07-24
3248     23                            2016-07-17
3249     24                            2016-07-10
3250     25                            2016-07-03
3251     26                            2016-06-26
3252     27                            2016-06-19
3253     28                            2016-06-12
3254     29                            2016-06-05
3255     30                            2016-05-29
3256     31                            2016-05-22
3257     32                            2016-05-15
3258     33                            2016-05-08
3259     34                            2016-05-01
3260     35                            2016-04-24
3261     36                            2016-04-17
3262     37                            2016-04-10
3263     38                            2016-04-03
3264     39                            2016-03-27
3265     40                            2016-03-20
3266     41                            2016-03-13
3267     42                            2016-03-06
3268     43                            2016-02-28
3269     44                            2016-02-21
3270     45                            2016-02-14
3271     46                            2016-02-07
3272     47                            2016-01-31
3273     48                            2016-01-24
3274     49                            2016-01-17
3275     50                            2016-01-10
3276     51                            2016-01-03
3277      0                            2016-12-25
3278      1                            2016-12-18
3279      2                            2016-12-11
3280      3                            2016-12-04
3281      4                            2016-11-27
3282      5                            2016-11-20
3283      6                            2016-11-13
3284      7                            2016-11-06
3285      8                            2016-10-30
3286      9                            2016-10-23
3287     10                            2016-10-16
3288     11                            2016-10-09
3289     12                            2016-10-02
3290     13                            2016-09-25
3291     14                            2016-09-18
3292     15                            2016-09-11
3293     16                            2016-09-04
3294     17                            2016-08-28
3295     18                            2016-08-21
3296     19                            2016-08-14
3297     20                            2016-08-07
3298     21                            2016-07-31
3299     22                            2016-07-24
3300     23                            2016-07-17
3301     24                            2016-07-10
3302     25                            2016-07-03
3303     26                            2016-06-26
3304     27                            2016-06-19
3305     28                            2016-06-12
3306     29                            2016-06-05
3307     30                            2016-05-29
3308     31                            2016-05-22
3309     32                            2016-05-15
3310     33                            2016-05-08
3311     34                            2016-05-01
3312     35                            2016-04-24
3313     36                            2016-04-17
3314     37                            2016-04-10
3315     38                            2016-04-03
3316     39                            2016-03-27
3317     40                            2016-03-20
3318     41                            2016-03-13
3319     42                            2016-03-06
3320     43                            2016-02-28
3321     44                            2016-02-21
3322     45                            2016-02-14
3323     46                            2016-02-07
3324     47                            2016-01-31
3325     48                            2016-01-24
3326     49                            2016-01-17
3327     50                            2016-01-10
3328     51                            2016-01-03
3329      0                            2016-12-25
3330      1                            2016-12-18
3331      2                            2016-12-11
3332      3                            2016-12-04
3333      4                            2016-11-27
3334      5                            2016-11-20
3335      6                            2016-11-13
3336      7                            2016-11-06
3337      8                            2016-10-30
3338      9                            2016-10-23
3339     10                            2016-10-16
3340     11                            2016-10-09
3341     12                            2016-10-02
3342     13                            2016-09-25
3343     14                            2016-09-18
3344     15                            2016-09-11
3345     16                            2016-09-04
3346     17                            2016-08-28
3347     18                            2016-08-21
3348     19                            2016-08-14
3349     20                            2016-08-07
3350     21                            2016-07-31
3351     22                            2016-07-24
3352     23                            2016-07-17
3353     24                            2016-07-10
3354     25                            2016-07-03
3355     26                            2016-06-26
3356     27                            2016-06-19
3357     28                            2016-06-12
3358     29                            2016-06-05
3359     30                            2016-05-29
3360     31                            2016-05-22
3361     32                            2016-05-15
3362     33                            2016-05-08
3363     34                            2016-05-01
3364     35                            2016-04-24
3365     36                            2016-04-17
3366     37                            2016-04-10
3367     38                            2016-04-03
3368     39                            2016-03-27
3369     40                            2016-03-20
3370     41                            2016-03-13
3371     42                            2016-03-06
3372     43                            2016-02-28
3373     44                            2016-02-21
3374     45                            2016-02-14
3375     46                            2016-02-07
3376     47                            2016-01-31
3377     48                            2016-01-24
3378     49                            2016-01-17
3379     50                            2016-01-10
3380     51                            2016-01-03
3381      0                            2016-12-25
3382      1                            2016-12-18
3383      2                            2016-12-11
3384      3                            2016-12-04
3385      4                            2016-11-27
3386      5                            2016-11-20
3387      6                            2016-11-13
3388      7                            2016-11-06
3389      8                            2016-10-30
3390      9                            2016-10-23
3391     10                            2016-10-16
3392     11                            2016-10-09
3393     12                            2016-10-02
3394     13                            2016-09-25
3395     14                            2016-09-18
3396     15                            2016-09-11
3397     16                            2016-09-04
3398     17                            2016-08-28
3399     18                            2016-08-21
3400     19                            2016-08-14
3401     20                            2016-08-07
3402     21                            2016-07-31
3403     22                            2016-07-24
3404     23                            2016-07-17
3405     24                            2016-07-10
3406     25                            2016-07-03
3407     26                            2016-06-26
3408     27                            2016-06-19
3409     28                            2016-06-12
3410     29                            2016-06-05
3411     30                            2016-05-29
3412     31                            2016-05-22
3413     32                            2016-05-15
3414     33                            2016-05-08
3415     34                            2016-05-01
3416     35                            2016-04-24
3417     36                            2016-04-17
3418     37                            2016-04-10
3419     38                            2016-04-03
3420     39                            2016-03-27
3421     40                            2016-03-20
3422     41                            2016-03-13
3423     42                            2016-03-06
3424     43                            2016-02-28
3425     44                            2016-02-21
3426     45                            2016-02-14
3427     46                            2016-02-07
3428     47                            2016-01-31
3429     48                            2016-01-24
3430     49                            2016-01-17
3431     50                            2016-01-10
3432     51                            2016-01-03
3433      0                            2016-12-25
3434      1                            2016-12-18
3435      2                            2016-12-11
3436      3                            2016-12-04
3437      4                            2016-11-27
3438      5                            2016-11-20
3439      6                            2016-11-13
3440      7                            2016-11-06
3441      8                            2016-10-30
3442      9                            2016-10-23
3443     10                            2016-10-16
3444     11                            2016-10-09
3445     12                            2016-10-02
3446     13                            2016-09-25
3447     14                            2016-09-18
3448     15                            2016-09-11
3449     16                            2016-09-04
3450     17                            2016-08-28
3451     18                            2016-08-21
3452     19                            2016-08-14
3453     20                            2016-08-07
3454     21                            2016-07-31
3455     22                            2016-07-24
3456     23                            2016-07-17
3457     24                            2016-07-10
3458     25                            2016-07-03
3459     26                            2016-06-26
3460     27                            2016-06-19
3461     28                            2016-06-12
3462     29                            2016-06-05
3463     30                            2016-05-29
3464     31                            2016-05-22
3465     32                            2016-05-15
3466     33                            2016-05-08
3467     34                            2016-05-01
3468     35                            2016-04-24
3469     36                            2016-04-17
3470     37                            2016-04-10
3471     38                            2016-04-03
3472     39                            2016-03-27
3473     40                            2016-03-20
3474     41                            2016-03-13
3475     42                            2016-03-06
3476     43                            2016-02-28
3477     44                            2016-02-21
3478     45                            2016-02-14
3479     46                            2016-02-07
3480     47                            2016-01-31
3481     48                            2016-01-24
3482     49                            2016-01-17
3483     50                            2016-01-10
3484     51                            2016-01-03
3485      0                            2016-12-25
3486      1                            2016-12-18
3487      2                            2016-12-11
3488      3                            2016-12-04
3489      4                            2016-11-27
3490      5                            2016-11-20
3491      6                            2016-11-13
3492      7                            2016-11-06
3493      8                            2016-10-30
3494      9                            2016-10-23
3495     10                            2016-10-16
3496     11                            2016-10-09
3497     12                            2016-10-02
3498     13                            2016-09-25
3499     14                            2016-09-18
3500     15                            2016-09-11
3501     16                            2016-09-04
3502     17                            2016-08-28
3503     18                            2016-08-21
3504     19                            2016-08-14
3505     20                            2016-08-07
3506     21                            2016-07-31
3507     22                            2016-07-24
3508     23                            2016-07-17
3509     24                            2016-07-10
3510     25                            2016-07-03
3511     26                            2016-06-26
3512     27                            2016-06-19
3513     28                            2016-06-12
3514     29                            2016-06-05
3515     30                            2016-05-29
3516     31                            2016-05-22
3517     32                            2016-05-15
3518     33                            2016-05-08
3519     34                            2016-05-01
3520     35                            2016-04-24
3521     36                            2016-04-17
3522     37                            2016-04-10
3523     38                            2016-04-03
3524     39                            2016-03-27
3525     40                            2016-03-20
3526     41                            2016-03-13
3527     42                            2016-03-06
3528     43                            2016-02-28
3529     44                            2016-02-21
3530     45                            2016-02-14
3531     46                            2016-02-07
3532     47                            2016-01-31
3533     48                            2016-01-24
3534     49                            2016-01-17
3535     50                            2016-01-10
3536     51                            2016-01-03
3537      0                            2016-12-25
3538      1                            2016-12-18
3539      2                            2016-12-11
3540      3                            2016-12-04
3541      4                            2016-11-27
3542      5                            2016-11-20
3543      6                            2016-11-13
3544      7                            2016-11-06
3545      8                            2016-10-30
3546      9                            2016-10-23
3547     10                            2016-10-16
3548     11                            2016-10-09
3549     12                            2016-10-02
3550     13                            2016-09-25
3551     14                            2016-09-18
3552     15                            2016-09-11
3553     16                            2016-09-04
3554     17                            2016-08-28
3555     18                            2016-08-21
3556     19                            2016-08-14
3557     20                            2016-08-07
3558     21                            2016-07-31
3559     22                            2016-07-24
3560     23                            2016-07-17
3561     24                            2016-07-10
3562     25                            2016-07-03
3563     26                            2016-06-26
3564     27                            2016-06-19
3565     28                            2016-06-12
3566     29                            2016-06-05
3567     30                            2016-05-29
3568     31                            2016-05-22
3569     32                            2016-05-15
3570     33                            2016-05-08
3571     34                            2016-05-01
3572     35                            2016-04-24
3573     36                            2016-04-17
3574     37                            2016-04-10
3575     38                            2016-04-03
3576     39                            2016-03-27
3577     40                            2016-03-20
3578     41                            2016-03-13
3579     42                            2016-03-06
3580     43                            2016-02-28
3581     44                            2016-02-21
3582     45                            2016-02-14
3583     46                            2016-02-07
3584     47                            2016-01-31
3585     48                            2016-01-24
3586     49                            2016-01-17
3587     50                            2016-01-10
3588     51                            2016-01-03
3589      0                            2016-12-25
3590      1                            2016-12-18
3591      2                            2016-12-11
3592      3                            2016-12-04
3593      4                            2016-11-27
3594      5                            2016-11-20
3595      6                            2016-11-13
3596      7                            2016-11-06
3597      8                            2016-10-30
3598      9                            2016-10-23
3599     10                            2016-10-16
3600     11                            2016-10-09
3601     12                            2016-10-02
3602     13                            2016-09-25
3603     14                            2016-09-18
3604     15                            2016-09-11
3605     16                            2016-09-04
3606     17                            2016-08-28
3607     18                            2016-08-21
3608     19                            2016-08-14
3609     20                            2016-08-07
3610     21                            2016-07-31
3611     22                            2016-07-24
3612     23                            2016-07-17
3613     24                            2016-07-10
3614     25                            2016-07-03
3615     26                            2016-06-26
3616     27                            2016-06-19
3617     28                            2016-06-12
3618     29                            2016-06-05
3619     30                            2016-05-29
3620     31                            2016-05-22
3621     32                            2016-05-15
3622     33                            2016-05-08
3623     34                            2016-05-01
3624     35                            2016-04-24
3625     36                            2016-04-17
3626     37                            2016-04-10
3627     38                            2016-04-03
3628     39                            2016-03-27
3629     40                            2016-03-20
3630     41                            2016-03-13
3631     42                            2016-03-06
3632     43                            2016-02-28
3633     44                            2016-02-21
3634     45                            2016-02-14
3635     46                            2016-02-07
3636     47                            2016-01-31
3637     48                            2016-01-24
3638     49                            2016-01-17
3639     50                            2016-01-10
3640     51                            2016-01-03
3641      0                            2016-12-25
3642      1                            2016-12-18
3643      2                            2016-12-11
3644      3                            2016-12-04
3645      4                            2016-11-27
3646      5                            2016-11-20
3647      6                            2016-11-13
3648      7                            2016-11-06
3649      8                            2016-10-30
3650      9                            2016-10-23
3651     10                            2016-10-16
3652     11                            2016-10-09
3653     12                            2016-10-02
3654     13                            2016-09-25
3655     14                            2016-09-18
3656     15                            2016-09-11
3657     16                            2016-09-04
3658     17                            2016-08-28
3659     18                            2016-08-21
3660     19                            2016-08-14
3661     20                            2016-08-07
3662     21                            2016-07-31
3663     22                            2016-07-24
3664     23                            2016-07-17
3665     24                            2016-07-10
3666     25                            2016-07-03
3667     26                            2016-06-26
3668     27                            2016-06-19
3669     28                            2016-06-12
3670     29                            2016-06-05
3671     30                            2016-05-29
3672     31                            2016-05-22
3673     32                            2016-05-15
3674     33                            2016-05-08
3675     34                            2016-05-01
3676     35                            2016-04-24
3677     36                            2016-04-17
3678     37                            2016-04-10
3679     38                            2016-04-03
3680     39                            2016-03-27
3681     40                            2016-03-20
3682     41                            2016-03-13
3683     42                            2016-03-06
3684     43                            2016-02-28
3685     44                            2016-02-21
3686     45                            2016-02-14
3687     46                            2016-02-07
3688     47                            2016-01-31
3689     48                            2016-01-24
3690     49                            2016-01-17
3691     50                            2016-01-10
3692     51                            2016-01-03
3693      0                            2016-12-25
3694      1                            2016-12-18
3695      2                            2016-12-11
3696      3                            2016-12-04
3697      4                            2016-11-27
3698      5                            2016-11-20
3699      6                            2016-11-13
3700      7                            2016-11-06
3701      8                            2016-10-30
3702      9                            2016-10-23
3703     10                            2016-10-16
3704     11                            2016-10-09
3705     12                            2016-10-02
3706     13                            2016-09-25
3707     14                            2016-09-18
3708     15                            2016-09-11
3709     16                            2016-09-04
3710     17                            2016-08-28
3711     18                            2016-08-21
3712     19                            2016-08-14
3713     20                            2016-08-07
3714     21                            2016-07-31
3715     22                            2016-07-24
3716     23                            2016-07-17
3717     24                            2016-07-10
3718     25                            2016-07-03
3719     26                            2016-06-26
3720     27                            2016-06-19
3721     28                            2016-06-12
3722     29                            2016-06-05
3723     30                            2016-05-29
3724     31                            2016-05-22
3725     32                            2016-05-15
3726     33                            2016-05-08
3727     34                            2016-05-01
3728     35                            2016-04-24
3729     36                            2016-04-17
3730     37                            2016-04-10
3731     38                            2016-04-03
3732     39                            2016-03-27
3733     40                            2016-03-20
3734     41                            2016-03-13
3735     42                            2016-03-06
3736     43                            2016-02-28
3737     44                            2016-02-21
3738     45                            2016-02-14
3739     46                            2016-02-07
3740     47                            2016-01-31
3741     48                            2016-01-24
3742     49                            2016-01-17
3743     50                            2016-01-10
3744     51                            2016-01-03
3745      0                            2016-12-25
3746      1                            2016-12-18
3747      2                            2016-12-11
3748      3                            2016-12-04
3749      4                            2016-11-27
3750      5                            2016-11-20
3751      6                            2016-11-13
3752      7                            2016-11-06
3753      8                            2016-10-30
3754      9                            2016-10-23
3755     10                            2016-10-16
3756     11                            2016-10-09
3757     12                            2016-10-02
3758     13                            2016-09-25
3759     14                            2016-09-18
3760     15                            2016-09-11
3761     16                            2016-09-04
3762     17                            2016-08-28
3763     18                            2016-08-21
3764     19                            2016-08-14
3765     20                            2016-08-07
3766     21                            2016-07-31
3767     22                            2016-07-24
3768     23                            2016-07-17
3769     24                            2016-07-10
3770     25                            2016-07-03
3771     26                            2016-06-26
3772     27                            2016-06-19
3773     28                            2016-06-12
3774     29                            2016-06-05
3775     30                            2016-05-29
3776     31                            2016-05-22
3777     32                            2016-05-15
3778     33                            2016-05-08
3779     34                            2016-05-01
3780     35                            2016-04-24
3781     36                            2016-04-17
3782     37                            2016-04-10
3783     38                            2016-04-03
3784     39                            2016-03-27
3785     40                            2016-03-20
3786     41                            2016-03-13
3787     42                            2016-03-06
3788     43                            2016-02-28
3789     44                            2016-02-21
3790     45                            2016-02-14
3791     46                            2016-02-07
3792     47                            2016-01-31
3793     48                            2016-01-24
3794     49                            2016-01-17
3795     50                            2016-01-10
3796     51                            2016-01-03
3797      0                            2016-12-25
3798      1                            2016-12-18
3799      2                            2016-12-11
3800      3                            2016-12-04
3801      4                            2016-11-27
3802      5                            2016-11-20
3803      6                            2016-11-13
3804      7                            2016-11-06
3805      8                            2016-10-30
3806      9                            2016-10-23
3807     10                            2016-10-16
3808     11                            2016-10-09
3809     12                            2016-10-02
3810     13                            2016-09-25
3811     14                            2016-09-18
3812     15                            2016-09-11
3813     16                            2016-09-04
3814     17                            2016-08-28
3815     18                            2016-08-21
3816     19                            2016-08-14
3817     20                            2016-08-07
3818     21                            2016-07-31
3819     22                            2016-07-24
3820     23                            2016-07-17
3821     24                            2016-07-10
3822     25                            2016-07-03
3823     26                            2016-06-26
3824     27                            2016-06-19
3825     28                            2016-06-12
3826     29                            2016-06-05
3827     30                            2016-05-29
3828     31                            2016-05-22
3829     32                            2016-05-15
3830     33                            2016-05-08
3831     34                            2016-05-01
3832     35                            2016-04-24
3833     36                            2016-04-17
3834     37                            2016-04-10
3835     38                            2016-04-03
3836     39                            2016-03-27
3837     40                            2016-03-20
3838     41                            2016-03-13
3839     42                            2016-03-06
3840     43                            2016-02-28
3841     44                            2016-02-21
3842     45                            2016-02-14
3843     46                            2016-02-07
3844     47                            2016-01-31
3845     48                            2016-01-24
3846     49                            2016-01-17
3847     50                            2016-01-10
3848     51                            2016-01-03
3849      0                            2016-12-25
3850      1                            2016-12-18
3851      2                            2016-12-11
3852      3                            2016-12-04
3853      4                            2016-11-27
3854      5                            2016-11-20
3855      6                            2016-11-13
3856      7                            2016-11-06
3857      8                            2016-10-30
3858      9                            2016-10-23
3859     10                            2016-10-16
3860     11                            2016-10-09
3861     12                            2016-10-02
3862     13                            2016-09-25
3863     14                            2016-09-18
3864     15                            2016-09-11
3865     16                            2016-09-04
3866     17                            2016-08-28
3867     18                            2016-08-21
3868     19                            2016-08-14
3869     20                            2016-08-07
3870     21                            2016-07-31
3871     22                            2016-07-24
3872     23                            2016-07-17
3873     24                            2016-07-10
3874     25                            2016-07-03
3875     26                            2016-06-26
3876     27                            2016-06-19
3877     28                            2016-06-12
3878     29                            2016-06-05
3879     30                            2016-05-29
3880     31                            2016-05-22
3881     32                            2016-05-15
3882     33                            2016-05-08
3883     34                            2016-05-01
3884     35                            2016-04-24
3885     36                            2016-04-17
3886     37                            2016-04-10
3887     38                            2016-04-03
3888     39                            2016-03-27
3889     40                            2016-03-20
3890     41                            2016-03-13
3891     42                            2016-03-06
3892     43                            2016-02-28
3893     44                            2016-02-21
3894     45                            2016-02-14
3895     46                            2016-02-07
3896     47                            2016-01-31
3897     48                            2016-01-24
3898     49                            2016-01-17
3899     50                            2016-01-10
3900     51                            2016-01-03
3901      0                            2016-12-25
3902      1                            2016-12-18
3903      2                            2016-12-11
3904      3                            2016-12-04
3905      4                            2016-11-27
3906      5                            2016-11-20
3907      6                            2016-11-13
3908      7                            2016-11-06
3909      8                            2016-10-30
3910      9                            2016-10-23
3911     10                            2016-10-16
3912     11                            2016-10-09
3913     12                            2016-10-02
3914     13                            2016-09-25
3915     14                            2016-09-18
3916     15                            2016-09-11
3917     16                            2016-09-04
3918     17                            2016-08-28
3919     18                            2016-08-21
3920     19                            2016-08-14
3921     20                            2016-08-07
3922     21                            2016-07-31
3923     22                            2016-07-24
3924     23                            2016-07-17
3925     24                            2016-07-10
3926     25                            2016-07-03
3927     26                            2016-06-26
3928     27                            2016-06-19
3929     28                            2016-06-12
3930     29                            2016-06-05
3931     30                            2016-05-29
3932     31                            2016-05-22
3933     32                            2016-05-15
3934     33                            2016-05-08
3935     34                            2016-05-01
3936     35                            2016-04-24
3937     36                            2016-04-17
3938     37                            2016-04-10
3939     38                            2016-04-03
3940     39                            2016-03-27
3941     40                            2016-03-20
3942     41                            2016-03-13
3943     42                            2016-03-06
3944     43                            2016-02-28
3945     44                            2016-02-21
3946     45                            2016-02-14
3947     46                            2016-02-07
3948     47                            2016-01-31
3949     48                            2016-01-24
3950     49                            2016-01-17
3951     50                            2016-01-10
3952     51                            2016-01-03
3953      0                            2016-12-25
3954      1                            2016-12-18
3955      2                            2016-12-11
3956      3                            2016-12-04
3957      4                            2016-11-27
3958      5                            2016-11-20
3959      6                            2016-11-13
3960      7                            2016-11-06
3961      8                            2016-10-30
3962      9                            2016-10-23
3963     10                            2016-10-16
3964     11                            2016-10-09
3965     12                            2016-10-02
3966     13                            2016-09-25
3967     14                            2016-09-18
3968     15                            2016-09-11
3969     16                            2016-09-04
3970     17                            2016-08-28
3971     18                            2016-08-21
3972     19                            2016-08-14
3973     20                            2016-08-07
3974     21                            2016-07-31
3975     22                            2016-07-24
3976     23                            2016-07-17
3977     24                            2016-07-10
3978     25                            2016-07-03
3979     26                            2016-06-26
3980     27                            2016-06-19
3981     28                            2016-06-12
3982     29                            2016-06-05
3983     30                            2016-05-29
3984     31                            2016-05-22
3985     32                            2016-05-15
3986     33                            2016-05-08
3987     34                            2016-05-01
3988     35                            2016-04-24
3989     36                            2016-04-17
3990     37                            2016-04-10
3991     38                            2016-04-03
3992     39                            2016-03-27
3993     40                            2016-03-20
3994     41                            2016-03-13
3995     42                            2016-03-06
3996     43                            2016-02-28
3997     44                            2016-02-21
3998     45                            2016-02-14
3999     46                            2016-02-07
4000     47                            2016-01-31
4001     48                            2016-01-24
4002     49                            2016-01-17
4003     50                            2016-01-10
4004     51                            2016-01-03
4005      0                            2016-12-25
4006      1                            2016-12-18
4007      2                            2016-12-11
4008      3                            2016-12-04
4009      4                            2016-11-27
4010      5                            2016-11-20
4011      6                            2016-11-13
4012      7                            2016-11-06
4013      8                            2016-10-30
4014      9                            2016-10-23
4015     10                            2016-10-16
4016     11                            2016-10-09
4017     12                            2016-10-02
4018     13                            2016-09-25
4019     14                            2016-09-18
4020     15                            2016-09-11
4021     16                            2016-09-04
4022     17                            2016-08-28
4023     18                            2016-08-21
4024     19                            2016-08-14
4025     20                            2016-08-07
4026     21                            2016-07-31
4027     22                            2016-07-24
4028     23                            2016-07-17
4029     24                            2016-07-10
4030     25                            2016-07-03
4031     26                            2016-06-26
4032     27                            2016-06-19
4033     28                            2016-06-12
4034     29                            2016-06-05
4035     30                            2016-05-29
4036     31                            2016-05-22
4037     32                            2016-05-15
4038     33                            2016-05-08
4039     34                            2016-05-01
4040     35                            2016-04-24
4041     36                            2016-04-17
4042     37                            2016-04-10
4043     38                            2016-04-03
4044     39                            2016-03-27
4045     40                            2016-03-20
4046     41                            2016-03-13
4047     42                            2016-03-06
4048     43                            2016-02-28
4049     44                            2016-02-21
4050     45                            2016-02-14
4051     46                            2016-02-07
4052     47                            2016-01-31
4053     48                            2016-01-24
4054     49                            2016-01-17
4055     50                            2016-01-10
4056     51                            2016-01-03
4057      0                            2016-12-25
4058      1                            2016-12-18
4059      2                            2016-12-11
4060      3                            2016-12-04
4061      4                            2016-11-27
4062      5                            2016-11-20
4063      6                            2016-11-13
4064      7                            2016-11-06
4065      8                            2016-10-30
4066      9                            2016-10-23
4067     10                            2016-10-16
4068     11                            2016-10-09
4069     12                            2016-10-02
4070     13                            2016-09-25
4071     14                            2016-09-18
4072     15                            2016-09-11
4073     16                            2016-09-04
4074     17                            2016-08-28
4075     18                            2016-08-21
4076     19                            2016-08-14
4077     20                            2016-08-07
4078     21                            2016-07-31
4079     22                            2016-07-24
4080     23                            2016-07-17
4081     24                            2016-07-10
4082     25                            2016-07-03
4083     26                            2016-06-26
4084     27                            2016-06-19
4085     28                            2016-06-12
4086     29                            2016-06-05
4087     30                            2016-05-29
4088     31                            2016-05-22
4089     32                            2016-05-15
4090     33                            2016-05-08
4091     34                            2016-05-01
4092     35                            2016-04-24
4093     36                            2016-04-17
4094     37                            2016-04-10
4095     38                            2016-04-03
4096     39                            2016-03-27
4097     40                            2016-03-20
4098     41                            2016-03-13
4099     42                            2016-03-06
4100     43                            2016-02-28
4101     44                            2016-02-21
4102     45                            2016-02-14
4103     46                            2016-02-07
4104     47                            2016-01-31
4105     48                            2016-01-24
4106     49                            2016-01-17
4107     50                            2016-01-10
4108     51                            2016-01-03
4109      0                            2016-12-25
4110      1                            2016-12-18
4111      2                            2016-12-11
4112      3                            2016-12-04
4113      4                            2016-11-27
4114      5                            2016-11-20
4115      6                            2016-11-13
4116      7                            2016-11-06
4117      8                            2016-10-30
4118      9                            2016-10-23
4119     10                            2016-10-16
4120     11                            2016-10-09
4121     12                            2016-10-02
4122     13                            2016-09-25
4123     14                            2016-09-18
4124     15                            2016-09-11
4125     16                            2016-09-04
4126     17                            2016-08-28
4127     18                            2016-08-21
4128     19                            2016-08-14
4129     20                            2016-08-07
4130     21                            2016-07-31
4131     22                            2016-07-24
4132     23                            2016-07-17
4133     24                            2016-07-10
4134     25                            2016-07-03
4135     26                            2016-06-26
4136     27                            2016-06-19
4137     28                            2016-06-12
4138     29                            2016-06-05
4139     30                            2016-05-29
4140     31                            2016-05-22
4141     32                            2016-05-15
4142     33                            2016-05-08
4143     34                            2016-05-01
4144     35                            2016-04-24
4145     36                            2016-04-17
4146     37                            2016-04-10
4147     38                            2016-04-03
4148     39                            2016-03-27
4149     40                            2016-03-20
4150     41                            2016-03-13
4151     42                            2016-03-06
4152     43                            2016-02-28
4153     44                            2016-02-21
4154     45                            2016-02-14
4155     46                            2016-02-07
4156     47                            2016-01-31
4157     48                            2016-01-24
4158     49                            2016-01-17
4159     50                            2016-01-10
4160     51                            2016-01-03
4161      0                            2016-12-25
4162      1                            2016-12-18
4163      2                            2016-12-11
4164      3                            2016-12-04
4165      4                            2016-11-27
4166      5                            2016-11-20
4167      6                            2016-11-13
4168      7                            2016-11-06
4169      8                            2016-10-30
4170      9                            2016-10-23
4171     10                            2016-10-16
4172     11                            2016-10-09
4173     12                            2016-10-02
4174     13                            2016-09-25
4175     14                            2016-09-18
4176     15                            2016-09-11
4177     16                            2016-09-04
4178     17                            2016-08-28
4179     18                            2016-08-21
4180     19                            2016-08-14
4181     20                            2016-08-07
4182     21                            2016-07-31
4183     22                            2016-07-24
4184     23                            2016-07-17
4185     24                            2016-07-10
4186     25                            2016-07-03
4187     26                            2016-06-26
4188     27                            2016-06-19
4189     28                            2016-06-12
4190     29                            2016-06-05
4191     30                            2016-05-29
4192     31                            2016-05-22
4193     32                            2016-05-15
4194     33                            2016-05-08
4195     34                            2016-05-01
4196     35                            2016-04-24
4197     36                            2016-04-17
4198     37                            2016-04-10
4199     38                            2016-04-03
4200     39                            2016-03-27
4201     40                            2016-03-20
4202     41                            2016-03-13
4203     42                            2016-03-06
4204     43                            2016-02-28
4205     44                            2016-02-21
4206     45                            2016-02-14
4207     46                            2016-02-07
4208     47                            2016-01-31
4209     48                            2016-01-24
4210     49                            2016-01-17
4211     50                            2016-01-10
4212     51                            2016-01-03
4213      0                            2016-12-25
4214      1                            2016-12-18
4215      2                            2016-12-11
4216      3                            2016-12-04
4217      4                            2016-11-27
4218      5                            2016-11-20
4219      6                            2016-11-13
4220      7                            2016-11-06
4221      8                            2016-10-30
4222      9                            2016-10-23
4223     10                            2016-10-16
4224     11                            2016-10-09
4225     12                            2016-10-02
4226     13                            2016-09-25
4227     14                            2016-09-18
4228     15                            2016-09-11
4229     16                            2016-09-04
4230     17                            2016-08-28
4231     18                            2016-08-21
4232     19                            2016-08-14
4233     20                            2016-08-07
4234     21                            2016-07-31
4235     22                            2016-07-24
4236     23                            2016-07-17
4237     24                            2016-07-10
4238     25                            2016-07-03
4239     26                            2016-06-26
4240     27                            2016-06-19
4241     28                            2016-06-12
4242     29                            2016-06-05
4243     30                            2016-05-29
4244     31                            2016-05-22
4245     32                            2016-05-15
4246     33                            2016-05-08
4247     34                            2016-05-01
4248     35                            2016-04-24
4249     36                            2016-04-17
4250     37                            2016-04-10
4251     38                            2016-04-03
4252     39                            2016-03-27
4253     40                            2016-03-20
4254     41                            2016-03-13
4255     42                            2016-03-06
4256     43                            2016-02-28
4257     44                            2016-02-21
4258     45                            2016-02-14
4259     46                            2016-02-07
4260     47                            2016-01-31
4261     48                            2016-01-24
4262     49                            2016-01-17
4263     50                            2016-01-10
4264     51                            2016-01-03
4265      0                            2016-12-25
4266      1                            2016-12-18
4267      2                            2016-12-11
4268      3                            2016-12-04
4269      4                            2016-11-27
4270      5                            2016-11-20
4271      6                            2016-11-13
4272      7                            2016-11-06
4273      8                            2016-10-30
4274      9                            2016-10-23
4275     10                            2016-10-16
4276     11                            2016-10-09
4277     12                            2016-10-02
4278     13                            2016-09-25
4279     14                            2016-09-18
4280     15                            2016-09-11
4281     16                            2016-09-04
4282     17                            2016-08-28
4283     18                            2016-08-21
4284     19                            2016-08-14
4285     20                            2016-08-07
4286     21                            2016-07-31
4287     22                            2016-07-24
4288     23                            2016-07-17
4289     24                            2016-07-10
4290     25                            2016-07-03
4291     26                            2016-06-26
4292     27                            2016-06-19
4293     28                            2016-06-12
4294     29                            2016-06-05
4295     30                            2016-05-29
4296     31                            2016-05-22
4297     32                            2016-05-15
4298     33                            2016-05-08
4299     34                            2016-05-01
4300     35                            2016-04-24
4301     36                            2016-04-17
4302     37                            2016-04-10
4303     38                            2016-04-03
4304     39                            2016-03-27
4305     40                            2016-03-20
4306     41                            2016-03-13
4307     42                            2016-03-06
4308     43                            2016-02-28
4309     44                            2016-02-21
4310     45                            2016-02-14
4311     46                            2016-02-07
4312     47                            2016-01-31
4313     48                            2016-01-24
4314     49                            2016-01-17
4315     50                            2016-01-10
4316     51                            2016-01-03
4317      0                            2016-12-25
4318      1                            2016-12-18
4319      2                            2016-12-11
4320      3                            2016-12-04
4321      4                            2016-11-27
4322      5                            2016-11-20
4323      6                            2016-11-13
4324      7                            2016-11-06
4325      8                            2016-10-30
4326      9                            2016-10-23
4327     10                            2016-10-16
4328     11                            2016-10-09
4329     12                            2016-10-02
4330     13                            2016-09-25
4331     14                            2016-09-18
4332     15                            2016-09-11
4333     16                            2016-09-04
4334     17                            2016-08-28
4335     18                            2016-08-21
4336     19                            2016-08-14
4337     20                            2016-08-07
4338     21                            2016-07-31
4339     22                            2016-07-24
4340     23                            2016-07-17
4341     24                            2016-07-10
4342     25                            2016-07-03
4343     26                            2016-06-26
4344     27                            2016-06-19
4345     28                            2016-06-12
4346     29                            2016-06-05
4347     30                            2016-05-29
4348     31                            2016-05-22
4349     32                            2016-05-15
4350     33                            2016-05-08
4351     34                            2016-05-01
4352     35                            2016-04-24
4353     36                            2016-04-17
4354     37                            2016-04-10
4355     38                            2016-04-03
4356     39                            2016-03-27
4357     40                            2016-03-20
4358     41                            2016-03-13
4359     42                            2016-03-06
4360     43                            2016-02-28
4361     44                            2016-02-21
4362     45                            2016-02-14
4363     46                            2016-02-07
4364     47                            2016-01-31
4365     48                            2016-01-24
4366     49                            2016-01-17
4367     50                            2016-01-10
4368     51                            2016-01-03
4369      0                            2016-12-25
4370      1                            2016-12-18
4371      2                            2016-12-11
4372      3                            2016-12-04
4373      4                            2016-11-27
4374      5                            2016-11-20
4375      6                            2016-11-13
4376      7                            2016-11-06
4377      8                            2016-10-30
4378      9                            2016-10-23
4379     10                            2016-10-16
4380     11                            2016-10-09
4381     12                            2016-10-02
4382     13                            2016-09-25
4383     14                            2016-09-18
4384     15                            2016-09-11
4385     16                            2016-09-04
4386     17                            2016-08-28
4387     18                            2016-08-21
4388     19                            2016-08-14
4389     20                            2016-08-07
4390     21                            2016-07-31
4391     22                            2016-07-24
4392     23                            2016-07-17
4393     24                            2016-07-10
4394     25                            2016-07-03
4395     26                            2016-06-26
4396     27                            2016-06-19
4397     28                            2016-06-12
4398     29                            2016-06-05
4399     30                            2016-05-29
4400     31                            2016-05-22
4401     32                            2016-05-15
4402     33                            2016-05-08
4403     34                            2016-05-01
4404     35                            2016-04-24
4405     36                            2016-04-17
4406     37                            2016-04-10
4407     38                            2016-04-03
4408     39                            2016-03-27
4409     40                            2016-03-20
4410     41                            2016-03-13
4411     42                            2016-03-06
4412     43                            2016-02-28
4413     44                            2016-02-21
4414     45                            2016-02-14
4415     46                            2016-02-07
4416     47                            2016-01-31
4417     48                            2016-01-24
4418     49                            2016-01-17
4419     50                            2016-01-10
4420     51                            2016-01-03
4421      0                            2016-12-25
4422      1                            2016-12-18
4423      2                            2016-12-11
4424      3                            2016-12-04
4425      4                            2016-11-27
4426      5                            2016-11-20
4427      6                            2016-11-13
4428      7                            2016-11-06
4429      8                            2016-10-30
4430      9                            2016-10-23
4431     10                            2016-10-16
4432     11                            2016-10-09
4433     12                            2016-10-02
4434     13                            2016-09-25
4435     14                            2016-09-18
4436     15                            2016-09-11
4437     16                            2016-09-04
4438     17                            2016-08-28
4439     18                            2016-08-21
4440     19                            2016-08-14
4441     20                            2016-08-07
4442     21                            2016-07-31
4443     22                            2016-07-24
4444     23                            2016-07-17
4445     24                            2016-07-10
4446     25                            2016-07-03
4447     26                            2016-06-26
4448     27                            2016-06-19
4449     28                            2016-06-12
4450     29                            2016-06-05
4451     30                            2016-05-29
4452     31                            2016-05-22
4453     32                            2016-05-15
4454     33                            2016-05-08
4455     34                            2016-05-01
4456     35                            2016-04-24
4457     36                            2016-04-17
4458     37                            2016-04-10
4459     38                            2016-04-03
4460     39                            2016-03-27
4461     40                            2016-03-20
4462     41                            2016-03-13
4463     42                            2016-03-06
4464     43                            2016-02-28
4465     44                            2016-02-21
4466     45                            2016-02-14
4467     46                            2016-02-07
4468     47                            2016-01-31
4469     48                            2016-01-24
4470     49                            2016-01-17
4471     50                            2016-01-10
4472     51                            2016-01-03
4473      0                            2016-12-25
4474      1                            2016-12-18
4475      2                            2016-12-11
4476      3                            2016-12-04
4477      4                            2016-11-27
4478      5                            2016-11-20
4479      6                            2016-11-13
4480      7                            2016-11-06
4481      8                            2016-10-30
4482      9                            2016-10-23
4483     10                            2016-10-16
4484     11                            2016-10-09
4485     12                            2016-10-02
4486     13                            2016-09-25
4487     14                            2016-09-18
4488     15                            2016-09-11
4489     16                            2016-09-04
4490     17                            2016-08-28
4491     18                            2016-08-21
4492     19                            2016-08-14
4493     20                            2016-08-07
4494     21                            2016-07-31
4495     22                            2016-07-24
4496     23                            2016-07-17
4497     24                            2016-07-10
4498     25                            2016-07-03
4499     26                            2016-06-26
4500     27                            2016-06-19
4501     28                            2016-06-12
4502     29                            2016-06-05
4503     30                            2016-05-29
4504     31                            2016-05-22
4505     32                            2016-05-15
4506     33                            2016-05-08
4507     34                            2016-05-01
4508     35                            2016-04-24
4509     36                            2016-04-17
4510     37                            2016-04-10
4511     38                            2016-04-03
4512     39                            2016-03-27
4513     40                            2016-03-20
4514     41                            2016-03-13
4515     42                            2016-03-06
4516     43                            2016-02-28
4517     44                            2016-02-21
4518     45                            2016-02-14
4519     46                            2016-02-07
4520     47                            2016-01-31
4521     48                            2016-01-24
4522     49                            2016-01-17
4523     50                            2016-01-10
4524     51                            2016-01-03
4525      0                            2016-12-25
4526      1                            2016-12-18
4527      2                            2016-12-11
4528      3                            2016-12-04
4529      4                            2016-11-27
4530      5                            2016-11-20
4531      6                            2016-11-13
4532      7                            2016-11-06
4533      8                            2016-10-30
4534      9                            2016-10-23
4535     10                            2016-10-16
4536     11                            2016-10-09
4537     12                            2016-10-02
4538     13                            2016-09-25
4539     14                            2016-09-18
4540     15                            2016-09-11
4541     16                            2016-09-04
4542     17                            2016-08-28
4543     18                            2016-08-21
4544     19                            2016-08-14
4545     20                            2016-08-07
4546     21                            2016-07-31
4547     22                            2016-07-24
4548     23                            2016-07-17
4549     24                            2016-07-10
4550     25                            2016-07-03
4551     26                            2016-06-26
4552     27                            2016-06-19
4553     28                            2016-06-12
4554     29                            2016-06-05
4555     30                            2016-05-29
4556     31                            2016-05-22
4557     32                            2016-05-15
4558     33                            2016-05-08
4559     34                            2016-05-01
4560     35                            2016-04-24
4561     36                            2016-04-17
4562     37                            2016-04-10
4563     38                            2016-04-03
4564     39                            2016-03-27
4565     40                            2016-03-20
4566     41                            2016-03-13
4567     42                            2016-03-06
4568     43                            2016-02-28
4569     44                            2016-02-21
4570     45                            2016-02-14
4571     46                            2016-02-07
4572     47                            2016-01-31
4573     48                            2016-01-24
4574     49                            2016-01-17
4575     50                            2016-01-10
4576     51                            2016-01-03
4577      0                            2016-12-25
4578      1                            2016-12-18
4579      2                            2016-12-11
4580      3                            2016-12-04
4581      4                            2016-11-27
4582      5                            2016-11-20
4583      6                            2016-11-13
4584      7                            2016-11-06
4585      8                            2016-10-30
4586      9                            2016-10-23
4587     10                            2016-10-16
4588     11                            2016-10-09
4589     12                            2016-10-02
4590     13                            2016-09-25
4591     14                            2016-09-18
4592     15                            2016-09-11
4593     16                            2016-09-04
4594     17                            2016-08-28
4595     18                            2016-08-21
4596     19                            2016-08-14
4597     20                            2016-08-07
4598     21                            2016-07-31
4599     22                            2016-07-24
4600     23                            2016-07-17
4601     24                            2016-07-10
4602     25                            2016-07-03
4603     26                            2016-06-26
4604     27                            2016-06-19
4605     28                            2016-06-12
4606     29                            2016-06-05
4607     30                            2016-05-29
4608     31                            2016-05-22
4609     32                            2016-05-15
4610     33                            2016-05-08
4611     34                            2016-05-01
4612     35                            2016-04-24
4613     36                            2016-04-17
4614     37                            2016-04-10
4615     38                            2016-04-03
4616     39                            2016-03-27
4617     40                            2016-03-20
4618     41                            2016-03-13
4619     42                            2016-03-06
4620     43                            2016-02-28
4621     44                            2016-02-21
4622     45                            2016-02-14
4623     46                            2016-02-07
4624     47                            2016-01-31
4625     48                            2016-01-24
4626     49                            2016-01-17
4627     50                            2016-01-10
4628     51                            2016-01-03
4629      0                            2016-12-25
4630      1                            2016-12-18
4631      2                            2016-12-11
4632      3                            2016-12-04
4633      4                            2016-11-27
4634      5                            2016-11-20
4635      6                            2016-11-13
4636      7                            2016-11-06
4637      8                            2016-10-30
4638      9                            2016-10-23
4639     10                            2016-10-16
4640     11                            2016-10-09
4641     12                            2016-10-02
4642     13                            2016-09-25
4643     14                            2016-09-18
4644     15                            2016-09-11
4645     16                            2016-09-04
4646     17                            2016-08-28
4647     18                            2016-08-21
4648     19                            2016-08-14
4649     20                            2016-08-07
4650     21                            2016-07-31
4651     22                            2016-07-24
4652     23                            2016-07-17
4653     24                            2016-07-10
4654     25                            2016-07-03
4655     26                            2016-06-26
4656     27                            2016-06-19
4657     28                            2016-06-12
4658     29                            2016-06-05
4659     30                            2016-05-29
4660     31                            2016-05-22
4661     32                            2016-05-15
4662     33                            2016-05-08
4663     34                            2016-05-01
4664     35                            2016-04-24
4665     36                            2016-04-17
4666     37                            2016-04-10
4667     38                            2016-04-03
4668     39                            2016-03-27
4669     40                            2016-03-20
4670     41                            2016-03-13
4671     42                            2016-03-06
4672     43                            2016-02-28
4673     44                            2016-02-21
4674     45                            2016-02-14
4675     46                            2016-02-07
4676     47                            2016-01-31
4677     48                            2016-01-24
4678     49                            2016-01-17
4679     50                            2016-01-10
4680     51                            2016-01-03
4681      0                            2016-12-25
4682      1                            2016-12-18
4683      2                            2016-12-11
4684      3                            2016-12-04
4685      4                            2016-11-27
4686      5                            2016-11-20
4687      6                            2016-11-13
4688      7                            2016-11-06
4689      8                            2016-10-30
4690      9                            2016-10-23
4691     10                            2016-10-16
4692     11                            2016-10-09
4693     12                            2016-10-02
4694     13                            2016-09-25
4695     14                            2016-09-18
4696     15                            2016-09-11
4697     16                            2016-09-04
4698     17                            2016-08-28
4699     18                            2016-08-21
4700     19                            2016-08-14
4701     20                            2016-08-07
4702     21                            2016-07-31
4703     22                            2016-07-24
4704     23                            2016-07-17
4705     24                            2016-07-10
4706     25                            2016-07-03
4707     26                            2016-06-26
4708     27                            2016-06-19
4709     28                            2016-06-12
4710     29                            2016-06-05
4711     30                            2016-05-29
4712     31                            2016-05-22
4713     32                            2016-05-15
4714     33                            2016-05-08
4715     34                            2016-05-01
4716     35                            2016-04-24
4717     36                            2016-04-17
4718     37                            2016-04-10
4719     38                            2016-04-03
4720     39                            2016-03-27
4721     40                            2016-03-20
4722     41                            2016-03-13
4723     42                            2016-03-06
4724     43                            2016-02-28
4725     44                            2016-02-21
4726     45                            2016-02-14
4727     46                            2016-02-07
4728     47                            2016-01-31
4729     48                            2016-01-24
4730     49                            2016-01-17
4731     50                            2016-01-10
4732     51                            2016-01-03
4733      0                            2016-12-25
4734      1                            2016-12-18
4735      2                            2016-12-11
4736      3                            2016-12-04
4737      4                            2016-11-27
4738      5                            2016-11-20
4739      6                            2016-11-13
4740      7                            2016-11-06
4741      8                            2016-10-30
4742      9                            2016-10-23
4743     10                            2016-10-16
4744     11                            2016-10-09
4745     12                            2016-10-02
4746     13                            2016-09-25
4747     14                            2016-09-18
4748     15                            2016-09-11
4749     16                            2016-09-04
4750     17                            2016-08-28
4751     18                            2016-08-21
4752     19                            2016-08-14
4753     20                            2016-08-07
4754     21                            2016-07-31
4755     22                            2016-07-24
4756     23                            2016-07-17
4757     24                            2016-07-10
4758     25                            2016-07-03
4759     26                            2016-06-26
4760     27                            2016-06-19
4761     28                            2016-06-12
4762     29                            2016-06-05
4763     30                            2016-05-29
4764     31                            2016-05-22
4765     32                            2016-05-15
4766     33                            2016-05-08
4767     34                            2016-05-01
4768     35                            2016-04-24
4769     36                            2016-04-17
4770     37                            2016-04-10
4771     38                            2016-04-03
4772     39                            2016-03-27
4773     40                            2016-03-20
4774     41                            2016-03-13
4775     42                            2016-03-06
4776     43                            2016-02-28
4777     44                            2016-02-21
4778     45                            2016-02-14
4779     46                            2016-02-07
4780     47                            2016-01-31
4781     48                            2016-01-24
4782     49                            2016-01-17
4783     50                            2016-01-10
4784     51                            2016-01-03
4785      0                            2016-12-25
4786      1                            2016-12-18
4787      2                            2016-12-11
4788      3                            2016-12-04
4789      4                            2016-11-27
4790      5                            2016-11-20
4791      6                            2016-11-13
4792      7                            2016-11-06
4793      8                            2016-10-30
4794      9                            2016-10-23
4795     10                            2016-10-16
4796     11                            2016-10-09
4797     12                            2016-10-02
4798     13                            2016-09-25
4799     14                            2016-09-18
4800     15                            2016-09-11
4801     16                            2016-09-04
4802     17                            2016-08-28
4803     18                            2016-08-21
4804     19                            2016-08-14
4805     20                            2016-08-07
4806     21                            2016-07-31
4807     22                            2016-07-24
4808     23                            2016-07-17
4809     24                            2016-07-10
4810     25                            2016-07-03
4811     26                            2016-06-26
4812     27                            2016-06-19
4813     28                            2016-06-12
4814     29                            2016-06-05
4815     30                            2016-05-29
4816     31                            2016-05-22
4817     32                            2016-05-15
4818     33                            2016-05-08
4819     34                            2016-05-01
4820     35                            2016-04-24
4821     36                            2016-04-17
4822     37                            2016-04-10
4823     38                            2016-04-03
4824     39                            2016-03-27
4825     40                            2016-03-20
4826     41                            2016-03-13
4827     42                            2016-03-06
4828     43                            2016-02-28
4829     44                            2016-02-21
4830     45                            2016-02-14
4831     46                            2016-02-07
4832     47                            2016-01-31
4833     48                            2016-01-24
4834     49                            2016-01-17
4835     50                            2016-01-10
4836     51                            2016-01-03
4837      0                            2016-12-25
4838      1                            2016-12-18
4839      2                            2016-12-11
4840      3                            2016-12-04
4841      4                            2016-11-27
4842      5                            2016-11-20
4843      6                            2016-11-13
4844      7                            2016-11-06
4845      8                            2016-10-30
4846      9                            2016-10-23
4847     10                            2016-10-16
4848     11                            2016-10-09
4849     12                            2016-10-02
4850     13                            2016-09-25
4851     14                            2016-09-18
4852     15                            2016-09-11
4853     16                            2016-09-04
4854     17                            2016-08-28
4855     18                            2016-08-21
4856     19                            2016-08-14
4857     20                            2016-08-07
4858     21                            2016-07-31
4859     22                            2016-07-24
4860     23                            2016-07-17
4861     24                            2016-07-10
4862     25                            2016-07-03
4863     26                            2016-06-26
4864     27                            2016-06-19
4865     28                            2016-06-12
4866     29                            2016-06-05
4867     30                            2016-05-29
4868     31                            2016-05-22
4869     32                            2016-05-15
4870     33                            2016-05-08
4871     34                            2016-05-01
4872     35                            2016-04-24
4873     36                            2016-04-17
4874     37                            2016-04-10
4875     38                            2016-04-03
4876     39                            2016-03-27
4877     40                            2016-03-20
4878     41                            2016-03-13
4879     42                            2016-03-06
4880     43                            2016-02-28
4881     44                            2016-02-21
4882     45                            2016-02-14
4883     46                            2016-02-07
4884     47                            2016-01-31
4885     48                            2016-01-24
4886     49                            2016-01-17
4887     50                            2016-01-10
4888     51                            2016-01-03
4889      0                            2016-12-25
4890      1                            2016-12-18
4891      2                            2016-12-11
4892      3                            2016-12-04
4893      4                            2016-11-27
4894      5                            2016-11-20
4895      6                            2016-11-13
4896      7                            2016-11-06
4897      8                            2016-10-30
4898      9                            2016-10-23
4899     10                            2016-10-16
4900     11                            2016-10-09
4901     12                            2016-10-02
4902     13                            2016-09-25
4903     14                            2016-09-18
4904     15                            2016-09-11
4905     16                            2016-09-04
4906     17                            2016-08-28
4907     18                            2016-08-21
4908     19                            2016-08-14
4909     20                            2016-08-07
4910     21                            2016-07-31
4911     22                            2016-07-24
4912     23                            2016-07-17
4913     24                            2016-07-10
4914     25                            2016-07-03
4915     26                            2016-06-26
4916     27                            2016-06-19
4917     28                            2016-06-12
4918     29                            2016-06-05
4919     30                            2016-05-29
4920     31                            2016-05-22
4921     32                            2016-05-15
4922     33                            2016-05-08
4923     34                            2016-05-01
4924     35                            2016-04-24
4925     36                            2016-04-17
4926     37                            2016-04-10
4927     38                            2016-04-03
4928     39                            2016-03-27
4929     40                            2016-03-20
4930     41                            2016-03-13
4931     42                            2016-03-06
4932     43                            2016-02-28
4933     44                            2016-02-21
4934     45                            2016-02-14
4935     46                            2016-02-07
4936     47                            2016-01-31
4937     48                            2016-01-24
4938     49                            2016-01-17
4939     50                            2016-01-10
4940     51                            2016-01-03
4941      0                            2016-12-25
4942      1                            2016-12-18
4943      2                            2016-12-11
4944      3                            2016-12-04
4945      4                            2016-11-27
4946      5                            2016-11-20
4947      6                            2016-11-13
4948      7                            2016-11-06
4949      8                            2016-10-30
4950      9                            2016-10-23
4951     10                            2016-10-16
4952     11                            2016-10-09
4953     12                            2016-10-02
4954     13                            2016-09-25
4955     14                            2016-09-18
4956     15                            2016-09-11
4957     16                            2016-09-04
4958     17                            2016-08-28
4959     18                            2016-08-21
4960     19                            2016-08-14
4961     20                            2016-08-07
4962     21                            2016-07-31
4963     22                            2016-07-24
4964     23                            2016-07-17
4965     24                            2016-07-10
4966     25                            2016-07-03
4967     26                            2016-06-26
4968     27                            2016-06-19
4969     28                            2016-06-12
4970     29                            2016-06-05
4971     30                            2016-05-29
4972     31                            2016-05-22
4973     32                            2016-05-15
4974     33                            2016-05-08
4975     34                            2016-05-01
4976     35                            2016-04-24
4977     36                            2016-04-17
4978     37                            2016-04-10
4979     38                            2016-04-03
4980     39                            2016-03-27
4981     40                            2016-03-20
4982     41                            2016-03-13
4983     42                            2016-03-06
4984     43                            2016-02-28
4985     44                            2016-02-21
4986     45                            2016-02-14
4987     46                            2016-02-07
4988     47                            2016-01-31
4989     48                            2016-01-24
4990     49                            2016-01-17
4991     50                            2016-01-10
4992     51                            2016-01-03
4993      0                            2016-12-25
4994      1                            2016-12-18
4995      2                            2016-12-11
4996      3                            2016-12-04
4997      4                            2016-11-27
4998      5                            2016-11-20
4999      6                            2016-11-13
5000      7                            2016-11-06
5001      8                            2016-10-30
5002      9                            2016-10-23
5003     10                            2016-10-16
5004     11                            2016-10-09
5005     12                            2016-10-02
5006     13                            2016-09-25
5007     14                            2016-09-18
5008     15                            2016-09-11
5009     16                            2016-09-04
5010     17                            2016-08-28
5011     18                            2016-08-21
5012     19                            2016-08-14
5013     20                            2016-08-07
5014     21                            2016-07-31
5015     22                            2016-07-24
5016     23                            2016-07-17
5017     24                            2016-07-10
5018     25                            2016-07-03
5019     26                            2016-06-26
5020     27                            2016-06-19
5021     28                            2016-06-12
5022     29                            2016-06-05
5023     30                            2016-05-29
5024     31                            2016-05-22
5025     32                            2016-05-15
5026     33                            2016-05-08
5027     34                            2016-05-01
5028     35                            2016-04-24
5029     36                            2016-04-17
5030     37                            2016-04-10
5031     38                            2016-04-03
5032     39                            2016-03-27
5033     40                            2016-03-20
5034     41                            2016-03-13
5035     42                            2016-03-06
5036     43                            2016-02-28
5037     44                            2016-02-21
5038     45                            2016-02-14
5039     46                            2016-02-07
5040     47                            2016-01-31
5041     48                            2016-01-24
5042     49                            2016-01-17
5043     50                            2016-01-10
5044     51                            2016-01-03
5045      0                            2016-12-25
5046      1                            2016-12-18
5047      2                            2016-12-11
5048      3                            2016-12-04
5049      4                            2016-11-27
5050      5                            2016-11-20
5051      6                            2016-11-13
5052      7                            2016-11-06
5053      8                            2016-10-30
5054      9                            2016-10-23
5055     10                            2016-10-16
5056     11                            2016-10-09
5057     12                            2016-10-02
5058     13                            2016-09-25
5059     14                            2016-09-18
5060     15                            2016-09-11
5061     16                            2016-09-04
5062     17                            2016-08-28
5063     18                            2016-08-21
5064     19                            2016-08-14
5065     20                            2016-08-07
5066     21                            2016-07-31
5067     22                            2016-07-24
5068     23                            2016-07-17
5069     24                            2016-07-10
5070     25                            2016-07-03
5071     26                            2016-06-26
5072     27                            2016-06-19
5073     28                            2016-06-12
5074     29                            2016-06-05
5075     30                            2016-05-29
5076     31                            2016-05-22
5077     32                            2016-05-15
5078     33                            2016-05-08
5079     34                            2016-05-01
5080     35                            2016-04-24
5081     36                            2016-04-17
5082     37                            2016-04-10
5083     38                            2016-04-03
5084     39                            2016-03-27
5085     40                            2016-03-20
5086     41                            2016-03-13
5087     42                            2016-03-06
5088     43                            2016-02-28
5089     44                            2016-02-21
5090     45                            2016-02-14
5091     46                            2016-02-07
5092     47                            2016-01-31
5093     48                            2016-01-24
5094     49                            2016-01-17
5095     50                            2016-01-10
5096     51                            2016-01-03
5097      0                            2016-12-25
5098      1                            2016-12-18
5099      2                            2016-12-11
5100      3                            2016-12-04
5101      4                            2016-11-27
5102      5                            2016-11-20
5103      6                            2016-11-13
5104      7                            2016-11-06
5105      8                            2016-10-30
5106      9                            2016-10-23
5107     10                            2016-10-16
5108     11                            2016-10-09
5109     12                            2016-10-02
5110     13                            2016-09-25
5111     14                            2016-09-18
5112     15                            2016-09-11
5113     16                            2016-09-04
5114     17                            2016-08-28
5115     18                            2016-08-21
5116     19                            2016-08-14
5117     20                            2016-08-07
5118     21                            2016-07-31
5119     22                            2016-07-24
5120     23                            2016-07-17
5121     24                            2016-07-10
5122     25                            2016-07-03
5123     26                            2016-06-26
5124     27                            2016-06-19
5125     28                            2016-06-12
5126     29                            2016-06-05
5127     30                            2016-05-29
5128     31                            2016-05-22
5129     32                            2016-05-15
5130     33                            2016-05-08
5131     34                            2016-05-01
5132     35                            2016-04-24
5133     36                            2016-04-17
5134     37                            2016-04-10
5135     38                            2016-04-03
5136     39                            2016-03-27
5137     40                            2016-03-20
5138     41                            2016-03-13
5139     42                            2016-03-06
5140     43                            2016-02-28
5141     44                            2016-02-21
5142     45                            2016-02-14
5143     46                            2016-02-07
5144     47                            2016-01-31
5145     48                            2016-01-24
5146     49                            2016-01-17
5147     50                            2016-01-10
5148     51                            2016-01-03
5149      0                            2016-12-25
5150      1                            2016-12-18
5151      2                            2016-12-11
5152      3                            2016-12-04
5153      4                            2016-11-27
5154      5                            2016-11-20
5155      6                            2016-11-13
5156      7                            2016-11-06
5157      8                            2016-10-30
5158      9                            2016-10-23
5159     10                            2016-10-16
5160     11                            2016-10-09
5161     12                            2016-10-02
5162     13                            2016-09-25
5163     14                            2016-09-18
5164     15                            2016-09-11
5165     16                            2016-09-04
5166     17                            2016-08-28
5167     18                            2016-08-21
5168     19                            2016-08-14
5169     20                            2016-08-07
5170     21                            2016-07-31
5171     22                            2016-07-24
5172     23                            2016-07-17
5173     24                            2016-07-10
5174     25                            2016-07-03
5175     26                            2016-06-26
5176     27                            2016-06-19
5177     28                            2016-06-12
5178     29                            2016-06-05
5179     30                            2016-05-29
5180     31                            2016-05-22
5181     32                            2016-05-15
5182     33                            2016-05-08
5183     34                            2016-05-01
5184     35                            2016-04-24
5185     36                            2016-04-17
5186     37                            2016-04-10
5187     38                            2016-04-03
5188     39                            2016-03-27
5189     40                            2016-03-20
5190     41                            2016-03-13
5191     42                            2016-03-06
5192     43                            2016-02-28
5193     44                            2016-02-21
5194     45                            2016-02-14
5195     46                            2016-02-07
5196     47                            2016-01-31
5197     48                            2016-01-24
5198     49                            2016-01-17
5199     50                            2016-01-10
5200     51                            2016-01-03
5201      0                            2016-12-25
5202      1                            2016-12-18
5203      2                            2016-12-11
5204      3                            2016-12-04
5205      4                            2016-11-27
5206      5                            2016-11-20
5207      6                            2016-11-13
5208      7                            2016-11-06
5209      8                            2016-10-30
5210      9                            2016-10-23
5211     10                            2016-10-16
5212     11                            2016-10-09
5213     12                            2016-10-02
5214     13                            2016-09-25
5215     14                            2016-09-18
5216     15                            2016-09-11
5217     16                            2016-09-04
5218     17                            2016-08-28
5219     18                            2016-08-21
5220     19                            2016-08-14
5221     20                            2016-08-07
5222     21                            2016-07-31
5223     22                            2016-07-24
5224     23                            2016-07-17
5225     24                            2016-07-10
5226     25                            2016-07-03
5227     26                            2016-06-26
5228     27                            2016-06-19
5229     28                            2016-06-12
5230     29                            2016-06-05
5231     30                            2016-05-29
5232     31                            2016-05-22
5233     32                            2016-05-15
5234     33                            2016-05-08
5235     34                            2016-05-01
5236     35                            2016-04-24
5237     36                            2016-04-17
5238     37                            2016-04-10
5239     38                            2016-04-03
5240     39                            2016-03-27
5241     40                            2016-03-20
5242     41                            2016-03-13
5243     42                            2016-03-06
5244     43                            2016-02-28
5245     44                            2016-02-21
5246     45                            2016-02-14
5247     46                            2016-02-07
5248     47                            2016-01-31
5249     48                            2016-01-24
5250     49                            2016-01-17
5251     50                            2016-01-10
5252     51                            2016-01-03
5253      0                            2016-12-25
5254      1                            2016-12-18
5255      2                            2016-12-11
5256      3                            2016-12-04
5257      4                            2016-11-27
5258      5                            2016-11-20
5259      6                            2016-11-13
5260      7                            2016-11-06
5261      8                            2016-10-30
5262      9                            2016-10-23
5263     10                            2016-10-16
5264     11                            2016-10-09
5265     12                            2016-10-02
5266     13                            2016-09-25
5267     14                            2016-09-18
5268     15                            2016-09-11
5269     16                            2016-09-04
5270     17                            2016-08-28
5271     18                            2016-08-21
5272     19                            2016-08-14
5273     20                            2016-08-07
5274     21                            2016-07-31
5275     22                            2016-07-24
5276     23                            2016-07-17
5277     24                            2016-07-10
5278     25                            2016-07-03
5279     26                            2016-06-26
5280     27                            2016-06-19
5281     28                            2016-06-12
5282     29                            2016-06-05
5283     30                            2016-05-29
5284     31                            2016-05-22
5285     32                            2016-05-15
5286     33                            2016-05-08
5287     34                            2016-05-01
5288     35                            2016-04-24
5289     36                            2016-04-17
5290     37                            2016-04-10
5291     38                            2016-04-03
5292     39                            2016-03-27
5293     40                            2016-03-20
5294     41                            2016-03-13
5295     42                            2016-03-06
5296     43                            2016-02-28
5297     44                            2016-02-21
5298     45                            2016-02-14
5299     46                            2016-02-07
5300     47                            2016-01-31
5301     48                            2016-01-24
5302     49                            2016-01-17
5303     50                            2016-01-10
5304     51                            2016-01-03
5305      0                            2016-12-25
5306      1                            2016-12-18
5307      2                            2016-12-11
5308      3                            2016-12-04
5309      4                            2016-11-27
5310      5                            2016-11-20
5311      6                            2016-11-13
5312      7                            2016-11-06
5313      8                            2016-10-30
5314      9                            2016-10-23
5315     10                            2016-10-16
5316     11                            2016-10-09
5317     12                            2016-10-02
5318     13                            2016-09-25
5319     14                            2016-09-18
5320     15                            2016-09-11
5321     16                            2016-09-04
5322     17                            2016-08-28
5323     18                            2016-08-21
5324     19                            2016-08-14
5325     20                            2016-08-07
5326     21                            2016-07-31
5327     22                            2016-07-24
5328     23                            2016-07-17
5329     24                            2016-07-10
5330     25                            2016-07-03
5331     26                            2016-06-26
5332     27                            2016-06-19
5333     28                            2016-06-12
5334     29                            2016-06-05
5335     30                            2016-05-29
5336     31                            2016-05-22
5337     32                            2016-05-15
5338     33                            2016-05-08
5339     34                            2016-05-01
5340     35                            2016-04-24
5341     36                            2016-04-17
5342     37                            2016-04-10
5343     38                            2016-04-03
5344     39                            2016-03-27
5345     40                            2016-03-20
5346     41                            2016-03-13
5347     42                            2016-03-06
5348     43                            2016-02-28
5349     44                            2016-02-21
5350     45                            2016-02-14
5351     46                            2016-02-07
5352     47                            2016-01-31
5353     48                            2016-01-24
5354     49                            2016-01-17
5355     50                            2016-01-10
5356     51                            2016-01-03
5357      0                            2016-12-25
5358      1                            2016-12-18
5359      2                            2016-12-11
5360      3                            2016-12-04
5361      4                            2016-11-27
5362      5                            2016-11-20
5363      6                            2016-11-13
5364      7                            2016-11-06
5365      8                            2016-10-30
5366      9                            2016-10-23
5367     10                            2016-10-16
5368     11                            2016-10-09
5369     12                            2016-10-02
5370     13                            2016-09-25
5371     14                            2016-09-18
5372     15                            2016-09-11
5373     16                            2016-09-04
5374     17                            2016-08-28
5375     18                            2016-08-21
5376     19                            2016-08-14
5377     20                            2016-08-07
5378     21                            2016-07-31
5379     22                            2016-07-24
5380     23                            2016-07-17
5381     24                            2016-07-10
5382     25                            2016-07-03
5383     26                            2016-06-26
5384     27                            2016-06-19
5385     28                            2016-06-12
5386     29                            2016-06-05
5387     30                            2016-05-29
5388     31                            2016-05-22
5389     32                            2016-05-15
5390     33                            2016-05-08
5391     34                            2016-05-01
5392     35                            2016-04-24
5393     36                            2016-04-17
5394     37                            2016-04-10
5395     38                            2016-04-03
5396     39                            2016-03-27
5397     40                            2016-03-20
5398     41                            2016-03-13
5399     42                            2016-03-06
5400     43                            2016-02-28
5401     44                            2016-02-21
5402     45                            2016-02-14
5403     46                            2016-02-07
5404     47                            2016-01-31
5405     48                            2016-01-24
5406     49                            2016-01-17
5407     50                            2016-01-10
5408     51                            2016-01-03
5409      0                            2016-12-25
5410      1                            2016-12-18
5411      2                            2016-12-11
5412      3                            2016-12-04
5413      4                            2016-11-27
5414      5                            2016-11-20
5415      6                            2016-11-13
5416      7                            2016-11-06
5417      8                            2016-10-30
5418      9                            2016-10-23
5419     10                            2016-10-16
5420     11                            2016-10-09
5421     12                            2016-10-02
5422     13                            2016-09-25
5423     14                            2016-09-18
5424     15                            2016-09-11
5425     16                            2016-09-04
5426     17                            2016-08-28
5427     18                            2016-08-21
5428     19                            2016-08-14
5429     20                            2016-08-07
5430     21                            2016-07-31
5431     22                            2016-07-24
5432     23                            2016-07-17
5433     24                            2016-07-10
5434     25                            2016-07-03
5435     26                            2016-06-26
5436     27                            2016-06-19
5437     28                            2016-06-12
5438     29                            2016-06-05
5439     30                            2016-05-29
5440     31                            2016-05-22
5441     32                            2016-05-15
5442     33                            2016-05-08
5443     34                            2016-05-01
5444     35                            2016-04-24
5445     36                            2016-04-17
5446     37                            2016-04-10
5447     38                            2016-04-03
5448     39                            2016-03-27
5449     40                            2016-03-20
5450     41                            2016-03-13
5451     42                            2016-03-06
5452     43                            2016-02-28
5453     44                            2016-02-21
5454     45                            2016-02-14
5455     46                            2016-02-07
5456     47                            2016-01-31
5457     48                            2016-01-24
5458     49                            2016-01-17
5459     50                            2016-01-10
5460     51                            2016-01-03
5461      0                            2016-12-25
5462      1                            2016-12-18
5463      2                            2016-12-11
5464      3                            2016-12-04
5465      4                            2016-11-27
5466      5                            2016-11-20
5467      6                            2016-11-13
5468      7                            2016-11-06
5469      8                            2016-10-30
5470      9                            2016-10-23
5471     10                            2016-10-16
5472     11                            2016-10-09
5473     12                            2016-10-02
5474     13                            2016-09-25
5475     14                            2016-09-18
5476     15                            2016-09-11
5477     16                            2016-09-04
5478     17                            2016-08-28
5479     18                            2016-08-21
5480     19                            2016-08-14
5481     20                            2016-08-07
5482     21                            2016-07-31
5483     22                            2016-07-24
5484     23                            2016-07-17
5485     24                            2016-07-10
5486     25                            2016-07-03
5487     26                            2016-06-26
5488     27                            2016-06-19
5489     28                            2016-06-12
5490     29                            2016-06-05
5491     30                            2016-05-29
5492     31                            2016-05-22
5493     32                            2016-05-15
5494     33                            2016-05-08
5495     34                            2016-05-01
5496     35                            2016-04-24
5497     36                            2016-04-17
5498     37                            2016-04-10
5499     38                            2016-04-03
5500     39                            2016-03-27
5501     40                            2016-03-20
5502     41                            2016-03-13
5503     42                            2016-03-06
5504     43                            2016-02-28
5505     44                            2016-02-21
5506     45                            2016-02-14
5507     46                            2016-02-07
5508     47                            2016-01-31
5509     48                            2016-01-24
5510     49                            2016-01-17
5511     50                            2016-01-10
5512     51                            2016-01-03
5513      0                            2016-12-25
5514      1                            2016-12-18
5515      2                            2016-12-11
5516      3                            2016-12-04
5517      4                            2016-11-27
5518      5                            2016-11-20
5519      6                            2016-11-13
5520      7                            2016-11-06
5521      8                            2016-10-30
5522      9                            2016-10-23
5523     10                            2016-10-16
5524     11                            2016-10-09
5525     12                            2016-10-02
5526     13                            2016-09-25
5527     14                            2016-09-18
5528     15                            2016-09-11
5529     16                            2016-09-04
5530     17                            2016-08-28
5531     18                            2016-08-21
5532     19                            2016-08-14
5533     20                            2016-08-07
5534     21                            2016-07-31
5535     22                            2016-07-24
5536     23                            2016-07-17
5537     24                            2016-07-10
5538     25                            2016-07-03
5539     26                            2016-06-26
5540     27                            2016-06-19
5541     28                            2016-06-12
5542     29                            2016-06-05
5543     30                            2016-05-29
5544     31                            2016-05-22
5545     32                            2016-05-15
5546     33                            2016-05-08
5547     34                            2016-05-01
5548     35                            2016-04-24
5549     36                            2016-04-17
5550     37                            2016-04-10
5551     38                            2016-04-03
5552     39                            2016-03-27
5553     40                            2016-03-20
5554     41                            2016-03-13
5555     42                            2016-03-06
5556     43                            2016-02-28
5557     44                            2016-02-21
5558     45                            2016-02-14
5559     46                            2016-02-07
5560     47                            2016-01-31
5561     48                            2016-01-24
5562     49                            2016-01-17
5563     50                            2016-01-10
5564     51                            2016-01-03
5565      0                            2016-12-25
5566      1                            2016-12-18
5567      2                            2016-12-11
5568      3                            2016-12-04
5569      4                            2016-11-27
5570      5                            2016-11-20
5571      6                            2016-11-13
5572      7                            2016-11-06
5573      8                            2016-10-30
5574      9                            2016-10-23
5575     10                            2016-10-16
5576     11                            2016-10-09
5577     12                            2016-10-02
5578     13                            2016-09-25
5579     14                            2016-09-18
5580     15                            2016-09-11
5581     16                            2016-09-04
5582     17                            2016-08-28
5583     18                            2016-08-21
5584     19                            2016-08-14
5585     20                            2016-08-07
5586     21                            2016-07-31
5587     22                            2016-07-24
5588     23                            2016-07-17
5589     24                            2016-07-10
5590     25                            2016-07-03
5591     26                            2016-06-26
5592     27                            2016-06-19
5593     28                            2016-06-12
5594     29                            2016-06-05
5595     30                            2016-05-29
5596     31                            2016-05-22
5597     32                            2016-05-15
5598     33                            2016-05-08
5599     34                            2016-05-01
5600     35                            2016-04-24
5601     36                            2016-04-17
5602     37                            2016-04-10
5603     38                            2016-04-03
5604     39                            2016-03-27
5605     40                            2016-03-20
5606     41                            2016-03-13
5607     42                            2016-03-06
5608     43                            2016-02-28
5609     44                            2016-02-21
5610     45                            2016-02-14
5611     46                            2016-02-07
5612     47                            2016-01-31
5613     48                            2016-01-24
5614     49                            2016-01-17
5615     50                            2016-01-10
5616     51                            2016-01-03
5617      0                            2017-12-31
5618      1                            2017-12-24
5619      2                            2017-12-17
5620      3                            2017-12-10
5621      4                            2017-12-03
5622      5                            2017-11-26
5623      6                            2017-11-19
5624      7                            2017-11-12
5625      8                            2017-11-05
5626      9                            2017-10-29
5627     10                            2017-10-22
5628     11                            2017-10-15
5629     12                            2017-10-08
5630     13                            2017-10-01
5631     14                            2017-09-24
5632     15                            2017-09-17
5633     16                            2017-09-10
5634     17                            2017-09-03
5635     18                            2017-08-27
5636     19                            2017-08-20
5637     20                            2017-08-13
5638     21                            2017-08-06
5639     22                            2017-07-30
5640     23                            2017-07-23
5641     24                            2017-07-16
5642     25                            2017-07-09
5643     26                            2017-07-02
5644     27                            2017-06-25
5645     28                            2017-06-18
5646     29                            2017-06-11
5647     30                            2017-06-04
5648     31                            2017-05-28
5649     32                            2017-05-21
5650     33                            2017-05-14
5651     34                            2017-05-07
5652     35                            2017-04-30
5653     36                            2017-04-23
5654     37                            2017-04-16
5655     38                            2017-04-09
5656     39                            2017-04-02
5657     40                            2017-03-26
5658     41                            2017-03-19
5659     42                            2017-03-12
5660     43                            2017-03-05
5661     44                            2017-02-26
5662     45                            2017-02-19
5663     46                            2017-02-12
5664     47                            2017-02-05
5665     48                            2017-01-29
5666     49                            2017-01-22
5667     50                            2017-01-15
5668     51                            2017-01-08
5669     52                            2017-01-01
5670      0                            2017-12-31
5671      1                            2017-12-24
5672      2                            2017-12-17
5673      3                            2017-12-10
5674      4                            2017-12-03
5675      5                            2017-11-26
5676      6                            2017-11-19
5677      7                            2017-11-12
5678      8                            2017-11-05
5679      9                            2017-10-29
5680     10                            2017-10-22
5681     11                            2017-10-15
5682     12                            2017-10-08
5683     13                            2017-10-01
5684     14                            2017-09-24
5685     15                            2017-09-17
5686     16                            2017-09-10
5687     17                            2017-09-03
5688     18                            2017-08-27
5689     19                            2017-08-20
5690     20                            2017-08-13
5691     21                            2017-08-06
5692     22                            2017-07-30
5693     23                            2017-07-23
5694     24                            2017-07-16
5695     25                            2017-07-09
5696     26                            2017-07-02
5697     27                            2017-06-25
5698     28                            2017-06-18
5699     29                            2017-06-11
5700     30                            2017-06-04
5701     31                            2017-05-28
5702     32                            2017-05-21
5703     33                            2017-05-14
5704     34                            2017-05-07
5705     35                            2017-04-30
5706     36                            2017-04-23
5707     37                            2017-04-16
5708     38                            2017-04-09
5709     39                            2017-04-02
5710     40                            2017-03-26
5711     41                            2017-03-19
5712     42                            2017-03-12
5713     43                            2017-03-05
5714     44                            2017-02-26
5715     45                            2017-02-19
5716     46                            2017-02-12
5717     47                            2017-02-05
5718     48                            2017-01-29
5719     49                            2017-01-22
5720     50                            2017-01-15
5721     51                            2017-01-08
5722     52                            2017-01-01
5723      0                            2017-12-31
5724      1                            2017-12-24
5725      2                            2017-12-17
5726      3                            2017-12-10
5727      4                            2017-12-03
5728      5                            2017-11-26
5729      6                            2017-11-19
5730      7                            2017-11-12
5731      8                            2017-11-05
5732      9                            2017-10-29
5733     10                            2017-10-22
5734     11                            2017-10-15
5735     12                            2017-10-08
5736     13                            2017-10-01
5737     14                            2017-09-24
5738     15                            2017-09-17
5739     16                            2017-09-10
5740     17                            2017-09-03
5741     18                            2017-08-27
5742     19                            2017-08-20
5743     20                            2017-08-13
5744     21                            2017-08-06
5745     22                            2017-07-30
5746     23                            2017-07-23
5747     24                            2017-07-16
5748     25                            2017-07-09
5749     26                            2017-07-02
5750     27                            2017-06-25
5751     28                            2017-06-18
5752     29                            2017-06-11
5753     30                            2017-06-04
5754     31                            2017-05-28
5755     32                            2017-05-21
5756     33                            2017-05-14
5757     34                            2017-05-07
5758     35                            2017-04-30
5759     36                            2017-04-23
5760     37                            2017-04-16
5761     38                            2017-04-09
5762     39                            2017-04-02
5763     40                            2017-03-26
5764     41                            2017-03-19
5765     42                            2017-03-12
5766     43                            2017-03-05
5767     44                            2017-02-26
5768     45                            2017-02-19
5769     46                            2017-02-12
5770     47                            2017-02-05
5771     48                            2017-01-29
5772     49                            2017-01-22
5773     50                            2017-01-15
5774     51                            2017-01-08
5775     52                            2017-01-01
5776      0                            2017-12-31
5777      1                            2017-12-24
5778      2                            2017-12-17
5779      3                            2017-12-10
5780      4                            2017-12-03
5781      5                            2017-11-26
5782      6                            2017-11-19
5783      7                            2017-11-12
5784      8                            2017-11-05
5785      9                            2017-10-29
5786     10                            2017-10-22
5787     11                            2017-10-15
5788     12                            2017-10-08
5789     13                            2017-10-01
5790     14                            2017-09-24
5791     15                            2017-09-17
5792     16                            2017-09-10
5793     17                            2017-09-03
5794     18                            2017-08-27
5795     19                            2017-08-20
5796     20                            2017-08-13
5797     21                            2017-08-06
5798     22                            2017-07-30
5799     23                            2017-07-23
5800     24                            2017-07-16
5801     25                            2017-07-09
5802     26                            2017-07-02
5803     27                            2017-06-25
5804     28                            2017-06-18
5805     29                            2017-06-11
5806     30                            2017-06-04
5807     31                            2017-05-28
5808     32                            2017-05-21
5809     33                            2017-05-14
5810     34                            2017-05-07
5811     35                            2017-04-30
5812     36                            2017-04-23
5813     37                            2017-04-16
5814     38                            2017-04-09
5815     39                            2017-04-02
5816     40                            2017-03-26
5817     41                            2017-03-19
5818     42                            2017-03-12
5819     43                            2017-03-05
5820     44                            2017-02-26
5821     45                            2017-02-19
5822     46                            2017-02-12
5823     47                            2017-02-05
5824     48                            2017-01-29
5825     49                            2017-01-22
5826     50                            2017-01-15
5827     51                            2017-01-08
5828     52                            2017-01-01
5829      0                            2017-12-31
5830      1                            2017-12-24
5831      2                            2017-12-17
5832      3                            2017-12-10
5833      4                            2017-12-03
5834      5                            2017-11-26
5835      6                            2017-11-19
5836      7                            2017-11-12
5837      8                            2017-11-05
5838      9                            2017-10-29
5839     10                            2017-10-22
5840     11                            2017-10-15
5841     12                            2017-10-08
5842     13                            2017-10-01
5843     14                            2017-09-24
5844     15                            2017-09-17
5845     16                            2017-09-10
5846     17                            2017-09-03
5847     18                            2017-08-27
5848     19                            2017-08-20
5849     20                            2017-08-13
5850     21                            2017-08-06
5851     22                            2017-07-30
5852     23                            2017-07-23
5853     24                            2017-07-16
5854     25                            2017-07-09
5855     26                            2017-07-02
5856     27                            2017-06-25
5857     28                            2017-06-18
5858     29                            2017-06-11
5859     30                            2017-06-04
5860     31                            2017-05-28
5861     32                            2017-05-21
5862     33                            2017-05-14
5863     34                            2017-05-07
5864     35                            2017-04-30
5865     36                            2017-04-23
5866     37                            2017-04-16
5867     38                            2017-04-09
5868     39                            2017-04-02
5869     40                            2017-03-26
5870     41                            2017-03-19
5871     42                            2017-03-12
5872     43                            2017-03-05
5873     44                            2017-02-26
5874     45                            2017-02-19
5875     46                            2017-02-12
5876     47                            2017-02-05
5877     48                            2017-01-29
5878     49                            2017-01-22
5879     50                            2017-01-15
5880     51                            2017-01-08
5881     52                            2017-01-01
5882      0                            2017-12-31
5883      1                            2017-12-24
5884      2                            2017-12-17
5885      3                            2017-12-10
5886      4                            2017-12-03
5887      5                            2017-11-26
5888      6                            2017-11-19
5889      7                            2017-11-12
5890      8                            2017-11-05
5891      9                            2017-10-29
5892     10                            2017-10-22
5893     11                            2017-10-15
5894     12                            2017-10-08
5895     13                            2017-10-01
5896     14                            2017-09-24
5897     15                            2017-09-17
5898     16                            2017-09-10
5899     17                            2017-09-03
5900     18                            2017-08-27
5901     19                            2017-08-20
5902     20                            2017-08-13
5903     21                            2017-08-06
5904     22                            2017-07-30
5905     23                            2017-07-23
5906     24                            2017-07-16
5907     25                            2017-07-09
5908     26                            2017-07-02
5909     27                            2017-06-25
5910     28                            2017-06-18
5911     29                            2017-06-11
5912     30                            2017-06-04
5913     31                            2017-05-28
5914     32                            2017-05-21
5915     33                            2017-05-14
5916     34                            2017-05-07
5917     35                            2017-04-30
5918     36                            2017-04-23
5919     37                            2017-04-16
5920     38                            2017-04-09
5921     39                            2017-04-02
5922     40                            2017-03-26
5923     41                            2017-03-19
5924     42                            2017-03-12
5925     43                            2017-03-05
5926     44                            2017-02-26
5927     45                            2017-02-19
5928     46                            2017-02-12
5929     47                            2017-02-05
5930     48                            2017-01-29
5931     49                            2017-01-22
5932     50                            2017-01-15
5933     51                            2017-01-08
5934     52                            2017-01-01
5935      0                            2017-12-31
5936      1                            2017-12-24
5937      2                            2017-12-17
5938      3                            2017-12-10
5939      4                            2017-12-03
5940      5                            2017-11-26
5941      6                            2017-11-19
5942      7                            2017-11-12
5943      8                            2017-11-05
5944      9                            2017-10-29
5945     10                            2017-10-22
5946     11                            2017-10-15
5947     12                            2017-10-08
5948     13                            2017-10-01
5949     14                            2017-09-24
5950     15                            2017-09-17
5951     16                            2017-09-10
5952     17                            2017-09-03
5953     18                            2017-08-27
5954     19                            2017-08-20
5955     20                            2017-08-13
5956     21                            2017-08-06
5957     22                            2017-07-30
5958     23                            2017-07-23
5959     24                            2017-07-16
5960     25                            2017-07-09
5961     26                            2017-07-02
5962     27                            2017-06-25
5963     28                            2017-06-18
5964     29                            2017-06-11
5965     30                            2017-06-04
5966     31                            2017-05-28
5967     32                            2017-05-21
5968     33                            2017-05-14
5969     34                            2017-05-07
5970     35                            2017-04-30
5971     36                            2017-04-23
5972     37                            2017-04-16
5973     38                            2017-04-09
5974     39                            2017-04-02
5975     40                            2017-03-26
5976     41                            2017-03-19
5977     42                            2017-03-12
5978     43                            2017-03-05
5979     44                            2017-02-26
5980     45                            2017-02-19
5981     46                            2017-02-12
5982     47                            2017-02-05
5983     48                            2017-01-29
5984     49                            2017-01-22
5985     50                            2017-01-15
5986     51                            2017-01-08
5987     52                            2017-01-01
5988      0                            2017-12-31
5989      1                            2017-12-24
5990      2                            2017-12-17
5991      3                            2017-12-10
5992      4                            2017-12-03
5993      5                            2017-11-26
5994      6                            2017-11-19
5995      7                            2017-11-12
5996      8                            2017-11-05
5997      9                            2017-10-29
5998     10                            2017-10-22
5999     11                            2017-10-15
6000     12                            2017-10-08
6001     13                            2017-10-01
6002     14                            2017-09-24
6003     15                            2017-09-17
6004     16                            2017-09-10
6005     17                            2017-09-03
6006     18                            2017-08-27
6007     19                            2017-08-20
6008     20                            2017-08-13
6009     21                            2017-08-06
6010     22                            2017-07-30
6011     23                            2017-07-23
6012     24                            2017-07-16
6013     25                            2017-07-09
6014     26                            2017-07-02
6015     27                            2017-06-25
6016     28                            2017-06-18
6017     29                            2017-06-11
6018     30                            2017-06-04
6019     31                            2017-05-28
6020     32                            2017-05-21
6021     33                            2017-05-14
6022     34                            2017-05-07
6023     35                            2017-04-30
6024     36                            2017-04-23
6025     37                            2017-04-16
6026     38                            2017-04-09
6027     39                            2017-04-02
6028     40                            2017-03-26
6029     41                            2017-03-19
6030     42                            2017-03-12
6031     43                            2017-03-05
6032     44                            2017-02-26
6033     45                            2017-02-19
6034     46                            2017-02-12
6035     47                            2017-02-05
6036     48                            2017-01-29
6037     49                            2017-01-22
6038     50                            2017-01-15
6039     51                            2017-01-08
6040     52                            2017-01-01
6041      0                            2017-12-31
6042      1                            2017-12-24
6043      2                            2017-12-17
6044      3                            2017-12-10
6045      4                            2017-12-03
6046      5                            2017-11-26
6047      6                            2017-11-19
6048      7                            2017-11-12
6049      8                            2017-11-05
6050      9                            2017-10-29
6051     10                            2017-10-22
6052     11                            2017-10-15
6053     12                            2017-10-08
6054     13                            2017-10-01
6055     14                            2017-09-24
6056     15                            2017-09-17
6057     16                            2017-09-10
6058     17                            2017-09-03
6059     18                            2017-08-27
6060     19                            2017-08-20
6061     20                            2017-08-13
6062     21                            2017-08-06
6063     22                            2017-07-30
6064     23                            2017-07-23
6065     24                            2017-07-16
6066     25                            2017-07-09
6067     26                            2017-07-02
6068     27                            2017-06-25
6069     28                            2017-06-18
6070     29                            2017-06-11
6071     30                            2017-06-04
6072     31                            2017-05-28
6073     32                            2017-05-21
6074     33                            2017-05-14
6075     34                            2017-05-07
6076     35                            2017-04-30
6077     36                            2017-04-23
6078     37                            2017-04-16
6079     38                            2017-04-09
6080     39                            2017-04-02
6081     40                            2017-03-26
6082     41                            2017-03-19
6083     42                            2017-03-12
6084     43                            2017-03-05
6085     44                            2017-02-26
6086     45                            2017-02-19
6087     46                            2017-02-12
6088     47                            2017-02-05
6089     48                            2017-01-29
6090     49                            2017-01-22
6091     50                            2017-01-15
6092     51                            2017-01-08
6093     52                            2017-01-01
6094      0                            2017-12-31
6095      1                            2017-12-24
6096      2                            2017-12-17
6097      3                            2017-12-10
6098      4                            2017-12-03
6099      5                            2017-11-26
6100      6                            2017-11-19
6101      7                            2017-11-12
6102      8                            2017-11-05
6103      9                            2017-10-29
6104     10                            2017-10-22
6105     11                            2017-10-15
6106     12                            2017-10-08
6107     13                            2017-10-01
6108     14                            2017-09-24
6109     15                            2017-09-17
6110     16                            2017-09-10
6111     17                            2017-09-03
6112     18                            2017-08-27
6113     19                            2017-08-20
6114     20                            2017-08-13
6115     21                            2017-08-06
6116     22                            2017-07-30
6117     23                            2017-07-23
6118     24                            2017-07-16
6119     25                            2017-07-09
6120     26                            2017-07-02
6121     27                            2017-06-25
6122     28                            2017-06-18
6123     29                            2017-06-11
6124     30                            2017-06-04
6125     31                            2017-05-28
6126     32                            2017-05-21
6127     33                            2017-05-14
6128     34                            2017-05-07
6129     35                            2017-04-30
6130     36                            2017-04-23
6131     37                            2017-04-16
6132     38                            2017-04-09
6133     39                            2017-04-02
6134     40                            2017-03-26
6135     41                            2017-03-19
6136     42                            2017-03-12
6137     43                            2017-03-05
6138     44                            2017-02-26
6139     45                            2017-02-19
6140     46                            2017-02-12
6141     47                            2017-02-05
6142     48                            2017-01-29
6143     49                            2017-01-22
6144     50                            2017-01-15
6145     51                            2017-01-08
6146     52                            2017-01-01
6147      0                            2017-12-31
6148      1                            2017-12-24
6149      2                            2017-12-17
6150      3                            2017-12-10
6151      4                            2017-12-03
6152      5                            2017-11-26
6153      6                            2017-11-19
6154      7                            2017-11-12
6155      8                            2017-11-05
6156      9                            2017-10-29
6157     10                            2017-10-22
6158     11                            2017-10-15
6159     12                            2017-10-08
6160     13                            2017-10-01
6161     14                            2017-09-24
6162     15                            2017-09-17
6163     16                            2017-09-10
6164     17                            2017-09-03
6165     18                            2017-08-27
6166     19                            2017-08-20
6167     20                            2017-08-13
6168     21                            2017-08-06
6169     22                            2017-07-30
6170     23                            2017-07-23
6171     24                            2017-07-16
6172     25                            2017-07-09
6173     26                            2017-07-02
6174     27                            2017-06-25
6175     28                            2017-06-18
6176     29                            2017-06-11
6177     30                            2017-06-04
6178     31                            2017-05-28
6179     32                            2017-05-21
6180     33                            2017-05-14
6181     34                            2017-05-07
6182     35                            2017-04-30
6183     36                            2017-04-23
6184     37                            2017-04-16
6185     38                            2017-04-09
6186     39                            2017-04-02
6187     40                            2017-03-26
6188     41                            2017-03-19
6189     42                            2017-03-12
6190     43                            2017-03-05
6191     44                            2017-02-26
6192     45                            2017-02-19
6193     46                            2017-02-12
6194     47                            2017-02-05
6195     48                            2017-01-29
6196     49                            2017-01-22
6197     50                            2017-01-15
6198     51                            2017-01-08
6199     52                            2017-01-01
6200      0                            2017-12-31
6201      1                            2017-12-24
6202      2                            2017-12-17
6203      3                            2017-12-10
6204      4                            2017-12-03
6205      5                            2017-11-26
6206      6                            2017-11-19
6207      7                            2017-11-12
6208      8                            2017-11-05
6209      9                            2017-10-29
6210     10                            2017-10-22
6211     11                            2017-10-15
6212     12                            2017-10-08
6213     13                            2017-10-01
6214     14                            2017-09-24
6215     15                            2017-09-17
6216     16                            2017-09-10
6217     17                            2017-09-03
6218     18                            2017-08-27
6219     19                            2017-08-20
6220     20                            2017-08-13
6221     21                            2017-08-06
6222     22                            2017-07-30
6223     23                            2017-07-23
6224     24                            2017-07-16
6225     25                            2017-07-09
6226     26                            2017-07-02
6227     27                            2017-06-25
6228     28                            2017-06-18
6229     29                            2017-06-11
6230     30                            2017-06-04
6231     31                            2017-05-28
6232     32                            2017-05-21
6233     33                            2017-05-14
6234     34                            2017-05-07
6235     35                            2017-04-30
6236     36                            2017-04-23
6237     37                            2017-04-16
6238     38                            2017-04-09
6239     39                            2017-04-02
6240     40                            2017-03-26
6241     41                            2017-03-19
6242     42                            2017-03-12
6243     43                            2017-03-05
6244     44                            2017-02-26
6245     45                            2017-02-19
6246     46                            2017-02-12
6247     47                            2017-02-05
6248     48                            2017-01-29
6249     49                            2017-01-22
6250     50                            2017-01-15
6251     51                            2017-01-08
6252     52                            2017-01-01
6253      0                            2017-12-31
6254      1                            2017-12-24
6255      2                            2017-12-17
6256      3                            2017-12-10
6257      4                            2017-12-03
6258      5                            2017-11-26
6259      6                            2017-11-19
6260      7                            2017-11-12
6261      8                            2017-11-05
6262      9                            2017-10-29
6263     10                            2017-10-22
6264     11                            2017-10-15
6265     12                            2017-10-08
6266     13                            2017-10-01
6267     14                            2017-09-24
6268     15                            2017-09-17
6269     16                            2017-09-10
6270     17                            2017-09-03
6271     18                            2017-08-27
6272     19                            2017-08-20
6273     20                            2017-08-13
6274     21                            2017-08-06
6275     22                            2017-07-30
6276     23                            2017-07-23
6277     24                            2017-07-16
6278     25                            2017-07-09
6279     26                            2017-07-02
6280     27                            2017-06-25
6281     28                            2017-06-18
6282     29                            2017-06-11
6283     30                            2017-06-04
6284     31                            2017-05-28
6285     32                            2017-05-21
6286     33                            2017-05-14
6287     34                            2017-05-07
6288     35                            2017-04-30
6289     36                            2017-04-23
6290     37                            2017-04-16
6291     38                            2017-04-09
6292     39                            2017-04-02
6293     40                            2017-03-26
6294     41                            2017-03-19
6295     42                            2017-03-12
6296     43                            2017-03-05
6297     44                            2017-02-26
6298     45                            2017-02-19
6299     46                            2017-02-12
6300     47                            2017-02-05
6301     48                            2017-01-29
6302     49                            2017-01-22
6303     50                            2017-01-15
6304     51                            2017-01-08
6305     52                            2017-01-01
6306      0                            2017-12-31
6307      1                            2017-12-24
6308      2                            2017-12-17
6309      3                            2017-12-10
6310      4                            2017-12-03
6311      5                            2017-11-26
6312      6                            2017-11-19
6313      7                            2017-11-12
6314      8                            2017-11-05
6315      9                            2017-10-29
6316     10                            2017-10-22
6317     11                            2017-10-15
6318     12                            2017-10-08
6319     13                            2017-10-01
6320     14                            2017-09-24
6321     15                            2017-09-17
6322     16                            2017-09-10
6323     17                            2017-09-03
6324     18                            2017-08-27
6325     19                            2017-08-20
6326     20                            2017-08-13
6327     21                            2017-08-06
6328     22                            2017-07-30
6329     23                            2017-07-23
6330     24                            2017-07-16
6331     25                            2017-07-09
6332     26                            2017-07-02
6333     27                            2017-06-25
6334     28                            2017-06-18
6335     29                            2017-06-11
6336     30                            2017-06-04
6337     31                            2017-05-28
6338     32                            2017-05-21
6339     33                            2017-05-14
6340     34                            2017-05-07
6341     35                            2017-04-30
6342     36                            2017-04-23
6343     37                            2017-04-16
6344     38                            2017-04-09
6345     39                            2017-04-02
6346     40                            2017-03-26
6347     41                            2017-03-19
6348     42                            2017-03-12
6349     43                            2017-03-05
6350     44                            2017-02-26
6351     45                            2017-02-19
6352     46                            2017-02-12
6353     47                            2017-02-05
6354     48                            2017-01-29
6355     49                            2017-01-22
6356     50                            2017-01-15
6357     51                            2017-01-08
6358     52                            2017-01-01
6359      0                            2017-12-31
6360      1                            2017-12-24
6361      2                            2017-12-17
6362      3                            2017-12-10
6363      4                            2017-12-03
6364      5                            2017-11-26
6365      6                            2017-11-19
6366      7                            2017-11-12
6367      8                            2017-11-05
6368      9                            2017-10-29
6369     10                            2017-10-22
6370     11                            2017-10-15
6371     12                            2017-10-08
6372     13                            2017-10-01
6373     14                            2017-09-24
6374     15                            2017-09-17
6375     16                            2017-09-10
6376     17                            2017-09-03
6377     18                            2017-08-27
6378     19                            2017-08-20
6379     20                            2017-08-13
6380     21                            2017-08-06
6381     22                            2017-07-30
6382     23                            2017-07-23
6383     24                            2017-07-16
6384     25                            2017-07-09
6385     26                            2017-07-02
6386     27                            2017-06-25
6387     28                            2017-06-18
6388     29                            2017-06-11
6389     30                            2017-06-04
6390     31                            2017-05-28
6391     32                            2017-05-21
6392     33                            2017-05-14
6393     34                            2017-05-07
6394     35                            2017-04-30
6395     36                            2017-04-23
6396     37                            2017-04-16
6397     38                            2017-04-09
6398     39                            2017-04-02
6399     40                            2017-03-26
6400     41                            2017-03-19
6401     42                            2017-03-12
6402     43                            2017-03-05
6403     44                            2017-02-26
6404     45                            2017-02-19
6405     46                            2017-02-12
6406     47                            2017-02-05
6407     48                            2017-01-29
6408     49                            2017-01-22
6409     50                            2017-01-15
6410     51                            2017-01-08
6411     52                            2017-01-01
6412      0                            2017-12-31
6413      1                            2017-12-24
6414      2                            2017-12-17
6415      3                            2017-12-10
6416      4                            2017-12-03
6417      5                            2017-11-26
6418      6                            2017-11-19
6419      7                            2017-11-12
6420      8                            2017-11-05
6421      9                            2017-10-29
6422     10                            2017-10-22
6423     11                            2017-10-15
6424     12                            2017-10-08
6425     13                            2017-10-01
6426     14                            2017-09-24
6427     15                            2017-09-17
6428     16                            2017-09-10
6429     17                            2017-09-03
6430     18                            2017-08-27
6431     19                            2017-08-20
6432     20                            2017-08-13
6433     21                            2017-08-06
6434     22                            2017-07-30
6435     23                            2017-07-23
6436     24                            2017-07-16
6437     25                            2017-07-09
6438     26                            2017-07-02
6439     27                            2017-06-25
6440     28                            2017-06-18
6441     29                            2017-06-11
6442     30                            2017-06-04
6443     31                            2017-05-28
6444     32                            2017-05-21
6445     33                            2017-05-14
6446     34                            2017-05-07
6447     35                            2017-04-30
6448     36                            2017-04-23
6449     37                            2017-04-16
6450     38                            2017-04-09
6451     39                            2017-04-02
6452     40                            2017-03-26
6453     41                            2017-03-19
6454     42                            2017-03-12
6455     43                            2017-03-05
6456     44                            2017-02-26
6457     45                            2017-02-19
6458     46                            2017-02-12
6459     47                            2017-02-05
6460     48                            2017-01-29
6461     49                            2017-01-22
6462     50                            2017-01-15
6463     51                            2017-01-08
6464     52                            2017-01-01
6465      0                            2017-12-31
6466      1                            2017-12-24
6467      2                            2017-12-17
6468      3                            2017-12-10
6469      4                            2017-12-03
6470      5                            2017-11-26
6471      6                            2017-11-19
6472      7                            2017-11-12
6473      8                            2017-11-05
6474      9                            2017-10-29
6475     10                            2017-10-22
6476     11                            2017-10-15
6477     12                            2017-10-08
6478     13                            2017-10-01
6479     14                            2017-09-24
6480     15                            2017-09-17
6481     16                            2017-09-10
6482     17                            2017-09-03
6483     18                            2017-08-27
6484     19                            2017-08-20
6485     20                            2017-08-13
6486     21                            2017-08-06
6487     22                            2017-07-30
6488     23                            2017-07-23
6489     24                            2017-07-16
6490     25                            2017-07-09
6491     26                            2017-07-02
6492     27                            2017-06-25
6493     28                            2017-06-18
6494     29                            2017-06-11
6495     30                            2017-06-04
6496     31                            2017-05-28
6497     32                            2017-05-21
6498     33                            2017-05-14
6499     34                            2017-05-07
6500     35                            2017-04-30
6501     36                            2017-04-23
6502     37                            2017-04-16
6503     38                            2017-04-09
6504     39                            2017-04-02
6505     40                            2017-03-26
6506     41                            2017-03-19
6507     42                            2017-03-12
6508     43                            2017-03-05
6509     44                            2017-02-26
6510     45                            2017-02-19
6511     46                            2017-02-12
6512     47                            2017-02-05
6513     48                            2017-01-29
6514     49                            2017-01-22
6515     50                            2017-01-15
6516     51                            2017-01-08
6517     52                            2017-01-01
6518      0                            2017-12-31
6519      1                            2017-12-24
6520      2                            2017-12-17
6521      3                            2017-12-10
6522      4                            2017-12-03
6523      5                            2017-11-26
6524      6                            2017-11-19
6525      7                            2017-11-12
6526      8                            2017-11-05
6527      9                            2017-10-29
6528     10                            2017-10-22
6529     11                            2017-10-15
6530     12                            2017-10-08
6531     13                            2017-10-01
6532     14                            2017-09-24
6533     15                            2017-09-17
6534     16                            2017-09-10
6535     17                            2017-09-03
6536     18                            2017-08-27
6537     19                            2017-08-20
6538     20                            2017-08-13
6539     21                            2017-08-06
6540     22                            2017-07-30
6541     23                            2017-07-23
6542     24                            2017-07-16
6543     25                            2017-07-09
6544     26                            2017-07-02
6545     27                            2017-06-25
6546     28                            2017-06-18
6547     29                            2017-06-11
6548     30                            2017-06-04
6549     31                            2017-05-28
6550     32                            2017-05-21
6551     33                            2017-05-14
6552     34                            2017-05-07
6553     35                            2017-04-30
6554     36                            2017-04-23
6555     37                            2017-04-16
6556     38                            2017-04-09
6557     39                            2017-04-02
6558     40                            2017-03-26
6559     41                            2017-03-19
6560     42                            2017-03-12
6561     43                            2017-03-05
6562     44                            2017-02-26
6563     45                            2017-02-19
6564     46                            2017-02-12
6565     47                            2017-02-05
6566     48                            2017-01-29
6567     49                            2017-01-22
6568     50                            2017-01-15
6569     51                            2017-01-08
6570     52                            2017-01-01
6571      0                            2017-12-31
6572      1                            2017-12-24
6573      2                            2017-12-17
6574      3                            2017-12-10
6575      4                            2017-12-03
6576      5                            2017-11-26
6577      6                            2017-11-19
6578      7                            2017-11-12
6579      8                            2017-11-05
6580      9                            2017-10-29
6581     10                            2017-10-22
6582     11                            2017-10-15
6583     12                            2017-10-08
6584     13                            2017-10-01
6585     14                            2017-09-24
6586     15                            2017-09-17
6587     16                            2017-09-10
6588     17                            2017-09-03
6589     18                            2017-08-27
6590     19                            2017-08-20
6591     20                            2017-08-13
6592     21                            2017-08-06
6593     22                            2017-07-30
6594     23                            2017-07-23
6595     24                            2017-07-16
6596     25                            2017-07-09
6597     26                            2017-07-02
6598     27                            2017-06-25
6599     28                            2017-06-18
6600     29                            2017-06-11
6601     30                            2017-06-04
6602     31                            2017-05-28
6603     32                            2017-05-21
6604     33                            2017-05-14
6605     34                            2017-05-07
6606     35                            2017-04-30
6607     36                            2017-04-23
6608     37                            2017-04-16
6609     38                            2017-04-09
6610     39                            2017-04-02
6611     40                            2017-03-26
6612     41                            2017-03-19
6613     42                            2017-03-12
6614     43                            2017-03-05
6615     44                            2017-02-26
6616     45                            2017-02-19
6617     46                            2017-02-12
6618     47                            2017-02-05
6619     48                            2017-01-29
6620     49                            2017-01-22
6621     50                            2017-01-15
6622     51                            2017-01-08
6623     52                            2017-01-01
6624      0                            2017-12-31
6625      1                            2017-12-24
6626      2                            2017-12-17
6627      3                            2017-12-10
6628      4                            2017-12-03
6629      5                            2017-11-26
6630      6                            2017-11-19
6631      7                            2017-11-12
6632      8                            2017-11-05
6633      9                            2017-10-29
6634     10                            2017-10-22
6635     11                            2017-10-15
6636     12                            2017-10-08
6637     13                            2017-10-01
6638     14                            2017-09-24
6639     15                            2017-09-17
6640     16                            2017-09-10
6641     17                            2017-09-03
6642     18                            2017-08-27
6643     19                            2017-08-20
6644     20                            2017-08-13
6645     21                            2017-08-06
6646     22                            2017-07-30
6647     23                            2017-07-23
6648     24                            2017-07-16
6649     25                            2017-07-09
6650     26                            2017-07-02
6651     27                            2017-06-25
6652     28                            2017-06-18
6653     29                            2017-06-11
6654     30                            2017-06-04
6655     31                            2017-05-28
6656     32                            2017-05-21
6657     33                            2017-05-14
6658     34                            2017-05-07
6659     35                            2017-04-30
6660     36                            2017-04-23
6661     37                            2017-04-16
6662     38                            2017-04-09
6663     39                            2017-04-02
6664     40                            2017-03-26
6665     41                            2017-03-19
6666     42                            2017-03-12
6667     43                            2017-03-05
6668     44                            2017-02-26
6669     45                            2017-02-19
6670     46                            2017-02-12
6671     47                            2017-02-05
6672     48                            2017-01-29
6673     49                            2017-01-22
6674     50                            2017-01-15
6675     51                            2017-01-08
6676     52                            2017-01-01
6677      0                            2017-12-31
6678      1                            2017-12-24
6679      2                            2017-12-17
6680      3                            2017-12-10
6681      4                            2017-12-03
6682      5                            2017-11-26
6683      6                            2017-11-19
6684      7                            2017-11-12
6685      8                            2017-11-05
6686      9                            2017-10-29
6687     10                            2017-10-22
6688     11                            2017-10-15
6689     12                            2017-10-08
6690     13                            2017-10-01
6691     14                            2017-09-24
6692     15                            2017-09-17
6693     16                            2017-09-10
6694     17                            2017-09-03
6695     18                            2017-08-27
6696     19                            2017-08-20
6697     20                            2017-08-13
6698     21                            2017-08-06
6699     22                            2017-07-30
6700     23                            2017-07-23
6701     24                            2017-07-16
6702     25                            2017-07-09
6703     26                            2017-07-02
6704     27                            2017-06-25
6705     28                            2017-06-18
6706     29                            2017-06-11
6707     30                            2017-06-04
6708     31                            2017-05-28
6709     32                            2017-05-21
6710     33                            2017-05-14
6711     34                            2017-05-07
6712     35                            2017-04-30
6713     36                            2017-04-23
6714     37                            2017-04-16
6715     38                            2017-04-09
6716     39                            2017-04-02
6717     40                            2017-03-26
6718     41                            2017-03-19
6719     42                            2017-03-12
6720     43                            2017-03-05
6721     44                            2017-02-26
6722     45                            2017-02-19
6723     46                            2017-02-12
6724     47                            2017-02-05
6725     48                            2017-01-29
6726     49                            2017-01-22
6727     50                            2017-01-15
6728     51                            2017-01-08
6729     52                            2017-01-01
6730      0                            2017-12-31
6731      1                            2017-12-24
6732      2                            2017-12-17
6733      3                            2017-12-10
6734      4                            2017-12-03
6735      5                            2017-11-26
6736      6                            2017-11-19
6737      7                            2017-11-12
6738      8                            2017-11-05
6739      9                            2017-10-29
6740     10                            2017-10-22
6741     11                            2017-10-15
6742     12                            2017-10-08
6743     13                            2017-10-01
6744     14                            2017-09-24
6745     15                            2017-09-17
6746     16                            2017-09-10
6747     17                            2017-09-03
6748     18                            2017-08-27
6749     19                            2017-08-20
6750     20                            2017-08-13
6751     21                            2017-08-06
6752     22                            2017-07-30
6753     23                            2017-07-23
6754     24                            2017-07-16
6755     25                            2017-07-09
6756     26                            2017-07-02
6757     27                            2017-06-25
6758     28                            2017-06-18
6759     29                            2017-06-11
6760     30                            2017-06-04
6761     31                            2017-05-28
6762     32                            2017-05-21
6763     33                            2017-05-14
6764     34                            2017-05-07
6765     35                            2017-04-30
6766     36                            2017-04-23
6767     37                            2017-04-16
6768     38                            2017-04-09
6769     39                            2017-04-02
6770     40                            2017-03-26
6771     41                            2017-03-19
6772     42                            2017-03-12
6773     43                            2017-03-05
6774     44                            2017-02-26
6775     45                            2017-02-19
6776     46                            2017-02-12
6777     47                            2017-02-05
6778     48                            2017-01-29
6779     49                            2017-01-22
6780     50                            2017-01-15
6781     51                            2017-01-08
6782     52                            2017-01-01
6783      0                            2017-12-31
6784      1                            2017-12-24
6785      2                            2017-12-17
6786      3                            2017-12-10
6787      4                            2017-12-03
6788      5                            2017-11-26
6789      6                            2017-11-19
6790      7                            2017-11-12
6791      8                            2017-11-05
6792      9                            2017-10-29
6793     10                            2017-10-22
6794     11                            2017-10-15
6795     12                            2017-10-08
6796     13                            2017-10-01
6797     14                            2017-09-24
6798     15                            2017-09-17
6799     16                            2017-09-10
6800     17                            2017-09-03
6801     18                            2017-08-27
6802     19                            2017-08-20
6803     20                            2017-08-13
6804     21                            2017-08-06
6805     22                            2017-07-30
6806     23                            2017-07-23
6807     24                            2017-07-16
6808     25                            2017-07-09
6809     26                            2017-07-02
6810     27                            2017-06-25
6811     28                            2017-06-18
6812     29                            2017-06-11
6813     30                            2017-06-04
6814     31                            2017-05-28
6815     32                            2017-05-21
6816     33                            2017-05-14
6817     34                            2017-05-07
6818     35                            2017-04-30
6819     36                            2017-04-23
6820     37                            2017-04-16
6821     38                            2017-04-09
6822     39                            2017-04-02
6823     40                            2017-03-26
6824     41                            2017-03-19
6825     42                            2017-03-12
6826     43                            2017-03-05
6827     44                            2017-02-26
6828     45                            2017-02-19
6829     46                            2017-02-12
6830     47                            2017-02-05
6831     48                            2017-01-29
6832     49                            2017-01-22
6833     50                            2017-01-15
6834     51                            2017-01-08
6835     52                            2017-01-01
6836      0                            2017-12-31
6837      1                            2017-12-24
6838      2                            2017-12-17
6839      3                            2017-12-10
6840      4                            2017-12-03
6841      5                            2017-11-26
6842      6                            2017-11-19
6843      7                            2017-11-12
6844      8                            2017-11-05
6845      9                            2017-10-29
6846     10                            2017-10-22
6847     11                            2017-10-15
6848     12                            2017-10-08
6849     13                            2017-10-01
6850     14                            2017-09-24
6851     15                            2017-09-17
6852     16                            2017-09-10
6853     17                            2017-09-03
6854     18                            2017-08-27
6855     19                            2017-08-20
6856     20                            2017-08-13
6857     21                            2017-08-06
6858     22                            2017-07-30
6859     23                            2017-07-23
6860     24                            2017-07-16
6861     25                            2017-07-09
6862     26                            2017-07-02
6863     27                            2017-06-25
6864     28                            2017-06-18
6865     29                            2017-06-11
6866     30                            2017-06-04
6867     31                            2017-05-28
6868     32                            2017-05-21
6869     33                            2017-05-14
6870     34                            2017-05-07
6871     35                            2017-04-30
6872     36                            2017-04-23
6873     37                            2017-04-16
6874     38                            2017-04-09
6875     39                            2017-04-02
6876     40                            2017-03-26
6877     41                            2017-03-19
6878     42                            2017-03-12
6879     43                            2017-03-05
6880     44                            2017-02-26
6881     45                            2017-02-19
6882     46                            2017-02-12
6883     47                            2017-02-05
6884     48                            2017-01-29
6885     49                            2017-01-22
6886     50                            2017-01-15
6887     51                            2017-01-08
6888     52                            2017-01-01
6889      0                            2017-12-31
6890      1                            2017-12-24
6891      2                            2017-12-17
6892      3                            2017-12-10
6893      4                            2017-12-03
6894      5                            2017-11-26
6895      6                            2017-11-19
6896      7                            2017-11-12
6897      8                            2017-11-05
6898      9                            2017-10-29
6899     10                            2017-10-22
6900     11                            2017-10-15
6901     12                            2017-10-08
6902     13                            2017-10-01
6903     14                            2017-09-24
6904     15                            2017-09-17
6905     16                            2017-09-10
6906     17                            2017-09-03
6907     18                            2017-08-27
6908     19                            2017-08-20
6909     20                            2017-08-13
6910     21                            2017-08-06
6911     22                            2017-07-30
6912     23                            2017-07-23
6913     24                            2017-07-16
6914     25                            2017-07-09
6915     26                            2017-07-02
6916     27                            2017-06-25
6917     28                            2017-06-18
6918     29                            2017-06-11
6919     30                            2017-06-04
6920     31                            2017-05-28
6921     32                            2017-05-21
6922     33                            2017-05-14
6923     34                            2017-05-07
6924     35                            2017-04-30
6925     36                            2017-04-23
6926     37                            2017-04-16
6927     38                            2017-04-09
6928     39                            2017-04-02
6929     40                            2017-03-26
6930     41                            2017-03-19
6931     42                            2017-03-12
6932     43                            2017-03-05
6933     44                            2017-02-26
6934     45                            2017-02-19
6935     46                            2017-02-12
6936     47                            2017-02-05
6937     48                            2017-01-29
6938     49                            2017-01-22
6939     50                            2017-01-15
6940     51                            2017-01-08
6941     52                            2017-01-01
6942      0                            2017-12-31
6943      1                            2017-12-24
6944      2                            2017-12-17
6945      3                            2017-12-10
6946      4                            2017-12-03
6947      5                            2017-11-26
6948      6                            2017-11-19
6949      7                            2017-11-12
6950      8                            2017-11-05
6951      9                            2017-10-29
6952     10                            2017-10-22
6953     11                            2017-10-15
6954     12                            2017-10-08
6955     13                            2017-10-01
6956     14                            2017-09-24
6957     15                            2017-09-17
6958     16                            2017-09-10
6959     17                            2017-09-03
6960     18                            2017-08-27
6961     19                            2017-08-20
6962     20                            2017-08-13
6963     21                            2017-08-06
6964     22                            2017-07-30
6965     23                            2017-07-23
6966     24                            2017-07-16
6967     25                            2017-07-09
6968     26                            2017-07-02
6969     27                            2017-06-25
6970     28                            2017-06-18
6971     29                            2017-06-11
6972     30                            2017-06-04
6973     31                            2017-05-28
6974     32                            2017-05-21
6975     33                            2017-05-14
6976     34                            2017-05-07
6977     35                            2017-04-30
6978     36                            2017-04-23
6979     37                            2017-04-16
6980     38                            2017-04-09
6981     39                            2017-04-02
6982     40                            2017-03-26
6983     41                            2017-03-19
6984     42                            2017-03-12
6985     43                            2017-03-05
6986     44                            2017-02-26
6987     45                            2017-02-19
6988     46                            2017-02-12
6989     47                            2017-02-05
6990     48                            2017-01-29
6991     49                            2017-01-22
6992     50                            2017-01-15
6993     51                            2017-01-08
6994     52                            2017-01-01
6995      0                            2017-12-31
6996      1                            2017-12-24
6997      2                            2017-12-17
6998      3                            2017-12-10
6999      4                            2017-12-03
7000      5                            2017-11-26
7001      6                            2017-11-19
7002      7                            2017-11-12
7003      8                            2017-11-05
7004      9                            2017-10-29
7005     10                            2017-10-22
7006     11                            2017-10-15
7007     12                            2017-10-08
7008     13                            2017-10-01
7009     14                            2017-09-24
7010     15                            2017-09-17
7011     16                            2017-09-10
7012     17                            2017-09-03
7013     18                            2017-08-27
7014     19                            2017-08-20
7015     20                            2017-08-13
7016     21                            2017-08-06
7017     22                            2017-07-30
7018     23                            2017-07-23
7019     24                            2017-07-16
7020     25                            2017-07-09
7021     26                            2017-07-02
7022     27                            2017-06-25
7023     28                            2017-06-18
7024     29                            2017-06-11
7025     30                            2017-06-04
7026     31                            2017-05-28
7027     32                            2017-05-21
7028     33                            2017-05-14
7029     34                            2017-05-07
7030     35                            2017-04-30
7031     36                            2017-04-23
7032     37                            2017-04-16
7033     38                            2017-04-09
7034     39                            2017-04-02
7035     40                            2017-03-26
7036     41                            2017-03-19
7037     42                            2017-03-12
7038     43                            2017-03-05
7039     44                            2017-02-26
7040     45                            2017-02-19
7041     46                            2017-02-12
7042     47                            2017-02-05
7043     48                            2017-01-29
7044     49                            2017-01-22
7045     50                            2017-01-15
7046     51                            2017-01-08
7047     52                            2017-01-01
7048      0                            2017-12-31
7049      1                            2017-12-24
7050      2                            2017-12-17
7051      3                            2017-12-10
7052      4                            2017-12-03
7053      5                            2017-11-26
7054      6                            2017-11-19
7055      7                            2017-11-12
7056      8                            2017-11-05
7057      9                            2017-10-29
7058     10                            2017-10-22
7059     11                            2017-10-15
7060     12                            2017-10-08
7061     13                            2017-10-01
7062     14                            2017-09-24
7063     15                            2017-09-17
7064     16                            2017-09-10
7065     17                            2017-09-03
7066     18                            2017-08-27
7067     19                            2017-08-20
7068     20                            2017-08-13
7069     21                            2017-08-06
7070     22                            2017-07-30
7071     23                            2017-07-23
7072     24                            2017-07-16
7073     25                            2017-07-09
7074     26                            2017-07-02
7075     27                            2017-06-25
7076     28                            2017-06-18
7077     29                            2017-06-11
7078     30                            2017-06-04
7079     31                            2017-05-28
7080     32                            2017-05-21
7081     33                            2017-05-14
7082     34                            2017-05-07
7083     35                            2017-04-30
7084     36                            2017-04-23
7085     37                            2017-04-16
7086     38                            2017-04-09
7087     39                            2017-04-02
7088     40                            2017-03-26
7089     41                            2017-03-19
7090     42                            2017-03-12
7091     43                            2017-03-05
7092     44                            2017-02-26
7093     45                            2017-02-19
7094     46                            2017-02-12
7095     47                            2017-02-05
7096     48                            2017-01-29
7097     49                            2017-01-22
7098     50                            2017-01-15
7099     51                            2017-01-08
7100     52                            2017-01-01
7101      0                            2017-12-31
7102      1                            2017-12-24
7103      2                            2017-12-17
7104      3                            2017-12-10
7105      4                            2017-12-03
7106      5                            2017-11-26
7107      6                            2017-11-19
7108      7                            2017-11-12
7109      8                            2017-11-05
7110      9                            2017-10-29
7111     10                            2017-10-22
7112     11                            2017-10-15
7113     12                            2017-10-08
7114     13                            2017-10-01
7115     14                            2017-09-24
7116     15                            2017-09-17
7117     16                            2017-09-10
7118     17                            2017-09-03
7119     18                            2017-08-27
7120     19                            2017-08-20
7121     20                            2017-08-13
7122     21                            2017-08-06
7123     22                            2017-07-30
7124     23                            2017-07-23
7125     24                            2017-07-16
7126     25                            2017-07-09
7127     26                            2017-07-02
7128     27                            2017-06-25
7129     28                            2017-06-18
7130     29                            2017-06-11
7131     30                            2017-06-04
7132     31                            2017-05-28
7133     32                            2017-05-21
7134     33                            2017-05-14
7135     34                            2017-05-07
7136     35                            2017-04-30
7137     36                            2017-04-23
7138     37                            2017-04-16
7139     38                            2017-04-09
7140     39                            2017-04-02
7141     40                            2017-03-26
7142     41                            2017-03-19
     AveragePrice       (PRECIO PROMEDIO)
1                                    1.33
2                                    1.35
3                                    0.93
4                                    1.08
5                                    1.28
6                                    1.26
7                                    0.99
8                                    0.98
9                                    1.02
10                                   1.07
11                                   1.12
12                                   1.28
13                                   1.31
14                                   0.99
15                                   1.33
16                                   1.28
17                                   1.11
18                                   1.07
19                                   1.34
20                                   1.33
21                                   1.12
22                                   1.45
23                                   1.11
24                                   1.26
25                                   1.05
26                                   1.35
27                                   1.37
28                                   1.27
29                                   1.32
30                                   1.07
31                                   1.23
32                                   1.19
33                                   1.43
34                                   1.26
35                                   1.20
36                                   1.22
37                                   1.19
38                                   1.13
39                                   1.16
40                                   1.02
41                                   1.12
42                                   1.11
43                                   1.07
44                                   0.99
45                                   1.07
46                                   1.06
47                                   0.99
48                                   0.99
49                                   1.06
50                                   1.17
51                                   1.24
52                                   1.22
53                                   0.99
54                                   1.08
55                                   0.96
56                                   1.07
57                                   0.99
58                                   1.00
59                                   1.13
60                                   1.12
61                                   0.99
62                                   1.09
63                                   1.09
64                                   0.95
65                                   0.96
66                                   1.07
67                                   0.93
68                                   1.07
69                                   0.97
70                                   1.15
71                                   1.12
72                                   1.09
73                                   1.01
74                                   1.15
75                                   1.08
76                                   0.97
77                                   1.14
78                                   1.01
79                                   1.13
80                                   0.99
81                                   1.10
82                                   0.99
83                                   1.10
84                                   0.96
85                                   1.11
86                                   1.10
87                                   1.00
88                                   1.12
89                                   1.12
90                                   0.99
91                                   1.04
92                                   1.11
93                                   1.00
94                                   1.12
95                                   1.10
96                                   0.99
97                                   1.10
98                                   1.06
99                                   1.03
100                                  0.96
101                                  1.10
102                                  1.11
103                                  1.11
104                                  1.00
105                                  1.17
106                                  1.11
107                                  1.15
108                                  1.04
109                                  1.16
110                                  1.12
111                                  1.04
112                                  1.05
113                                  1.12
114                                  1.19
115                                  0.99
116                                  1.24
117                                  1.28
118                                  1.19
119                                  1.17
120                                  1.09
121                                  1.18
122                                  1.24
123                                  1.16
124                                  1.14
125                                  1.16
126                                  1.17
127                                  1.20
128                                  1.18
129                                  1.10
130                                  1.16
131                                  1.15
132                                  1.16
133                                  1.09
134                                  1.26
135                                  1.19
136                                  1.18
137                                  1.27
138                                  1.26
139                                  1.17
140                                  1.29
141                                  1.28
142                                  1.15
143                                  1.29
144                                  1.25
145                                  1.10
146                                  1.24
147                                  1.26
148                                  1.16
149                                  1.11
150                                  1.25
151                                  1.09
152                                  1.06
153                                  1.20
154                                  1.23
155                                  1.17
156                                  1.08
157                                  0.97
158                                  1.03
159                                  0.99
160                                  0.71
161                                  1.06
162                                  1.09
163                                  1.01
164                                  1.11
165                                  1.14
166                                  1.11
167                                  1.16
168                                  0.94
169                                  1.12
170                                  0.99
171                                  1.03
172                                  1.08
173                                  1.16
174                                  1.19
175                                  1.05
176                                  1.12
177                                  1.10
178                                  1.07
179                                  1.07
180                                  1.09
181                                  1.05
182                                  1.15
183                                  1.04
184                                  1.06
185                                  0.99
186                                  1.12
187                                  0.97
188                                  1.03
189                                  0.96
190                                  1.06
191                                  1.00
192                                  0.96
193                                  0.99
194                                  1.19
195                                  1.09
196                                  0.98
197                                  1.17
198                                  1.00
199                                  1.14
200                                  1.06
201                                  0.99
202                                  1.14
203                                  1.07
204                                  0.91
205                                  1.03
206                                  1.08
207                                  1.18
208                                  1.01
209                                  1.13
210                                  1.07
211                                  1.01
212                                  1.02
213                                  1.19
214                                  1.07
215                                  1.05
216                                  1.04
217                                  1.06
218                                  1.02
219                                  0.94
220                                  1.14
221                                  1.07
222                                  1.07
223                                  1.15
224                                  1.03
225                                  1.11
226                                  1.13
227                                  1.07
228                                  1.15
229                                  1.07
230                                  1.17
231                                  1.28
232                                  1.18
233                                  1.14
234                                  1.27
235                                  1.25
236                                  1.24
237                                  1.08
238                                  1.25
239                                  1.26
240                                  1.14
241                                  1.26
242                                  1.14
243                                  1.17
244                                  1.28
245                                  1.15
246                                  1.26
247                                  1.27
248                                  1.19
249                                  1.18
250                                  1.25
251                                  1.17
252                                  1.11
253                                  1.23
254                                  1.20
255                                  1.04
256                                  1.22
257                                  1.17
258                                  1.23
259                                  1.10
260                                  1.02
261                                  1.35
262                                  1.37
263                                  1.35
264                                  1.23
265                                  1.39
266                                  1.40
267                                  1.36
268                                  1.30
269                                  1.23
270                                  1.36
271                                  1.29
272                                  1.30
273                                  1.33
274                                  1.31
275                                  1.54
276                                  1.59
277                                  1.56
278                                  1.38
279                                  1.49
280                                  1.50
281                                  1.47
282                                  1.47
283                                  1.39
284                                  1.36
285                                  1.45
286                                  1.47
287                                  1.36
288                                  1.50
289                                  1.34
290                                  1.38
291                                  1.40
292                                  1.43
293                                  1.35
294                                  1.33
295                                  1.42
296                                  1.41
297                                  1.42
298                                  1.42
299                                  1.44
300                                  1.39
301                                  1.40
302                                  1.47
303                                  1.35
304                                  1.43
305                                  1.41
306                                  1.44
307                                  1.36
308                                  1.33
309                                  1.50
310                                  1.52
311                                  1.54
312                                  1.40
313                                  0.90
314                                  0.94
315                                  0.87
316                                  0.78
317                                  0.91
318                                  0.92
319                                  0.83
320                                  0.98
321                                  0.95
322                                  1.12
323                                  1.07
324                                  1.08
325                                  1.02
326                                  1.04
327                                  1.14
328                                  1.13
329                                  1.09
330                                  1.08
331                                  1.18
332                                  1.11
333                                  1.10
334                                  1.16
335                                  1.13
336                                  1.18
337                                  1.13
338                                  1.12
339                                  1.10
340                                  1.07
341                                  0.97
342                                  0.98
343                                  0.98
344                                  1.10
345                                  1.08
346                                  0.93
347                                  0.88
348                                  1.15
349                                  1.05
350                                  1.06
351                                  1.12
352                                  1.10
353                                  1.06
354                                  1.06
355                                  0.96
356                                  0.84
357                                  0.96
358                                  0.96
359                                  0.91
360                                  0.85
361                                  1.06
362                                  1.02
363                                  0.92
364                                  0.93
365                                  0.96
366                                  0.98
367                                  0.95
368                                  0.99
369                                  0.95
370                                  1.00
371                                  1.01
372                                  1.03
373                                  1.11
374                                  1.27
375                                  1.26
376                                  1.14
377                                  1.22
378                                  1.09
379                                  1.20
380                                  1.19
381                                  1.01
382                                  1.20
383                                  1.15
384                                  1.24
385                                  1.21
386                                  1.24
387                                  1.23
388                                  1.19
389                                  1.18
390                                  1.18
391                                  1.17
392                                  1.17
393                                  1.15
394                                  1.15
395                                  1.19
396                                  1.20
397                                  1.21
398                                  1.19
399                                  1.00
400                                  1.20
401                                  1.18
402                                  1.17
403                                  1.19
404                                  1.23
405                                  1.19
406                                  1.19
407                                  1.25
408                                  1.18
409                                  1.08
410                                  1.22
411                                  1.17
412                                  0.98
413                                  1.18
414                                  1.25
415                                  1.26
416                                  1.19
417                                  0.93
418                                  0.91
419                                  1.07
420                                  1.14
421                                  1.11
422                                  0.94
423                                  1.17
424                                  1.01
425                                  1.00
426                                  1.12
427                                  1.15
428                                  1.08
429                                  1.18
430                                  1.15
431                                  1.19
432                                  1.19
433                                  1.11
434                                  1.12
435                                  1.20
436                                  1.16
437                                  1.25
438                                  1.27
439                                  1.12
440                                  1.24
441                                  1.26
442                                  1.24
443                                  1.21
444                                  1.24
445                                  1.21
446                                  1.24
447                                  1.26
448                                  1.23
449                                  1.23
450                                  1.23
451                                  1.04
452                                  1.24
453                                  1.24
454                                  1.24
455                                  1.27
456                                  1.22
457                                  1.21
458                                  1.09
459                                  1.18
460                                  1.09
461                                  1.18
462                                  1.17
463                                  1.13
464                                  0.91
465                                  1.22
466                                  1.14
467                                  1.15
468                                  1.11
469                                  0.87
470                                  0.85
471                                  0.79
472                                  0.83
473                                  0.88
474                                  0.89
475                                  0.88
476                                  0.87
477                                  0.93
478                                  1.01
479                                  0.98
480                                  0.91
481                                  0.93
482                                  1.08
483                                  1.05
484                                  1.05
485                                  1.02
486                                  1.01
487                                  1.05
488                                  1.01
489                                  1.08
490                                  1.09
491                                  1.03
492                                  1.06
493                                  1.03
494                                  1.03
495                                  1.01
496                                  1.02
497                                  1.05
498                                  1.07
499                                  1.06
500                                  1.10
501                                  1.04
502                                  1.06
503                                  1.08
504                                  1.06
505                                  1.02
506                                  1.02
507                                  1.06
508                                  0.95
509                                  0.98
510                                  0.94
511                                  0.87
512                                  0.89
513                                  0.93
514                                  0.94
515                                  0.93
516                                  0.86
517                                  0.93
518                                  0.93
519                                  0.92
520                                  0.88
521                                  0.99
522                                  1.03
523                                  1.03
524                                  0.99
525                                  1.03
526                                  1.04
527                                  0.99
528                                  0.95
529                                  0.99
530                                  1.04
531                                  0.98
532                                  0.90
533                                  0.93
534                                  1.02
535                                  1.00
536                                  1.02
537                                  1.04
538                                  1.03
539                                  1.08
540                                  1.03
541                                  1.00
542                                  1.05
543                                  1.02
544                                  1.05
545                                  1.04
546                                  0.98
547                                  0.94
548                                  0.99
549                                  1.01
550                                  1.03
551                                  1.10
552                                  1.01
553                                  1.00
554                                  1.10
555                                  0.99
556                                  1.02
557                                  1.00
558                                  1.07
559                                  1.09
560                                  0.96
561                                  0.94
562                                  1.01
563                                  0.95
564                                  1.03
565                                  1.09
566                                  1.05
567                                  0.96
568                                  0.87
569                                  1.08
570                                  1.02
571                                  0.97
572                                  0.89
573                                  0.80
574                                  0.82
575                                  0.79
576                                  0.74
577                                  0.80
578                                  0.78
579                                  0.71
580                                  0.80
581                                  0.78
582                                  0.86
583                                  0.83
584                                  0.81
585                                  0.82
586                                  0.84
587                                  0.77
588                                  0.86
589                                  0.84
590                                  0.82
591                                  0.85
592                                  0.88
593                                  0.85
594                                  0.87
595                                  0.80
596                                  0.82
597                                  0.82
598                                  0.83
599                                  0.77
600                                  0.75
601                                  0.65
602                                  0.73
603                                  0.68
604                                  0.81
605                                  0.73
606                                  0.75
607                                  0.77
608                                  0.81
609                                  0.80
610                                  0.72
611                                  0.77
612                                  0.79
613                                  0.67
614                                  0.72
615                                  0.75
616                                  0.82
617                                  0.80
618                                  0.77
619                                  0.67
620                                  0.68
621                                  0.80
622                                  0.76
623                                  0.76
624                                  0.74
625                                  0.98
626                                  1.05
627                                  0.83
628                                  0.76
629                                  1.12
630                                  0.85
631                                  0.82
632                                  0.93
633                                  0.82
634                                  0.93
635                                  0.87
636                                  0.90
637                                  1.02
638                                  0.97
639                                  0.98
640                                  1.01
641                                  1.09
642                                  1.14
643                                  1.20
644                                  1.17
645                                  1.09
646                                  1.05
647                                  1.18
648                                  1.10
649                                  1.18
650                                  1.19
651                                  1.20
652                                  1.16
653                                  1.16
654                                  1.11
655                                  1.26
656                                  1.16
657                                  1.21
658                                  1.08
659                                  1.01
660                                  1.19
661                                  1.08
662                                  1.05
663                                  1.19
664                                  1.11
665                                  1.15
666                                  1.03
667                                  1.03
668                                  1.03
669                                  1.00
670                                  1.12
671                                  0.95
672                                  0.93
673                                  1.02
674                                  0.99
675                                  1.09
676                                  0.99
677                                  1.08
678                                  1.10
679                                  1.05
680                                  0.98
681                                  1.11
682                                  1.09
683                                  1.10
684                                  1.03
685                                  1.04
686                                  1.17
687                                  0.97
688                                  0.99
689                                  1.10
690                                  1.17
691                                  1.00
692                                  1.03
693                                  1.09
694                                  0.96
695                                  1.11
696                                  0.97
697                                  1.07
698                                  1.04
699                                  0.99
700                                  1.04
701                                  1.02
702                                  1.06
703                                  1.00
704                                  0.97
705                                  1.04
706                                  0.97
707                                  1.09
708                                  1.03
709                                  0.95
710                                  1.11
711                                  1.06
712                                  1.01
713                                  0.96
714                                  1.02
715                                  1.11
716                                  0.97
717                                  0.97
718                                  1.13
719                                  1.01
720                                  0.97
721                                  1.15
722                                  1.16
723                                  1.11
724                                  0.92
725                                  1.19
726                                  1.10
727                                  1.08
728                                  1.01
729                                  1.13
730                                  1.13
731                                  1.24
732                                  0.93
733                                  1.12
734                                  1.11
735                                  1.20
736                                  0.93
737                                  0.91
738                                  1.14
739                                  0.94
740                                  0.97
741                                  0.99
742                                  1.15
743                                  0.88
744                                  0.95
745                                  1.09
746                                  0.91
747                                  1.28
748                                  0.89
749                                  1.08
750                                  1.05
751                                  1.12
752                                  1.05
753                                  1.19
754                                  1.16
755                                  1.10
756                                  0.96
757                                  1.07
758                                  1.14
759                                  1.31
760                                  1.30
761                                  0.97
762                                  1.36
763                                  1.06
764                                  1.09
765                                  0.93
766                                  1.13
767                                  1.22
768                                  1.11
769                                  0.91
770                                  1.35
771                                  1.08
772                                  0.95
773                                  1.31
774                                  1.21
775                                  1.24
776                                  0.94
777                                  1.19
778                                  1.07
779                                  1.03
780                                  0.95
781                                  1.01
782                                  1.01
783                                  1.03
784                                  1.00
785                                  1.07
786                                  1.03
787                                  1.09
788                                  0.98
789                                  1.00
790                                  1.10
791                                  1.03
792                                  1.02
793                                  1.05
794                                  1.10
795                                  1.02
796                                  1.03
797                                  1.07
798                                  1.04
799                                  1.14
800                                  1.03
801                                  1.12
802                                  1.14
803                                  1.10
804                                  1.12
805                                  1.14
806                                  1.13
807                                  1.07
808                                  1.08
809                                  1.12
810                                  1.13
811                                  1.20
812                                  1.15
813                                  1.09
814                                  1.15
815                                  1.05
816                                  1.14
817                                  1.06
818                                  1.11
819                                  1.18
820                                  1.09
821                                  1.04
822                                  1.10
823                                  1.04
824                                  1.02
825                                  1.16
826                                  1.15
827                                  1.07
828                                  0.91
829                                  1.13
830                                  1.08
831                                  1.10
832                                  1.02
833                                  1.16
834                                  1.11
835                                  1.14
836                                  1.10
837                                  1.17
838                                  1.16
839                                  1.09
840                                  1.09
841                                  1.13
842                                  1.11
843                                  0.93
844                                  1.05
845                                  1.16
846                                  1.15
847                                  1.17
848                                  1.07
849                                  1.19
850                                  1.18
851                                  1.10
852                                  1.09
853                                  1.07
854                                  1.10
855                                  1.17
856                                  1.19
857                                  1.17
858                                  1.19
859                                  1.20
860                                  1.19
861                                  1.13
862                                  1.21
863                                  1.22
864                                  1.21
865                                  1.19
866                                  1.19
867                                  1.17
868                                  1.21
869                                  1.17
870                                  1.18
871                                  1.21
872                                  1.14
873                                  1.08
874                                  1.20
875                                  1.15
876                                  1.07
877                                  1.20
878                                  1.22
879                                  1.02
880                                  1.06
881                                  1.17
882                                  1.24
883                                  1.26
884                                  1.05
885                                  1.27
886                                  1.18
887                                  1.24
888                                  1.19
889                                  1.32
890                                  1.27
891                                  1.12
892                                  1.16
893                                  1.16
894                                  1.20
895                                  0.93
896                                  1.38
897                                  1.30
898                                  1.29
899                                  1.25
900                                  1.11
901                                  1.27
902                                  1.26
903                                  1.14
904                                  1.12
905                                  1.12
906                                  1.16
907                                  1.30
908                                  1.32
909                                  1.06
910                                  1.25
911                                  1.27
912                                  1.25
913                                  1.15
914                                  1.29
915                                  1.33
916                                  1.34
917                                  1.20
918                                  1.25
919                                  1.25
920                                  1.36
921                                  1.35
922                                  1.25
923                                  1.33
924                                  1.22
925                                  1.11
926                                  1.40
927                                  1.43
928                                  1.12
929                                  1.38
930                                  1.39
931                                  1.09
932                                  1.32
933                                  1.35
934                                  1.39
935                                  1.38
936                                  1.06
937                                  0.78
938                                  0.75
939                                  0.73
940                                  0.74
941                                  0.79
942                                  0.73
943                                  0.72
944                                  0.75
945                                  0.77
946                                  0.88
947                                  0.90
948                                  0.79
949                                  0.82
950                                  0.86
951                                  0.83
952                                  0.89
953                                  0.89
954                                  0.88
955                                  0.89
956                                  0.92
957                                  0.92
958                                  0.90
959                                  0.79
960                                  0.78
961                                  0.79
962                                  0.79
963                                  0.74
964                                  0.74
965                                  0.62
966                                  0.72
967                                  0.72
968                                  0.83
969                                  0.82
970                                  0.76
971                                  0.74
972                                  0.79
973                                  0.82
974                                  0.79
975                                  0.83
976                                  0.79
977                                  0.80
978                                  0.77
979                                  0.78
980                                  0.87
981                                  0.82
982                                  0.73
983                                  0.70
984                                  0.72
985                                  0.77
986                                  0.77
987                                  0.78
988                                  0.71
989                                  1.04
990                                  1.10
991                                  1.03
992                                  0.92
993                                  1.08
994                                  1.11
995                                  1.08
996                                  0.96
997                                  1.01
998                                  1.02
999                                  0.97
1000                                 1.10
1001                                 0.98
1002                                 1.04
1003                                 0.91
1004                                 0.87
1005                                 1.11
1006                                 1.17
1007                                 1.22
1008                                 1.14
1009                                 1.20
1010                                 1.21
1011                                 1.22
1012                                 1.07
1013                                 1.05
1014                                 1.05
1015                                 0.95
1016                                 1.03
1017                                 1.15
1018                                 1.28
1019                                 1.37
1020                                 1.29
1021                                 1.26
1022                                 1.06
1023                                 1.13
1024                                 1.24
1025                                 1.08
1026                                 1.15
1027                                 1.17
1028                                 1.09
1029                                 1.11
1030                                 1.21
1031                                 1.07
1032                                 1.13
1033                                 1.34
1034                                 1.30
1035                                 0.98
1036                                 0.92
1037                                 1.06
1038                                 1.14
1039                                 1.25
1040                                 1.02
1041                                 0.99
1042                                 1.19
1043                                 0.96
1044                                 1.19
1045                                 0.96
1046                                 0.98
1047                                 1.25
1048                                 1.25
1049                                 0.97
1050                                 1.22
1051                                 1.25
1052                                 0.99
1053                                 0.99
1054                                 1.27
1055                                 0.99
1056                                 1.24
1057                                 0.98
1058                                 1.26
1059                                 1.25
1060                                 1.25
1061                                 0.99
1062                                 1.24
1063                                 1.25
1064                                 1.00
1065                                 1.22
1066                                 0.95
1067                                 1.16
1068                                 0.95
1069                                 1.20
1070                                 0.98
1071                                 1.24
1072                                 1.00
1073                                 1.22
1074                                 1.24
1075                                 0.96
1076                                 1.21
1077                                 1.17
1078                                 0.99
1079                                 1.10
1080                                 1.20
1081                                 0.96
1082                                 1.27
1083                                 1.24
1084                                 1.01
1085                                 1.10
1086                                 1.24
1087                                 1.21
1088                                 0.92
1089                                 1.20
1090                                 1.27
1091                                 1.20
1092                                 0.97
1093                                 0.83
1094                                 0.96
1095                                 0.95
1096                                 0.89
1097                                 0.95
1098                                 0.98
1099                                 0.95
1100                                 0.92
1101                                 0.99
1102                                 0.98
1103                                 0.91
1104                                 0.94
1105                                 0.97
1106                                 0.97
1107                                 0.97
1108                                 0.88
1109                                 1.02
1110                                 1.09
1111                                 1.06
1112                                 0.96
1113                                 0.96
1114                                 1.09
1115                                 1.06
1116                                 1.03
1117                                 1.02
1118                                 1.05
1119                                 1.01
1120                                 0.90
1121                                 0.88
1122                                 1.02
1123                                 1.03
1124                                 0.98
1125                                 0.95
1126                                 0.98
1127                                 0.94
1128                                 0.88
1129                                 0.82
1130                                 0.76
1131                                 0.81
1132                                 0.84
1133                                 0.90
1134                                 1.07
1135                                 1.01
1136                                 1.05
1137                                 1.16
1138                                 1.12
1139                                 1.01
1140                                 0.94
1141                                 1.06
1142                                 1.06
1143                                 0.93
1144                                 0.80
1145                                 0.80
1146                                 0.85
1147                                 0.74
1148                                 0.66
1149                                 0.83
1150                                 0.81
1151                                 0.74
1152                                 0.84
1153                                 0.89
1154                                 0.95
1155                                 0.89
1156                                 0.92
1157                                 0.98
1158                                 0.90
1159                                 0.99
1160                                 0.98
1161                                 0.92
1162                                 0.90
1163                                 1.03
1164                                 0.93
1165                                 0.94
1166                                 1.00
1167                                 0.95
1168                                 1.02
1169                                 1.03
1170                                 0.96
1171                                 0.94
1172                                 0.91
1173                                 0.79
1174                                 0.84
1175                                 0.85
1176                                 0.97
1177                                 0.98
1178                                 0.78
1179                                 0.78
1180                                 1.02
1181                                 0.93
1182                                 0.93
1183                                 1.01
1184                                 1.00
1185                                 1.01
1186                                 0.94
1187                                 0.86
1188                                 0.75
1189                                 0.83
1190                                 0.83
1191                                 0.90
1192                                 0.74
1193                                 0.96
1194                                 0.89
1195                                 0.85
1196                                 0.85
1197                                 1.04
1198                                 1.05
1199                                 0.91
1200                                 0.83
1201                                 0.97
1202                                 1.01
1203                                 1.04
1204                                 0.93
1205                                 0.89
1206                                 1.06
1207                                 1.03
1208                                 1.03
1209                                 1.11
1210                                 1.18
1211                                 1.05
1212                                 0.98
1213                                 0.98
1214                                 1.13
1215                                 1.15
1216                                 1.09
1217                                 1.08
1218                                 0.93
1219                                 0.88
1220                                 1.08
1221                                 1.13
1222                                 1.15
1223                                 1.15
1224                                 1.17
1225                                 1.07
1226                                 1.01
1227                                 1.00
1228                                 1.05
1229                                 1.20
1230                                 1.10
1231                                 1.03
1232                                 1.21
1233                                 1.01
1234                                 0.97
1235                                 1.08
1236                                 1.00
1237                                 0.99
1238                                 1.21
1239                                 1.18
1240                                 1.02
1241                                 1.01
1242                                 1.13
1243                                 1.00
1244                                 0.90
1245                                 1.02
1246                                 1.06
1247                                 1.05
1248                                 0.92
1249                                 0.99
1250                                 1.21
1251                                 0.97
1252                                 1.25
1253                                 0.98
1254                                 0.98
1255                                 1.22
1256                                 1.22
1257                                 0.98
1258                                 1.25
1259                                 1.24
1260                                 1.00
1261                                 0.99
1262                                 1.31
1263                                 0.98
1264                                 1.26
1265                                 0.98
1266                                 1.24
1267                                 1.24
1268                                 1.24
1269                                 0.97
1270                                 1.22
1271                                 1.24
1272                                 0.96
1273                                 1.24
1274                                 0.98
1275                                 1.21
1276                                 0.96
1277                                 1.26
1278                                 0.99
1279                                 1.27
1280                                 1.01
1281                                 1.24
1282                                 1.28
1283                                 0.98
1284                                 1.25
1285                                 1.23
1286                                 1.00
1287                                 1.11
1288                                 1.25
1289                                 0.97
1290                                 1.33
1291                                 1.30
1292                                 1.01
1293                                 1.24
1294                                 1.29
1295                                 1.25
1296                                 0.95
1297                                 1.27
1298                                 1.30
1299                                 1.28
1300                                 0.97
1301                                 1.05
1302                                 1.05
1303                                 1.03
1304                                 1.00
1305                                 1.05
1306                                 1.06
1307                                 1.02
1308                                 1.04
1309                                 1.08
1310                                 1.13
1311                                 1.05
1312                                 1.13
1313                                 1.18
1314                                 1.11
1315                                 1.13
1316                                 1.09
1317                                 1.08
1318                                 1.18
1319                                 1.12
1320                                 1.14
1321                                 1.15
1322                                 1.14
1323                                 1.15
1324                                 1.14
1325                                 1.13
1326                                 1.13
1327                                 1.14
1328                                 1.13
1329                                 1.09
1330                                 1.14
1331                                 1.14
1332                                 1.14
1333                                 1.18
1334                                 1.17
1335                                 1.07
1336                                 1.20
1337                                 1.18
1338                                 1.13
1339                                 1.19
1340                                 1.18
1341                                 1.11
1342                                 1.19
1343                                 1.21
1344                                 1.14
1345                                 1.10
1346                                 1.17
1347                                 1.06
1348                                 0.99
1349                                 1.15
1350                                 1.19
1351                                 1.17
1352                                 1.10
1353                                 0.96
1354                                 0.99
1355                                 0.91
1356                                 1.00
1357                                 0.95
1358                                 0.96
1359                                 1.04
1360                                 1.03
1361                                 0.94
1362                                 0.91
1363                                 0.91
1364                                 0.96
1365                                 0.96
1366                                 1.04
1367                                 0.95
1368                                 1.05
1369                                 0.97
1370                                 1.09
1371                                 0.97
1372                                 0.96
1373                                 0.98
1374                                 1.08
1375                                 1.07
1376                                 0.98
1377                                 1.09
1378                                 0.97
1379                                 1.06
1380                                 0.96
1381                                 1.03
1382                                 0.96
1383                                 1.04
1384                                 0.98
1385                                 1.07
1386                                 1.07
1387                                 0.98
1388                                 1.08
1389                                 1.11
1390                                 1.00
1391                                 1.06
1392                                 1.07
1393                                 1.01
1394                                 1.08
1395                                 1.08
1396                                 0.99
1397                                 1.05
1398                                 1.03
1399                                 0.94
1400                                 0.94
1401                                 1.07
1402                                 1.08
1403                                 1.07
1404                                 1.00
1405                                 0.91
1406                                 0.92
1407                                 0.86
1408                                 0.94
1409                                 0.90
1410                                 0.94
1411                                 0.98
1412                                 0.96
1413                                 0.97
1414                                 1.01
1415                                 1.02
1416                                 1.00
1417                                 1.00
1418                                 1.06
1419                                 1.00
1420                                 1.02
1421                                 0.99
1422                                 1.03
1423                                 1.04
1424                                 1.04
1425                                 1.00
1426                                 1.04
1427                                 1.03
1428                                 0.98
1429                                 1.05
1430                                 1.01
1431                                 1.03
1432                                 0.93
1433                                 1.02
1434                                 0.99
1435                                 1.04
1436                                 1.03
1437                                 0.96
1438                                 1.05
1439                                 0.93
1440                                 0.96
1441                                 0.93
1442                                 0.97
1443                                 0.99
1444                                 0.97
1445                                 0.90
1446                                 1.09
1447                                 1.06
1448                                 1.08
1449                                 0.92
1450                                 1.02
1451                                 0.93
1452                                 0.81
1453                                 0.94
1454                                 1.03
1455                                 0.97
1456                                 0.94
1457                                 1.17
1458                                 1.23
1459                                 1.12
1460                                 1.20
1461                                 1.16
1462                                 1.14
1463                                 1.04
1464                                 1.13
1465                                 1.06
1466                                 1.23
1467                                 0.97
1468                                 1.28
1469                                 1.26
1470                                 1.16
1471                                 1.18
1472                                 1.16
1473                                 1.22
1474                                 1.22
1475                                 1.10
1476                                 1.14
1477                                 1.10
1478                                 1.14
1479                                 1.28
1480                                 1.37
1481                                 1.27
1482                                 1.18
1483                                 1.36
1484                                 1.28
1485                                 1.32
1486                                 1.32
1487                                 1.43
1488                                 1.37
1489                                 1.43
1490                                 1.22
1491                                 1.32
1492                                 1.44
1493                                 1.42
1494                                 1.43
1495                                 1.41
1496                                 1.36
1497                                 1.33
1498                                 1.45
1499                                 1.36
1500                                 1.18
1501                                 1.33
1502                                 1.36
1503                                 1.11
1504                                 1.36
1505                                 1.36
1506                                 1.37
1507                                 1.34
1508                                 1.09
1509                                 1.20
1510                                 1.20
1511                                 1.09
1512                                 1.14
1513                                 1.22
1514                                 1.16
1515                                 1.09
1516                                 1.10
1517                                 1.09
1518                                 1.15
1519                                 0.99
1520                                 1.23
1521                                 1.21
1522                                 1.13
1523                                 1.21
1524                                 1.14
1525                                 1.18
1526                                 1.20
1527                                 1.13
1528                                 1.17
1529                                 1.10
1530                                 1.19
1531                                 1.28
1532                                 1.27
1533                                 1.20
1534                                 1.24
1535                                 1.30
1536                                 1.27
1537                                 1.20
1538                                 1.27
1539                                 1.34
1540                                 1.26
1541                                 1.33
1542                                 1.21
1543                                 1.24
1544                                 1.36
1545                                 1.31
1546                                 1.33
1547                                 1.34
1548                                 1.26
1549                                 1.22
1550                                 1.34
1551                                 1.27
1552                                 1.15
1553                                 1.29
1554                                 1.29
1555                                 1.09
1556                                 1.23
1557                                 1.27
1558                                 1.32
1559                                 1.28
1560                                 1.09
1561                                 1.21
1562                                 1.17
1563                                 0.95
1564                                 1.11
1565                                 1.25
1566                                 1.08
1567                                 1.07
1568                                 0.96
1569                                 1.07
1570                                 1.08
1571                                 1.00
1572                                 1.19
1573                                 1.12
1574                                 0.98
1575                                 1.17
1576                                 1.09
1577                                 1.01
1578                                 1.13
1579                                 1.18
1580                                 1.23
1581                                 1.03
1582                                 1.25
1583                                 1.25
1584                                 1.03
1585                                 1.10
1586                                 1.15
1587                                 1.14
1588                                 1.18
1589                                 1.04
1590                                 1.17
1591                                 1.20
1592                                 1.04
1593                                 1.15
1594                                 1.05
1595                                 1.16
1596                                 1.24
1597                                 1.13
1598                                 1.16
1599                                 1.19
1600                                 1.07
1601                                 1.19
1602                                 1.15
1603                                 1.09
1604                                 1.05
1605                                 1.13
1606                                 1.11
1607                                 1.03
1608                                 1.06
1609                                 1.06
1610                                 1.12
1611                                 1.06
1612                                 1.05
1613                                 0.99
1614                                 1.21
1615                                 0.96
1616                                 1.20
1617                                 0.96
1618                                 0.98
1619                                 1.24
1620                                 1.24
1621                                 0.97
1622                                 1.25
1623                                 1.24
1624                                 1.00
1625                                 1.00
1626                                 1.28
1627                                 0.99
1628                                 1.23
1629                                 0.99
1630                                 1.25
1631                                 1.21
1632                                 1.23
1633                                 0.99
1634                                 1.24
1635                                 1.22
1636                                 0.98
1637                                 1.22
1638                                 0.97
1639                                 1.15
1640                                 0.96
1641                                 1.22
1642                                 0.98
1643                                 1.26
1644                                 1.00
1645                                 1.23
1646                                 1.23
1647                                 0.98
1648                                 1.23
1649                                 1.23
1650                                 0.99
1651                                 1.10
1652                                 1.25
1653                                 0.98
1654                                 1.27
1655                                 1.27
1656                                 1.00
1657                                 1.18
1658                                 1.26
1659                                 1.23
1660                                 0.95
1661                                 1.28
1662                                 1.33
1663                                 1.29
1664                                 1.00
1665                                 1.25
1666                                 1.33
1667                                 1.18
1668                                 1.18
1669                                 1.23
1670                                 1.23
1671                                 1.17
1672                                 1.27
1673                                 1.13
1674                                 1.19
1675                                 1.06
1676                                 1.26
1677                                 1.28
1678                                 1.25
1679                                 1.25
1680                                 1.19
1681                                 1.25
1682                                 1.26
1683                                 1.09
1684                                 1.20
1685                                 1.19
1686                                 1.21
1687                                 1.36
1688                                 1.39
1689                                 1.38
1690                                 1.25
1691                                 1.38
1692                                 1.33
1693                                 1.32
1694                                 1.35
1695                                 1.43
1696                                 1.40
1697                                 1.44
1698                                 1.32
1699                                 1.22
1700                                 1.46
1701                                 1.43
1702                                 1.44
1703                                 1.43
1704                                 1.39
1705                                 1.18
1706                                 1.44
1707                                 1.40
1708                                 1.24
1709                                 1.36
1710                                 1.34
1711                                 1.09
1712                                 1.14
1713                                 1.36
1714                                 1.40
1715                                 1.38
1716                                 1.10
1717                                 0.49
1718                                 0.53
1719                                 0.66
1720                                 0.56
1721                                 0.75
1722                                 0.77
1723                                 0.62
1724                                 0.60
1725                                 0.71
1726                                 0.83
1727                                 0.65
1728                                 0.89
1729                                 0.89
1730                                 0.91
1731                                 0.71
1732                                 0.71
1733                                 0.58
1734                                 0.74
1735                                 0.78
1736                                 0.66
1737                                 0.79
1738                                 0.78
1739                                 0.77
1740                                 0.76
1741                                 0.70
1742                                 0.56
1743                                 0.70
1744                                 0.54
1745                                 0.53
1746                                 0.52
1747                                 0.56
1748                                 0.58
1749                                 0.67
1750                                 0.67
1751                                 0.60
1752                                 0.53
1753                                 0.51
1754                                 0.66
1755                                 0.57
1756                                 0.57
1757                                 0.71
1758                                 0.60
1759                                 0.72
1760                                 0.70
1761                                 0.63
1762                                 0.60
1763                                 0.64
1764                                 0.56
1765                                 0.61
1766                                 0.67
1767                                 0.61
1768                                 0.65
1769                                 1.25
1770                                 1.22
1771                                 1.19
1772                                 1.21
1773                                 1.26
1774                                 1.30
1775                                 1.24
1776                                 0.93
1777                                 1.16
1778                                 1.22
1779                                 1.23
1780                                 0.96
1781                                 0.99
1782                                 1.11
1783                                 1.19
1784                                 1.16
1785                                 1.12
1786                                 1.37
1787                                 1.20
1788                                 1.23
1789                                 0.96
1790                                 1.43
1791                                 1.43
1792                                 1.44
1793                                 1.48
1794                                 1.23
1795                                 1.20
1796                                 1.34
1797                                 1.30
1798                                 1.33
1799                                 1.32
1800                                 1.01
1801                                 1.41
1802                                 1.46
1803                                 0.98
1804                                 1.44
1805                                 1.49
1806                                 1.50
1807                                 1.29
1808                                 1.25
1809                                 1.23
1810                                 1.23
1811                                 0.95
1812                                 1.25
1813                                 1.26
1814                                 1.43
1815                                 1.38
1816                                 1.25
1817                                 1.32
1818                                 1.47
1819                                 1.54
1820                                 1.52
1821                                 1.10
1822                                 1.13
1823                                 1.02
1824                                 1.08
1825                                 1.11
1826                                 1.10
1827                                 1.09
1828                                 1.12
1829                                 1.12
1830                                 1.11
1831                                 1.12
1832                                 1.05
1833                                 1.14
1834                                 0.99
1835                                 1.16
1836                                 1.13
1837                                 1.12
1838                                 1.13
1839                                 1.06
1840                                 1.08
1841                                 1.14
1842                                 1.13
1843                                 1.04
1844                                 1.09
1845                                 1.07
1846                                 1.06
1847                                 1.08
1848                                 1.08
1849                                 1.06
1850                                 1.04
1851                                 1.09
1852                                 1.03
1853                                 1.06
1854                                 1.03
1855                                 1.01
1856                                 1.13
1857                                 1.12
1858                                 0.97
1859                                 1.13
1860                                 1.08
1861                                 1.09
1862                                 1.10
1863                                 1.11
1864                                 1.09
1865                                 1.08
1866                                 1.05
1867                                 0.98
1868                                 0.92
1869                                 1.08
1870                                 1.02
1871                                 1.09
1872                                 1.01
1873                                 1.01
1874                                 0.98
1875                                 0.93
1876                                 0.73
1877                                 1.04
1878                                 1.03
1879                                 0.90
1880                                 1.04
1881                                 1.06
1882                                 0.91
1883                                 1.05
1884                                 0.79
1885                                 1.13
1886                                 0.90
1887                                 0.94
1888                                 1.00
1889                                 1.10
1890                                 1.14
1891                                 1.08
1892                                 1.17
1893                                 1.19
1894                                 1.14
1895                                 1.18
1896                                 1.18
1897                                 1.02
1898                                 1.19
1899                                 1.16
1900                                 1.08
1901                                 1.08
1902                                 1.16
1903                                 1.01
1904                                 1.01
1905                                 1.06
1906                                 0.91
1907                                 0.95
1908                                 0.95
1909                                 0.99
1910                                 1.16
1911                                 1.22
1912                                 1.20
1913                                 1.10
1914                                 1.21
1915                                 1.17
1916                                 0.94
1917                                 1.11
1918                                 1.23
1919                                 1.08
1920                                 0.98
1921                                 1.09
1922                                 1.11
1923                                 1.05
1924                                 0.97
1925                                 0.96
1926                                 0.98
1927                                 0.98
1928                                 0.97
1929                                 0.98
1930                                 1.02
1931                                 1.00
1932                                 1.07
1933                                 1.12
1934                                 1.22
1935                                 1.23
1936                                 1.17
1937                                 1.29
1938                                 1.12
1939                                 1.22
1940                                 1.16
1941                                 1.04
1942                                 1.16
1943                                 1.13
1944                                 1.23
1945                                 1.23
1946                                 1.22
1947                                 1.20
1948                                 1.20
1949                                 1.19
1950                                 1.16
1951                                 1.17
1952                                 1.17
1953                                 1.11
1954                                 1.14
1955                                 1.16
1956                                 1.21
1957                                 1.16
1958                                 1.11
1959                                 1.01
1960                                 1.16
1961                                 1.13
1962                                 1.10
1963                                 1.12
1964                                 1.23
1965                                 1.19
1966                                 1.18
1967                                 1.24
1968                                 1.20
1969                                 1.11
1970                                 1.21
1971                                 1.14
1972                                 0.99
1973                                 1.16
1974                                 1.22
1975                                 1.24
1976                                 1.20
1977                                 0.98
1978                                 0.99
1979                                 0.98
1980                                 0.98
1981                                 0.99
1982                                 1.01
1983                                 0.94
1984                                 0.95
1985                                 1.00
1986                                 1.02
1987                                 1.00
1988                                 1.01
1989                                 1.04
1990                                 0.97
1991                                 1.04
1992                                 1.01
1993                                 0.98
1994                                 1.06
1995                                 1.04
1996                                 1.05
1997                                 1.06
1998                                 1.05
1999                                 1.03
2000                                 1.02
2001                                 1.02
2002                                 1.01
2003                                 1.00
2004                                 1.01
2005                                 0.98
2006                                 1.02
2007                                 1.02
2008                                 1.03
2009                                 1.04
2010                                 1.06
2011                                 0.99
2012                                 1.11
2013                                 1.10
2014                                 1.11
2015                                 1.14
2016                                 1.15
2017                                 1.12
2018                                 1.16
2019                                 1.19
2020                                 1.13
2021                                 1.10
2022                                 1.13
2023                                 1.06
2024                                 0.97
2025                                 1.17
2026                                 1.18
2027                                 1.15
2028                                 1.13
2029                                 0.96
2030                                 1.00
2031                                 1.01
2032                                 1.01
2033                                 1.03
2034                                 1.00
2035                                 1.00
2036                                 1.01
2037                                 1.00
2038                                 0.99
2039                                 0.98
2040                                 1.01
2041                                 1.04
2042                                 1.01
2043                                 1.00
2044                                 0.99
2045                                 1.09
2046                                 1.14
2047                                 1.12
2048                                 1.13
2049                                 1.09
2050                                 1.04
2051                                 1.04
2052                                 1.04
2053                                 1.06
2054                                 1.05
2055                                 1.04
2056                                 1.05
2057                                 1.02
2058                                 1.05
2059                                 1.06
2060                                 1.07
2061                                 1.08
2062                                 1.09
2063                                 1.03
2064                                 1.09
2065                                 1.08
2066                                 1.13
2067                                 1.19
2068                                 1.13
2069                                 1.09
2070                                 1.12
2071                                 1.16
2072                                 1.11
2073                                 1.09
2074                                 1.07
2075                                 1.02
2076                                 1.00
2077                                 1.15
2078                                 1.18
2079                                 1.16
2080                                 1.13
2081                                 0.98
2082                                 1.00
2083                                 1.00
2084                                 1.07
2085                                 0.99
2086                                 1.06
2087                                 0.94
2088                                 1.14
2089                                 1.02
2090                                 1.26
2091                                 1.28
2092                                 1.29
2093                                 1.10
2094                                 1.28
2095                                 1.25
2096                                 1.24
2097                                 1.21
2098                                 1.30
2099                                 1.26
2100                                 1.30
2101                                 1.28
2102                                 1.33
2103                                 1.32
2104                                 1.29
2105                                 1.23
2106                                 1.26
2107                                 1.26
2108                                 1.27
2109                                 1.22
2110                                 1.18
2111                                 1.17
2112                                 1.26
2113                                 1.18
2114                                 1.14
2115                                 1.05
2116                                 1.27
2117                                 1.19
2118                                 1.24
2119                                 1.23
2120                                 1.20
2121                                 1.13
2122                                 1.22
2123                                 1.12
2124                                 1.02
2125                                 1.14
2126                                 1.13
2127                                 0.98
2128                                 1.04
2129                                 1.19
2130                                 1.22
2131                                 1.09
2132                                 1.05
2133                                 0.92
2134                                 0.94
2135                                 0.84
2136                                 0.67
2137                                 0.91
2138                                 0.98
2139                                 0.85
2140                                 0.92
2141                                 1.01
2142                                 1.08
2143                                 1.03
2144                                 0.93
2145                                 1.11
2146                                 0.93
2147                                 1.07
2148                                 1.08
2149                                 1.02
2150                                 1.04
2151                                 1.15
2152                                 1.05
2153                                 1.03
2154                                 1.07
2155                                 1.10
2156                                 1.15
2157                                 1.10
2158                                 1.05
2159                                 1.02
2160                                 0.94
2161                                 0.87
2162                                 0.89
2163                                 0.90
2164                                 1.08
2165                                 1.02
2166                                 0.85
2167                                 0.80
2168                                 1.11
2169                                 1.04
2170                                 1.01
2171                                 1.11
2172                                 1.08
2173                                 0.96
2174                                 1.06
2175                                 0.95
2176                                 0.83
2177                                 0.92
2178                                 0.94
2179                                 0.98
2180                                 0.85
2181                                 1.02
2182                                 1.01
2183                                 0.82
2184                                 0.94
2185                                 1.05
2186                                 1.15
2187                                 1.22
2188                                 1.06
2189                                 1.05
2190                                 1.04
2191                                 0.99
2192                                 1.40
2193                                 0.97
2194                                 1.55
2195                                 1.52
2196                                 1.58
2197                                 1.04
2198                                 1.38
2199                                 1.56
2200                                 1.53
2201                                 1.54
2202                                 1.53
2203                                 1.59
2204                                 1.59
2205                                 1.56
2206                                 1.57
2207                                 1.58
2208                                 1.56
2209                                 1.39
2210                                 1.53
2211                                 1.54
2212                                 1.52
2213                                 1.51
2214                                 1.31
2215                                 1.29
2216                                 1.37
2217                                 1.32
2218                                 1.30
2219                                 1.00
2220                                 1.39
2221                                 1.23
2222                                 1.33
2223                                 1.33
2224                                 1.30
2225                                 1.19
2226                                 1.26
2227                                 1.16
2228                                 0.95
2229                                 1.23
2230                                 1.23
2231                                 0.92
2232                                 0.91
2233                                 1.21
2234                                 1.22
2235                                 1.03
2236                                 0.99
2237                                 1.09
2238                                 1.15
2239                                 1.05
2240                                 0.81
2241                                 1.17
2242                                 1.07
2243                                 0.93
2244                                 1.06
2245                                 1.14
2246                                 1.03
2247                                 1.08
2248                                 0.90
2249                                 1.06
2250                                 1.10
2251                                 1.02
2252                                 1.02
2253                                 1.17
2254                                 1.18
2255                                 1.13
2256                                 1.15
2257                                 1.15
2258                                 1.18
2259                                 1.29
2260                                 1.25
2261                                 1.14
2262                                 1.35
2263                                 1.31
2264                                 1.19
2265                                 1.18
2266                                 1.27
2267                                 1.12
2268                                 1.14
2269                                 1.22
2270                                 1.08
2271                                 1.02
2272                                 1.19
2273                                 1.13
2274                                 1.33
2275                                 1.26
2276                                 1.22
2277                                 1.13
2278                                 1.24
2279                                 1.24
2280                                 1.07
2281                                 1.11
2282                                 1.33
2283                                 1.08
2284                                 0.97
2285                                 1.26
2286                                 1.20
2287                                 1.06
2288                                 0.97
2289                                 0.98
2290                                 1.04
2291                                 0.96
2292                                 1.03
2293                                 0.97
2294                                 0.99
2295                                 1.07
2296                                 1.08
2297                                 1.00
2298                                 1.11
2299                                 1.12
2300                                 1.03
2301                                 1.04
2302                                 1.08
2303                                 1.02
2304                                 1.14
2305                                 1.00
2306                                 1.15
2307                                 1.09
2308                                 1.12
2309                                 1.05
2310                                 1.14
2311                                 1.11
2312                                 1.05
2313                                 1.14
2314                                 1.05
2315                                 1.11
2316                                 1.03
2317                                 1.10
2318                                 1.04
2319                                 1.13
2320                                 1.05
2321                                 1.09
2322                                 1.13
2323                                 0.97
2324                                 1.10
2325                                 1.08
2326                                 1.05
2327                                 1.10
2328                                 1.11
2329                                 1.00
2330                                 1.15
2331                                 1.14
2332                                 1.05
2333                                 1.02
2334                                 1.11
2335                                 1.06
2336                                 0.91
2337                                 1.06
2338                                 1.15
2339                                 1.10
2340                                 1.01
2341                                 0.81
2342                                 0.81
2343                                 0.78
2344                                 0.76
2345                                 0.82
2346                                 0.80
2347                                 0.76
2348                                 0.80
2349                                 0.81
2350                                 0.86
2351                                 0.87
2352                                 0.83
2353                                 0.84
2354                                 0.87
2355                                 0.83
2356                                 0.88
2357                                 0.86
2358                                 0.87
2359                                 0.89
2360                                 0.89
2361                                 0.89
2362                                 0.90
2363                                 0.81
2364                                 0.83
2365                                 0.82
2366                                 0.83
2367                                 0.77
2368                                 0.79
2369                                 0.69
2370                                 0.75
2371                                 0.74
2372                                 0.83
2373                                 0.79
2374                                 0.79
2375                                 0.78
2376                                 0.83
2377                                 0.82
2378                                 0.80
2379                                 0.83
2380                                 0.82
2381                                 0.76
2382                                 0.79
2383                                 0.80
2384                                 0.87
2385                                 0.85
2386                                 0.80
2387                                 0.73
2388                                 0.71
2389                                 0.81
2390                                 0.79
2391                                 0.80
2392                                 0.77
2393                                 0.98
2394                                 1.12
2395                                 0.96
2396                                 1.13
2397                                 0.97
2398                                 0.98
2399                                 1.16
2400                                 1.16
2401                                 0.98
2402                                 1.16
2403                                 1.15
2404                                 0.97
2405                                 0.98
2406                                 1.17
2407                                 0.96
2408                                 1.15
2409                                 0.97
2410                                 1.19
2411                                 1.16
2412                                 1.16
2413                                 1.00
2414                                 1.18
2415                                 1.15
2416                                 0.99
2417                                 1.17
2418                                 0.99
2419                                 1.14
2420                                 0.97
2421                                 1.15
2422                                 0.99
2423                                 1.17
2424                                 1.00
2425                                 1.15
2426                                 1.17
2427                                 0.97
2428                                 1.16
2429                                 1.14
2430                                 1.00
2431                                 1.08
2432                                 1.16
2433                                 0.98
2434                                 1.21
2435                                 1.18
2436                                 1.01
2437                                 1.11
2438                                 1.16
2439                                 1.11
2440                                 0.93
2441                                 1.15
2442                                 1.19
2443                                 1.18
2444                                 0.98
2445                                 1.05
2446                                 1.12
2447                                 0.99
2448                                 0.85
2449                                 1.17
2450                                 1.12
2451                                 1.00
2452                                 1.08
2453                                 1.13
2454                                 1.08
2455                                 1.13
2456                                 0.94
2457                                 0.99
2458                                 1.09
2459                                 1.05
2460                                 1.03
2461                                 1.08
2462                                 1.11
2463                                 1.08
2464                                 1.15
2465                                 1.21
2466                                 1.19
2467                                 1.18
2468                                 1.16
2469                                 1.05
2470                                 1.22
2471                                 1.20
2472                                 1.12
2473                                 1.13
2474                                 1.19
2475                                 1.08
2476                                 1.07
2477                                 1.09
2478                                 1.03
2479                                 0.98
2480                                 1.08
2481                                 1.03
2482                                 1.21
2483                                 1.15
2484                                 1.12
2485                                 1.10
2486                                 1.19
2487                                 1.18
2488                                 1.03
2489                                 1.03
2490                                 1.24
2491                                 1.03
2492                                 0.97
2493                                 1.21
2494                                 1.18
2495                                 1.07
2496                                 1.00
2497                                 1.10
2498                                 1.13
2499                                 0.99
2500                                 1.09
2501                                 1.16
2502                                 1.15
2503                                 1.07
2504                                 1.18
2505                                 1.21
2506                                 1.21
2507                                 1.26
2508                                 1.15
2509                                 1.23
2510                                 1.12
2511                                 1.24
2512                                 1.15
2513                                 1.30
2514                                 1.32
2515                                 1.11
2516                                 0.88
2517                                 1.15
2518                                 1.26
2519                                 1.06
2520                                 1.20
2521                                 1.13
2522                                 1.32
2523                                 1.17
2524                                 1.26
2525                                 1.28
2526                                 1.30
2527                                 1.16
2528                                 1.18
2529                                 1.32
2530                                 1.25
2531                                 1.09
2532                                 1.37
2533                                 1.34
2534                                 1.21
2535                                 1.36
2536                                 1.21
2537                                 1.34
2538                                 1.33
2539                                 1.36
2540                                 1.24
2541                                 1.32
2542                                 1.23
2543                                 1.09
2544                                 1.10
2545                                 1.17
2546                                 1.28
2547                                 1.29
2548                                 1.15
2549                                 1.36
2550                                 1.36
2551                                 1.32
2552                                 1.17
2553                                 1.41
2554                                 1.38
2555                                 1.21
2556                                 1.23
2557                                 1.16
2558                                 1.26
2559                                 1.26
2560                                 1.32
2561                                 1.34
2562                                 1.16
2563                                 1.44
2564                                 1.44
2565                                 1.36
2566                                 1.20
2567                                 1.44
2568                                 1.42
2569                                 1.35
2570                                 1.48
2571                                 1.23
2572                                 1.38
2573                                 1.25
2574                                 1.45
2575                                 1.39
2576                                 1.40
2577                                 1.35
2578                                 1.22
2579                                 1.36
2580                                 1.35
2581                                 1.44
2582                                 1.34
2583                                 1.40
2584                                 1.40
2585                                 1.40
2586                                 1.36
2587                                 1.38
2588                                 1.29
2589                                 1.33
2590                                 1.36
2591                                 1.28
2592                                 1.32
2593                                 1.33
2594                                 1.35
2595                                 1.25
2596                                 1.26
2597                                 1.37
2598                                 1.40
2599                                 1.45
2600                                 1.33
2601                                 0.97
2602                                 1.15
2603                                 0.96
2604                                 1.17
2605                                 0.96
2606                                 0.97
2607                                 1.22
2608                                 1.21
2609                                 0.97
2610                                 1.12
2611                                 1.11
2612                                 0.88
2613                                 0.89
2614                                 1.13
2615                                 0.88
2616                                 1.10
2617                                 0.91
2618                                 1.20
2619                                 1.17
2620                                 1.17
2621                                 0.97
2622                                 1.18
2623                                 1.16
2624                                 0.97
2625                                 1.17
2626                                 0.95
2627                                 1.11
2628                                 0.95
2629                                 1.17
2630                                 0.97
2631                                 1.22
2632                                 0.99
2633                                 1.18
2634                                 1.21
2635                                 0.97
2636                                 1.19
2637                                 1.16
2638                                 0.99
2639                                 1.09
2640                                 1.20
2641                                 0.97
2642                                 1.25
2643                                 1.22
2644                                 1.00
2645                                 1.12
2646                                 1.21
2647                                 1.19
2648                                 0.92
2649                                 1.21
2650                                 1.27
2651                                 1.24
2652                                 0.97
2653                                 0.95
2654                                 0.98
2655                                 0.93
2656                                 0.89
2657                                 0.99
2658                                 0.96
2659                                 0.92
2660                                 0.97
2661                                 0.97
2662                                 1.04
2663                                 0.99
2664                                 1.00
2665                                 1.02
2666                                 1.03
2667                                 1.02
2668                                 1.03
2669                                 1.02
2670                                 1.07
2671                                 1.08
2672                                 1.05
2673                                 1.05
2674                                 1.09
2675                                 1.07
2676                                 1.07
2677                                 1.07
2678                                 1.04
2679                                 1.06
2680                                 1.02
2681                                 0.98
2682                                 1.00
2683                                 1.03
2684                                 1.04
2685                                 1.06
2686                                 1.02
2687                                 0.96
2688                                 1.07
2689                                 1.03
2690                                 1.02
2691                                 1.06
2692                                 1.04
2693                                 1.01
2694                                 1.04
2695                                 1.02
2696                                 0.97
2697                                 1.02
2698                                 1.03
2699                                 0.95
2700                                 0.89
2701                                 1.04
2702                                 1.03
2703                                 1.01
2704                                 0.95
2705                                 0.83
2706                                 0.88
2707                                 0.85
2708                                 0.75
2709                                 0.99
2710                                 0.92
2711                                 0.83
2712                                 0.88
2713                                 0.90
2714                                 0.95
2715                                 0.89
2716                                 0.91
2717                                 1.00
2718                                 0.97
2719                                 0.92
2720                                 0.92
2721                                 0.93
2722                                 1.03
2723                                 1.04
2724                                 0.98
2725                                 1.01
2726                                 1.02
2727                                 1.07
2728                                 1.04
2729                                 1.01
2730                                 0.98
2731                                 1.03
2732                                 0.93
2733                                 0.92
2734                                 0.92
2735                                 0.93
2736                                 0.93
2737                                 0.98
2738                                 0.94
2739                                 0.89
2740                                 0.90
2741                                 0.88
2742                                 0.98
2743                                 0.95
2744                                 0.93
2745                                 0.99
2746                                 0.94
2747                                 0.99
2748                                 0.95
2749                                 0.95
2750                                 0.98
2751                                 0.89
2752                                 0.84
2753                                 0.94
2754                                 0.96
2755                                 0.95
2756                                 0.89
2757                                 0.71
2758                                 0.83
2759                                 0.78
2760                                 0.74
2761                                 0.81
2762                                 0.78
2763                                 0.71
2764                                 0.76
2765                                 0.80
2766                                 0.82
2767                                 0.81
2768                                 0.89
2769                                 0.85
2770                                 0.79
2771                                 0.78
2772                                 0.75
2773                                 0.80
2774                                 0.82
2775                                 0.80
2776                                 0.77
2777                                 0.74
2778                                 0.79
2779                                 0.81
2780                                 0.76
2781                                 0.77
2782                                 0.78
2783                                 0.71
2784                                 0.74
2785                                 0.70
2786                                 0.68
2787                                 0.74
2788                                 0.75
2789                                 0.70
2790                                 0.71
2791                                 0.74
2792                                 0.74
2793                                 0.70
2794                                 0.76
2795                                 0.76
2796                                 0.74
2797                                 0.85
2798                                 0.75
2799                                 0.73
2800                                 0.84
2801                                 0.85
2802                                 0.78
2803                                 0.72
2804                                 0.71
2805                                 0.80
2806                                 0.80
2807                                 0.92
2808                                 0.75
2809                                 1.52
2810                                 1.53
2811                                 1.49
2812                                 1.48
2813                                 1.52
2814                                 1.56
2815                                 1.62
2816                                 1.63
2817                                 1.46
2818                                 1.19
2819                                 1.40
2820                                 1.13
2821                                 1.51
2822                                 1.62
2823                                 1.39
2824                                 1.37
2825                                 1.44
2826                                 1.18
2827                                 1.43
2828                                 1.20
2829                                 1.48
2830                                 1.61
2831                                 1.46
2832                                 1.31
2833                                 1.11
2834                                 1.42
2835                                 1.50
2836                                 1.42
2837                                 1.38
2838                                 1.47
2839                                 1.49
2840                                 1.34
2841                                 1.36
2842                                 1.27
2843                                 1.03
2844                                 1.18
2845                                 1.22
2846                                 1.46
2847                                 0.85
2848                                 1.49
2849                                 1.32
2850                                 1.18
2851                                 1.27
2852                                 1.26
2853                                 1.28
2854                                 1.13
2855                                 1.07
2856                                 1.16
2857                                 1.22
2858                                 1.26
2859                                 1.28
2860                                 1.03
2861                                 0.91
2862                                 0.94
2863                                 1.06
2864                                 1.03
2865                                 1.22
2866                                 1.14
2867                                 1.25
2868                                 1.29
2869                                 1.26
2870                                 1.23
2871                                 1.16
2872                                 1.23
2873                                 1.26
2874                                 1.26
2875                                 1.01
2876                                 0.90
2877                                 0.89
2878                                 0.95
2879                                 0.94
2880                                 0.87
2881                                 1.04
2882                                 0.98
2883                                 1.00
2884                                 1.01
2885                                 0.92
2886                                 0.77
2887                                 0.85
2888                                 0.78
2889                                 0.78
2890                                 0.75
2891                                 0.78
2892                                 0.79
2893                                 0.68
2894                                 0.81
2895                                 0.77
2896                                 0.79
2897                                 0.89
2898                                 0.83
2899                                 1.03
2900                                 0.98
2901                                 0.98
2902                                 0.90
2903                                 1.03
2904                                 0.90
2905                                 1.04
2906                                 0.97
2907                                 0.76
2908                                 1.04
2909                                 0.92
2910                                 1.04
2911                                 0.93
2912                                 1.05
2913                                 1.47
2914                                 1.21
2915                                 1.35
2916                                 1.41
2917                                 1.49
2918                                 1.60
2919                                 1.73
2920                                 1.80
2921                                 1.86
2922                                 1.85
2923                                 1.69
2924                                 1.59
2925                                 1.66
2926                                 1.58
2927                                 1.50
2928                                 1.34
2929                                 1.51
2930                                 1.57
2931                                 1.48
2932                                 1.52
2933                                 1.52
2934                                 1.65
2935                                 1.64
2936                                 1.47
2937                                 1.37
2938                                 1.38
2939                                 1.36
2940                                 1.37
2941                                 1.34
2942                                 1.33
2943                                 1.19
2944                                 1.19
2945                                 1.12
2946                                 0.95
2947                                 1.07
2948                                 1.13
2949                                 1.13
2950                                 1.12
2951                                 1.14
2952                                 1.19
2953                                 1.10
2954                                 1.18
2955                                 1.21
2956                                 1.12
2957                                 1.20
2958                                 1.11
2959                                 1.10
2960                                 1.11
2961                                 1.09
2962                                 1.17
2963                                 1.17
2964                                 1.11
2965                                 1.03
2966                                 1.02
2967                                 0.80
2968                                 1.01
2969                                 1.22
2970                                 1.27
2971                                 1.28
2972                                 1.37
2973                                 1.34
2974                                 1.17
2975                                 1.09
2976                                 1.03
2977                                 0.90
2978                                 0.91
2979                                 0.97
2980                                 0.89
2981                                 1.01
2982                                 0.99
2983                                 0.90
2984                                 0.93
2985                                 0.76
2986                                 0.78
2987                                 0.74
2988                                 0.70
2989                                 0.75
2990                                 0.77
2991                                 0.69
2992                                 0.70
2993                                 0.67
2994                                 0.63
2995                                 0.63
2996                                 0.65
2997                                 0.58
2998                                 0.61
2999                                 0.63
3000                                 0.65
3001                                 0.67
3002                                 0.82
3003                                 0.82
3004                                 0.81
3005                                 0.94
3006                                 0.83
3007                                 0.86
3008                                 0.89
3009                                 0.74
3010                                 0.94
3011                                 0.82
3012                                 0.94
3013                                 0.90
3014                                 0.92
3015                                 0.93
3016                                 0.77
3017                                 1.28
3018                                 1.09
3019                                 1.22
3020                                 1.26
3021                                 1.45
3022                                 1.39
3023                                 1.56
3024                                 1.62
3025                                 1.67
3026                                 1.58
3027                                 1.60
3028                                 1.49
3029                                 1.59
3030                                 1.53
3031                                 1.45
3032                                 1.27
3033                                 1.41
3034                                 1.37
3035                                 1.31
3036                                 1.29
3037                                 1.48
3038                                 1.61
3039                                 1.52
3040                                 1.56
3041                                 1.32
3042                                 1.38
3043                                 1.33
3044                                 1.32
3045                                 1.29
3046                                 1.26
3047                                 1.08
3048                                 1.05
3049                                 1.06
3050                                 0.85
3051                                 1.05
3052                                 1.07
3053                                 1.08
3054                                 0.99
3055                                 1.11
3056                                 1.08
3057                                 1.10
3058                                 1.05
3059                                 1.10
3060                                 1.08
3061                                 1.14
3062                                 0.98
3063                                 1.05
3064                                 1.03
3065                                 1.05
3066                                 1.02
3067                                 1.15
3068                                 1.01
3069                                 1.41
3070                                 1.36
3071                                 1.47
3072                                 1.66
3073                                 1.57
3074                                 1.63
3075                                 1.60
3076                                 1.64
3077                                 1.65
3078                                 1.60
3079                                 1.36
3080                                 1.37
3081                                 1.35
3082                                 1.40
3083                                 1.54
3084                                 1.38
3085                                 1.48
3086                                 1.40
3087                                 1.33
3088                                 1.41
3089                                 1.50
3090                                 1.45
3091                                 1.44
3092                                 1.30
3093                                 1.25
3094                                 1.30
3095                                 1.26
3096                                 1.23
3097                                 1.15
3098                                 1.15
3099                                 1.19
3100                                 1.12
3101                                 1.09
3102                                 1.09
3103                                 1.11
3104                                 1.15
3105                                 1.14
3106                                 1.10
3107                                 1.04
3108                                 1.13
3109                                 1.14
3110                                 1.11
3111                                 1.36
3112                                 1.22
3113                                 1.31
3114                                 1.29
3115                                 1.30
3116                                 1.21
3117                                 1.31
3118                                 1.38
3119                                 1.35
3120                                 1.39
3121                                 0.94
3122                                 0.95
3123                                 0.90
3124                                 0.98
3125                                 1.21
3126                                 1.32
3127                                 1.48
3128                                 1.68
3129                                 1.68
3130                                 1.39
3131                                 1.40
3132                                 1.34
3133                                 1.19
3134                                 1.15
3135                                 1.22
3136                                 1.12
3137                                 1.08
3138                                 0.99
3139                                 1.05
3140                                 1.07
3141                                 1.17
3142                                 1.22
3143                                 1.20
3144                                 1.14
3145                                 1.08
3146                                 1.10
3147                                 1.03
3148                                 1.06
3149                                 1.01
3150                                 0.94
3151                                 0.98
3152                                 0.90
3153                                 0.97
3154                                 0.79
3155                                 0.75
3156                                 0.84
3157                                 0.93
3158                                 0.94
3159                                 0.93
3160                                 0.93
3161                                 0.91
3162                                 0.96
3163                                 0.92
3164                                 0.89
3165                                 0.89
3166                                 0.82
3167                                 0.70
3168                                 0.88
3169                                 0.88
3170                                 0.90
3171                                 0.87
3172                                 0.73
3173                                 1.25
3174                                 1.24
3175                                 1.33
3176                                 1.34
3177                                 1.54
3178                                 1.57
3179                                 1.64
3180                                 1.57
3181                                 1.58
3182                                 1.52
3183                                 1.39
3184                                 1.51
3185                                 1.48
3186                                 1.47
3187                                 1.43
3188                                 1.42
3189                                 1.33
3190                                 1.40
3191                                 1.38
3192                                 1.40
3193                                 1.43
3194                                 1.48
3195                                 1.46
3196                                 1.43
3197                                 1.26
3198                                 1.20
3199                                 1.28
3200                                 1.21
3201                                 1.25
3202                                 1.25
3203                                 1.21
3204                                 1.26
3205                                 1.12
3206                                 1.05
3207                                 1.04
3208                                 1.12
3209                                 1.14
3210                                 1.10
3211                                 1.12
3212                                 1.14
3213                                 1.15
3214                                 1.05
3215                                 1.09
3216                                 1.05
3217                                 1.07
3218                                 1.00
3219                                 0.80
3220                                 0.95
3221                                 0.92
3222                                 0.98
3223                                 0.95
3224                                 0.96
3225                                 1.22
3226                                 1.18
3227                                 1.09
3228                                 1.27
3229                                 1.10
3230                                 1.13
3231                                 1.82
3232                                 2.07
3233                                 2.07
3234                                 1.84
3235                                 1.80
3236                                 1.82
3237                                 1.83
3238                                 1.80
3239                                 1.70
3240                                 1.67
3241                                 1.60
3242                                 1.60
3243                                 1.63
3244                                 1.67
3245                                 1.68
3246                                 1.68
3247                                 1.66
3248                                 1.51
3249                                 1.53
3250                                 1.23
3251                                 1.18
3252                                 1.20
3253                                 1.30
3254                                 1.20
3255                                 1.15
3256                                 1.11
3257                                 1.04
3258                                 0.97
3259                                 1.00
3260                                 1.08
3261                                 1.08
3262                                 1.11
3263                                 1.15
3264                                 0.90
3265                                 1.11
3266                                 1.00
3267                                 1.13
3268                                 1.15
3269                                 1.09
3270                                 1.00
3271                                 0.82
3272                                 1.12
3273                                 1.01
3274                                 1.11
3275                                 1.08
3276                                 0.93
3277                                 0.82
3278                                 0.99
3279                                 0.77
3280                                 0.70
3281                                 1.09
3282                                 0.98
3283                                 1.07
3284                                 1.08
3285                                 1.02
3286                                 0.96
3287                                 1.07
3288                                 1.01
3289                                 1.03
3290                                 1.09
3291                                 0.96
3292                                 1.04
3293                                 1.12
3294                                 1.13
3295                                 1.07
3296                                 1.03
3297                                 1.03
3298                                 1.07
3299                                 1.10
3300                                 1.05
3301                                 1.06
3302                                 0.84
3303                                 0.92
3304                                 0.91
3305                                 1.05
3306                                 0.85
3307                                 0.84
3308                                 0.82
3309                                 0.88
3310                                 0.86
3311                                 0.94
3312                                 0.94
3313                                 0.93
3314                                 0.89
3315                                 0.89
3316                                 0.90
3317                                 0.90
3318                                 0.88
3319                                 0.85
3320                                 0.87
3321                                 0.86
3322                                 0.86
3323                                 0.81
3324                                 0.94
3325                                 0.89
3326                                 0.86
3327                                 0.92
3328                                 0.90
3329                                 1.07
3330                                 1.06
3331                                 0.98
3332                                 0.84
3333                                 1.10
3334                                 1.33
3335                                 1.38
3336                                 1.41
3337                                 1.10
3338                                 1.11
3339                                 1.31
3340                                 1.33
3341                                 1.30
3342                                 1.14
3343                                 1.07
3344                                 1.06
3345                                 1.06
3346                                 1.07
3347                                 1.20
3348                                 1.17
3349                                 1.18
3350                                 1.21
3351                                 1.15
3352                                 1.18
3353                                 1.06
3354                                 0.94
3355                                 1.04
3356                                 1.13
3357                                 1.13
3358                                 1.07
3359                                 0.93
3360                                 0.83
3361                                 0.84
3362                                 0.90
3363                                 0.71
3364                                 0.72
3365                                 0.97
3366                                 0.96
3367                                 0.95
3368                                 1.01
3369                                 1.04
3370                                 1.05
3371                                 0.95
3372                                 1.03
3373                                 1.05
3374                                 0.91
3375                                 0.81
3376                                 0.92
3377                                 0.89
3378                                 1.03
3379                                 0.97
3380                                 0.91
3381                                 0.76
3382                                 0.69
3383                                 0.69
3384                                 0.69
3385                                 0.90
3386                                 1.00
3387                                 1.08
3388                                 1.14
3389                                 1.14
3390                                 1.08
3391                                 0.99
3392                                 0.93
3393                                 0.95
3394                                 0.92
3395                                 0.80
3396                                 0.79
3397                                 0.74
3398                                 0.74
3399                                 0.77
3400                                 0.88
3401                                 0.83
3402                                 0.88
3403                                 0.94
3404                                 0.96
3405                                 0.91
3406                                 0.89
3407                                 0.85
3408                                 0.87
3409                                 0.84
3410                                 0.82
3411                                 0.77
3412                                 0.70
3413                                 0.71
3414                                 0.72
3415                                 0.71
3416                                 0.65
3417                                 0.69
3418                                 0.69
3419                                 0.70
3420                                 0.76
3421                                 0.74
3422                                 0.78
3423                                 0.76
3424                                 0.74
3425                                 0.83
3426                                 0.65
3427                                 0.71
3428                                 0.80
3429                                 1.02
3430                                 0.79
3431                                 0.85
3432                                 0.78
3433                                 1.04
3434                                 1.04
3435                                 0.95
3436                                 0.91
3437                                 1.30
3438                                 1.28
3439                                 1.18
3440                                 1.31
3441                                 1.13
3442                                 1.24
3443                                 1.15
3444                                 1.08
3445                                 1.18
3446                                 1.15
3447                                 1.02
3448                                 0.98
3449                                 0.91
3450                                 0.91
3451                                 1.22
3452                                 1.18
3453                                 1.14
3454                                 1.15
3455                                 1.17
3456                                 1.07
3457                                 1.04
3458                                 1.03
3459                                 0.98
3460                                 1.00
3461                                 0.96
3462                                 0.85
3463                                 0.85
3464                                 0.90
3465                                 0.90
3466                                 0.80
3467                                 0.87
3468                                 0.93
3469                                 0.78
3470                                 0.77
3471                                 0.83
3472                                 0.95
3473                                 0.73
3474                                 0.83
3475                                 0.98
3476                                 0.74
3477                                 0.73
3478                                 0.70
3479                                 0.63
3480                                 0.80
3481                                 0.60
3482                                 0.66
3483                                 0.72
3484                                 0.60
3485                                 1.06
3486                                 1.05
3487                                 0.95
3488                                 0.81
3489                                 1.18
3490                                 1.35
3491                                 1.39
3492                                 1.40
3493                                 1.40
3494                                 1.35
3495                                 1.26
3496                                 1.27
3497                                 1.25
3498                                 1.24
3499                                 1.10
3500                                 1.09
3501                                 1.08
3502                                 1.01
3503                                 1.15
3504                                 1.08
3505                                 1.13
3506                                 1.16
3507                                 1.15
3508                                 1.17
3509                                 1.18
3510                                 1.17
3511                                 1.13
3512                                 1.00
3513                                 0.98
3514                                 0.92
3515                                 1.04
3516                                 1.07
3517                                 0.86
3518                                 0.96
3519                                 1.00
3520                                 1.00
3521                                 0.97
3522                                 1.03
3523                                 1.02
3524                                 1.05
3525                                 1.09
3526                                 1.12
3527                                 0.97
3528                                 1.13
3529                                 1.20
3530                                 1.00
3531                                 0.77
3532                                 1.04
3533                                 0.94
3534                                 1.11
3535                                 1.10
3536                                 0.86
3537                                 1.33
3538                                 1.14
3539                                 1.20
3540                                 0.92
3541                                 1.44
3542                                 1.46
3543                                 1.59
3544                                 1.67
3545                                 1.42
3546                                 1.72
3547                                 1.63
3548                                 1.62
3549                                 1.60
3550                                 1.55
3551                                 1.49
3552                                 1.58
3553                                 1.52
3554                                 1.45
3555                                 1.63
3556                                 1.53
3557                                 1.59
3558                                 1.60
3559                                 1.60
3560                                 1.58
3561                                 1.60
3562                                 1.49
3563                                 1.26
3564                                 1.26
3565                                 1.36
3566                                 0.93
3567                                 1.32
3568                                 1.31
3569                                 0.88
3570                                 1.04
3571                                 1.12
3572                                 1.07
3573                                 0.89
3574                                 1.17
3575                                 1.10
3576                                 0.99
3577                                 1.07
3578                                 1.15
3579                                 0.91
3580                                 1.07
3581                                 1.16
3582                                 1.13
3583                                 0.94
3584                                 1.13
3585                                 0.94
3586                                 1.05
3587                                 1.17
3588                                 0.92
3589                                 1.11
3590                                 1.11
3591                                 1.03
3592                                 0.97
3593                                 1.18
3594                                 1.23
3595                                 1.41
3596                                 1.48
3597                                 1.36
3598                                 1.35
3599                                 1.40
3600                                 1.35
3601                                 1.38
3602                                 1.37
3603                                 1.28
3604                                 1.30
3605                                 1.30
3606                                 1.27
3607                                 1.34
3608                                 1.30
3609                                 1.33
3610                                 1.34
3611                                 1.32
3612                                 1.25
3613                                 1.24
3614                                 1.13
3615                                 1.13
3616                                 1.10
3617                                 1.15
3618                                 1.01
3619                                 1.05
3620                                 1.00
3621                                 0.91
3622                                 0.94
3623                                 0.94
3624                                 0.96
3625                                 0.98
3626                                 1.05
3627                                 1.04
3628                                 0.97
3629                                 1.06
3630                                 1.03
3631                                 0.98
3632                                 1.05
3633                                 1.07
3634                                 0.96
3635                                 0.85
3636                                 1.04
3637                                 0.95
3638                                 1.05
3639                                 1.06
3640                                 0.92
3641                                 1.45
3642                                 1.21
3643                                 1.26
3644                                 1.40
3645                                 1.40
3646                                 1.37
3647                                 1.42
3648                                 1.55
3649                                 1.59
3650                                 1.60
3651                                 1.49
3652                                 1.42
3653                                 1.40
3654                                 1.37
3655                                 1.26
3656                                 1.19
3657                                 1.15
3658                                 1.32
3659                                 1.28
3660                                 1.22
3661                                 1.24
3662                                 1.37
3663                                 1.36
3664                                 1.25
3665                                 1.21
3666                                 1.23
3667                                 1.24
3668                                 1.26
3669                                 1.24
3670                                 1.23
3671                                 1.13
3672                                 1.12
3673                                 1.08
3674                                 0.91
3675                                 0.99
3676                                 1.09
3677                                 1.05
3678                                 1.05
3679                                 1.13
3680                                 1.15
3681                                 1.08
3682                                 1.13
3683                                 1.17
3684                                 1.11
3685                                 1.15
3686                                 1.09
3687                                 1.10
3688                                 1.07
3689                                 1.13
3690                                 1.15
3691                                 1.14
3692                                 1.09
3693                                 1.49
3694                                 1.22
3695                                 1.42
3696                                 1.54
3697                                 1.57
3698                                 1.62
3699                                 1.82
3700                                 1.83
3701                                 1.81
3702                                 1.78
3703                                 1.82
3704                                 1.62
3705                                 1.69
3706                                 1.63
3707                                 1.51
3708                                 1.22
3709                                 1.54
3710                                 1.59
3711                                 1.46
3712                                 1.46
3713                                 1.50
3714                                 1.72
3715                                 1.70
3716                                 1.63
3717                                 1.46
3718                                 1.47
3719                                 1.41
3720                                 1.50
3721                                 1.47
3722                                 1.46
3723                                 1.15
3724                                 1.26
3725                                 1.24
3726                                 0.86
3727                                 1.18
3728                                 1.25
3729                                 1.18
3730                                 1.17
3731                                 1.36
3732                                 1.31
3733                                 1.17
3734                                 1.30
3735                                 1.27
3736                                 1.17
3737                                 1.28
3738                                 1.10
3739                                 1.16
3740                                 1.12
3741                                 1.27
3742                                 1.18
3743                                 1.26
3744                                 1.07
3745                                 0.72
3746                                 0.63
3747                                 0.73
3748                                 0.71
3749                                 0.82
3750                                 0.99
3751                                 1.05
3752                                 1.12
3753                                 1.15
3754                                 1.00
3755                                 0.98
3756                                 0.98
3757                                 0.98
3758                                 0.96
3759                                 0.83
3760                                 0.76
3761                                 0.72
3762                                 0.88
3763                                 0.90
3764                                 0.90
3765                                 0.92
3766                                 0.98
3767                                 0.96
3768                                 0.92
3769                                 0.89
3770                                 0.92
3771                                 0.88
3772                                 0.89
3773                                 0.83
3774                                 0.85
3775                                 0.82
3776                                 0.68
3777                                 0.69
3778                                 0.65
3779                                 0.68
3780                                 0.67
3781                                 0.69
3782                                 0.70
3783                                 0.72
3784                                 0.75
3785                                 0.76
3786                                 0.76
3787                                 0.76
3788                                 0.76
3789                                 0.80
3790                                 0.67
3791                                 0.69
3792                                 0.74
3793                                 0.91
3794                                 0.83
3795                                 0.84
3796                                 0.78
3797                                 1.13
3798                                 1.19
3799                                 1.17
3800                                 1.18
3801                                 1.34
3802                                 1.29
3803                                 1.29
3804                                 1.37
3805                                 1.20
3806                                 1.31
3807                                 1.27
3808                                 1.20
3809                                 1.31
3810                                 1.39
3811                                 1.26
3812                                 1.29
3813                                 1.31
3814                                 1.27
3815                                 1.30
3816                                 1.27
3817                                 1.33
3818                                 1.27
3819                                 1.20
3820                                 1.08
3821                                 1.12
3822                                 1.10
3823                                 1.15
3824                                 1.13
3825                                 1.12
3826                                 1.05
3827                                 1.01
3828                                 0.87
3829                                 0.88
3830                                 0.93
3831                                 0.92
3832                                 0.95
3833                                 0.97
3834                                 1.07
3835                                 0.99
3836                                 0.99
3837                                 1.12
3838                                 1.03
3839                                 0.96
3840                                 0.99
3841                                 1.03
3842                                 0.83
3843                                 0.88
3844                                 0.98
3845                                 0.93
3846                                 0.97
3847                                 1.00
3848                                 0.95
3849                                 0.81
3850                                 0.84
3851                                 1.17
3852                                 0.89
3853                                 1.36
3854                                 1.36
3855                                 1.31
3856                                 1.41
3857                                 1.41
3858                                 1.35
3859                                 1.12
3860                                 1.31
3861                                 1.31
3862                                 1.26
3863                                 1.05
3864                                 1.10
3865                                 0.94
3866                                 1.14
3867                                 1.11
3868                                 1.11
3869                                 1.23
3870                                 1.23
3871                                 1.21
3872                                 1.22
3873                                 1.19
3874                                 0.93
3875                                 1.19
3876                                 0.94
3877                                 1.20
3878                                 0.95
3879                                 0.92
3880                                 1.17
3881                                 0.79
3882                                 0.80
3883                                 0.68
3884                                 0.80
3885                                 1.00
3886                                 0.80
3887                                 1.01
3888                                 1.06
3889                                 1.07
3890                                 0.81
3891                                 1.06
3892                                 0.77
3893                                 1.01
3894                                 0.95
3895                                 0.54
3896                                 1.04
3897                                 0.93
3898                                 1.21
3899                                 0.95
3900                                 1.09
3901                                 0.82
3902                                 0.81
3903                                 0.83
3904                                 0.91
3905                                 0.86
3906                                 1.12
3907                                 1.10
3908                                 1.20
3909                                 1.16
3910                                 1.13
3911                                 1.08
3912                                 1.16
3913                                 1.22
3914                                 1.20
3915                                 1.12
3916                                 0.89
3917                                 1.03
3918                                 1.03
3919                                 1.00
3920                                 1.08
3921                                 1.11
3922                                 1.17
3923                                 1.15
3924                                 1.08
3925                                 1.00
3926                                 1.00
3927                                 0.94
3928                                 0.91
3929                                 0.94
3930                                 0.89
3931                                 0.89
3932                                 0.93
3933                                 0.86
3934                                 0.83
3935                                 0.85
3936                                 0.83
3937                                 0.81
3938                                 0.87
3939                                 0.84
3940                                 0.85
3941                                 0.82
3942                                 0.79
3943                                 0.91
3944                                 0.86
3945                                 0.83
3946                                 0.79
3947                                 0.74
3948                                 0.92
3949                                 1.08
3950                                 0.88
3951                                 0.83
3952                                 0.80
3953                                 0.84
3954                                 0.84
3955                                 0.75
3956                                 0.78
3957                                 1.01
3958                                 1.10
3959                                 1.29
3960                                 1.52
3961                                 1.48
3962                                 1.23
3963                                 1.17
3964                                 1.16
3965                                 1.06
3966                                 1.00
3967                                 1.06
3968                                 0.95
3969                                 0.88
3970                                 0.81
3971                                 0.93
3972                                 1.03
3973                                 1.00
3974                                 1.06
3975                                 1.01
3976                                 0.97
3977                                 0.93
3978                                 0.95
3979                                 0.85
3980                                 0.90
3981                                 0.83
3982                                 0.76
3983                                 0.83
3984                                 0.76
3985                                 0.82
3986                                 0.64
3987                                 0.62
3988                                 0.75
3989                                 0.76
3990                                 0.77
3991                                 0.82
3992                                 0.73
3993                                 0.74
3994                                 0.79
3995                                 0.76
3996                                 0.72
3997                                 0.76
3998                                 0.65
3999                                 0.58
4000                                 0.74
4001                                 0.76
4002                                 0.76
4003                                 0.74
4004                                 0.64
4005                                 1.01
4006                                 1.10
4007                                 0.79
4008                                 0.83
4009                                 1.26
4010                                 1.43
4011                                 1.34
4012                                 1.27
4013                                 1.28
4014                                 1.23
4015                                 1.10
4016                                 1.15
4017                                 1.24
4018                                 1.37
4019                                 1.26
4020                                 1.21
4021                                 1.11
4022                                 1.13
4023                                 1.16
4024                                 1.25
4025                                 1.30
4026                                 1.24
4027                                 1.19
4028                                 1.13
4029                                 1.15
4030                                 1.00
4031                                 1.06
4032                                 1.09
4033                                 1.16
4034                                 1.09
4035                                 0.99
4036                                 0.91
4037                                 0.86
4038                                 0.86
4039                                 0.88
4040                                 0.93
4041                                 0.92
4042                                 0.90
4043                                 0.85
4044                                 0.89
4045                                 0.95
4046                                 1.07
4047                                 1.02
4048                                 0.94
4049                                 0.86
4050                                 0.86
4051                                 0.85
4052                                 0.92
4053                                 0.89
4054                                 0.90
4055                                 0.89
4056                                 0.88
4057                                 0.97
4058                                 0.97
4059                                 1.39
4060                                 0.98
4061                                 1.49
4062                                 1.52
4063                                 1.43
4064                                 1.51
4065                                 1.57
4066                                 1.59
4067                                 1.28
4068                                 1.49
4069                                 1.51
4070                                 1.43
4071                                 1.19
4072                                 1.20
4073                                 0.97
4074                                 1.22
4075                                 1.23
4076                                 1.17
4077                                 1.25
4078                                 1.30
4079                                 1.28
4080                                 1.24
4081                                 1.24
4082                                 0.96
4083                                 1.25
4084                                 0.99
4085                                 1.28
4086                                 0.99
4087                                 0.97
4088                                 1.26
4089                                 0.88
4090                                 1.01
4091                                 0.79
4092                                 0.88
4093                                 1.12
4094                                 0.87
4095                                 1.15
4096                                 1.17
4097                                 1.13
4098                                 0.88
4099                                 1.16
4100                                 0.83
4101                                 1.10
4102                                 1.12
4103                                 0.59
4104                                 1.11
4105                                 0.96
4106                                 1.20
4107                                 0.97
4108                                 1.13
4109                                 1.23
4110                                 1.16
4111                                 1.15
4112                                 1.20
4113                                 1.40
4114                                 1.48
4115                                 1.52
4116                                 1.54
4117                                 1.48
4118                                 1.47
4119                                 1.40
4120                                 1.39
4121                                 1.38
4122                                 1.37
4123                                 1.28
4124                                 1.18
4125                                 1.20
4126                                 1.30
4127                                 1.27
4128                                 1.29
4129                                 1.30
4130                                 1.35
4131                                 1.32
4132                                 1.26
4133                                 1.19
4134                                 1.15
4135                                 1.17
4136                                 1.16
4137                                 1.15
4138                                 1.14
4139                                 1.09
4140                                 1.08
4141                                 1.04
4142                                 0.95
4143                                 0.99
4144                                 1.04
4145                                 1.06
4146                                 1.05
4147                                 1.07
4148                                 1.08
4149                                 1.05
4150                                 1.07
4151                                 1.10
4152                                 1.05
4153                                 1.06
4154                                 0.99
4155                                 0.91
4156                                 1.00
4157                                 1.01
4158                                 1.05
4159                                 1.04
4160                                 1.01
4161                                 0.93
4162                                 0.92
4163                                 0.90
4164                                 0.96
4165                                 1.24
4166                                 1.33
4167                                 1.39
4168                                 1.31
4169                                 1.18
4170                                 1.19
4171                                 1.06
4172                                 1.20
4173                                 1.15
4174                                 1.16
4175                                 1.01
4176                                 0.75
4177                                 0.73
4178                                 1.09
4179                                 1.09
4180                                 1.06
4181                                 1.12
4182                                 1.10
4183                                 1.07
4184                                 1.07
4185                                 1.00
4186                                 0.87
4187                                 0.98
4188                                 0.89
4189                                 0.97
4190                                 0.88
4191                                 0.87
4192                                 0.92
4193                                 0.81
4194                                 0.88
4195                                 0.81
4196                                 0.81
4197                                 0.90
4198                                 0.82
4199                                 0.95
4200                                 0.93
4201                                 0.93
4202                                 0.87
4203                                 0.97
4204                                 0.88
4205                                 0.94
4206                                 0.88
4207                                 0.77
4208                                 0.95
4209                                 0.87
4210                                 0.95
4211                                 0.90
4212                                 0.98
4213                                 0.94
4214                                 1.08
4215                                 1.21
4216                                 1.05
4217                                 1.38
4218                                 1.35
4219                                 1.26
4220                                 1.49
4221                                 1.48
4222                                 1.44
4223                                 1.36
4224                                 1.25
4225                                 1.29
4226                                 1.19
4227                                 1.18
4228                                 1.13
4229                                 0.94
4230                                 1.02
4231                                 1.04
4232                                 1.11
4233                                 1.13
4234                                 1.20
4235                                 1.16
4236                                 1.09
4237                                 1.06
4238                                 0.93
4239                                 1.05
4240                                 0.97
4241                                 0.95
4242                                 0.89
4243                                 0.85
4244                                 0.96
4245                                 0.86
4246                                 0.63
4247                                 0.58
4248                                 0.87
4249                                 0.87
4250                                 0.87
4251                                 0.89
4252                                 0.94
4253                                 0.94
4254                                 0.91
4255                                 0.97
4256                                 0.80
4257                                 0.89
4258                                 0.81
4259                                 0.58
4260                                 0.88
4261                                 0.90
4262                                 0.88
4263                                 0.90
4264                                 0.86
4265                                 1.36
4266                                 1.26
4267                                 1.32
4268                                 1.52
4269                                 1.56
4270                                 1.59
4271                                 1.90
4272                                 1.93
4273                                 1.99
4274                                 1.95
4275                                 1.89
4276                                 1.76
4277                                 1.72
4278                                 1.62
4279                                 1.50
4280                                 1.26
4281                                 1.47
4282                                 1.58
4283                                 1.47
4284                                 1.49
4285                                 1.54
4286                                 1.70
4287                                 1.68
4288                                 1.64
4289                                 1.51
4290                                 1.53
4291                                 1.20
4292                                 1.50
4293                                 1.44
4294                                 1.47
4295                                 1.08
4296                                 1.14
4297                                 1.14
4298                                 0.77
4299                                 1.22
4300                                 1.12
4301                                 1.08
4302                                 1.09
4303                                 1.31
4304                                 1.32
4305                                 1.09
4306                                 1.17
4307                                 1.24
4308                                 1.15
4309                                 1.21
4310                                 1.09
4311                                 0.95
4312                                 1.02
4313                                 1.30
4314                                 1.01
4315                                 1.15
4316                                 1.07
4317                                 1.36
4318                                 1.22
4319                                 1.32
4320                                 1.40
4321                                 1.51
4322                                 1.51
4323                                 1.67
4324                                 1.71
4325                                 1.72
4326                                 1.67
4327                                 1.65
4328                                 1.54
4329                                 1.59
4330                                 1.53
4331                                 1.45
4332                                 1.28
4333                                 1.40
4334                                 1.40
4335                                 1.40
4336                                 1.37
4337                                 1.47
4338                                 1.60
4339                                 1.54
4340                                 1.49
4341                                 1.33
4342                                 1.41
4343                                 1.28
4344                                 1.40
4345                                 1.34
4346                                 1.35
4347                                 1.14
4348                                 1.14
4349                                 1.13
4350                                 0.87
4351                                 1.12
4352                                 1.13
4353                                 1.12
4354                                 1.09
4355                                 1.18
4356                                 1.23
4357                                 1.11
4358                                 1.13
4359                                 1.21
4360                                 1.15
4361                                 1.21
4362                                 1.08
4363                                 1.03
4364                                 1.06
4365                                 1.21
4366                                 1.09
4367                                 1.20
4368                                 1.07
4369                                 1.24
4370                                 1.19
4371                                 1.29
4372                                 1.12
4373                                 1.41
4374                                 1.39
4375                                 1.48
4376                                 1.47
4377                                 1.52
4378                                 1.48
4379                                 1.47
4380                                 1.40
4381                                 1.52
4382                                 1.58
4383                                 1.48
4384                                 1.44
4385                                 1.38
4386                                 1.08
4387                                 1.34
4388                                 1.21
4389                                 1.41
4390                                 1.49
4391                                 1.36
4392                                 1.37
4393                                 1.06
4394                                 1.29
4395                                 1.28
4396                                 1.26
4397                                 1.19
4398                                 1.18
4399                                 1.10
4400                                 1.02
4401                                 1.07
4402                                 0.97
4403                                 1.02
4404                                 1.07
4405                                 1.12
4406                                 1.04
4407                                 0.99
4408                                 1.13
4409                                 1.14
4410                                 1.01
4411                                 1.08
4412                                 1.10
4413                                 1.16
4414                                 0.99
4415                                 0.97
4416                                 1.07
4417                                 1.07
4418                                 1.08
4419                                 1.24
4420                                 0.96
4421                                 0.94
4422                                 0.92
4423                                 1.22
4424                                 0.97
4425                                 1.46
4426                                 1.46
4427                                 1.40
4428                                 1.47
4429                                 1.54
4430                                 1.52
4431                                 1.23
4432                                 1.44
4433                                 1.45
4434                                 1.40
4435                                 1.16
4436                                 1.18
4437                                 0.97
4438                                 1.18
4439                                 1.19
4440                                 1.14
4441                                 1.23
4442                                 1.24
4443                                 1.22
4444                                 1.17
4445                                 1.17
4446                                 0.93
4447                                 1.18
4448                                 0.97
4449                                 1.24
4450                                 0.97
4451                                 0.95
4452                                 1.17
4453                                 0.83
4454                                 0.95
4455                                 0.76
4456                                 0.83
4457                                 1.06
4458                                 0.83
4459                                 1.05
4460                                 1.06
4461                                 1.09
4462                                 0.84
4463                                 1.08
4464                                 0.82
4465                                 1.05
4466                                 0.96
4467                                 0.58
4468                                 1.03
4469                                 0.93
4470                                 1.19
4471                                 0.96
4472                                 1.11
4473                                 1.43
4474                                 1.38
4475                                 1.37
4476                                 1.54
4477                                 1.57
4478                                 1.57
4479                                 1.72
4480                                 1.86
4481                                 1.83
4482                                 1.89
4483                                 1.74
4484                                 1.71
4485                                 1.61
4486                                 1.54
4487                                 1.41
4488                                 1.24
4489                                 1.30
4490                                 1.49
4491                                 1.45
4492                                 1.43
4493                                 1.45
4494                                 1.57
4495                                 1.56
4496                                 1.52
4497                                 1.47
4498                                 1.47
4499                                 1.24
4500                                 1.46
4501                                 1.44
4502                                 1.44
4503                                 1.18
4504                                 1.20
4505                                 1.22
4506                                 0.91
4507                                 1.21
4508                                 1.17
4509                                 1.17
4510                                 1.17
4511                                 1.28
4512                                 1.29
4513                                 1.05
4514                                 1.10
4515                                 1.33
4516                                 1.27
4517                                 1.26
4518                                 1.19
4519                                 0.96
4520                                 1.04
4521                                 1.34
4522                                 1.14
4523                                 1.23
4524                                 1.19
4525                                 0.64
4526                                 0.56
4527                                 0.67
4528                                 0.63
4529                                 0.72
4530                                 0.70
4531                                 0.94
4532                                 1.00
4533                                 1.11
4534                                 1.02
4535                                 1.03
4536                                 0.99
4537                                 1.03
4538                                 1.04
4539                                 1.00
4540                                 0.88
4541                                 0.64
4542                                 0.79
4543                                 0.58
4544                                 0.69
4545                                 0.64
4546                                 1.00
4547                                 0.94
4548                                 0.92
4549                                 0.89
4550                                 0.77
4551                                 0.60
4552                                 0.62
4553                                 0.81
4554                                 0.67
4555                                 0.58
4556                                 0.68
4557                                 0.55
4558                                 0.57
4559                                 0.62
4560                                 0.54
4561                                 0.61
4562                                 0.56
4563                                 0.61
4564                                 0.54
4565                                 0.56
4566                                 0.64
4567                                 0.51
4568                                 0.57
4569                                 0.67
4570                                 0.61
4571                                 0.55
4572                                 0.64
4573                                 0.61
4574                                 0.71
4575                                 0.59
4576                                 0.62
4577                                 1.26
4578                                 1.02
4579                                 1.21
4580                                 1.27
4581                                 1.27
4582                                 1.27
4583                                 1.26
4584                                 1.25
4585                                 1.25
4586                                 1.30
4587                                 1.27
4588                                 1.29
4589                                 1.30
4590                                 1.01
4591                                 1.27
4592                                 1.33
4593                                 1.23
4594                                 1.40
4595                                 1.42
4596                                 1.42
4597                                 1.37
4598                                 1.42
4599                                 1.35
4600                                 1.25
4601                                 1.29
4602                                 1.36
4603                                 1.39
4604                                 1.42
4605                                 1.41
4606                                 1.38
4607                                 1.40
4608                                 1.17
4609                                 0.87
4610                                 0.89
4611                                 0.92
4612                                 1.02
4613                                 1.17
4614                                 1.18
4615                                 1.26
4616                                 1.15
4617                                 1.17
4618                                 1.17
4619                                 1.18
4620                                 1.21
4621                                 1.23
4622                                 1.14
4623                                 1.18
4624                                 1.22
4625                                 1.20
4626                                 1.22
4627                                 1.23
4628                                 1.27
4629                                 1.09
4630                                 1.06
4631                                 1.08
4632                                 1.09
4633                                 1.35
4634                                 1.49
4635                                 1.57
4636                                 1.55
4637                                 1.54
4638                                 1.53
4639                                 1.49
4640                                 1.41
4641                                 1.37
4642                                 1.35
4643                                 1.24
4644                                 1.18
4645                                 1.10
4646                                 1.22
4647                                 1.21
4648                                 1.12
4649                                 1.17
4650                                 1.25
4651                                 1.22
4652                                 1.15
4653                                 1.09
4654                                 1.05
4655                                 1.03
4656                                 0.87
4657                                 1.04
4658                                 0.93
4659                                 0.90
4660                                 0.94
4661                                 0.95
4662                                 0.86
4663                                 0.97
4664                                 0.95
4665                                 0.95
4666                                 1.00
4667                                 1.04
4668                                 1.07
4669                                 0.95
4670                                 0.91
4671                                 1.06
4672                                 1.07
4673                                 1.03
4674                                 0.97
4675                                 0.83
4676                                 1.05
4677                                 1.16
4678                                 1.12
4679                                 1.08
4680                                 0.94
4681                                 0.94
4682                                 0.93
4683                                 0.70
4684                                 1.00
4685                                 1.22
4686                                 1.23
4687                                 1.22
4688                                 1.35
4689                                 1.40
4690                                 1.12
4691                                 1.16
4692                                 1.08
4693                                 0.83
4694                                 0.87
4695                                 0.94
4696                                 0.88
4697                                 1.01
4698                                 0.99
4699                                 0.92
4700                                 0.98
4701                                 0.96
4702                                 1.02
4703                                 0.97
4704                                 0.93
4705                                 0.98
4706                                 0.98
4707                                 0.92
4708                                 0.86
4709                                 0.85
4710                                 0.78
4711                                 0.77
4712                                 0.78
4713                                 0.75
4714                                 0.75
4715                                 0.76
4716                                 0.79
4717                                 0.69
4718                                 0.88
4719                                 0.79
4720                                 0.71
4721                                 0.94
4722                                 0.79
4723                                 0.83
4724                                 0.83
4725                                 0.71
4726                                 0.87
4727                                 0.72
4728                                 0.88
4729                                 0.90
4730                                 0.87
4731                                 0.88
4732                                 0.75
4733                                 1.24
4734                                 1.26
4735                                 1.24
4736                                 1.31
4737                                 1.49
4738                                 1.56
4739                                 1.47
4740                                 1.53
4741                                 1.42
4742                                 1.40
4743                                 1.37
4744                                 1.39
4745                                 1.36
4746                                 1.35
4747                                 1.27
4748                                 1.31
4749                                 1.27
4750                                 1.29
4751                                 1.29
4752                                 1.27
4753                                 1.31
4754                                 1.33
4755                                 1.31
4756                                 1.28
4757                                 1.20
4758                                 1.14
4759                                 1.12
4760                                 1.12
4761                                 1.09
4762                                 1.11
4763                                 1.18
4764                                 1.16
4765                                 1.10
4766                                 1.07
4767                                 1.06
4768                                 1.07
4769                                 1.11
4770                                 1.09
4771                                 1.13
4772                                 1.14
4773                                 1.13
4774                                 1.08
4775                                 1.08
4776                                 1.08
4777                                 1.05
4778                                 0.99
4779                                 0.86
4780                                 0.96
4781                                 0.96
4782                                 1.00
4783                                 0.99
4784                                 0.92
4785                                 1.20
4786                                 1.15
4787                                 1.10
4788                                 1.18
4789                                 1.21
4790                                 1.29
4791                                 1.33
4792                                 1.39
4793                                 1.28
4794                                 1.34
4795                                 1.28
4796                                 1.25
4797                                 1.19
4798                                 1.27
4799                                 1.18
4800                                 1.13
4801                                 1.11
4802                                 1.06
4803                                 1.11
4804                                 1.12
4805                                 1.10
4806                                 1.17
4807                                 1.07
4808                                 1.06
4809                                 1.02
4810                                 0.99
4811                                 1.00
4812                                 0.99
4813                                 0.96
4814                                 0.98
4815                                 1.00
4816                                 0.96
4817                                 1.00
4818                                 0.90
4819                                 0.95
4820                                 0.98
4821                                 0.99
4822                                 1.01
4823                                 1.03
4824                                 1.02
4825                                 0.99
4826                                 1.02
4827                                 0.99
4828                                 1.04
4829                                 0.98
4830                                 0.92
4831                                 0.78
4832                                 0.98
4833                                 0.97
4834                                 0.97
4835                                 0.97
4836                                 0.96
4837                                 1.16
4838                                 1.15
4839                                 1.04
4840                                 1.17
4841                                 1.31
4842                                 1.33
4843                                 1.41
4844                                 1.39
4845                                 1.26
4846                                 1.26
4847                                 1.22
4848                                 1.23
4849                                 1.13
4850                                 1.07
4851                                 1.06
4852                                 1.02
4853                                 1.01
4854                                 1.03
4855                                 1.04
4856                                 1.04
4857                                 1.04
4858                                 1.07
4859                                 1.04
4860                                 1.04
4861                                 1.01
4862                                 0.99
4863                                 1.02
4864                                 1.00
4865                                 0.99
4866                                 0.96
4867                                 0.93
4868                                 0.90
4869                                 0.94
4870                                 0.87
4871                                 0.87
4872                                 0.91
4873                                 0.93
4874                                 0.93
4875                                 0.97
4876                                 0.96
4877                                 0.96
4878                                 0.99
4879                                 0.98
4880                                 0.99
4881                                 0.98
4882                                 0.90
4883                                 0.91
4884                                 0.99
4885                                 0.99
4886                                 0.98
4887                                 0.97
4888                                 0.91
4889                                 1.07
4890                                 1.04
4891                                 1.03
4892                                 1.29
4893                                 1.43
4894                                 1.53
4895                                 1.62
4896                                 1.78
4897                                 1.79
4898                                 1.59
4899                                 1.61
4900                                 1.49
4901                                 1.35
4902                                 1.34
4903                                 1.39
4904                                 1.34
4905                                 1.32
4906                                 1.33
4907                                 1.27
4908                                 1.19
4909                                 1.37
4910                                 1.40
4911                                 1.42
4912                                 1.31
4913                                 1.26
4914                                 1.24
4915                                 1.25
4916                                 1.20
4917                                 1.15
4918                                 1.17
4919                                 1.18
4920                                 1.10
4921                                 1.17
4922                                 1.00
4923                                 1.06
4924                                 1.01
4925                                 1.15
4926                                 1.15
4927                                 1.05
4928                                 1.18
4929                                 1.18
4930                                 1.14
4931                                 1.13
4932                                 1.13
4933                                 1.09
4934                                 1.04
4935                                 0.91
4936                                 1.13
4937                                 1.11
4938                                 1.11
4939                                 1.08
4940                                 0.96
4941                                 0.89
4942                                 0.90
4943                                 0.81
4944                                 0.85
4945                                 1.08
4946                                 1.25
4947                                 1.37
4948                                 1.68
4949                                 1.65
4950                                 1.32
4951                                 1.27
4952                                 1.25
4953                                 1.09
4954                                 1.05
4955                                 1.18
4956                                 1.08
4957                                 1.06
4958                                 0.90
4959                                 0.94
4960                                 1.19
4961                                 1.14
4962                                 1.16
4963                                 1.18
4964                                 1.12
4965                                 0.98
4966                                 1.04
4967                                 0.89
4968                                 0.98
4969                                 0.88
4970                                 0.83
4971                                 0.92
4972                                 0.78
4973                                 0.86
4974                                 0.78
4975                                 0.68
4976                                 0.73
4977                                 0.80
4978                                 0.84
4979                                 0.90
4980                                 0.80
4981                                 0.76
4982                                 0.84
4983                                 0.81
4984                                 0.80
4985                                 0.86
4986                                 0.79
4987                                 0.61
4988                                 0.72
4989                                 0.85
4990                                 0.79
4991                                 0.81
4992                                 0.65
4993                                 1.18
4994                                 1.22
4995                                 1.29
4996                                 1.52
4997                                 1.75
4998                                 1.89
4999                                 1.94
5000                                 2.07
5001                                 2.20
5002                                 1.87
5003                                 1.99
5004                                 1.82
5005                                 1.52
5006                                 1.43
5007                                 1.50
5008                                 1.43
5009                                 1.47
5010                                 1.38
5011                                 1.28
5012                                 1.03
5013                                 1.49
5014                                 1.52
5015                                 1.54
5016                                 1.46
5017                                 1.40
5018                                 1.41
5019                                 1.50
5020                                 1.44
5021                                 1.45
5022                                 1.35
5023                                 1.34
5024                                 1.31
5025                                 1.37
5026                                 1.06
5027                                 0.99
5028                                 1.00
5029                                 1.39
5030                                 1.38
5031                                 1.12
5032                                 1.47
5033                                 1.40
5034                                 1.41
5035                                 1.29
5036                                 1.29
5037                                 1.15
5038                                 1.34
5039                                 0.89
5040                                 1.27
5041                                 1.05
5042                                 1.24
5043                                 1.21
5044                                 0.93
5045                                 1.17
5046                                 1.09
5047                                 0.88
5048                                 1.23
5049                                 1.45
5050                                 1.41
5051                                 1.43
5052                                 1.43
5053                                 1.42
5054                                 1.12
5055                                 1.20
5056                                 1.23
5057                                 0.89
5058                                 1.03
5059                                 1.03
5060                                 1.00
5061                                 1.13
5062                                 1.08
5063                                 1.11
5064                                 1.14
5065                                 1.11
5066                                 1.12
5067                                 1.10
5068                                 1.03
5069                                 1.11
5070                                 1.10
5071                                 1.03
5072                                 0.97
5073                                 1.01
5074                                 0.86
5075                                 0.87
5076                                 0.87
5077                                 0.83
5078                                 0.82
5079                                 0.82
5080                                 0.88
5081                                 0.84
5082                                 0.93
5083                                 0.86
5084                                 0.85
5085                                 1.02
5086                                 0.94
5087                                 0.88
5088                                 0.91
5089                                 0.86
5090                                 0.98
5091                                 0.75
5092                                 0.98
5093                                 0.92
5094                                 0.94
5095                                 0.86
5096                                 0.89
5097                                 1.02
5098                                 1.07
5099                                 1.20
5100                                 1.09
5101                                 1.33
5102                                 1.34
5103                                 1.41
5104                                 1.50
5105                                 1.43
5106                                 1.40
5107                                 1.30
5108                                 1.32
5109                                 1.30
5110                                 1.25
5111                                 1.12
5112                                 1.08
5113                                 1.03
5114                                 1.11
5115                                 1.08
5116                                 1.11
5117                                 1.17
5118                                 1.18
5119                                 1.18
5120                                 1.17
5121                                 1.08
5122                                 0.95
5123                                 1.07
5124                                 0.97
5125                                 1.04
5126                                 0.94
5127                                 0.97
5128                                 1.04
5129                                 0.89
5130                                 0.82
5131                                 0.76
5132                                 0.93
5133                                 1.01
5134                                 0.96
5135                                 1.05
5136                                 1.07
5137                                 1.07
5138                                 0.96
5139                                 1.06
5140                                 0.93
5141                                 1.04
5142                                 0.91
5143                                 0.69
5144                                 1.01
5145                                 0.95
5146                                 1.05
5147                                 0.98
5148                                 1.03
5149                                 0.79
5150                                 0.72
5151                                 0.76
5152                                 0.76
5153                                 0.93
5154                                 1.06
5155                                 1.11
5156                                 1.16
5157                                 1.19
5158                                 1.09
5159                                 1.03
5160                                 1.00
5161                                 1.01
5162                                 0.98
5163                                 0.86
5164                                 0.82
5165                                 0.78
5166                                 0.84
5167                                 0.87
5168                                 0.94
5169                                 0.93
5170                                 0.98
5171                                 0.97
5172                                 0.94
5173                                 0.91
5174                                 0.91
5175                                 0.89
5176                                 0.89
5177                                 0.85
5178                                 0.83
5179                                 0.80
5180                                 0.72
5181                                 0.73
5182                                 0.72
5183                                 0.71
5184                                 0.70
5185                                 0.71
5186                                 0.73
5187                                 0.74
5188                                 0.77
5189                                 0.77
5190                                 0.79
5191                                 0.78
5192                                 0.77
5193                                 0.82
5194                                 0.70
5195                                 0.70
5196                                 0.79
5197                                 0.94
5198                                 0.81
5199                                 0.84
5200                                 0.79
5201                                 0.94
5202                                 0.96
5203                                 1.21
5204                                 0.99
5205                                 1.39
5206                                 1.38
5207                                 1.37
5208                                 1.44
5209                                 1.44
5210                                 1.43
5211                                 1.24
5212                                 1.37
5213                                 1.38
5214                                 1.32
5215                                 1.11
5216                                 1.08
5217                                 0.96
5218                                 1.11
5219                                 1.11
5220                                 1.09
5221                                 1.18
5222                                 1.18
5223                                 1.17
5224                                 1.15
5225                                 1.10
5226                                 0.91
5227                                 1.09
5228                                 0.94
5229                                 1.07
5230                                 0.91
5231                                 0.92
5232                                 1.05
5233                                 0.82
5234                                 0.86
5235                                 0.75
5236                                 0.84
5237                                 1.01
5238                                 0.86
5239                                 1.04
5240                                 1.05
5241                                 1.05
5242                                 0.88
5243                                 1.07
5244                                 0.84
5245                                 1.04
5246                                 0.98
5247                                 0.62
5248                                 1.02
5249                                 0.90
5250                                 1.09
5251                                 0.93
5252                                 1.06
5253                                 1.15
5254                                 0.97
5255                                 0.96
5256                                 1.40
5257                                 1.49
5258                                 1.14
5259                                 1.07
5260                                 1.48
5261                                 1.39
5262                                 1.23
5263                                 1.33
5264                                 1.19
5265                                 0.87
5266                                 1.09
5267                                 1.05
5268                                 0.98
5269                                 1.12
5270                                 1.12
5271                                 1.09
5272                                 1.14
5273                                 1.16
5274                                 1.14
5275                                 1.08
5276                                 0.98
5277                                 1.06
5278                                 1.09
5279                                 1.02
5280                                 0.96
5281                                 0.99
5282                                 0.87
5283                                 0.87
5284                                 0.89
5285                                 0.85
5286                                 0.84
5287                                 0.86
5288                                 0.95
5289                                 0.82
5290                                 0.96
5291                                 0.92
5292                                 0.81
5293                                 1.02
5294                                 0.93
5295                                 0.91
5296                                 0.95
5297                                 0.82
5298                                 0.95
5299                                 0.74
5300                                 1.00
5301                                 0.97
5302                                 0.98
5303                                 0.88
5304                                 0.90
5305                                 1.02
5306                                 0.97
5307                                 1.11
5308                                 1.10
5309                                 1.16
5310                                 1.29
5311                                 1.34
5312                                 1.25
5313                                 1.01
5314                                 0.95
5315                                 1.29
5316                                 1.30
5317                                 1.16
5318                                 1.06
5319                                 1.17
5320                                 1.05
5321                                 1.16
5322                                 1.15
5323                                 1.03
5324                                 0.91
5325                                 0.85
5326                                 1.03
5327                                 0.94
5328                                 0.88
5329                                 0.74
5330                                 0.76
5331                                 0.97
5332                                 0.95
5333                                 0.92
5334                                 0.83
5335                                 0.80
5336                                 0.81
5337                                 0.75
5338                                 0.85
5339                                 0.79
5340                                 0.80
5341                                 0.91
5342                                 0.87
5343                                 0.94
5344                                 0.97
5345                                 0.88
5346                                 0.89
5347                                 0.96
5348                                 0.98
5349                                 1.00
5350                                 0.98
5351                                 0.87
5352                                 1.01
5353                                 1.10
5354                                 1.15
5355                                 1.01
5356                                 1.00
5357                                 1.46
5358                                 1.42
5359                                 1.50
5360                                 1.64
5361                                 1.55
5362                                 1.61
5363                                 1.62
5364                                 1.59
5365                                 1.56
5366                                 1.38
5367                                 1.36
5368                                 1.23
5369                                 1.43
5370                                 1.54
5371                                 1.46
5372                                 1.35
5373                                 1.53
5374                                 1.38
5375                                 1.44
5376                                 1.35
5377                                 1.53
5378                                 1.60
5379                                 1.50
5380                                 1.31
5381                                 1.29
5382                                 1.37
5383                                 1.43
5384                                 1.35
5385                                 1.29
5386                                 1.31
5387                                 1.36
5388                                 1.27
5389                                 1.23
5390                                 1.23
5391                                 1.31
5392                                 1.22
5393                                 1.21
5394                                 1.28
5395                                 1.03
5396                                 1.29
5397                                 1.24
5398                                 1.18
5399                                 1.36
5400                                 1.27
5401                                 1.34
5402                                 1.28
5403                                 1.28
5404                                 1.20
5405                                 1.32
5406                                 1.37
5407                                 1.36
5408                                 1.34
5409                                 0.93
5410                                 0.93
5411                                 1.22
5412                                 0.96
5413                                 1.45
5414                                 1.47
5415                                 1.38
5416                                 1.46
5417                                 1.52
5418                                 1.53
5419                                 1.26
5420                                 1.45
5421                                 1.45
5422                                 1.37
5423                                 1.14
5424                                 1.16
5425                                 0.95
5426                                 1.14
5427                                 1.14
5428                                 1.14
5429                                 1.21
5430                                 1.25
5431                                 1.22
5432                                 1.17
5433                                 1.15
5434                                 0.93
5435                                 1.16
5436                                 0.98
5437                                 1.23
5438                                 0.97
5439                                 0.96
5440                                 1.18
5441                                 0.86
5442                                 0.92
5443                                 0.75
5444                                 0.86
5445                                 1.06
5446                                 0.85
5447                                 1.04
5448                                 1.08
5449                                 1.10
5450                                 0.86
5451                                 1.08
5452                                 0.82
5453                                 1.05
5454                                 1.00
5455                                 0.56
5456                                 0.98
5457                                 0.81
5458                                 1.05
5459                                 0.85
5460                                 1.07
5461                                 1.00
5462                                 0.96
5463                                 0.98
5464                                 1.00
5465                                 1.21
5466                                 1.27
5467                                 1.36
5468                                 1.44
5469                                 1.43
5470                                 1.34
5471                                 1.30
5472                                 1.27
5473                                 1.23
5474                                 1.22
5475                                 1.15
5476                                 1.08
5477                                 1.04
5478                                 1.09
5479                                 1.10
5480                                 1.12
5481                                 1.15
5482                                 1.23
5483                                 1.20
5484                                 1.15
5485                                 1.10
5486                                 1.06
5487                                 1.04
5488                                 1.02
5489                                 1.04
5490                                 0.97
5491                                 0.94
5492                                 0.93
5493                                 0.89
5494                                 0.82
5495                                 0.84
5496                                 0.87
5497                                 0.90
5498                                 0.90
5499                                 0.94
5500                                 0.94
5501                                 0.93
5502                                 0.93
5503                                 0.95
5504                                 0.91
5505                                 0.94
5506                                 0.88
5507                                 0.76
5508                                 0.93
5509                                 0.95
5510                                 0.94
5511                                 0.93
5512                                 0.86
5513                                 0.92
5514                                 0.88
5515                                 0.84
5516                                 0.93
5517                                 1.09
5518                                 1.10
5519                                 1.18
5520                                 1.26
5521                                 1.26
5522                                 1.17
5523                                 1.15
5524                                 1.13
5525                                 1.03
5526                                 1.08
5527                                 1.04
5528                                 0.96
5529                                 0.92
5530                                 0.96
5531                                 0.93
5532                                 1.00
5533                                 0.95
5534                                 1.10
5535                                 1.08
5536                                 1.02
5537                                 1.01
5538                                 0.97
5539                                 0.87
5540                                 0.86
5541                                 0.92
5542                                 0.82
5543                                 0.79
5544                                 0.83
5545                                 0.77
5546                                 0.75
5547                                 0.79
5548                                 0.78
5549                                 0.77
5550                                 0.79
5551                                 0.79
5552                                 0.78
5553                                 0.78
5554                                 0.81
5555                                 0.80
5556                                 0.78
5557                                 0.77
5558                                 0.78
5559                                 0.69
5560                                 0.85
5561                                 0.78
5562                                 0.81
5563                                 0.77
5564                                 0.73
5565                                 0.73
5566                                 0.76
5567                                 0.79
5568                                 0.85
5569                                 0.80
5570                                 0.99
5571                                 0.96
5572                                 0.99
5573                                 1.11
5574                                 1.00
5575                                 0.87
5576                                 1.05
5577                                 1.14
5578                                 1.07
5579                                 0.95
5580                                 0.73
5581                                 0.88
5582                                 0.93
5583                                 0.92
5584                                 0.93
5585                                 0.95
5586                                 1.06
5587                                 1.03
5588                                 0.95
5589                                 0.87
5590                                 0.86
5591                                 0.80
5592                                 0.79
5593                                 0.82
5594                                 0.75
5595                                 0.77
5596                                 0.80
5597                                 0.70
5598                                 0.74
5599                                 0.73
5600                                 0.77
5601                                 0.73
5602                                 0.77
5603                                 0.73
5604                                 0.71
5605                                 0.70
5606                                 0.72
5607                                 0.77
5608                                 0.73
5609                                 0.70
5610                                 0.70
5611                                 0.68
5612                                 0.79
5613                                 1.12
5614                                 0.83
5615                                 0.74
5616                                 0.76
5617                                 1.47
5618                                 1.45
5619                                 1.43
5620                                 1.29
5621                                 1.39
5622                                 1.50
5623                                 1.65
5624                                 1.26
5625                                 1.62
5626                                 1.67
5627                                 1.56
5628                                 1.65
5629                                 1.78
5630                                 1.69
5631                                 1.64
5632                                 1.41
5633                                 1.78
5634                                 1.76
5635                                 1.61
5636                                 1.61
5637                                 1.52
5638                                 1.53
5639                                 1.61
5640                                 1.49
5641                                 1.39
5642                                 1.52
5643                                 1.56
5644                                 1.53
5645                                 1.58
5646                                 1.65
5647                                 1.70
5648                                 1.80
5649                                 1.38
5650                                 1.77
5651                                 1.47
5652                                 1.13
5653                                 1.34
5654                                 1.62
5655                                 1.54
5656                                 1.62
5657                                 1.16
5658                                 1.60
5659                                 1.54
5660                                 1.18
5661                                 1.40
5662                                 1.67
5663                                 1.42
5664                                 1.49
5665                                 1.31
5666                                 1.59
5667                                 1.55
5668                                 1.55
5669                                 1.47
5670                                 0.95
5671                                 1.11
5672                                 1.00
5673                                 0.99
5674                                 1.07
5675                                 1.12
5676                                 1.13
5677                                 1.11
5678                                 1.08
5679                                 1.28
5680                                 1.49
5681                                 1.64
5682                                 1.60
5683                                 1.55
5684                                 1.50
5685                                 1.59
5686                                 1.54
5687                                 1.53
5688                                 1.49
5689                                 1.43
5690                                 1.37
5691                                 1.36
5692                                 1.34
5693                                 1.24
5694                                 1.20
5695                                 1.19
5696                                 1.16
5697                                 1.12
5698                                 1.20
5699                                 1.13
5700                                 1.08
5701                                 1.23
5702                                 1.20
5703                                 1.18
5704                                 1.10
5705                                 1.17
5706                                 1.21
5707                                 1.15
5708                                 1.23
5709                                 1.26
5710                                 1.32
5711                                 1.25
5712                                 1.21
5713                                 1.08
5714                                 0.85
5715                                 0.86
5716                                 0.79
5717                                 0.83
5718                                 0.95
5719                                 0.84
5720                                 0.99
5721                                 0.98
5722                                 0.93
5723                                 1.15
5724                                 1.41
5725                                 1.44
5726                                 1.13
5727                                 1.43
5728                                 1.43
5729                                 1.45
5730                                 1.49
5731                                 1.41
5732                                 1.55
5733                                 1.60
5734                                 1.66
5735                                 1.71
5736                                 1.59
5737                                 1.59
5738                                 1.58
5739                                 1.57
5740                                 1.62
5741                                 1.66
5742                                 1.57
5743                                 1.48
5744                                 1.47
5745                                 1.47
5746                                 1.48
5747                                 1.48
5748                                 1.64
5749                                 1.60
5750                                 1.65
5751                                 1.67
5752                                 1.65
5753                                 1.80
5754                                 1.75
5755                                 1.67
5756                                 1.59
5757                                 1.37
5758                                 1.69
5759                                 1.67
5760                                 1.70
5761                                 1.64
5762                                 1.50
5763                                 1.60
5764                                 1.58
5765                                 1.60
5766                                 1.33
5767                                 1.48
5768                                 1.38
5769                                 1.24
5770                                 1.09
5771                                 1.46
5772                                 1.42
5773                                 1.48
5774                                 1.14
5775                                 1.47
5776                                 1.13
5777                                 1.18
5778                                 1.29
5779                                 1.08
5780                                 1.14
5781                                 1.44
5782                                 1.42
5783                                 1.23
5784                                 1.21
5785                                 1.44
5786                                 1.43
5787                                 1.83
5788                                 1.89
5789                                 1.80
5790                                 1.78
5791                                 1.73
5792                                 1.76
5793                                 1.68
5794                                 1.30
5795                                 1.37
5796                                 1.51
5797                                 1.54
5798                                 1.54
5799                                 1.51
5800                                 1.49
5801                                 0.98
5802                                 1.17
5803                                 1.20
5804                                 1.21
5805                                 1.21
5806                                 1.19
5807                                 1.21
5808                                 1.29
5809                                 1.20
5810                                 1.09
5811                                 1.03
5812                                 1.14
5813                                 1.15
5814                                 1.21
5815                                 1.20
5816                                 1.16
5817                                 1.15
5818                                 0.98
5819                                 1.11
5820                                 0.91
5821                                 0.94
5822                                 0.98
5823                                 0.90
5824                                 0.93
5825                                 1.01
5826                                 1.00
5827                                 1.02
5828                                 0.92
5829                                 1.40
5830                                 1.45
5831                                 1.28
5832                                 1.14
5833                                 1.40
5834                                 1.39
5835                                 1.36
5836                                 1.23
5837                                 1.49
5838                                 1.49
5839                                 1.48
5840                                 1.59
5841                                 1.61
5842                                 1.62
5843                                 1.62
5844                                 1.58
5845                                 1.63
5846                                 1.81
5847                                 1.79
5848                                 1.77
5849                                 1.52
5850                                 1.55
5851                                 1.48
5852                                 1.37
5853                                 1.56
5854                                 1.69
5855                                 1.67
5856                                 1.68
5857                                 1.66
5858                                 1.72
5859                                 1.73
5860                                 1.73
5861                                 1.69
5862                                 1.62
5863                                 1.49
5864                                 1.61
5865                                 1.63
5866                                 1.61
5867                                 1.53
5868                                 1.56
5869                                 1.51
5870                                 1.54
5871                                 1.55
5872                                 1.30
5873                                 1.24
5874                                 1.31
5875                                 1.12
5876                                 1.19
5877                                 1.32
5878                                 1.26
5879                                 1.30
5880                                 1.09
5881                                 1.29
5882                                 1.27
5883                                 1.28
5884                                 1.26
5885                                 1.25
5886                                 1.13
5887                                 1.23
5888                                 1.30
5889                                 1.37
5890                                 1.37
5891                                 1.36
5892                                 1.50
5893                                 1.50
5894                                 1.49
5895                                 1.53
5896                                 1.42
5897                                 1.37
5898                                 1.46
5899                                 1.56
5900                                 1.33
5901                                 1.34
5902                                 1.32
5903                                 1.32
5904                                 1.32
5905                                 1.34
5906                                 1.35
5907                                 1.31
5908                                 1.34
5909                                 1.46
5910                                 1.50
5911                                 1.62
5912                                 1.60
5913                                 1.64
5914                                 1.71
5915                                 1.55
5916                                 1.71
5917                                 1.54
5918                                 1.55
5919                                 1.54
5920                                 1.56
5921                                 1.54
5922                                 1.53
5923                                 1.54
5924                                 1.48
5925                                 1.68
5926                                 1.69
5927                                 1.68
5928                                 1.56
5929                                 1.40
5930                                 1.37
5931                                 1.34
5932                                 1.29
5933                                 1.37
5934                                 1.43
5935                                 0.93
5936                                 1.13
5937                                 0.98
5938                                 1.06
5939                                 1.09
5940                                 1.30
5941                                 1.26
5942                                 1.15
5943                                 1.15
5944                                 1.20
5945                                 1.53
5946                                 1.68
5947                                 1.74
5948                                 1.77
5949                                 1.74
5950                                 1.72
5951                                 1.71
5952                                 1.65
5953                                 1.78
5954                                 1.64
5955                                 1.26
5956                                 1.36
5957                                 1.38
5958                                 1.46
5959                                 1.49
5960                                 1.28
5961                                 1.28
5962                                 1.15
5963                                 1.20
5964                                 1.22
5965                                 1.20
5966                                 1.32
5967                                 1.35
5968                                 1.17
5969                                 1.08
5970                                 1.25
5971                                 1.26
5972                                 1.34
5973                                 1.13
5974                                 1.22
5975                                 1.33
5976                                 1.31
5977                                 1.31
5978                                 1.15
5979                                 0.95
5980                                 0.95
5981                                 0.79
5982                                 0.67
5983                                 0.76
5984                                 0.76
5985                                 0.93
5986                                 1.00
5987                                 0.89
5988                                 0.93
5989                                 1.33
5990                                 1.26
5991                                 1.02
5992                                 1.26
5993                                 1.40
5994                                 1.40
5995                                 1.44
5996                                 1.47
5997                                 1.49
5998                                 1.64
5999                                 1.70
6000                                 1.77
6001                                 1.76
6002                                 1.72
6003                                 1.61
6004                                 1.69
6005                                 1.65
6006                                 1.58
6007                                 1.52
6008                                 1.47
6009                                 1.43
6010                                 1.40
6011                                 1.39
6012                                 1.38
6013                                 1.32
6014                                 1.36
6015                                 1.33
6016                                 1.43
6017                                 1.38
6018                                 1.49
6019                                 1.50
6020                                 1.50
6021                                 1.41
6022                                 1.36
6023                                 1.53
6024                                 1.50
6025                                 1.56
6026                                 1.54
6027                                 1.48
6028                                 1.48
6029                                 1.47
6030                                 1.55
6031                                 1.41
6032                                 1.26
6033                                 1.33
6034                                 1.25
6035                                 0.95
6036                                 1.33
6037                                 1.18
6038                                 1.37
6039                                 1.28
6040                                 1.21
6041                                 0.93
6042                                 1.36
6043                                 1.49
6044                                 1.13
6045                                 1.56
6046                                 1.70
6047                                 1.71
6048                                 1.78
6049                                 1.77
6050                                 1.94
6051                                 2.06
6052                                 2.11
6053                                 2.22
6054                                 2.14
6055                                 2.07
6056                                 2.15
6057                                 2.02
6058                                 2.00
6059                                 1.93
6060                                 1.88
6061                                 1.89
6062                                 1.72
6063                                 1.62
6064                                 1.59
6065                                 1.54
6066                                 1.54
6067                                 1.45
6068                                 1.44
6069                                 1.53
6070                                 1.60
6071                                 1.64
6072                                 1.63
6073                                 1.64
6074                                 1.60
6075                                 1.51
6076                                 1.62
6077                                 1.63
6078                                 1.65
6079                                 1.65
6080                                 1.65
6081                                 1.64
6082                                 1.64
6083                                 1.66
6084                                 1.62
6085                                 1.61
6086                                 1.27
6087                                 1.05
6088                                 0.70
6089                                 1.10
6090                                 1.21
6091                                 1.23
6092                                 1.16
6093                                 1.15
6094                                 0.86
6095                                 1.36
6096                                 1.30
6097                                 1.16
6098                                 1.05
6099                                 1.23
6100                                 1.01
6101                                 0.90
6102                                 1.01
6103                                 1.42
6104                                 1.75
6105                                 1.81
6106                                 1.90
6107                                 1.86
6108                                 1.79
6109                                 1.79
6110                                 1.75
6111                                 1.72
6112                                 1.31
6113                                 1.15
6114                                 1.34
6115                                 1.46
6116                                 1.48
6117                                 1.47
6118                                 1.50
6119                                 1.09
6120                                 0.79
6121                                 0.80
6122                                 1.09
6123                                 0.87
6124                                 1.00
6125                                 0.96
6126                                 1.00
6127                                 0.76
6128                                 0.60
6129                                 1.10
6130                                 1.13
6131                                 1.06
6132                                 1.17
6133                                 1.01
6134                                 1.16
6135                                 0.95
6136                                 0.90
6137                                 0.78
6138                                 0.78
6139                                 0.70
6140                                 0.65
6141                                 0.65
6142                                 0.71
6143                                 0.69
6144                                 0.76
6145                                 0.82
6146                                 0.64
6147                                 0.80
6148                                 1.06
6149                                 1.03
6150                                 1.10
6151                                 0.99
6152                                 1.04
6153                                 0.97
6154                                 0.97
6155                                 0.96
6156                                 1.22
6157                                 1.55
6158                                 1.71
6159                                 1.83
6160                                 1.72
6161                                 1.69
6162                                 1.70
6163                                 1.68
6164                                 1.62
6165                                 1.26
6166                                 1.23
6167                                 1.52
6168                                 1.21
6169                                 1.22
6170                                 1.39
6171                                 1.36
6172                                 0.95
6173                                 0.85
6174                                 0.86
6175                                 0.81
6176                                 0.98
6177                                 1.10
6178                                 1.24
6179                                 1.16
6180                                 0.99
6181                                 0.93
6182                                 1.18
6183                                 1.26
6184                                 0.99
6185                                 1.07
6186                                 1.23
6187                                 1.26
6188                                 1.30
6189                                 1.29
6190                                 1.14
6191                                 1.04
6192                                 1.07
6193                                 0.78
6194                                 0.69
6195                                 1.06
6196                                 0.91
6197                                 0.97
6198                                 0.86
6199                                 0.83
6200                                 0.90
6201                                 0.99
6202                                 0.83
6203                                 0.75
6204                                 0.85
6205                                 0.95
6206                                 0.94
6207                                 0.96
6208                                 0.96
6209                                 1.05
6210                                 1.10
6211                                 1.28
6212                                 1.29
6213                                 1.30
6214                                 1.29
6215                                 1.24
6216                                 1.20
6217                                 1.23
6218                                 1.13
6219                                 0.99
6220                                 1.00
6221                                 0.98
6222                                 1.03
6223                                 0.99
6224                                 0.98
6225                                 0.84
6226                                 0.90
6227                                 0.89
6228                                 0.90
6229                                 0.90
6230                                 0.93
6231                                 0.93
6232                                 0.91
6233                                 0.95
6234                                 0.89
6235                                 0.90
6236                                 0.85
6237                                 0.87
6238                                 0.90
6239                                 0.83
6240                                 0.91
6241                                 0.94
6242                                 0.90
6243                                 0.93
6244                                 0.73
6245                                 0.76
6246                                 0.70
6247                                 0.65
6248                                 0.73
6249                                 0.70
6250                                 0.70
6251                                 0.78
6252                                 0.68
6253                                 0.94
6254                                 1.19
6255                                 1.13
6256                                 0.97
6257                                 1.10
6258                                 1.36
6259                                 1.13
6260                                 1.03
6261                                 1.07
6262                                 1.20
6263                                 1.43
6264                                 1.57
6265                                 1.60
6266                                 1.47
6267                                 1.60
6268                                 1.47
6269                                 1.56
6270                                 1.50
6271                                 1.10
6272                                 1.20
6273                                 1.46
6274                                 1.43
6275                                 1.19
6276                                 1.15
6277                                 1.46
6278                                 1.11
6279                                 1.19
6280                                 1.17
6281                                 1.14
6282                                 1.18
6283                                 1.16
6284                                 1.19
6285                                 1.23
6286                                 1.23
6287                                 1.13
6288                                 1.33
6289                                 1.15
6290                                 1.23
6291                                 1.31
6292                                 1.33
6293                                 1.42
6294                                 1.32
6295                                 1.32
6296                                 1.32
6297                                 1.15
6298                                 1.07
6299                                 0.96
6300                                 0.77
6301                                 1.05
6302                                 1.03
6303                                 1.04
6304                                 0.92
6305                                 0.80
6306                                 0.84
6307                                 1.25
6308                                 1.08
6309                                 1.13
6310                                 0.97
6311                                 1.21
6312                                 0.99
6313                                 0.93
6314                                 1.00
6315                                 1.28
6316                                 1.59
6317                                 1.79
6318                                 1.94
6319                                 1.88
6320                                 1.82
6321                                 1.84
6322                                 1.80
6323                                 1.68
6324                                 1.32
6325                                 1.25
6326                                 1.55
6327                                 1.25
6328                                 1.29
6329                                 1.55
6330                                 1.18
6331                                 0.99
6332                                 1.22
6333                                 1.01
6334                                 0.85
6335                                 1.28
6336                                 1.26
6337                                 1.29
6338                                 1.32
6339                                 1.03
6340                                 0.99
6341                                 1.48
6342                                 1.46
6343                                 1.45
6344                                 1.51
6345                                 1.48
6346                                 1.48
6347                                 1.48
6348                                 1.44
6349                                 0.97
6350                                 0.83
6351                                 1.07
6352                                 0.74
6353                                 0.65
6354                                 1.01
6355                                 0.84
6356                                 0.98
6357                                 0.90
6358                                 0.75
6359                                 1.09
6360                                 1.64
6361                                 1.25
6362                                 1.61
6363                                 0.99
6364                                 1.65
6365                                 1.40
6366                                 1.59
6367                                 1.70
6368                                 1.55
6369                                 1.96
6370                                 2.07
6371                                 2.19
6372                                 2.09
6373                                 1.96
6374                                 1.99
6375                                 1.86
6376                                 1.65
6377                                 1.74
6378                                 1.70
6379                                 1.70
6380                                 1.45
6381                                 1.63
6382                                 1.68
6383                                 1.42
6384                                 1.43
6385                                 1.51
6386                                 1.74
6387                                 1.29
6388                                 1.79
6389                                 1.88
6390                                 1.85
6391                                 1.88
6392                                 1.87
6393                                 1.46
6394                                 1.83
6395                                 1.67
6396                                 1.67
6397                                 1.73
6398                                 1.73
6399                                 1.71
6400                                 1.73
6401                                 1.73
6402                                 1.50
6403                                 1.02
6404                                 1.42
6405                                 1.13
6406                                 0.81
6407                                 1.29
6408                                 0.92
6409                                 1.29
6410                                 1.26
6411                                 0.77
6412                                 0.92
6413                                 1.30
6414                                 1.22
6415                                 1.18
6416                                 1.15
6417                                 1.38
6418                                 1.23
6419                                 1.19
6420                                 1.26
6421                                 1.52
6422                                 1.75
6423                                 1.86
6424                                 1.98
6425                                 1.89
6426                                 1.83
6427                                 1.86
6428                                 1.81
6429                                 1.73
6430                                 1.49
6431                                 1.44
6432                                 1.57
6433                                 1.42
6434                                 1.44
6435                                 1.47
6436                                 1.38
6437                                 1.20
6438                                 1.18
6439                                 1.15
6440                                 1.12
6441                                 1.27
6442                                 1.33
6443                                 1.37
6444                                 1.34
6445                                 1.19
6446                                 1.10
6447                                 1.38
6448                                 1.38
6449                                 1.36
6450                                 1.41
6451                                 1.41
6452                                 1.42
6453                                 1.39
6454                                 1.38
6455                                 1.24
6456                                 1.08
6457                                 1.10
6458                                 0.88
6459                                 0.73
6460                                 1.01
6461                                 0.95
6462                                 1.05
6463                                 0.99
6464                                 0.88
6465                                 1.37
6466                                 1.37
6467                                 1.37
6468                                 1.13
6469                                 1.27
6470                                 1.30
6471                                 1.30
6472                                 1.38
6473                                 1.45
6474                                 1.47
6475                                 1.43
6476                                 1.48
6477                                 1.54
6478                                 1.45
6479                                 1.44
6480                                 1.46
6481                                 1.51
6482                                 1.53
6483                                 1.48
6484                                 1.47
6485                                 1.43
6486                                 1.37
6487                                 1.36
6488                                 1.38
6489                                 1.38
6490                                 1.47
6491                                 1.48
6492                                 1.46
6493                                 1.50
6494                                 1.50
6495                                 1.55
6496                                 1.56
6497                                 1.51
6498                                 1.54
6499                                 1.51
6500                                 1.48
6501                                 1.49
6502                                 1.56
6503                                 1.48
6504                                 1.46
6505                                 1.38
6506                                 1.40
6507                                 1.42
6508                                 1.19
6509                                 1.29
6510                                 1.28
6511                                 1.13
6512                                 1.14
6513                                 1.25
6514                                 1.40
6515                                 1.44
6516                                 1.30
6517                                 1.35
6518                                 1.42
6519                                 1.50
6520                                 1.44
6521                                 1.14
6522                                 1.55
6523                                 1.38
6524                                 1.38
6525                                 1.56
6526                                 1.53
6527                                 1.53
6528                                 1.50
6529                                 1.58
6530                                 1.60
6531                                 1.60
6532                                 1.59
6533                                 1.54
6534                                 1.57
6535                                 1.74
6536                                 1.78
6537                                 1.74
6538                                 1.63
6539                                 1.60
6540                                 1.56
6541                                 1.59
6542                                 1.59
6543                                 1.72
6544                                 1.76
6545                                 1.68
6546                                 1.79
6547                                 1.75
6548                                 1.81
6549                                 1.85
6550                                 1.80
6551                                 1.76
6552                                 1.61
6553                                 1.66
6554                                 1.76
6555                                 1.80
6556                                 1.74
6557                                 1.71
6558                                 1.58
6559                                 1.66
6560                                 1.65
6561                                 1.25
6562                                 1.59
6563                                 1.30
6564                                 1.14
6565                                 1.20
6566                                 1.46
6567                                 1.47
6568                                 1.43
6569                                 1.25
6570                                 1.64
6571                                 0.78
6572                                 0.99
6573                                 0.98
6574                                 0.79
6575                                 0.77
6576                                 0.88
6577                                 0.89
6578                                 0.88
6579                                 0.95
6580                                 1.12
6581                                 1.16
6582                                 1.26
6583                                 1.29
6584                                 1.29
6585                                 1.25
6586                                 1.20
6587                                 1.10
6588                                 1.19
6589                                 1.16
6590                                 1.01
6591                                 0.99
6592                                 0.99
6593                                 1.00
6594                                 1.02
6595                                 1.01
6596                                 0.78
6597                                 0.83
6598                                 0.82
6599                                 0.77
6600                                 0.89
6601                                 0.83
6602                                 0.87
6603                                 0.83
6604                                 0.79
6605                                 0.74
6606                                 0.72
6607                                 0.68
6608                                 0.76
6609                                 0.81
6610                                 0.70
6611                                 0.83
6612                                 0.85
6613                                 0.90
6614                                 0.74
6615                                 0.53
6616                                 0.67
6617                                 0.58
6618                                 0.55
6619                                 0.70
6620                                 0.68
6621                                 0.53
6622                                 0.57
6623                                 0.51
6624                                 0.96
6625                                 1.30
6626                                 1.26
6627                                 1.26
6628                                 1.25
6629                                 1.40
6630                                 1.08
6631                                 1.03
6632                                 1.26
6633                                 1.63
6634                                 1.67
6635                                 1.76
6636                                 1.97
6637                                 1.84
6638                                 1.74
6639                                 1.86
6640                                 1.86
6641                                 1.70
6642                                 1.29
6643                                 1.39
6644                                 1.49
6645                                 1.35
6646                                 1.41
6647                                 1.36
6648                                 1.35
6649                                 1.08
6650                                 1.09
6651                                 1.04
6652                                 1.03
6653                                 0.98
6654                                 1.07
6655                                 1.19
6656                                 1.09
6657                                 0.85
6658                                 0.93
6659                                 1.18
6660                                 1.06
6661                                 1.14
6662                                 1.30
6663                                 1.26
6664                                 1.27
6665                                 1.25
6666                                 1.35
6667                                 1.35
6668                                 1.02
6669                                 0.94
6670                                 0.77
6671                                 0.84
6672                                 0.87
6673                                 0.93
6674                                 0.96
6675                                 0.86
6676                                 0.91
6677                                 1.12
6678                                 1.38
6679                                 0.99
6680                                 1.01
6681                                 1.26
6682                                 1.42
6683                                 1.21
6684                                 1.33
6685                                 1.48
6686                                 1.17
6687                                 1.56
6688                                 1.76
6689                                 1.79
6690                                 2.00
6691                                 1.82
6692                                 1.73
6693                                 1.77
6694                                 1.88
6695                                 1.63
6696                                 1.63
6697                                 1.49
6698                                 1.44
6699                                 1.43
6700                                 1.44
6701                                 1.48
6702                                 1.42
6703                                 1.41
6704                                 1.36
6705                                 1.45
6706                                 1.43
6707                                 1.46
6708                                 1.43
6709                                 1.44
6710                                 1.47
6711                                 1.13
6712                                 1.26
6713                                 1.47
6714                                 1.46
6715                                 1.50
6716                                 1.64
6717                                 1.62
6718                                 1.56
6719                                 1.55
6720                                 1.56
6721                                 1.16
6722                                 1.23
6723                                 0.90
6724                                 0.74
6725                                 1.11
6726                                 0.91
6727                                 1.16
6728                                 1.15
6729                                 0.81
6730                                 1.04
6731                                 1.24
6732                                 1.03
6733                                 1.03
6734                                 1.01
6735                                 1.16
6736                                 1.13
6737                                 1.06
6738                                 1.12
6739                                 1.29
6740                                 1.37
6741                                 1.45
6742                                 1.64
6743                                 1.61
6744                                 1.61
6745                                 1.58
6746                                 1.49
6747                                 1.53
6748                                 1.48
6749                                 1.26
6750                                 1.18
6751                                 1.30
6752                                 1.29
6753                                 1.28
6754                                 1.22
6755                                 0.99
6756                                 1.06
6757                                 1.03
6758                                 1.01
6759                                 0.99
6760                                 1.05
6761                                 1.06
6762                                 1.02
6763                                 0.98
6764                                 0.94
6765                                 0.95
6766                                 0.84
6767                                 0.93
6768                                 1.04
6769                                 1.04
6770                                 1.02
6771                                 1.02
6772                                 0.99
6773                                 0.96
6774                                 0.89
6775                                 0.93
6776                                 0.72
6777                                 0.54
6778                                 0.93
6779                                 0.79
6780                                 0.78
6781                                 0.81
6782                                 0.77
6783                                 0.88
6784                                 1.10
6785                                 0.89
6786                                 1.07
6787                                 1.01
6788                                 1.19
6789                                 1.14
6790                                 1.08
6791                                 1.04
6792                                 1.09
6793                                 1.49
6794                                 1.67
6795                                 1.80
6796                                 1.77
6797                                 1.75
6798                                 1.73
6799                                 1.74
6800                                 1.61
6801                                 1.66
6802                                 1.45
6803                                 1.19
6804                                 1.22
6805                                 1.39
6806                                 1.38
6807                                 1.37
6808                                 1.12
6809                                 1.07
6810                                 0.92
6811                                 0.99
6812                                 0.99
6813                                 0.96
6814                                 1.13
6815                                 1.14
6816                                 0.94
6817                                 0.87
6818                                 0.99
6819                                 1.04
6820                                 1.18
6821                                 1.01
6822                                 0.98
6823                                 1.12
6824                                 1.11
6825                                 1.12
6826                                 0.99
6827                                 0.82
6828                                 0.79
6829                                 0.64
6830                                 0.53
6831                                 0.60
6832                                 0.62
6833                                 0.76
6834                                 0.89
6835                                 0.84
6836                                 0.87
6837                                 1.18
6838                                 1.07
6839                                 1.01
6840                                 1.11
6841                                 1.45
6842                                 1.18
6843                                 1.14
6844                                 1.18
6845                                 1.23
6846                                 1.70
6847                                 1.79
6848                                 1.98
6849                                 1.89
6850                                 1.88
6851                                 1.73
6852                                 1.65
6853                                 1.64
6854                                 1.62
6855                                 1.56
6856                                 1.38
6857                                 1.30
6858                                 1.30
6859                                 1.37
6860                                 1.44
6861                                 1.01
6862                                 1.02
6863                                 0.97
6864                                 1.06
6865                                 1.04
6866                                 1.06
6867                                 1.08
6868                                 1.10
6869                                 1.27
6870                                 1.06
6871                                 1.26
6872                                 1.17
6873                                 1.22
6874                                 1.20
6875                                 1.15
6876                                 1.11
6877                                 1.29
6878                                 1.18
6879                                 0.99
6880                                 0.95
6881                                 0.94
6882                                 0.75
6883                                 0.91
6884                                 0.94
6885                                 0.94
6886                                 1.06
6887                                 0.86
6888                                 0.77
6889                                 1.17
6890                                 1.45
6891                                 1.01
6892                                 1.03
6893                                 1.35
6894                                 1.45
6895                                 1.23
6896                                 1.42
6897                                 1.53
6898                                 1.22
6899                                 1.59
6900                                 1.79
6901                                 1.92
6902                                 2.04
6903                                 1.93
6904                                 1.84
6905                                 1.81
6906                                 1.98
6907                                 1.65
6908                                 1.70
6909                                 1.51
6910                                 1.48
6911                                 1.46
6912                                 1.47
6913                                 1.48
6914                                 1.43
6915                                 1.44
6916                                 1.43
6917                                 1.52
6918                                 1.48
6919                                 1.49
6920                                 1.45
6921                                 1.49
6922                                 1.50
6923                                 1.17
6924                                 1.26
6925                                 1.51
6926                                 1.50
6927                                 1.54
6928                                 1.71
6929                                 1.71
6930                                 1.62
6931                                 1.70
6932                                 1.67
6933                                 1.26
6934                                 1.35
6935                                 0.97
6936                                 0.87
6937                                 1.30
6938                                 1.05
6939                                 1.34
6940                                 1.40
6941                                 0.98
6942                                 0.96
6943                                 1.26
6944                                 1.23
6945                                 1.07
6946                                 1.18
6947                                 1.33
6948                                 1.30
6949                                 1.33
6950                                 1.28
6951                                 1.41
6952                                 1.56
6953                                 1.63
6954                                 1.72
6955                                 1.64
6956                                 1.60
6957                                 1.55
6958                                 1.56
6959                                 1.54
6960                                 1.50
6961                                 1.41
6962                                 1.37
6963                                 1.34
6964                                 1.34
6965                                 1.34
6966                                 1.34
6967                                 1.29
6968                                 1.26
6969                                 1.27
6970                                 1.34
6971                                 1.34
6972                                 1.43
6973                                 1.38
6974                                 1.34
6975                                 1.31
6976                                 1.19
6977                                 1.38
6978                                 1.40
6979                                 1.43
6980                                 1.39
6981                                 1.30
6982                                 1.33
6983                                 1.35
6984                                 1.33
6985                                 1.14
6986                                 1.20
6987                                 1.19
6988                                 1.07
6989                                 0.95
6990                                 1.22
6991                                 1.17
6992                                 1.23
6993                                 1.11
6994                                 1.12
6995                                 0.81
6996                                 1.04
6997                                 0.91
6998                                 0.90
6999                                 1.01
7000                                 1.08
7001                                 1.02
7002                                 1.07
7003                                 1.02
7004                                 1.14
7005                                 1.41
7006                                 1.57
7007                                 1.76
7008                                 1.70
7009                                 1.66
7010                                 1.48
7011                                 1.42
7012                                 1.34
7013                                 1.28
7014                                 1.07
7015                                 1.05
7016                                 1.13
7017                                 1.14
7018                                 1.21
7019                                 1.18
7020                                 0.99
7021                                 0.96
7022                                 0.90
7023                                 1.00
7024                                 1.13
7025                                 1.07
7026                                 0.97
7027                                 0.99
7028                                 1.02
7029                                 0.84
7030                                 0.99
7031                                 1.10
7032                                 1.09
7033                                 1.03
7034                                 0.95
7035                                 0.91
7036                                 0.96
7037                                 0.75
7038                                 0.60
7039                                 0.88
7040                                 0.82
7041                                 0.66
7042                                 0.68
7043                                 0.93
7044                                 0.87
7045                                 0.89
7046                                 0.84
7047                                 0.73
7048                                 1.06
7049                                 1.14
7050                                 1.03
7051                                 1.06
7052                                 0.97
7053                                 1.27
7054                                 1.27
7055                                 1.11
7056                                 1.32
7057                                 1.11
7058                                 1.26
7059                                 1.46
7060                                 1.34
7061                                 1.72
7062                                 1.70
7063                                 1.62
7064                                 1.62
7065                                 1.57
7066                                 1.46
7067                                 1.46
7068                                 1.39
7069                                 1.33
7070                                 1.40
7071                                 1.39
7072                                 1.32
7073                                 1.26
7074                                 1.27
7075                                 1.30
7076                                 1.29
7077                                 1.32
7078                                 1.38
7079                                 1.39
7080                                 1.36
7081                                 1.35
7082                                 1.02
7083                                 1.32
7084                                 1.35
7085                                 1.27
7086                                 1.34
7087                                 1.37
7088                                 1.38
7089                                 1.32
7090                                 1.32
7091                                 1.13
7092                                 0.98
7093                                 1.11
7094                                 0.90
7095                                 0.61
7096                                 0.97
7097                                 1.06
7098                                 1.01
7099                                 1.10
7100                                 0.81
7101                                 1.33
7102                                 1.34
7103                                 1.41
7104                                 1.14
7105                                 1.41
7106                                 1.42
7107                                 1.37
7108                                 1.52
7109                                 1.41
7110                                 1.57
7111                                 1.54
7112                                 1.68
7113                                 1.69
7114                                 1.67
7115                                 1.65
7116                                 1.61
7117                                 1.61
7118                                 1.80
7119                                 1.81
7120                                 1.75
7121                                 1.58
7122                                 1.56
7123                                 1.52
7124                                 1.55
7125                                 1.57
7126                                 1.63
7127                                 1.72
7128                                 1.47
7129                                 1.82
7130                                 1.74
7131                                 1.83
7132                                 1.75
7133                                 1.80
7134                                 1.75
7135                                 1.65
7136                                 1.84
7137                                 1.68
7138                                 1.76
7139                                 1.75
7140                                 1.74
7141                                 1.72
7142                                 1.70
     Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                     64237
2                                                     54877
3                                                    118220
4                                                     78992
5                                                     51040
6                                                     55980
7                                                     83454
8                                                    109428
9                                                     99811
10                                                    74339
11                                                    84843
12                                                    64489
13                                                    61007
14                                                   106803
15                                                    69759
16                                                    76111
17                                                    99173
18                                                   105694
19                                                    79992
20                                                    80044
21                                                   111141
22                                                    75133
23                                                   106757
24                                                    96617
25                                                   124055
26                                                   109252
27                                                    89535
28                                                   104849
29                                                    89631
30                                                   122743
31                                                    95124
32                                                   101471
33                                                   109857
34                                                   120428
35                                                    59198
36                                                    49585
37                                                    49065
38                                                    48364
39                                                    47362
40                                                    67799
41                                                    46347
42                                                    43046
43                                                    40507
44                                                    55596
45                                                    45675
46                                                    41568
47                                                    51254
48                                                    70874
49                                                    45148
50                                                    44511
51                                                    41195
52                                                    40873
53                                                   386100
54                                                   331378
55                                                   417772
56                                                   357637
57                                                   333281
58                                                   356415
59                                                   339861
60                                                   334042
61                                                   419089
62                                                   358478
63                                                   349072
64                                                   433874
65                                                   418682
66                                                   370321
67                                                   516433
68                                                   417232
69                                                   472137
70                                                   382973
71                                                   379054
72                                                   465214
73                                                   503792
74                                                   405898
75                                                   437378
76                                                   557213
77                                                   407205
78                                                   562462
79                                                   435211
80                                                   554764
81                                                   465805
82                                                   551009
83                                                   454702
84                                                   623212
85                                                   451251
86                                                   480071
87                                                   634213
88                                                   448597
89                                                   430966
90                                                   451102
91                                                   383139
92                                                   365722
93                                                   479591
94                                                   399566
95                                                   420826
96                                                   512532
97                                                   431309
98                                                   427391
99                                                   433884
100                                                  636771
101                                                  449333
102                                                  431491
103                                                  397543
104                                                  435021
105                                                  596819
106                                                  642682
107                                                  619509
108                                                  649141
109                                                  545800
110                                                  572020
111                                                  718330
112                                                  830967
113                                                  742221
114                                                  656892
115                                                 1005604
116                                                  653560
117                                                  657444
118                                                  696282
119                                                  709269
120                                                  924994
121                                                  823623
122                                                  734721
123                                                  783935
124                                                  882755
125                                                  821523
126                                                  800603
127                                                  772926
128                                                  800194
129                                                  850932
130                                                  896299
131                                                  862262
132                                                  862841
133                                                  955047
134                                                  794310
135                                                  949177
136                                                  908662
137                                                  790854
138                                                  855206
139                                                  896972
140                                                  747841
141                                                  762863
142                                                  837630
143                                                  688065
144                                                  663677
145                                                  808897
146                                                  693698
147                                                  657746
148                                                  770115
149                                                  749846
150                                                  637319
151                                                  844931
152                                                 1007419
153                                                  692934
154                                                  657741
155                                                  670232
156                                                  788025
157                                                   62910
158                                                   57504
159                                                   58461
160                                                   95295
161                                                   49069
162                                                   52876
163                                                   68648
164                                                   55848
165                                                   53586
166                                                   59874
167                                                   54191
168                                                   80904
169                                                   59496
170                                                   64188
171                                                   73953
172                                                   64209
173                                                   64465
174                                                   60100
175                                                   70774
176                                                   64002
177                                                   61287
178                                                   67764
179                                                   67826
180                                                   63958
181                                                   74678
182                                                   85044
183                                                   75280
184                                                   81397
185                                                   87608
186                                                   80751
187                                                   76689
188                                                   83210
189                                                   77988
190                                                   95789
191                                                   85467
192                                                   88111
193                                                   89695
194                                                   66246
195                                                   76704
196                                                   74544
197                                                   61419
198                                                   65918
199                                                   65350
200                                                   75046
201                                                   76836
202                                                   61222
203                                                   69971
204                                                  113578
205                                                   66069
206                                                   62870
207                                                   57356
208                                                   80034
209                                                  450816
210                                                  489803
211                                                  549946
212                                                  488679
213                                                  350560
214                                                  466760
215                                                  513739
216                                                  641760
217                                                  553097
218                                                  534249
219                                                  725296
220                                                  485707
221                                                  536479
222                                                  553307
223                                                  498640
224                                                  655683
225                                                  577775
226                                                  526665
227                                                  589471
228                                                  565795
229                                                  690517
230                                                  571995
231                                                  500234
232                                                  597168
233                                                  634516
234                                                  582910
235                                                  560495
236                                                  543505
237                                                  684346
238                                                  562543
239                                                  565161
240                                                  633522
241                                                  534489
242                                                  625558
243                                                  552369
244                                                  465911
245                                                  504620
246                                                  408485
247                                                  449818
248                                                  453631
249                                                  453173
250                                                  417750
251                                                  408404
252                                                  485736
253                                                  355432
254                                                  399884
255                                                  609985
256                                                  490022
257                                                  409344
258                                                  401331
259                                                  437772
260                                                  491738
261                                                   96233
262                                                   90868
263                                                   98473
264                                                  108458
265                                                   79973
266                                                   90242
267                                                   99704
268                                                  111039
269                                                  118541
270                                                   99555
271                                                  106084
272                                                  109154
273                                                   98900
274                                                   90746
275                                                   60624
276                                                   73043
277                                                   76140
278                                                   83731
279                                                   68953
280                                                   69798
281                                                   81830
282                                                   78163
283                                                   91825
284                                                  128846
285                                                  127351
286                                                  140414
287                                                  137247
288                                                  108655
289                                                  149377
290                                                  130908
291                                                  130841
292                                                  121943
293                                                  137050
294                                                  170547
295                                                  136772
296                                                  136964
297                                                  139613
298                                                  118173
299                                                  124146
300                                                  119891
301                                                  119903
302                                                  103413
303                                                  125725
304                                                  112364
305                                                  109547
306                                                  100207
307                                                  132760
308                                                  153920
309                                                  114053
310                                                  107040
311                                                  106221
312                                                  116253
313                                                 5040365
314                                                 4695737
315                                                 5259354
316                                                 5775536
317                                                 4575711
318                                                 4804278
319                                                 5755191
320                                                 5148984
321                                                 5830428
322                                                 4592462
323                                                 4999032
324                                                 5063309
325                                                 4943781
326                                                 5216785
327                                                 4759791
328                                                 5106508
329                                                 5806393
330                                                 5647385
331                                                 5193221
332                                                 5616434
333                                                 6232081
334                                                 5428239
335                                                 5557616
336                                                 5225201
337                                                 5451637
338                                                 6718012
339                                                 5641742
340                                                 5952597
341                                                 6741662
342                                                 6374843
343                                                 6236903
344                                                 5621714
345                                                 5289139
346                                                 6650358
347                                                 8567534
348                                                 4923565
349                                                 5871081
350                                                 5636645
351                                                 5467156
352                                                 5341822
353                                                 5571813
354                                                 5557163
355                                                 5990244
356                                                 6700134
357                                                 5951871
358                                                 5699945
359                                                 5871225
360                                                 9032181
361                                                 4929884
362                                                 5570915
363                                                 6024932
364                                                 5777335
365                                                  156698
366                                                  139918
367                                                  157146
368                                                  156114
369                                                  138859
370                                                  133618
371                                                  169281
372                                                  164322
373                                                  171794
374                                                  140921
375                                                  156566
376                                                  167397
377                                                  146738
378                                                  168780
379                                                  161444
380                                                  171078
381                                                  227728
382                                                  179027
383                                                  203298
384                                                  178526
385                                                  173059
386                                                  179322
387                                                  173897
388                                                  187575
389                                                  182857
390                                                  216119
391                                                  193654
392                                                  201173
393                                                  207094
394                                                  199980
395                                                  194631
396                                                  212528
397                                                  190800
398                                                  192767
399                                                  261492
400                                                  182142
401                                                  180944
402                                                  204005
403                                                  177919
404                                                  178788
405                                                  182876
406                                                  183944
407                                                  159387
408                                                  176146
409                                                  201741
410                                                  156799
411                                                  150139
412                                                  254010
413                                                  167270
414                                                  152671
415                                                  159943
416                                                  166006
417                                                  661137
418                                                  690669
419                                                  668602
420                                                  664020
421                                                  602481
422                                                  751898
423                                                  641882
424                                                  711147
425                                                  807041
426                                                  687650
427                                                  690303
428                                                  708914
429                                                  675173
430                                                  720502
431                                                  729117
432                                                  775671
433                                                  808678
434                                                  773774
435                                                  751850
436                                                  817691
437                                                  731125
438                                                  761027
439                                                  791332
440                                                  797060
441                                                  772151
442                                                  937317
443                                                  786250
444                                                  804903
445                                                  868197
446                                                  824216
447                                                  803572
448                                                  887105
449                                                  817870
450                                                  835939
451                                                  978376
452                                                  779868
453                                                  832529
454                                                  710719
455                                                  751812
456                                                  757272
457                                                  799947
458                                                  827010
459                                                  772997
460                                                  863392
461                                                  773078
462                                                  726401
463                                                  729326
464                                                 1133492
465                                                  745439
466                                                  797741
467                                                  802875
468                                                  783068
469                                                  162994
470                                                  175426
471                                                  207386
472                                                  207513
473                                                  141356
474                                                  174893
475                                                  193723
476                                                  239070
477                                                  254760
478                                                  203682
479                                                  186045
480                                                  213528
481                                                  235244
482                                                  202013
483                                                  210445
484                                                  216549
485                                                  232158
486                                                  234132
487                                                  208609
488                                                  234349
489                                                  214374
490                                                  206121
491                                                  216611
492                                                  223479
493                                                  218171
494                                                  250626
495                                                  225166
496                                                  243012
497                                                  229364
498                                                  234982
499                                                  222383
500                                                  222390
501                                                  234579
502                                                  259599
503                                                  238141
504                                                  214470
505                                                  226979
506                                                  188938
507                                                  196169
508                                                  198365
509                                                  212720
510                                                  196009
511                                                  219111
512                                                  226952
513                                                  183072
514                                                  169950
515                                                  186617
516                                                  300905
517                                                  213554
518                                                  175681
519                                                  201392
520                                                  228570
521                                                  107565
522                                                  117393
523                                                  124617
524                                                  137196
525                                                   97236
526                                                  115090
527                                                  117463
528                                                  152085
529                                                  135237
530                                                  119210
531                                                  137774
532                                                  145306
533                                                  134327
534                                                  137299
535                                                  165069
536                                                  169025
537                                                  144563
538                                                  147231
539                                                  130921
540                                                  155882
541                                                  167388
542                                                  148598
543                                                  159846
544                                                  159137
545                                                  143993
546                                                  173371
547                                                  159971
548                                                  164161
549                                                  171354
550                                                  187984
551                                                  143986
552                                                  171880
553                                                  180512
554                                                  162803
555                                                  176738
556                                                  161438
557                                                  172913
558                                                  129397
559                                                  126110
560                                                  139065
561                                                  182625
562                                                  149884
563                                                  141282
564                                                  136795
565                                                  114281
566                                                  106664
567                                                  128078
568                                                  216653
569                                                  116996
570                                                  116450
571                                                  125742
572                                                  158638
573                                                 1020391
574                                                  928051
575                                                  980891
576                                                 1054850
577                                                  839819
578                                                  885067
579                                                 1040440
580                                                  977717
581                                                 1114178
582                                                 1010395
583                                                  992984
584                                                 1100679
585                                                 1104602
586                                                 1063584
587                                                 1155213
588                                                 1212585
589                                                 1270740
590                                                 1101681
591                                                 1120172
592                                                 1122668
593                                                 1124260
594                                                 1067498
595                                                 1191311
596                                                 1186879
597                                                 1144448
598                                                 1320696
599                                                 1203554
600                                                 1283503
601                                                 1508750
602                                                 1255576
603                                                 1377671
604                                                 1184131
605                                                 1219398
606                                                 1298826
607                                                 1282852
608                                                 1102640
609                                                 1137812
610                                                 1266900
611                                                 1324349
612                                                 1164808
613                                                 1333424
614                                                 1211159
615                                                 1218684
616                                                 1144032
617                                                 1116601
618                                                 1020857
619                                                 1207168
620                                                 1391089
621                                                 1008295
622                                                 1091677
623                                                 1128693
624                                                 1086364
625                                                  625475
626                                                  528945
627                                                  741703
628                                                  838225
629                                                  429110
630                                                  724866
631                                                  925618
632                                                  690634
633                                                  831994
634                                                  735207
635                                                  805438
636                                                  775977
637                                                  678936
638                                                  694872
639                                                  760083
640                                                  735437
641                                                  729047
642                                                  721704
643                                                  598195
644                                                  648148
645                                                  669377
646                                                  727917
647                                                  703673
648                                                  857873
649                                                  738934
650                                                  736913
651                                                  696698
652                                                  730827
653                                                  743006
654                                                  782887
655                                                  600378
656                                                  657593
657                                                  592588
658                                                  735145
659                                                  781496
660                                                  620827
661                                                  797021
662                                                  858681
663                                                  645728
664                                                  627546
665                                                  603112
666                                                  662132
667                                                  719793
668                                                  670821
669                                                  899303
670                                                  629074
671                                                  766576
672                                                  990212
673                                                  695659
674                                                  808194
675                                                  666579
676                                                  668086
677                                                  255500
678                                                  250436
679                                                  275588
680                                                  339797
681                                                  228427
682                                                  270529
683                                                  248933
684                                                  343646
685                                                  340747
686                                                  251337
687                                                  358143
688                                                  362401
689                                                  286401
690                                                  257472
691                                                  373545
692                                                  401473
693                                                  336982
694                                                  422763
695                                                  267969
696                                                  400252
697                                                  341290
698                                                  364736
699                                                  326234
700                                                  370831
701                                                  310050
702                                                  373692
703                                                  329754
704                                                  424581
705                                                  372414
706                                                  447814
707                                                  324401
708                                                  373245
709                                                  495156
710                                                  360918
711                                                  374660
712                                                  361243
713                                                  468643
714                                                  271182
715                                                  295385
716                                                  304048
717                                                  455372
718                                                  254975
719                                                  278695
720                                                  397900
721                                                  250889
722                                                  255598
723                                                  268196
724                                                  539751
725                                                  277325
726                                                  291788
727                                                  332165
728                                                  369694
729                                                  147714
730                                                  126262
731                                                  117646
732                                                  217175
733                                                  120552
734                                                  140981
735                                                  129449
736                                                  198258
737                                                  205592
738                                                  134921
739                                                  184807
740                                                  198770
741                                                  160322
742                                                  137850
743                                                  244696
744                                                  219381
745                                                  170309
746                                                  226899
747                                                  128682
748                                                  268902
749                                                  186733
750                                                  184067
751                                                  153869
752                                                  215736
753                                                  153113
754                                                  202843
755                                                  155972
756                                                  265556
757                                                  197388
758                                                  212599
759                                                  167908
760                                                  158917
761                                                  277502
762                                                  159643
763                                                  238551
764                                                  189609
765                                                  310672
766                                                  147494
767                                                  157722
768                                                  149631
769                                                  311877
770                                                  123895
771                                                  146836
772                                                  263987
773                                                  129296
774                                                  136761
775                                                  132621
776                                                  309472
777                                                  144302
778                                                  150201
779                                                  185135
780                                                  258980
781                                                 2580603
782                                                 2504745
783                                                 2608448
784                                                 2981347
785                                                 2198409
786                                                 2601822
787                                                 2494044
788                                                 3184947
789                                                 3229125
790                                                 2671536
791                                                 2981550
792                                                 3004133
793                                                 2814679
794                                                 2770075
795                                                 3336245
796                                                 3532481
797                                                 3272555
798                                                 3388804
799                                                 2849127
800                                                 3653376
801                                                 3230140
802                                                 3162448
803                                                 3135698
804                                                 3436864
805                                                 3077237
806                                                 3774004
807                                                 3336314
808                                                 3720459
809                                                 3511185
810                                                 3602113
811                                                 3151714
812                                                 3574051
813                                                 3753201
814                                                 3501344
815                                                 3901054
816                                                 3234024
817                                                 3857605
818                                                 2895993
819                                                 2938919
820                                                 2971444
821                                                 3746598
822                                                 2948199
823                                                 3134753
824                                                 3566752
825                                                 2730224
826                                                 2610004
827                                                 2856456
828                                                 4874124
829                                                 2928692
830                                                 3006207
831                                                 3067638
832                                                 3382800
833                                                  173646
834                                                  180186
835                                                  187059
836                                                  171196
837                                                  146103
838                                                  162429
839                                                  189917
840                                                  214993
841                                                  219970
842                                                  183277
843                                                  264223
844                                                  225080
845                                                  188437
846                                                  192478
847                                                  188314
848                                                  254745
849                                                  225495
850                                                  219909
851                                                  222637
852                                                  247813
853                                                  247575
854                                                  242281
855                                                  225228
856                                                  229651
857                                                  233639
858                                                  275845
859                                                  243537
860                                                  255432
861                                                  277579
862                                                  265638
863                                                  260058
864                                                  270098
865                                                  252844
866                                                  299148
867                                                  255914
868                                                  234322
869                                                  237429
870                                                  201545
871                                                  216377
872                                                  197282
873                                                  219150
874                                                  190760
875                                                  192278
876                                                  230913
877                                                  191040
878                                                  187672
879                                                  239757
880                                                  283138
881                                                  206074
882                                                  182605
883                                                  178735
884                                                  203939
885                                                  243557
886                                                  264156
887                                                  238558
888                                                  239945
889                                                  213632
890                                                  212091
891                                                  275218
892                                                  309186
893                                                  326067
894                                                  234361
895                                                  407866
896                                                  264228
897                                                  262639
898                                                  247142
899                                                  241533
900                                                  341176
901                                                  281256
902                                                  292827
903                                                  298493
904                                                  351074
905                                                  354491
906                                                  323450
907                                                  266050
908                                                  258239
909                                                  389782
910                                                  339064
911                                                  304624
912                                                  341629
913                                                  338037
914                                                  353475
915                                                  319503
916                                                  314931
917                                                  358753
918                                                  370924
919                                                  329589
920                                                  277178
921                                                  271199
922                                                  251083
923                                                  246967
924                                                  241495
925                                                  292821
926                                                  225762
927                                                  210375
928                                                  314918
929                                                  220210
930                                                  223170
931                                                  364572
932                                                  297969
933                                                  241174
934                                                  229216
935                                                  232640
936                                                  332208
937                                                  944507
938                                                  922356
939                                                  998753
940                                                  989677
941                                                  783226
942                                                  913003
943                                                  998802
944                                                  983910
945                                                 1007806
946                                                  933624
947                                                  847813
948                                                 1036270
949                                                 1019284
950                                                  968988
951                                                  967228
952                                                 1095790
953                                                 1090493
954                                                  926125
955                                                  933166
956                                                  968899
957                                                  935150
958                                                  948127
959                                                 1086740
960                                                 1093425
961                                                  999608
962                                                 1173820
963                                                 1135915
964                                                 1196121
965                                                 1533409
966                                                 1172178
967                                                 1262933
968                                                 1089679
969                                                 1025660
970                                                 1201673
971                                                 1296308
972                                                 1082232
973                                                  933033
974                                                 1096075
975                                                 1249645
976                                                 1116225
977                                                 1036664
978                                                 1043173
979                                                 1166056
980                                                  991328
981                                                  978808
982                                                 1062388
983                                                 1180723
984                                                 1280364
985                                                  983911
986                                                 1017854
987                                                 1062072
988                                                 1062991
989                                                  123096
990                                                  116354
991                                                  125343
992                                                  145740
993                                                  108444
994                                                  115385
995                                                  124219
996                                                  147800
997                                                  147460
998                                                  151559
999                                                  159464
1000                                                 128849
1001                                                 139679
1002                                                 139491
1003                                                 185963
1004                                                 201621
1005                                                 156608
1006                                                 147066
1007                                                 131935
1008                                                 160060
1009                                                 148385
1010                                                 151883
1011                                                 144476
1012                                                 168164
1013                                                 161432
1014                                                 190716
1015                                                 198267
1016                                                 205199
1017                                                 173545
1018                                                 155731
1019                                                 142818
1020                                                 168798
1021                                                 164077
1022                                                 195532
1023                                                 178890
1024                                                 158499
1025                                                 179103
1026                                                 146422
1027                                                 151260
1028                                                 161289
1029                                                 160558
1030                                                 140488
1031                                                 160438
1032                                                 169556
1033                                                 127501
1034                                                 121768
1035                                                 158792
1036                                                 245353
1037                                                 149474
1038                                                 149320
1039                                                 138617
1040                                                 160130
1041                                                 132983
1042                                                  95936
1043                                                 140036
1044                                                  93337
1045                                                 121237
1046                                                 115301
1047                                                  90999
1048                                                  94496
1049                                                 162560
1050                                                  98097
1051                                                  92600
1052                                                 141875
1053                                                 153146
1054                                                  92326
1055                                                 157688
1056                                                 102871
1057                                                 179838
1058                                                 116109
1059                                                 111825
1060                                                 107523
1061                                                 188721
1062                                                 112332
1063                                                 112997
1064                                                 173741
1065                                                 110965
1066                                                 211960
1067                                                 135740
1068                                                 192111
1069                                                 129527
1070                                                 190397
1071                                                 128105
1072                                                 195411
1073                                                 120930
1074                                                 125605
1075                                                 254514
1076                                                 127939
1077                                                 124796
1078                                                 180970
1079                                                 146744
1080                                                 109050
1081                                                 185570
1082                                                 110129
1083                                                 112487
1084                                                 167255
1085                                                 121049
1086                                                 105176
1087                                                  91841
1088                                                 237911
1089                                                 109941
1090                                                  99496
1091                                                  99757
1092                                                 153507
1093                                                 292707
1094                                                 232295
1095                                                 216119
1096                                                 244025
1097                                                 205477
1098                                                 215985
1099                                                 247795
1100                                                 237248
1101                                                 230414
1102                                                 245167
1103                                                 279364
1104                                                 268709
1105                                                 269072
1106                                                 272926
1107                                                 284247
1108                                                 346994
1109                                                 311124
1110                                                 284309
1111                                                 261084
1112                                                 314774
1113                                                 353118
1114                                                 272441
1115                                                 272268
1116                                                 269642
1117                                                 277827
1118                                                 332735
1119                                                 293409
1120                                                 338639
1121                                                 389600
1122                                                 335693
1123                                                 285741
1124                                                 293059
1125                                                 279843
1126                                                 325085
1127                                                 406840
1128                                                 334719
1129                                                 336521
1130                                                 369818
1131                                                 360356
1132                                                 354049
1133                                                 311228
1134                                                 261650
1135                                                 291047
1136                                                 293036
1137                                                 242732
1138                                                 255465
1139                                                 318771
1140                                                 370223
1141                                                 249510
1142                                                 233186
1143                                                 274481
1144                                                 317861
1145                                                2326942
1146                                                2149872
1147                                                2690296
1148                                                3048291
1149                                                2156009
1150                                                2268076
1151                                                2828362
1152                                                2621078
1153                                                2617807
1154                                                2327634
1155                                                2661345
1156                                                2591982
1157                                                2278629
1158                                                2674659
1159                                                2392449
1160                                                2549513
1161                                                2983163
1162                                                3037664
1163                                                2604991
1164                                                2943219
1165                                                3371114
1166                                                2742211
1167                                                2893888
1168                                                2614726
1169                                                2652481
1170                                                3435375
1171                                                2921149
1172                                                3040023
1173                                                3689141
1174                                                3261844
1175                                                3196936
1176                                                2853905
1177                                                2557701
1178                                                3553643
1179                                                4015563
1180                                                2355704
1181                                                2901188
1182                                                2799667
1183                                                2603115
1184                                                2566690
1185                                                2466735
1186                                                2690257
1187                                                2797746
1188                                                3094279
1189                                                2954706
1190                                                2926436
1191                                                2641033
1192                                                4031949
1193                                                2329987
1194                                                2800680
1195                                                2713700
1196                                                2682160
1197                                                  61655
1198                                                  56443
1199                                                  76544
1200                                                 103277
1201                                                  58668
1202                                                  60971
1203                                                  58817
1204                                                  86930
1205                                                 103769
1206                                                  64603
1207                                                  74093
1208                                                  74537
1209                                                  63157
1210                                                  60981
1211                                                  71065
1212                                                  85920
1213                                                  98154
1214                                                  70165
1215                                                  65333
1216                                                  78927
1217                                                  83593
1218                                                  91137
1219                                                  99545
1220                                                  77503
1221                                                  72694
1222                                                  81749
1223                                                  69231
1224                                                  78273
1225                                                  82364
1226                                                  98866
1227                                                  92345
1228                                                  79568
1229                                                  73537
1230                                                  85446
1231                                                  95551
1232                                                  65742
1233                                                  95959
1234                                                  88236
1235                                                  75626
1236                                                  93802
1237                                                  95101
1238                                                  56870
1239                                                  62729
1240                                                  78627
1241                                                 107443
1242                                                  80538
1243                                                  87054
1244                                                 125505
1245                                                  86635
1246                                                  85580
1247                                                  75129
1248                                                 101163
1249                                                 545065
1250                                                 350534
1251                                                 529317
1252                                                 340514
1253                                                 470218
1254                                                 499396
1255                                                 368996
1256                                                 329065
1257                                                 566031
1258                                                 307073
1259                                                 333934
1260                                                 538384
1261                                                 570367
1262                                                 318048
1263                                                 559818
1264                                                 331078
1265                                                 637327
1266                                                 362232
1267                                                 372525
1268                                                 360309
1269                                                 655822
1270                                                 371660
1271                                                 379954
1272                                                 626842
1273                                                 402707
1274                                                 718152
1275                                                 443971
1276                                                 669409
1277                                                 437897
1278                                                 683878
1279                                                 419159
1280                                                 757305
1281                                                 450603
1282                                                 435547
1283                                                 917425
1284                                                 476017
1285                                                 434025
1286                                                 692570
1287                                                 510739
1288                                                 370066
1289                                                 642934
1290                                                 371716
1291                                                 356312
1292                                                 647014
1293                                                 369820
1294                                                 353521
1295                                                 348211
1296                                                 753301
1297                                                 398056
1298                                                 405138
1299                                                 342797
1300                                                 540234
1301                                                2065131
1302                                                2044021
1303                                                2193143
1304                                                2233138
1305                                                1845443
1306                                                1903245
1307                                                2355839
1308                                                2503008
1309                                                2511760
1310                                                2188485
1311                                                2783170
1312                                                2329758
1313                                                2233936
1314                                                2390611
1315                                                2447265
1316                                                2814803
1317                                                3013826
1318                                                2535193
1319                                                2765838
1320                                                2823405
1321                                                2710710
1322                                                2752082
1323                                                2664424
1324                                                2751193
1325                                                2783555
1326                                                3183420
1327                                                2835630
1328                                                2979418
1329                                                3173051
1330                                                2918299
1331                                                3039403
1332                                                3119051
1333                                                2817008
1334                                                2956859
1335                                                3410468
1336                                                2699615
1337                                                2711008
1338                                                2829417
1339                                                2519677
1340                                                2523110
1341                                                2779013
1342                                                2462108
1343                                                2297509
1344                                                2538982
1345                                                2720347
1346                                                2420829
1347                                                2734007
1348                                                3668038
1349                                                2480821
1350                                                2330829
1351                                                2335986
1352                                                2578275
1353                                                 123670
1354                                                 127374
1355                                                 153426
1356                                                 130989
1357                                                 119920
1358                                                 127166
1359                                                 124671
1360                                                 135506
1361                                                 159318
1362                                                 148660
1363                                                 182648
1364                                                 167656
1365                                                 157490
1366                                                 160548
1367                                                 197650
1368                                                 154622
1369                                                 175978
1370                                                 142154
1371                                                 171575
1372                                                 187310
1373                                                 176410
1374                                                 151807
1375                                                 149263
1376                                                 186259
1377                                                 152992
1378                                                 201798
1379                                                 159982
1380                                                 188763
1381                                                 172302
1382                                                 189470
1383                                                 166214
1384                                                 194991
1385                                                 149400
1386                                                 165727
1387                                                 222813
1388                                                 166557
1389                                                 140649
1390                                                 158490
1391                                                 155074
1392                                                 151301
1393                                                 173980
1394                                                 131054
1395                                                 149239
1396                                                 169424
1397                                                 148164
1398                                                 153852
1399                                                 171749
1400                                                 221471
1401                                                 140855
1402                                                 143465
1403                                                 149832
1404                                                 162163
1405                                                 187664
1406                                                 191937
1407                                                 204217
1408                                                 185395
1409                                                 175834
1410                                                 192075
1411                                                 195780
1412                                                 197714
1413                                                 204738
1414                                                 191181
1415                                                 206563
1416                                                 217777
1417                                                 222488
1418                                                 199908
1419                                                 224017
1420                                                 219776
1421                                                 248355
1422                                                 234308
1423                                                 240561
1424                                                 253159
1425                                                 272465
1426                                                 248671
1427                                                 258960
1428                                                 258559
1429                                                 239909
1430                                                 297481
1431                                                 261199
1432                                                 293735
1433                                                 262250
1434                                                 288860
1435                                                 245294
1436                                                 265237
1437                                                 257403
1438                                                 256292
1439                                                 308656
1440                                                 265740
1441                                                 263487
1442                                                 235710
1443                                                 237822
1444                                                 237188
1445                                                 282494
1446                                                 233696
1447                                                 248274
1448                                                 224752
1449                                                 256175
1450                                                 230069
1451                                                 242065
1452                                                 367712
1453                                                 271448
1454                                                 267666
1455                                                 239232
1456                                                 222752
1457                                                1129876
1458                                                1139348
1459                                                1254805
1460                                                1068972
1461                                                 999170
1462                                                1111803
1463                                                1357393
1464                                                1406262
1465                                                2180520
1466                                                1048046
1467                                                1856338
1468                                                1099283
1469                                                1342963
1470                                                1201066
1471                                                1192211
1472                                                1479335
1473                                                1340926
1474                                                1251081
1475                                                1477964
1476                                                1535981
1477                                                1563915
1478                                                1458723
1479                                                1211731
1480                                                1251919
1481                                                1338282
1482                                                1666826
1483                                                1284789
1484                                                1667026
1485                                                1363134
1486                                                1731061
1487                                                1493219
1488                                                1515023
1489                                                1255553
1490                                                2118594
1491                                                1679103
1492                                                1295590
1493                                                1332515
1494                                                1084408
1495                                                1244324
1496                                                1183815
1497                                                1192732
1498                                                1097738
1499                                                1129334
1500                                                1338130
1501                                                1088977
1502                                                 997562
1503                                                1658709
1504                                                1433763
1505                                                1102868
1506                                                1044281
1507                                                1018226
1508                                                1402890
1509                                                3156360
1510                                                3190120
1511                                                3696552
1512                                                3218495
1513                                                2593781
1514                                                3026217
1515                                                3538946
1516                                                4205775
1517                                                4801621
1518                                                3306614
1519                                                4866607
1520                                                3307829
1521                                                3585183
1522                                                3739073
1523                                                3334592
1524                                                4205295
1525                                                4088062
1526                                                3825967
1527                                                4146221
1528                                                4221435
1529                                                4786334
1530                                                4154659
1531                                                3757525
1532                                                4169213
1533                                                4454139
1534                                                4855274
1535                                                4100932
1536                                                4508474
1537                                                4561750
1538                                                4721927
1539                                                4329240
1540                                                4661457
1541                                                4094678
1542                                                5498650
1543                                                4597313
1544                                                3646364
1545                                                3786141
1546                                                3203213
1547                                                3467771
1548                                                3497027
1549                                                3520409
1550                                                3135992
1551                                                3250833
1552                                                3780455
1553                                                3042447
1554                                                2983696
1555                                                4457049
1556                                                4298883
1557                                                3238502
1558                                                3066790
1559                                                3056025
1560                                                3759283
1561                                                 304598
1562                                                 284808
1563                                                 407483
1564                                                 303058
1565                                                 219690
1566                                                 274209
1567                                                 287016
1568                                                 489340
1569                                                 350261
1570                                                 313881
1571                                                 402466
1572                                                 278473
1573                                                 298223
1574                                                 458603
1575                                                 322730
1576                                                 356105
1577                                                 508208
1578                                                 395127
1579                                                 400102
1580                                                 372516
1581                                                 579226
1582                                                 417083
1583                                                 402792
1584                                                 594452
1585                                                 509215
1586                                                 536643
1587                                                 452801
1588                                                 425886
1589                                                 537725
1590                                                 427217
1591                                                 413699
1592                                                 512172
1593                                                 422484
1594                                                 578437
1595                                                 366987
1596                                                 311879
1597                                                 346562
1598                                                 306251
1599                                                 309144
1600                                                 412639
1601                                                 282155
1602                                                 301853
1603                                                 287964
1604                                                 355678
1605                                                 264119
1606                                                 288515
1607                                                 363935
1608                                                 412753
1609                                                 290611
1610                                                 309203
1611                                                 314717
1612                                                 321824
1613                                                 305774
1614                                                 200075
1615                                                 310102
1616                                                 199064
1617                                                 262684
1618                                                 266951
1619                                                 200715
1620                                                 202955
1621                                                 330071
1622                                                 210266
1623                                                 204526
1624                                                 308033
1625                                                 332997
1626                                                 202457
1627                                                 329685
1628                                                 221548
1629                                                 375737
1630                                                 238270
1631                                                 228926
1632                                                 240186
1633                                                 388550
1634                                                 240822
1635                                                 239842
1636                                                 363733
1637                                                 245529
1638                                                 420329
1639                                                 277854
1640                                                 394035
1641                                                 256150
1642                                                 391557
1643                                                 250040
1644                                                 401991
1645                                                 243266
1646                                                 257033
1647                                                 501574
1648                                                 257308
1649                                                 231777
1650                                                 375364
1651                                                 300680
1652                                                 216925
1653                                                 363504
1654                                                 226248
1655                                                 219072
1656                                                 316199
1657                                                 226965
1658                                                 204812
1659                                                 204397
1660                                                 489225
1661                                                 211991
1662                                                 191078
1663                                                 202035
1664                                                 281803
1665                                                 308547
1666                                                 306843
1667                                                 352369
1668                                                 346896
1669                                                 275092
1670                                                 320058
1671                                                 363548
1672                                                 374934
1673                                                 559567
1674                                                 398338
1675                                                 496237
1676                                                 373651
1677                                                 388206
1678                                                 368780
1679                                                 361362
1680                                                 454796
1681                                                 399062
1682                                                 381319
1683                                                 449716
1684                                                 425708
1685                                                 405556
1686                                                 399212
1687                                                 373032
1688                                                 369974
1689                                                 372062
1690                                                 460459
1691                                                 378931
1692                                                 456983
1693                                                 421514
1694                                                 476827
1695                                                 436028
1696                                                 440574
1697                                                 388800
1698                                                 535923
1699                                                 548557
1700                                                 385542
1701                                                 389414
1702                                                 335390
1703                                                 365947
1704                                                 339877
1705                                                 449262
1706                                                 331457
1707                                                 349610
1708                                                 392412
1709                                                 348215
1710                                                 335173
1711                                                 477876
1712                                                 569305
1713                                                 355646
1714                                                 331495
1715                                                 315984
1716                                                 407676
1717                                                1137707
1718                                                1097224
1719                                                 907470
1720                                                1105500
1721                                                 724916
1722                                                 737834
1723                                                1010132
1724                                                1102272
1725                                                 907452
1726                                                 761262
1727                                                1094731
1728                                                 795733
1729                                                 726096
1730                                                 664202
1731                                                 892151
1732                                                1100902
1733                                                1390418
1734                                                 939786
1735                                                 873857
1736                                                1203150
1737                                                 981975
1738                                                 946868
1739                                                 903242
1740                                                 928600
1741                                                1015567
1742                                                1456836
1743                                                 955511
1744                                                1343181
1745                                                1353850
1746                                                1457360
1747                                                1282096
1748                                                1261540
1749                                                1013050
1750                                                1072300
1751                                                1268607
1752                                                1272429
1753                                                1366845
1754                                                1019281
1755                                                1320321
1756                                                1231267
1757                                                1089117
1758                                                1326721
1759                                                1042159
1760                                                1031351
1761                                                1163115
1762                                                1159510
1763                                                1151157
1764                                                1544751
1765                                                1233503
1766                                                1088609
1767                                                1110753
1768                                                1048062
1769                                                  73110
1770                                                  68973
1771                                                  65333
1772                                                  61870
1773                                                  54780
1774                                                  63346
1775                                                  64519
1776                                                 123489
1777                                                  81574
1778                                                  69192
1779                                                  70133
1780                                                  84054
1781                                                  89538
1782                                                  91559
1783                                                  74826
1784                                                  74962
1785                                                 114217
1786                                                  74510
1787                                                  83196
1788                                                  87688
1789                                                 145930
1790                                                  74681
1791                                                  68936
1792                                                  73321
1793                                                  68847
1794                                                 115580
1795                                                 111690
1796                                                  88214
1797                                                  92713
1798                                                  84557
1799                                                  83008
1800                                                 181170
1801                                                  85406
1802                                                  82110
1803                                                 208821
1804                                                  79977
1805                                                  75775
1806                                                  69340
1807                                                  76147
1808                                                  69747
1809                                                  68500
1810                                                  71907
1811                                                 159736
1812                                                  65484
1813                                                  70345
1814                                                  60214
1815                                                  66361
1816                                                 112066
1817                                                  98723
1818                                                  59312
1819                                                  54644
1820                                                  54957
1821                                                1306923
1822                                                1139862
1823                                                1472501
1824                                                1245290
1825                                                1099646
1826                                                1281613
1827                                                1294867
1828                                                1285587
1829                                                1350092
1830                                                1411355
1831                                                1368888
1832                                                1560846
1833                                                1309246
1834                                                1542658
1835                                                1386952
1836                                                1526985
1837                                                1714650
1838                                                1481150
1839                                                1731575
1840                                                1727852
1841                                                1605914
1842                                                1593031
1843                                                1844887
1844                                                1701987
1845                                                1808842
1846                                                1988312
1847                                                1826182
1848                                                1921720
1849                                                1974806
1850                                                2026464
1851                                                1853451
1852                                                2026640
1853                                                1966712
1854                                                2105831
1855                                                2333239
1856                                                1787072
1857                                                1801957
1858                                                2160086
1859                                                1668243
1860                                                1657405
1861                                                1651115
1862                                                1590080
1863                                                1531086
1864                                                1619341
1865                                                1547969
1866                                                1507822
1867                                                1794544
1868                                                2561325
1869                                                1510837
1870                                                1674946
1871                                                1402842
1872                                                1683795
1873                                                 417190
1874                                                 416299
1875                                                 429104
1876                                                 743770
1877                                                 353818
1878                                                 380726
1879                                                 568414
1880                                                 406548
1881                                                 423476
1882                                                 480396
1883                                                 438183
1884                                                 657656
1885                                                 421431
1886                                                 484598
1887                                                 566386
1888                                                 535519
1889                                                 465258
1890                                                 427777
1891                                                 545297
1892                                                 465897
1893                                                 448136
1894                                                 501107
1895                                                 433999
1896                                                 446863
1897                                                 568130
1898                                                 574999
1899                                                 508174
1900                                                 579558
1901                                                 622881
1902                                                 543944
1903                                                 600303
1904                                                 606039
1905                                                 487025
1906                                                 675270
1907                                                 644419
1908                                                 571443
1909                                                 610659
1910                                                 433703
1911                                                 432730
1912                                                 401825
1913                                                 426181
1914                                                 392803
1915                                                 419850
1916                                                 598755
1917                                                 495032
1918                                                 363889
1919                                                 447702
1920                                                 776238
1921                                                 432770
1922                                                 439618
1923                                                 510153
1924                                                 599966
1925                                                 208426
1926                                                 189584
1927                                                 207628
1928                                                 210379
1929                                                 185734
1930                                                 179083
1931                                                 238990
1932                                                 223564
1933                                                 229530
1934                                                 199223
1935                                                 217581
1936                                                 222607
1937                                                 187693
1938                                                 222850
1939                                                 216519
1940                                                 238904
1941                                                 301641
1942                                                 253578
1943                                                 277978
1944                                                 241121
1945                                                 234071
1946                                                 243249
1947                                                 232205
1948                                                 246513
1949                                                 247167
1950                                                 275671
1951                                                 255922
1952                                                 264236
1953                                                 286815
1954                                                 259977
1955                                                 262289
1956                                                 267023
1957                                                 264909
1958                                                 267656
1959                                                 335465
1960                                                 259624
1961                                                 255437
1962                                                 274985
1963                                                 245492
1964                                                 238992
1965                                                 244658
1966                                                 252527
1967                                                 198900
1968                                                 216841
1969                                                 258728
1970                                                 230632
1971                                                 222484
1972                                                 344289
1973                                                 233277
1974                                                 204505
1975                                                 205761
1976                                                 221086
1977                                                 161578
1978                                                 158870
1979                                                 174381
1980                                                 176731
1981                                                 140940
1982                                                 148243
1983                                                 198934
1984                                                 202832
1985                                                 212854
1986                                                 180316
1987                                                 217221
1988                                                 192231
1989                                                 200821
1990                                                 203675
1991                                                 195742
1992                                                 229221
1993                                                 252853
1994                                                 213121
1995                                                 232074
1996                                                 222696
1997                                                 216580
1998                                                 235506
1999                                                 222883
2000                                                 225260
2001                                                 234569
2002                                                 287572
2003                                                 236211
2004                                                 264923
2005                                                 289291
2006                                                 248646
2007                                                 270601
2008                                                 280241
2009                                                 262510
2010                                                 263028
2011                                                 292744
2012                                                 235546
2013                                                 231641
2014                                                 213032
2015                                                 222123
2016                                                 205954
2017                                                 213087
2018                                                 210124
2019                                                 177541
2020                                                 194798
2021                                                 225830
2022                                                 207250
2023                                                 212888
2024                                                 308461
2025                                                 194086
2026                                                 179038
2027                                                 194461
2028                                                 182698
2029                                                  98585
2030                                                  88183
2031                                                  99886
2032                                                  99520
2033                                                  73734
2034                                                  83964
2035                                                 109929
2036                                                 114125
2037                                                 116799
2038                                                 110896
2039                                                 117517
2040                                                 118010
2041                                                 114487
2042                                                 109275
2043                                                 125683
2044                                                 147618
2045                                                 131198
2046                                                 114054
2047                                                 115608
2048                                                 113816
2049                                                 116318
2050                                                 122569
2051                                                 118455
2052                                                 124247
2053                                                 128054
2054                                                 147749
2055                                                 131276
2056                                                 135895
2057                                                 147634
2058                                                 139465
2059                                                 133856
2060                                                 142274
2061                                                 135281
2062                                                 141860
2063                                                 147690
2064                                                 137886
2065                                                 144665
2066                                                 129699
2067                                                 121570
2068                                                 117662
2069                                                 126536
2070                                                 119124
2071                                                 111703
2072                                                 110991
2073                                                 127856
2074                                                 136951
2075                                                 145648
2076                                                 168218
2077                                                 123070
2078                                                 112106
2079                                                 113236
2080                                                 109215
2081                                                 403742
2082                                                 385518
2083                                                 376690
2084                                                 318280
2085                                                 347407
2086                                                 354986
2087                                                 414161
2088                                                 357133
2089                                                 532467
2090                                                 343757
2091                                                 326458
2092                                                 355472
2093                                                 377192
2094                                                 350982
2095                                                 353232
2096                                                 384193
2097                                                 466706
2098                                                 377229
2099                                                 405275
2100                                                 401708
2101                                                 414824
2102                                                 404664
2103                                                 395472
2104                                                 404605
2105                                                 411928
2106                                                 550811
2107                                                 423984
2108                                                 422724
2109                                                 431791
2110                                                 435087
2111                                                 435724
2112                                                 403794
2113                                                 397215
2114                                                 437823
2115                                                 662034
2116                                                 366720
2117                                                 415841
2118                                                 382584
2119                                                 404334
2120                                                 391179
2121                                                 424708
2122                                                 380761
2123                                                 415148
2124                                                 452845
2125                                                 405013
2126                                                 381042
2127                                                 432572
2128                                                 771975
2129                                                 360028
2130                                                 367047
2131                                                 429492
2132                                                 430139
2133                                                 439968
2134                                                 420476
2135                                                 462548
2136                                                 565517
2137                                                 385290
2138                                                 385301
2139                                                 501838
2140                                                 492385
2141                                                 468473
2142                                                 408336
2143                                                 447663
2144                                                 492277
2145                                                 404302
2146                                                 491991
2147                                                 448488
2148                                                 464305
2149                                                 502677
2150                                                 490269
2151                                                 459471
2152                                                 514203
2153                                                 630942
2154                                                 500999
2155                                                 495344
2156                                                 462526
2157                                                 490313
2158                                                 587741
2159                                                 495309
2160                                                 594488
2161                                                 630747
2162                                                 607468
2163                                                 569415
2164                                                 477416
2165                                                 458192
2166                                                 594740
2167                                                 740760
2168                                                 435990
2169                                                 488095
2170                                                 515247
2171                                                 469884
2172                                                 450371
2173                                                 515765
2174                                                 463106
2175                                                 504284
2176                                                 572552
2177                                                 516149
2178                                                 486114
2179                                                 448395
2180                                                 692276
2181                                                 406591
2182                                                 461064
2183                                                 544667
2184                                                 461607
2185                                                 692206
2186                                                 637091
2187                                                 616016
2188                                                 694982
2189                                                 651639
2190                                                 709444
2191                                                 775849
2192                                                 599884
2193                                                 869927
2194                                                 561342
2195                                                 586074
2196                                                 564457
2197                                                 762867
2198                                                 651697
2199                                                 578501
2200                                                 603841
2201                                                 646810
2202                                                 649892
2203                                                 610213
2204                                                 618238
2205                                                 603877
2206                                                 645158
2207                                                 628331
2208                                                 633327
2209                                                 680352
2210                                                 752192
2211                                                 646325
2212                                                 673721
2213                                                 696873
2214                                                 758817
2215                                                 764114
2216                                                 700411
2217                                                 701099
2218                                                 742672
2219                                                1310365
2220                                                 680839
2221                                                 818817
2222                                                 729890
2223                                                 742540
2224                                                 742583
2225                                                 841724
2226                                                 779754
2227                                                 830775
2228                                                1039265
2229                                                 776336
2230                                                 696515
2231                                                 928837
2232                                                1352028
2233                                                 713523
2234                                                 753747
2235                                                 916451
2236                                                 907796
2237                                                 450186
2238                                                 404862
2239                                                 454428
2240                                                 726505
2241                                                 373310
2242                                                 426338
2243                                                 643403
2244                                                 490827
2245                                                 435921
2246                                                 520698
2247                                                 484106
2248                                                 640332
2249                                                 513269
2250                                                 467792
2251                                                 590722
2252                                                 586503
2253                                                 459794
2254                                                 446851
2255                                                 551498
2256                                                 497527
2257                                                 523157
2258                                                 519887
2259                                                 436208
2260                                                 491654
2261                                                 597860
2262                                                 582037
2263                                                 496303
2264                                                 577605
2265                                                 615500
2266                                                 494856
2267                                                 543908
2268                                                 577947
2269                                                 474082
2270                                                 638697
2271                                                 687972
2272                                                 490426
2273                                                 570031
2274                                                 396728
2275                                                 466120
2276                                                 452743
2277                                                 514197
2278                                                 453590
2279                                                 439846
2280                                                 613535
2281                                                 552037
2282                                                 352335
2283                                                 488981
2284                                                 933148
2285                                                 420124
2286                                                 463473
2287                                                 527351
2288                                                 634522
2289                                                 251443
2290                                                 211066
2291                                                 257167
2292                                                 233274
2293                                                 217965
2294                                                 216768
2295                                                 224373
2296                                                 221080
2297                                                 280887
2298                                                 223607
2299                                                 226246
2300                                                 267962
2301                                                 267920
2302                                                 253423
2303                                                 312177
2304                                                 269755
2305                                                 353755
2306                                                 280700
2307                                                 310382
2308                                                 320751
2309                                                 353931
2310                                                 309612
2311                                                 327630
2312                                                 379506
2313                                                 320934
2314                                                 406711
2315                                                 340425
2316                                                 392755
2317                                                 339919
2318                                                 378845
2319                                                 322891
2320                                                 407500
2321                                                 346700
2322                                                 329845
2323                                                 457411
2324                                                 319659
2325                                                 322941
2326                                                 356627
2327                                                 311647
2328                                                 284840
2329                                                 366680
2330                                                 297856
2331                                                 289680
2332                                                 337577
2333                                                 332919
2334                                                 278514
2335                                                 282823
2336                                                 469684
2337                                                 311348
2338                                                 276206
2339                                                 279707
2340                                                 309024
2341                                                4831665
2342                                                4565208
2343                                                4869309
2344                                                4938526
2345                                                3969579
2346                                                4347511
2347                                                4943687
2348                                                4864814
2349                                                5072551
2350                                                4912068
2351                                                4687706
2352                                                5236048
2353                                                5201535
2354                                                4987381
2355                                                5211738
2356                                                5761849
2357                                                5979528
2358                                                5200253
2359                                                5235579
2360                                                5409823
2361                                                5353394
2362                                                5142336
2363                                                5822522
2364                                                5703941
2365                                                5544367
2366                                                6380288
2367                                                6024104
2368                                                6153609
2369                                                7281804
2370                                                6234006
2371                                                6349958
2372                                                5903596
2373                                                5831782
2374                                                6400341
2375                                                6558729
2376                                                5578981
2377                                                5593885
2378                                                5930073
2379                                                6368729
2380                                                5713017
2381                                                6008818
2382                                                5703759
2383                                                5865000
2384                                                5314432
2385                                                5208273
2386                                                5204972
2387                                                5900232
2388                                                6934356
2389                                                5142260
2390                                                5322626
2391                                                5409726
2392                                                5144267
2393                                                3024956
2394                                                2206305
2395                                                3042588
2396                                                2205551
2397                                                2615828
2398                                                2667552
2399                                                2242688
2400                                                2197764
2401                                                3227049
2402                                                2211717
2403                                                2274639
2404                                                3179825
2405                                                3259659
2406                                                2314057
2407                                                3496412
2408                                                2486655
2409                                                3750714
2410                                                2544631
2411                                                2580705
2412                                                2766391
2413                                                3804851
2414                                                2674633
2415                                                2742950
2416                                                3810950
2417                                                2748746
2418                                                4295280
2419                                                3026048
2420                                                4019385
2421                                                3021826
2422                                                4003122
2423                                                2884508
2424                                                4298515
2425                                                2936174
2426                                                2963778
2427                                                4986271
2428                                                3011225
2429                                                2857157
2430                                                3781505
2431                                                3140456
2432                                                2558925
2433                                                3867454
2434                                                2602342
2435                                                2642582
2436                                                3633174
2437                                                2796196
2438                                                2558564
2439                                                2573974
2440                                                4924050
2441                                                2778001
2442                                                2595784
2443                                                2433296
2444                                                3204112
2445                                                  67099
2446                                                  61556
2447                                                  67431
2448                                                 100234
2449                                                  51432
2450                                                  56013
2451                                                  84399
2452                                                  63821
2453                                                  60152
2454                                                  66853
2455                                                  60733
2456                                                  88580
2457                                                  77515
2458                                                  63903
2459                                                  79503
2460                                                  78771
2461                                                  67102
2462                                                  61177
2463                                                  84334
2464                                                  72392
2465                                                  70351
2466                                                  74840
2467                                                  71150
2468                                                  77305
2469                                                  86319
2470                                                  91196
2471                                                  81276
2472                                                  84739
2473                                                  88579
2474                                                  79734
2475                                                  82470
2476                                                  92664
2477                                                  77997
2478                                                  95615
2479                                                 108052
2480                                                  80444
2481                                                  91379
2482                                                  64530
2483                                                  73681
2484                                                  74999
2485                                                  74725
2486                                                  71766
2487                                                  69849
2488                                                  88304
2489                                                  85295
2490                                                  57870
2491                                                  74139
2492                                                 135656
2493                                                  64117
2494                                                  69600
2495                                                  70697
2496                                                  84612
2497                                                 152121
2498                                                 135428
2499                                                 166084
2500                                                 147544
2501                                                 129475
2502                                                 134989
2503                                                 160186
2504                                                 148031
2505                                                 152077
2506                                                 151268
2507                                                 143944
2508                                                 159011
2509                                                 151219
2510                                                 175958
2511                                                 165255
2512                                                 200118
2513                                                 180706
2514                                                 164717
2515                                                 202862
2516                                                 290906
2517                                                 200795
2518                                                 184501
2519                                                 216993
2520                                                 204465
2521                                                 233580
2522                                                 224902
2523                                                 217234
2524                                                 198137
2525                                                 203247
2526                                                 194668
2527                                                 247196
2528                                                 236189
2529                                                 186936
2530                                                 218563
2531                                                 275081
2532                                                 178200
2533                                                 184980
2534                                                 214125
2535                                                 159462
2536                                                 198396
2537                                                 163325
2538                                                 157799
2539                                                 147526
2540                                                 179277
2541                                                 156113
2542                                                 169119
2543                                                 214719
2544                                                 308372
2545                                                 176820
2546                                                 170591
2547                                                 164918
2548                                                 198735
2549                                                  42344
2550                                                  39365
2551                                                  50385
2552                                                  50633
2553                                                  35853
2554                                                  39100
2555                                                  51726
2556                                                  55560
2557                                                  55096
2558                                                  48972
2559                                                  48655
2560                                                  45171
2561                                                  41904
2562                                                  54195
2563                                                  37046
2564                                                  43061
2565                                                  48359
2566                                                  53700
2567                                                  42934
2568                                                  44245
2569                                                  51095
2570                                                  41000
2571                                                  59947
2572                                                  59428
2573                                                  75145
2574                                                  68922
2575                                                  63939
2576                                                  60370
2577                                                  65185
2578                                                  69777
2579                                                  64840
2580                                                  61584
2581                                                  69650
2582                                                  78708
2583                                                  50591
2584                                                  48811
2585                                                  52801
2586                                                  46829
2587                                                  50016
2588                                                  52420
2589                                                  48181
2590                                                  42079
2591                                                  46199
2592                                                  47890
2593                                                  42663
2594                                                  38751
2595                                                  51557
2596                                                  57424
2597                                                  44518
2598                                                  40392
2599                                                  42017
2600                                                  41144
2601                                                 376188
2602                                                 238951
2603                                                 365644
2604                                                 227131
2605                                                 330061
2606                                                 311785
2607                                                 236179
2608                                                 228585
2609                                                 391514
2610                                                 234024
2611                                                 256610
2612                                                 402228
2613                                                 413840
2614                                                 252128
2615                                                 432962
2616                                                 257375
2617                                                 436529
2618                                                 262575
2619                                                 264170
2620                                                 283648
2621                                                 427229
2622                                                 274424
2623                                                 265368
2624                                                 421574
2625                                                 289138
2626                                                 482089
2627                                                 325434
2628                                                 438582
2629                                                 294964
2630                                                 433152
2631                                                 273610
2632                                                 460041
2633                                                 275260
2634                                                 287069
2635                                                 558113
2636                                                 304136
2637                                                 280465
2638                                                 425033
2639                                                 354134
2640                                                 254521
2641                                                 440107
2642                                                 257173
2643                                                 259318
2644                                                 373462
2645                                                 268415
2646                                                 242479
2647                                                 236434
2648                                                 562243
2649                                                 260471
2650                                                 228921
2651                                                 235231
2652                                                 339909
2653                                               27297984
2654                                               25083647
2655                                               28041335
2656                                               28800397
2657                                               22617999
2658                                               25114228
2659                                               28597756
2660                                               28485716
2661                                               31047484
2662                                               26240072
2663                                               29375124
2664                                               29216198
2665                                               28243506
2666                                               27753508
2667                                               29569087
2668                                               31245836
2669                                               33526480
2670                                               29761638
2671                                               29699846
2672                                               31936856
2673                                               33254912
2674                                               30358468
2675                                               30652211
2676                                               32324648
2677                                               31660032
2678                                               37943670
2679                                               32408706
2680                                               35734614
2681                                               37026086
2682                                               36549996
2683                                               33720159
2684                                               35344183
2685                                               32027686
2686                                               36400887
2687                                               41291704
2688                                               30894158
2689                                               33091256
2690                                               32046402
2691                                               31500669
2692                                               29982648
2693                                               32513551
2694                                               29572226
2695                                               30094699
2696                                               32994014
2697                                               29936730
2698                                               28012521
2699                                               32137333
2700                                               44655462
2701                                               28470311
2702                                               29043459
2703                                               29063543
2704                                               31324278
2705                                                5291980
2706                                                4737649
2707                                                4899440
2708                                                6202514
2709                                                3719603
2710                                                4481990
2711                                                5972494
2712                                                5094838
2713                                                5024858
2714                                                4945836
2715                                                5413533
2716                                                5534451
2717                                                4895486
2718                                                4792868
2719                                                5596091
2720                                                5811260
2721                                                5900752
2722                                                5138257
2723                                                5197578
2724                                                5718139
2725                                                5531488
2726                                                5451041
2727                                                5126589
2728                                                5525299
2729                                                5791509
2730                                                6749081
2731                                                5617752
2732                                                6478952
2733                                                6760002
2734                                                6669221
2735                                                5874982
2736                                                6139160
2737                                                5338992
2738                                                6323725
2739                                                6937096
2740                                                6013312
2741                                                6612422
2742                                                5609471
2743                                                5929719
2744                                                5719898
2745                                                5368331
2746                                                5572582
2747                                                5382694
2748                                                5840743
2749                                                5939403
2750                                                5026689
2751                                                5949846
2752                                                8362504
2753                                                5461314
2754                                                5475363
2755                                                5333098
2756                                                5794411
2757                                                 776404
2758                                                 649886
2759                                                 646042
2760                                                 623232
2761                                                 519028
2762                                                 615077
2763                                                 732695
2764                                                 661406
2765                                                 592116
2766                                                 635874
2767                                                 681501
2768                                                 638486
2769                                                 649050
2770                                                 714977
2771                                                 746250
2772                                                 829728
2773                                                 790421
2774                                                 750669
2775                                                 740214
2776                                                 815639
2777                                                 885884
2778                                                 795372
2779                                                 777883
2780                                                 803340
2781                                                 754672
2782                                                 913361
2783                                                 941136
2784                                                 948943
2785                                                1035973
2786                                                1053998
2787                                                 887045
2788                                                 914967
2789                                                 942310
2790                                                1019161
2791                                                 967144
2792                                                 899633
2793                                                 961001
2794                                                 840315
2795                                                 938881
2796                                                 908323
2797                                                 752576
2798                                                 827795
2799                                                 805731
2800                                                 723489
2801                                                 681410
2802                                                 743066
2803                                                 811664
2804                                                 916367
2805                                                 720801
2806                                                 729796
2807                                                 584897
2808                                                 758119
2809                                                  73342
2810                                                  68939
2811                                                  71778
2812                                                 113032
2813                                                  58172
2814                                                  70090
2815                                                  63608
2816                                                  57178
2817                                                  58375
2818                                                  92080
2819                                                  69061
2820                                                 101088
2821                                                  75480
2822                                                  96853
2823                                                  79514
2824                                                  81473
2825                                                  95456
2826                                                 145323
2827                                                  94883
2828                                                 110528
2829                                                  99683
2830                                                 125587
2831                                                  98321
2832                                                  89228
2833                                                 131630
2834                                                 115908
2835                                                 133087
2836                                                 112818
2837                                                 111395
2838                                                 115857
2839                                                 127812
2840                                                  98864
2841                                                  96924
2842                                                 120194
2843                                                 173782
2844                                                 102490
2845                                                  86434
2846                                                  70253
2847                                                  81694
2848                                                  92529
2849                                                 110402
2850                                                 108265
2851                                                  90634
2852                                                  87822
2853                                                  99817
2854                                                  98008
2855                                                 169614
2856                                                 102038
2857                                                  96089
2858                                                 119972
2859                                                  79122
2860                                                 149038
2861                                                 502787
2862                                                 463483
2863                                                 422027
2864                                                 475815
2865                                                 372144
2866                                                 448936
2867                                                 408261
2868                                                 393826
2869                                                 408315
2870                                                 422281
2871                                                 459565
2872                                                 452109
2873                                                 440044
2874                                                 435757
2875                                                 527701
2876                                                 597759
2877                                                 614657
2878                                                 539643
2879                                                 549139
2880                                                 666493
2881                                                 508354
2882                                                 537633
2883                                                 495687
2884                                                 474064
2885                                                 560865
2886                                                 789398
2887                                                 606857
2888                                                 692767
2889                                                 608386
2890                                                 691201
2891                                                 691344
2892                                                 585352
2893                                                 755307
2894                                                 643700
2895                                                 735635
2896                                                 654019
2897                                                 512348
2898                                                 590002
2899                                                 423486
2900                                                 458635
2901                                                 496191
2902                                                 588657
2903                                                 458837
2904                                                 555471
2905                                                 417206
2906                                                 481484
2907                                                 722211
2908                                                 437491
2909                                                 528777
2910                                                 445090
2911                                                 558349
2912                                                 449263
2913                                                 550948
2914                                                 691009
2915                                                 599161
2916                                                 566956
2917                                                 539925
2918                                                 566160
2919                                                 559979
2920                                                 537946
2921                                                 522547
2922                                                 584276
2923                                                 638848
2924                                                 676189
2925                                                 672760
2926                                                 678672
2927                                                 732425
2928                                                 885728
2929                                                 762218
2930                                                 732546
2931                                                 727280
2932                                                 742292
2933                                                 746494
2934                                                 698628
2935                                                 719104
2936                                                 730875
2937                                                 831188
2938                                                 844338
2939                                                 830073
2940                                                 850692
2941                                                 850863
2942                                                 860858
2943                                                 890197
2944                                                 837573
2945                                                 901690
2946                                                1103888
2947                                                 929492
2948                                                 915500
2949                                                 841840
2950                                                 789348
2951                                                 770877
2952                                                 781628
2953                                                 880239
2954                                                 845575
2955                                                 819707
2956                                                 888570
2957                                                 739486
2958                                                 905145
2959                                                 966321
2960                                                 748107
2961                                                1022653
2962                                                 836226
2963                                                 780979
2964                                                 816760
2965                                                  71169
2966                                                  64422
2967                                                  98347
2968                                                  72472
2969                                                  51941
2970                                                  62527
2971                                                  67212
2972                                                  59587
2973                                                  59789
2974                                                  70652
2975                                                  77805
2976                                                  84235
2977                                                 106260
2978                                                  87557
2979                                                  82378
2980                                                  89823
2981                                                  79683
2982                                                  78600
2983                                                  84013
2984                                                  88787
2985                                                  70711
2986                                                  69620
2987                                                  65580
2988                                                  69053
2989                                                 132511
2990                                                 136378
2991                                                 127962
2992                                                 129020
2993                                                  68722
2994                                                  95948
2995                                                  82549
2996                                                  75997
2997                                                  95144
2998                                                 106410
2999                                                  82586
3000                                                  79562
3001                                                 109590
3002                                                  86898
3003                                                  97650
3004                                                 101268
3005                                                  83081
3006                                                 100145
3007                                                  97421
3008                                                  89982
3009                                                  93951
3010                                                  78070
3011                                                 123715
3012                                                  83755
3013                                                  58434
3014                                                  92385
3015                                                  89881
3016                                                 106107
3017                                                 447601
3018                                                 579577
3019                                                 510801
3020                                                 473428
3021                                                 391257
3022                                                 475677
3023                                                 397601
3024                                                 366175
3025                                                 376501
3026                                                 439552
3027                                                 453605
3028                                                 468135
3029                                                 459164
3030                                                 483057
3031                                                 489601
3032                                                 672673
3033                                                 541671
3034                                                 582023
3035                                                 586073
3036                                                 602605
3037                                                 525387
3038                                                 508950
3039                                                 509095
3040                                                 488508
3041                                                 549815
3042                                                 585485
3043                                                 626973
3044                                                 649660
3045                                                 632856
3046                                                 634990
3047                                                 673496
3048                                                 665086
3049                                                 709563
3050                                                 924194
3051                                                 716003
3052                                                 626895
3053                                                 617180
3054                                                 652547
3055                                                 559718
3056                                                 639420
3057                                                 645235
3058                                                 651211
3059                                                 600640
3060                                                 652943
3061                                                 553709
3062                                                 751657
3063                                                 678810
3064                                                 651617
3065                                                 670377
3066                                                 665218
3067                                                 536675
3068                                                 610622
3069                                                 103035
3070                                                  85340
3071                                                  89038
3072                                                  72203
3073                                                  73261
3074                                                  78676
3075                                                  87367
3076                                                  81692
3077                                                  71164
3078                                                 110745
3079                                                 131181
3080                                                 135059
3081                                                 132144
3082                                                 134327
3083                                                 122909
3084                                                 124096
3085                                                  95474
3086                                                 114646
3087                                                 119865
3088                                                 114328
3089                                                 104315
3090                                                 108088
3091                                                 104126
3092                                                 141881
3093                                                 183741
3094                                                 180609
3095                                                 160806
3096                                                 169756
3097                                                 182472
3098                                                 173445
3099                                                 147423
3100                                                 168251
3101                                                 164791
3102                                                 201143
3103                                                 171441
3104                                                 171142
3105                                                 169355
3106                                                 152124
3107                                                 154802
3108                                                 149463
3109                                                 140364
3110                                                 163501
3111                                                 141229
3112                                                 154058
3113                                                 126537
3114                                                 137984
3115                                                 177910
3116                                                 164454
3117                                                 147470
3118                                                 132286
3119                                                 134523
3120                                                 130621
3121                                                5414937
3122                                                4922622
3123                                                5526646
3124                                                5062953
3125                                                4185901
3126                                                4253816
3127                                                3848128
3128                                                3395058
3129                                                3139834
3130                                                3899041
3131                                                4878038
3132                                                5375979
3133                                                5652496
3134                                                6075589
3135                                                5471565
3136                                                6059765
3137                                                6681646
3138                                                6696300
3139                                                6308000
3140                                                6538336
3141                                                6144828
3142                                                5947160
3143                                                6104047
3144                                                6200614
3145                                                6721691
3146                                                7087455
3147                                                6407277
3148                                                6528056
3149                                                6506235
3150                                                7365675
3151                                                6700986
3152                                                6501981
3153                                                6068873
3154                                                7808462
3155                                                7661483
3156                                                6933382
3157                                                6397813
3158                                                6509001
3159                                                6060844
3160                                                6603708
3161                                                6476207
3162                                                6017564
3163                                                6429870
3164                                                6588278
3165                                                6374019
3166                                                6807283
3167                                               10361698
3168                                                6506674
3169                                                6246381
3170                                                6000013
3171                                                6303407
3172                                                7730431
3173                                                 155793
3174                                                 144634
3175                                                 145815
3176                                                 154743
3177                                                 131454
3178                                                 135608
3179                                                 144089
3180                                                 142096
3181                                                 142955
3182                                                 167741
3183                                                 190846
3184                                                 178236
3185                                                 178411
3186                                                 189132
3187                                                 182978
3188                                                 180989
3189                                                 204964
3190                                                 187985
3191                                                 193593
3192                                                 195251
3193                                                 196381
3194                                                 187969
3195                                                 193909
3196                                                 196467
3197                                                 233262
3198                                                 233544
3199                                                 200521
3200                                                 238721
3201                                                 209096
3202                                                 209797
3203                                                 235009
3204                                                 203493
3205                                                 215807
3206                                                 253623
3207                                                 249786
3208                                                 217385
3209                                                 212441
3210                                                 210588
3211                                                 192342
3212                                                 189945
3213                                                 205367
3214                                                 236131
3215                                                 208506
3216                                                 215161
3217                                                 193132
3218                                                 204111
3219                                                 325941
3220                                                 214136
3221                                                 207961
3222                                                 206778
3223                                                 196216
3224                                                 203962
3225                                                 616654
3226                                                 631117
3227                                                 734954
3228                                                 624751
3229                                                 581639
3230                                                 694873
3231                                                 436711
3232                                                 376477
3233                                                 375214
3234                                                 431274
3235                                                 523683
3236                                                 515146
3237                                                 509216
3238                                                 553864
3239                                                 600390
3240                                                 635036
3241                                                 670453
3242                                                 621716
3243                                                 628099
3244                                                 626087
3245                                                 644670
3246                                                 614939
3247                                                 658914
3248                                                 717279
3249                                                 712081
3250                                                 974278
3251                                                 860171
3252                                                 882074
3253                                                 770843
3254                                                 885603
3255                                                 958567
3256                                                 903865
3257                                                 930403
3258                                                 974740
3259                                                 890282
3260                                                 879308
3261                                                 913422
3262                                                 770662
3263                                                 712210
3264                                                 865585
3265                                                 770557
3266                                                 823797
3267                                                 809326
3268                                                 780952
3269                                                 752336
3270                                                 803121
3271                                                1134049
3272                                                 774091
3273                                                 794030
3274                                                 778413
3275                                                 844277
3276                                                1009667
3277                                                 276388
3278                                                 216881
3279                                                 268166
3280                                                 356617
3281                                                 183176
3282                                                 242174
3283                                                 249073
3284                                                 239234
3285                                                 241671
3286                                                 273804
3287                                                 246802
3288                                                 276820
3289                                                 280396
3290                                                 268805
3291                                                 288857
3292                                                 266720
3293                                                 252059
3294                                                 259143
3295                                                 256195
3296                                                 274250
3297                                                 266196
3298                                                 254690
3299                                                 264195
3300                                                 280542
3301                                                 266812
3302                                                 330182
3303                                                 280230
3304                                                 311128
3305                                                 237774
3306                                                 310345
3307                                                 268328
3308                                                 250388
3309                                                 250333
3310                                                 314243
3311                                                 233581
3312                                                 218247
3313                                                 228211
3314                                                 210310
3315                                                 191169
3316                                                 225486
3317                                                 224943
3318                                                 210905
3319                                                 234512
3320                                                 227594
3321                                                 190350
3322                                                 229211
3323                                                 302338
3324                                                 203006
3325                                                 252317
3326                                                 228861
3327                                                 218907
3328                                                 222535
3329                                                 136733
3330                                                 131322
3331                                                 144355
3332                                                 237639
3333                                                 134306
3334                                                 117299
3335                                                 116815
3336                                                 114208
3337                                                 138566
3338                                                 156831
3339                                                 123389
3340                                                 120833
3341                                                 123300
3342                                                 151979
3343                                                 167438
3344                                                 177299
3345                                                 161362
3346                                                 168758
3347                                                 154117
3348                                                 166463
3349                                                 164282
3350                                                 153804
3351                                                 173335
3352                                                 160413
3353                                                 170763
3354                                                 234975
3355                                                 201924
3356                                                 172220
3357                                                 163639
3358                                                 175046
3359                                                 201748
3360                                                 210264
3361                                                 202002
3362                                                 201206
3363                                                 224515
3364                                                 242277
3365                                                 172184
3366                                                 135905
3367                                                 147520
3368                                                 153523
3369                                                 152572
3370                                                 140244
3371                                                 173826
3372                                                 154968
3373                                                 126068
3374                                                 173980
3375                                                 233906
3376                                                 173312
3377                                                 213215
3378                                                 134605
3379                                                 163977
3380                                                 192774
3381                                                1199637
3382                                                1148251
3383                                                1121306
3384                                                1245472
3385                                                 851579
3386                                                 910226
3387                                                 894000
3388                                                 894905
3389                                                 801082
3390                                                 993986
3391                                                1021029
3392                                                1162335
3393                                                1033290
3394                                                1150789
3395                                                1382358
3396                                                1308970
3397                                                1390891
3398                                                1260686
3399                                                1215162
3400                                                1132112
3401                                                1244081
3402                                                1163785
3403                                                1188812
3404                                                1070350
3405                                                1080238
3406                                                1350870
3407                                                1277489
3408                                                1236820
3409                                                1272166
3410                                                1343656
3411                                                1354697
3412                                                1378889
3413                                                1366440
3414                                                1475782
3415                                                1433697
3416                                                1482923
3417                                                1339726
3418                                                1424318
3419                                                1339210
3420                                                1341740
3421                                                1347884
3422                                                1177309
3423                                                1201769
3424                                                1199631
3425                                                1006181
3426                                                1358553
3427                                                1515264
3428                                                1128639
3429                                                 676032
3430                                                1164936
3431                                                1145737
3432                                                1191928
3433                                                 765511
3434                                                 705751
3435                                                 764135
3436                                                 855989
3437                                                 455470
3438                                                 543817
3439                                                 661297
3440                                                 533948
3441                                                 576354
3442                                                 594393
3443                                                 673393
3444                                                 758237
3445                                                 677072
3446                                                 680947
3447                                                 757358
3448                                                 791566
3449                                                 924278
3450                                                 957464
3451                                                 603008
3452                                                 657981
3453                                                 695116
3454                                                 673588
3455                                                 690893
3456                                                 771606
3457                                                 835116
3458                                                 815699
3459                                                 773678
3460                                                 791014
3461                                                 819665
3462                                                 939081
3463                                                 977871
3464                                                 932147
3465                                                 952355
3466                                                1113913
3467                                                 819111
3468                                                 661914
3469                                                1011266
3470                                                 982818
3471                                                 829424
3472                                                 716900
3473                                                1005860
3474                                                 824793
3475                                                 671668
3476                                                1058089
3477                                                 955583
3478                                                 966134
3479                                                1365558
3480                                                 892702
3481                                                1195521
3482                                                1245174
3483                                                1094946
3484                                                1295246
3485                                                 319957
3486                                                 298755
3487                                                 333110
3488                                                 545217
3489                                                 262530
3490                                                 243577
3491                                                 236523
3492                                                 231422
3493                                                 193941
3494                                                 227234
3495                                                 256744
3496                                                 253887
3497                                                 266892
3498                                                 274937
3499                                                 320748
3500                                                 339890
3501                                                 326336
3502                                                 353421
3503                                                 316860
3504                                                 367007
3505                                                 352764
3506                                                 340176
3507                                                 354577
3508                                                 328238
3509                                                 311241
3510                                                 336702
3511                                                 344391
3512                                                 442961
3513                                                 414532
3514                                                 473131
3515                                                 348557
3516                                                 303331
3517                                                 485653
3518                                                 500425
3519                                                 319392
3520                                                 331110
3521                                                 447347
3522                                                 312996
3523                                                 335108
3524                                                 378432
3525                                                 371639
3526                                                 299528
3527                                                 441920
3528                                                 342465
3529                                                 247820
3530                                                 334545
3531                                                 594785
3532                                                 364613
3533                                                 489585
3534                                                 293247
3535                                                 325998
3536                                                 492700
3537                                                 149349
3538                                                 161137
3539                                                 128166
3540                                                 263904
3541                                                 103698
3542                                                 127393
3543                                                 118567
3544                                                 100001
3545                                                 107014
3546                                                 100905
3547                                                 117843
3548                                                 116478
3549                                                 122092
3550                                                 137599
3551                                                 139512
3552                                                 136492
3553                                                 142914
3554                                                 143050
3555                                                 132895
3556                                                 147711
3557                                                 145208
3558                                                 142302
3559                                                 149003
3560                                                 146731
3561                                                 133748
3562                                                 159567
3563                                                 183547
3564                                                 216300
3565                                                 167703
3566                                                 310904
3567                                                 193460
3568                                                 151841
3569                                                 295707
3570                                                 272057
3571                                                 191903
3572                                                 181857
3573                                                 332192
3574                                                 155144
3575                                                 156883
3576                                                 216789
3577                                                 208712
3578                                                 149120
3579                                                 259568
3580                                                 202356
3581                                                 142682
3582                                                 154975
3583                                                 290556
3584                                                 182987
3585                                                 260599
3586                                                 172166
3587                                                 160433
3588                                                 258889
3589                                                2954315
3590                                                2791515
3591                                                3048518
3592                                                3854100
3593                                                2385048
3594                                                2637622
3595                                                2348814
3596                                                2222383
3597                                                2275352
3598                                                2528597
3599                                                2517672
3600                                                2624203
3601                                                2618806
3602                                                2834326
3603                                                2996317
3604                                                3078052
3605                                                3084199
3606                                                3025330
3607                                                2933974
3608                                                3134414
3609                                                3106109
3610                                                3013426
3611                                                3212818
3612                                                3267858
3613                                                3327062
3614                                                4020725
3615                                                3643417
3616                                                3955099
3617                                                3443334
3618                                                4188246
3619                                                3925300
3620                                                3705262
3621                                                4324700
3622                                                4460482
3623                                                3801508
3624                                                3735389
3625                                                4154218
3626                                                3126127
3627                                                2968139
3628                                                3557777
3629                                                3368334
3630                                                3145898
3631                                                3818114
3632                                                3419910
3633                                                2837627
3634                                                3386951
3635                                                4865296
3636                                                3330752
3637                                                3806975
3638                                                3166942
3639                                                3310201
3640                                                4065583
3641                                                 186180
3642                                                 210917
3643                                                 202601
3644                                                 172416
3645                                                 155286
3646                                                 191756
3647                                                 197921
3648                                                 174837
3649                                                 171652
3650                                                 195809
3651                                                 205728
3652                                                 219090
3653                                                 214727
3654                                                 222019
3655                                                 220698
3656                                                 272611
3657                                                 311177
3658                                                 269378
3659                                                 258309
3660                                                 272099
3661                                                 267083
3662                                                 253672
3663                                                 247275
3664                                                 249118
3665                                                 274783
3666                                                 287688
3667                                                 277479
3668                                                 267236
3669                                                 250231
3670                                                 267226
3671                                                 280015
3672                                                 257599
3673                                                 270639
3674                                                 373545
3675                                                 316411
3676                                                 283535
3677                                                 257744
3678                                                 237139
3679                                                 186674
3680                                                 247390
3681                                                 269457
3682                                                 256786
3683                                                 240850
3684                                                 254954
3685                                                 235440
3686                                                 264904
3687                                                 310166
3688                                                 240912
3689                                                 269860
3690                                                 251772
3691                                                 231258
3692                                                 252693
3693                                                 238100
3694                                                 304051
3695                                                 245722
3696                                                 207483
3697                                                 195221
3698                                                 240656
3699                                                 184929
3700                                                 173621
3701                                                 180113
3702                                                 213547
3703                                                 208966
3704                                                 231063
3705                                                 216819
3706                                                 224392
3707                                                 233869
3708                                                 364052
3709                                                 279628
3710                                                 287630
3711                                                 299546
3712                                                 298015
3713                                                 288156
3714                                                 255026
3715                                                 254686
3716                                                 259417
3717                                                 292612
3718                                                 309897
3719                                                 329620
3720                                                 335704
3721                                                 324963
3722                                                 303118
3723                                                 382444
3724                                                 296894
3725                                                 416265
3726                                                 522565
3727                                                 353240
3728                                                 342796
3729                                                 284480
3730                                                 280729
3731                                                 254202
3732                                                 294602
3733                                                 373373
3734                                                 315394
3735                                                 311503
3736                                                 357504
3737                                                 288176
3738                                                 398441
3739                                                 393866
3740                                                 390135
3741                                                 317933
3742                                                 352473
3743                                                 284119
3744                                                 322752
3745                                                1126851
3746                                                1212933
3747                                                1015974
3748                                                1130896
3749                                                 854630
3750                                                 827346
3751                                                 828867
3752                                                 782911
3753                                                 709890
3754                                                 777848
3755                                                 992993
3756                                                1075304
3757                                                1023030
3758                                                1027782
3759                                                1127109
3760                                                1217347
3761                                                1351650
3762                                                1021607
3763                                                1046507
3764                                                1015264
3765                                                1040953
3766                                                 941066
3767                                                 985028
3768                                                1006984
3769                                                1101544
3770                                                1189787
3771                                                1186692
3772                                                1153583
3773                                                1209996
3774                                                1182842
3775                                                1128599
3776                                                1378762
3777                                                1343567
3778                                                1406284
3779                                                1308614
3780                                                1393043
3781                                                1310678
3782                                                1271741
3783                                                1256919
3784                                                1345865
3785                                                1162026
3786                                                1136963
3787                                                1091432
3788                                                1048304
3789                                                 966991
3790                                                1191352
3791                                                1323490
3792                                                1131583
3793                                                 867295
3794                                                1071139
3795                                                1095288
3796                                                1061567
3797                                                 135849
3798                                                 122036
3799                                                 133480
3800                                                 144732
3801                                                 103729
3802                                                 124674
3803                                                 127579
3804                                                 126205
3805                                                 139575
3806                                                 142946
3807                                                 138921
3808                                                 143912
3809                                                 146709
3810                                                 150805
3811                                                 153212
3812                                                 157333
3813                                                 160672
3814                                                 167402
3815                                                 160969
3816                                                 169421
3817                                                 163339
3818                                                 159574
3819                                                 178390
3820                                                 195710
3821                                                 191786
3822                                                 205563
3823                                                 183555
3824                                                 193533
3825                                                 186723
3826                                                 208087
3827                                                 210387
3828                                                 214847
3829                                                 212807
3830                                                 228601
3831                                                 207488
3832                                                 217736
3833                                                 218238
3834                                                 168009
3835                                                 154099
3836                                                 195374
3837                                                 168887
3838                                                 179067
3839                                                 208284
3840                                                 188077
3841                                                 153498
3842                                                 219872
3843                                                 240237
3844                                                 175610
3845                                                 168035
3846                                                 171405
3847                                                 173238
3848                                                 184670
3849                                                 187804
3850                                                 162502
3851                                                 116052
3852                                                 206010
3853                                                 111672
3854                                                 117496
3855                                                 140703
3856                                                 127895
3857                                                 115122
3858                                                 119840
3859                                                 157329
3860                                                 135520
3861                                                 159577
3862                                                 158194
3863                                                 175929
3864                                                 150296
3865                                                 239246
3866                                                 177300
3867                                                 189700
3868                                                 206617
3869                                                 151752
3870                                                 152777
3871                                                 156317
3872                                                 165454
3873                                                 164680
3874                                                 272151
3875                                                 159129
3876                                                 226775
3877                                                 151429
3878                                                 221144
3879                                                 242169
3880                                                 160652
3881                                                 257370
3882                                                 224520
3883                                                 370646
3884                                                 267226
3885                                                 184827
3886                                                 261081
3887                                                 181662
3888                                                 158323
3889                                                 140301
3890                                                 241654
3891                                                 155655
3892                                                 253490
3893                                                 141336
3894                                                 151724
3895                                                 369758
3896                                                 151247
3897                                                 192194
3898                                                 118231
3899                                                 181585
3900                                                 148599
3901                                                 292039
3902                                                 297506
3903                                                 339329
3904                                                 315049
3905                                                 255656
3906                                                 237141
3907                                                 259547
3908                                                 225301
3909                                                 223089
3910                                                 254999
3911                                                 315744
3912                                                 276031
3913                                                 246513
3914                                                 242300
3915                                                 278479
3916                                                 378865
3917                                                 335180
3918                                                 288423
3919                                                 302708
3920                                                 295536
3921                                                 311533
3922                                                 284566
3923                                                 283863
3924                                                 283074
3925                                                 357787
3926                                                 362137
3927                                                 352407
3928                                                 364255
3929                                                 348022
3930                                                 410771
3931                                                 391994
3932                                                 318913
3933                                                 317622
3934                                                 427575
3935                                                 363105
3936                                                 359872
3937                                                 379464
3938                                                 354098
3939                                                 298711
3940                                                 314268
3941                                                 332283
3942                                                 344613
3943                                                 311403
3944                                                 316564
3945                                                 337403
3946                                                 371468
3947                                                 437747
3948                                                 285052
3949                                                 158978
3950                                                 289298
3951                                                 309217
3952                                                 332972
3953                                                2641775
3954                                                2377800
3955                                                2793918
3956                                                2780629
3957                                                2257271
3958                                                2272023
3959                                                1913493
3960                                                1595013
3961                                                1499287
3962                                                2133563
3963                                                2548688
3964                                                2766529
3965                                                2865745
3966                                                3007073
3967                                                2589309
3968                                                2939705
3969                                                3431676
3970                                                3563269
3971                                                3086167
3972                                                2879218
3973                                                3094362
3974                                                2826836
3975                                                3033329
3976                                                3092234
3977                                                3293225
3978                                                3449361
3979                                                3258184
3980                                                3237847
3981                                                3248769
3982                                                3715458
3983                                                3203936
3984                                                3134305
3985                                                2866856
3986                                                3942054
3987                                                3863314
3988                                                3136883
3989                                                3185231
3990                                                3288357
3991                                                2793982
3992                                                3467762
3993                                                3374877
3994                                                2987394
3995                                                3138837
3996                                                3332578
3997                                                3232889
3998                                                3664089
3999                                                4982700
4000                                                3197788
4001                                                3173509
4002                                                2952577
4003                                                3172438
4004                                                3967109
4005                                                  81834
4006                                                  67720
4007                                                 105229
4008                                                 127201
4009                                                  57766
4010                                                  59211
4011                                                  64959
4012                                                  70882
4013                                                  70138
4014                                                  75593
4015                                                  81708
4016                                                  78262
4017                                                  75004
4018                                                  75513
4019                                                  87633
4020                                                  90086
4021                                                  82941
4022                                                  82663
4023                                                  89370
4024                                                  85551
4025                                                  80998
4026                                                  86031
4027                                                  95001
4028                                                 101964
4029                                                  94592
4030                                                 106600
4031                                                  98078
4032                                                  98290
4033                                                  84927
4034                                                  99180
4035                                                 109061
4036                                                 113794
4037                                                 106279
4038                                                 139476
4039                                                 128109
4040                                                  92553
4041                                                  95475
4042                                                  83505
4043                                                  91460
4044                                                 120080
4045                                                 123442
4046                                                  79811
4047                                                  88103
4048                                                 102197
4049                                                 114817
4050                                                 124651
4051                                                 148704
4052                                                 101620
4053                                                 120305
4054                                                  83687
4055                                                  99956
4056                                                 116364
4057                                                 648359
4058                                                 662655
4059                                                 446140
4060                                                 728191
4061                                                 405086
4062                                                 461237
4063                                                 478305
4064                                                 426160
4065                                                 403657
4066                                                 437489
4067                                                 537970
4068                                                 410181
4069                                                 539575
4070                                                 558552
4071                                                 541030
4072                                                 480735
4073                                                 862396
4074                                                 558829
4075                                                 565825
4076                                                 695231
4077                                                 515183
4078                                                 496509
4079                                                 520496
4080                                                 516716
4081                                                 566890
4082                                                 868986
4083                                                 540206
4084                                                 812335
4085                                                 503077
4086                                                 786072
4087                                                 849098
4088                                                 497820
4089                                                 889357
4090                                                 653844
4091                                                1078795
4092                                                 896845
4093                                                 558954
4094                                                 841732
4095                                                 543235
4096                                                 468636
4097                                                 507580
4098                                                 799993
4099                                                 448052
4100                                                 822403
4101                                                 481705
4102                                                 446631
4103                                                1180631
4104                                                 492691
4105                                                 611558
4106                                                 430079
4107                                                 702727
4108                                                 502584
4109                                                2180512
4110                                                2242221
4111                                                2339977
4112                                                2359837
4113                                                1858065
4114                                                1999044
4115                                                2075283
4116                                                2077507
4117                                                2083055
4118                                                2287508
4119                                                2442982
4120                                                2469382
4121                                                2540672
4122                                                2568161
4123                                                2785256
4124                                                3068639
4125                                                3127950
4126                                                2799098
4127                                                2840526
4128                                                2901787
4129                                                2900751
4130                                                2787002
4131                                                2914818
4132                                                2940449
4133                                                3221651
4134                                                3393696
4135                                                3095674
4136                                                3304968
4137                                                3122351
4138                                                3223814
4139                                                3349139
4140                                                3154318
4141                                                3205038
4142                                                3850646
4143                                                3536334
4144                                                3332610
4145                                                3029003
4146                                                2836885
4147                                                2690268
4148                                                2911903
4149                                                3198477
4150                                                3093898
4151                                                2942516
4152                                                3032920
4153                                                2747176
4154                                                3173460
4155                                                4131615
4156                                                2881461
4157                                                3147903
4158                                                3001684
4159                                                2871899
4160                                                2967930
4161                                                 166486
4162                                                 158024
4163                                                 193711
4164                                                 189526
4165                                                 129938
4166                                                 131606
4167                                                 141387
4168                                                 146937
4169                                                 151716
4170                                                 163018
4171                                                 177609
4172                                                 156477
4173                                                 172755
4174                                                 174769
4175                                                 191360
4176                                                 250165
4177                                                 292902
4178                                                 172758
4179                                                 184734
4180                                                 202834
4181                                                 188017
4182                                                 186520
4183                                                 191727
4184                                                 196774
4185                                                 198240
4186                                                 250902
4187                                                 195472
4188                                                 232084
4189                                                 190921
4190                                                 223369
4191                                                 238624
4192                                                 204129
4193                                                 219616
4194                                                 212720
4195                                                 237679
4196                                                 233759
4197                                                 178369
4198                                                 206829
4199                                                 165588
4200                                                 171568
4201                                                 179306
4202                                                 188478
4203                                                 159755
4204                                                 190263
4205                                                 182025
4206                                                 203205
4207                                                 268609
4208                                                 173690
4209                                                 167159
4210                                                 181361
4211                                                 212753
4212                                                 185316
4213                                                 225497
4214                                                 183103
4215                                                 177582
4216                                                 253242
4217                                                 148538
4218                                                 167233
4219                                                 225722
4220                                                 183542
4221                                                 163511
4222                                                 203438
4223                                                 222713
4224                                                 233899
4225                                                 214691
4226                                                 264726
4227                                                 244914
4228                                                 250493
4229                                                 324151
4230                                                 309239
4231                                                 314573
4232                                                 265538
4233                                                 287114
4234                                                 254878
4235                                                 261492
4236                                                 284926
4237                                                 291978
4238                                                 360420
4239                                                 267116
4240                                                 293340
4241                                                 283923
4242                                                 291490
4243                                                 300078
4244                                                 271554
4245                                                 288245
4246                                                 495733
4247                                                 564739
4248                                                 295499
4249                                                 323909
4250                                                 312471
4251                                                 316709
4252                                                 263582
4253                                                 273647
4254                                                 304058
4255                                                 267954
4256                                                 320343
4257                                                 263057
4258                                                 269319
4259                                                 542751
4260                                                 282934
4261                                                 228086
4262                                                 286863
4263                                                 264477
4264                                                 274498
4265                                                1087985
4266                                                1241382
4267                                                1163696
4268                                                 960476
4269                                                 970753
4270                                                1093097
4271                                                 830018
4272                                                 767191
4273                                                 618280
4274                                                 807565
4275                                                 969847
4276                                                1031060
4277                                                1057931
4278                                                1061133
4279                                                1108446
4280                                                1558414
4281                                                1278749
4282                                                1212400
4283                                                1334938
4284                                                1275953
4285                                                1256918
4286                                                1122163
4287                                                1180374
4288                                                1076259
4289                                                1266200
4290                                                1280725
4291                                                1622152
4292                                                1372612
4293                                                1485642
4294                                                1447580
4295                                                1827100
4296                                                1586648
4297                                                1706730
4298                                                2740588
4299                                                1536110
4300                                                1718056
4301                                                1030787
4302                                                 987898
4303                                                1240608
4304                                                1395562
4305                                                1743195
4306                                                1600417
4307                                                1455656
4308                                                1594428
4309                                                1315178
4310                                                1806981
4311                                                2202128
4312                                                1615465
4313                                                1429243
4314                                                1840344
4315                                                1364273
4316                                                1454164
4317                                                3216471
4318                                                3686006
4319                                                3381321
4320                                                3222664
4321                                                2701518
4322                                                3206947
4323                                                2706838
4324                                                2507401
4325                                                2364424
4326                                                2916579
4327                                                3107049
4328                                                3350950
4329                                                3257753
4330                                                3458791
4331                                                3442454
4332                                                4456958
4333                                                4019649
4334                                                4309302
4335                                                4127080
4336                                                4195423
4337                                                4024822
4338                                                3813808
4339                                                3834291
4340                                                3736814
4341                                                4487626
4342                                                4486745
4343                                                4840950
4344                                                4506893
4345                                                4599029
4346                                                4570516
4347                                                5141315
4348                                                4609250
4349                                                4999101
4350                                                6899727
4351                                                5247267
4352                                                4815249
4353                                                3849051
4354                                                3756625
4355                                                3872681
4356                                                4239017
4357                                                4834759
4358                                                4713935
4359                                                4226926
4360                                                4481119
4361                                                3948235
4362                                                4959258
4363                                                5919226
4364                                                4650798
4365                                                4412281
4366                                                4891517
4367                                                3890225
4368                                                4524220
4369                                                 325634
4370                                                 357508
4371                                                 310425
4372                                                 440990
4373                                                 262748
4374                                                 315783
4375                                                 268389
4376                                                 242667
4377                                                 255455
4378                                                 291386
4379                                                 290885
4380                                                 305507
4381                                                 291185
4382                                                 315399
4383                                                 316981
4384                                                 343315
4385                                                 374903
4386                                                 573339
4387                                                 413497
4388                                                 463652
4389                                                 457429
4390                                                 435129
4391                                                 463063
4392                                                 412386
4393                                                 569328
4394                                                 525917
4395                                                 497817
4396                                                 485946
4397                                                 472020
4398                                                 471357
4399                                                 499944
4400                                                 433252
4401                                                 443517
4402                                                 546838
4403                                                 628512
4404                                                 431616
4405                                                 399074
4406                                                 409228
4407                                                 486717
4408                                                 423258
4409                                                 414604
4410                                                 476635
4411                                                 405931
4412                                                 387150
4413                                                 380427
4414                                                 456440
4415                                                 605847
4416                                                 419786
4417                                                 453560
4418                                                 447079
4419                                                 343407
4420                                                 553828
4421                                                 359006
4422                                                 333093
4423                                                 247660
4424                                                 398860
4425                                                 221374
4426                                                 239374
4427                                                 250639
4428                                                 236697
4429                                                 223225
4430                                                 236500
4431                                                 311364
4432                                                 267399
4433                                                 301939
4434                                                 302809
4435                                                 319544
4436                                                 312267
4437                                                 477301
4438                                                 326913
4439                                                 347563
4440                                                 416694
4441                                                 327168
4442                                                 320003
4443                                                 336367
4444                                                 348318
4445                                                 341532
4446                                                 553640
4447                                                 333569
4448                                                 454278
4449                                                 293812
4450                                                 448118
4451                                                 481069
4452                                                 312533
4453                                                 512840
4454                                                 432737
4455                                                 667818
4456                                                 533831
4457                                                 347881
4458                                                 517278
4459                                                 349122
4460                                                 311572
4461                                                 291755
4462                                                 479956
4463                                                 291732
4464                                                 496973
4465                                                 296932
4466                                                 312271
4467                                                 696369
4468                                                 329627
4469                                                 399752
4470                                                 248039
4471                                                 413414
4472                                                 308712
4473                                                 329494
4474                                                 336267
4475                                                 356716
4476                                                 301330
4477                                                 279131
4478                                                 328557
4479                                                 293853
4480                                                 269770
4481                                                 254423
4482                                                 293380
4483                                                 335408
4484                                                 355668
4485                                                 366233
4486                                                 366205
4487                                                 403065
4488                                                 499660
4489                                                 488464
4490                                                 418743
4491                                                 408491
4492                                                 415100
4493                                                 411252
4494                                                 376353
4495                                                 389535
4496                                                 392042
4497                                                 420055
4498                                                 427325
4499                                                 478875
4500                                                 421529
4501                                                 426672
4502                                                 450347
4503                                                 484287
4504                                                 459980
4505                                                 474934
4506                                                 698602
4507                                                 478385
4508                                                 504961
4509                                                 366449
4510                                                 346081
4511                                                 370754
4512                                                 417871
4513                                                 543578
4514                                                 533502
4515                                                 417689
4516                                                 419882
4517                                                 409152
4518                                                 445229
4519                                                 675833
4520                                                 469689
4521                                                 448784
4522                                                 492566
4523                                                 413225
4524                                                 421093
4525                                                1108953
4526                                                1236204
4527                                                1056806
4528                                                1164027
4529                                                 907516
4530                                                1226126
4531                                                 911367
4532                                                 734433
4533                                                 644652
4534                                                 699711
4535                                                 831121
4536                                                 885661
4537                                                 815712
4538                                                 811940
4539                                                 826739
4540                                                 961998
4541                                                1455771
4542                                                1024800
4543                                                1459911
4544                                                1325975
4545                                                1522369
4546                                                 851296
4547                                                 922526
4548                                                 864517
4549                                                 995348
4550                                                1069906
4551                                                1360169
4552                                                1348892
4553                                                 991221
4554                                                1197278
4555                                                1342825
4556                                                1063411
4557                                                1318932
4558                                                1489269
4559                                                1178000
4560                                                1352495
4561                                                1166007
4562                                                1387970
4563                                                1091234
4564                                                1423940
4565                                                1339528
4566                                                1103110
4567                                                1442973
4568                                                1290021
4569                                                1098968
4570                                                1209858
4571                                                1609195
4572                                                1113755
4573                                                1016721
4574                                                1069974
4575                                                1276129
4576                                                1092067
4577                                                  80689
4578                                                 123556
4579                                                  84145
4580                                                  80731
4581                                                  67449
4582                                                  85228
4583                                                  86306
4584                                                  92657
4585                                                  86821
4586                                                  90369
4587                                                  87503
4588                                                  89506
4589                                                  92484
4590                                                 165178
4591                                                  91299
4592                                                  80207
4593                                                  93888
4594                                                  89248
4595                                                  89949
4596                                                  93416
4597                                                  97960
4598                                                  94553
4599                                                 104421
4600                                                 113656
4601                                                 111915
4602                                                 128115
4603                                                 110772
4604                                                 104128
4605                                                 102413
4606                                                 111138
4607                                                 117487
4608                                                 113858
4609                                                 165734
4610                                                 144813
4611                                                 169483
4612                                                 109421
4613                                                 107272
4614                                                 102685
4615                                                  87992
4616                                                  93608
4617                                                  87881
4618                                                  91113
4619                                                  99549
4620                                                  96484
4621                                                  84755
4622                                                  87228
4623                                                 105805
4624                                                  88552
4625                                                  96488
4626                                                  94971
4627                                                 110156
4628                                                  90522
4629                                                1449395
4630                                                1426471
4631                                                1468902
4632                                                1676509
4633                                                1131932
4634                                                1126964
4635                                                1187397
4636                                                1281024
4637                                                1058938
4638                                                1179301
4639                                                1252400
4640                                                1360541
4641                                                1352082
4642                                                1419113
4643                                                1641724
4644                                                1697761
4645                                                1933628
4646                                                1693969
4647                                                1693419
4648                                                1873447
4649                                                1979363
4650                                                1716385
4651                                                1807152
4652                                                1865427
4653                                                2028847
4654                                                2259572
4655                                                2101836
4656                                                2559003
4657                                                2104834
4658                                                2330438
4659                                                2265038
4660                                                2248727
4661                                                2100440
4662                                                2664927
4663                                                2093999
4664                                                2088524
4665                                                2114991
4666                                                1872379
4667                                                1769050
4668                                                1740837
4669                                                1938247
4670                                                2095165
4671                                                1734415
4672                                                1647189
4673                                                1672884
4674                                                1790823
4675                                                2838853
4676                                                1851372
4677                                                1261353
4678                                                1495177
4679                                                1670525
4680                                                2171819
4681                                                 525931
4682                                                 522499
4683                                                 923022
4684                                                 594247
4685                                                 404390
4686                                                 455618
4687                                                 487763
4688                                                 467434
4689                                                 407048
4690                                                 568596
4691                                                 563725
4692                                                 598036
4693                                                 954737
4694                                                 694290
4695                                                 603235
4696                                                 671818
4697                                                 613059
4698                                                 621458
4699                                                 668004
4700                                                 623629
4701                                                 659208
4702                                                 608614
4703                                                 602085
4704                                                 612573
4705                                                 669674
4706                                                 728681
4707                                                 662145
4708                                                 682681
4709                                                 626227
4710                                                 942775
4711                                                 832870
4712                                                 689731
4713                                                 884782
4714                                                 969780
4715                                                 852119
4716                                                 714375
4717                                                 917689
4718                                                 681434
4719                                                 806265
4720                                                 806586
4721                                                 556500
4722                                                 750735
4723                                                 769499
4724                                                 725928
4725                                                 823186
4726                                                 567177
4727                                                 948838
4728                                                 674374
4729                                                 596989
4730                                                 731385
4731                                                 731602
4732                                                 830063
4733                                                 208041
4734                                                 197054
4735                                                 215138
4736                                                 216078
4737                                                 175761
4738                                                 183328
4739                                                 211409
4740                                                 215346
4741                                                 211956
4742                                                 239744
4743                                                 247657
4744                                                 254094
4745                                                 261886
4746                                                 255043
4747                                                 278130
4748                                                 248257
4749                                                 287328
4750                                                 281758
4751                                                 279091
4752                                                 295307
4753                                                 280543
4754                                                 273952
4755                                                 279160
4756                                                 279443
4757                                                 303560
4758                                                 307216
4759                                                 297551
4760                                                 313757
4761                                                 298517
4762                                                 308049
4763                                                 295357
4764                                                 288374
4765                                                 293520
4766                                                 318524
4767                                                 326469
4768                                                 311439
4769                                                 284896
4770                                                 274246
4771                                                 262808
4772                                                 260487
4773                                                 288866
4774                                                 303780
4775                                                 298088
4776                                                 281060
4777                                                 263148
4778                                                 283960
4779                                                 403850
4780                                                 290633
4781                                                 242513
4782                                                 272249
4783                                                 257990
4784                                                 280336
4785                                                 176103
4786                                                 174209
4787                                                 186496
4788                                                 183872
4789                                                 154199
4790                                                 177112
4791                                                 177641
4792                                                 169723
4793                                                 174401
4794                                                 178513
4795                                                 203089
4796                                                 213460
4797                                                 229339
4798                                                 210791
4799                                                 238849
4800                                                 240632
4801                                                 263824
4802                                                 250435
4803                                                 236350
4804                                                 247601
4805                                                 266174
4806                                                 245375
4807                                                 272728
4808                                                 264253
4809                                                 296610
4810                                                 305399
4811                                                 259282
4812                                                 278179
4813                                                 280191
4814                                                 268776
4815                                                 274103
4816                                                 271979
4817                                                 250352
4818                                                 334122
4819                                                 283660
4820                                                 273208
4821                                                 251803
4822                                                 220100
4823                                                 189989
4824                                                 233604
4825                                                 264247
4826                                                 246111
4827                                                 255420
4828                                                 230260
4829                                                 214626
4830                                                 254612
4831                                                 394461
4832                                                 222414
4833                                                 272314
4834                                                 272595
4835                                                 243705
4836                                                 235619
4837                                                 103804
4838                                                  93107
4839                                                 113395
4840                                                 105733
4841                                                  82819
4842                                                  99234
4843                                                  98075
4844                                                 104170
4845                                                 105608
4846                                                 107231
4847                                                 121792
4848                                                 118935
4849                                                 133182
4850                                                 142131
4851                                                 144273
4852                                                 156833
4853                                                 162358
4854                                                 155029
4855                                                 147961
4856                                                 145314
4857                                                 142168
4858                                                 143067
4859                                                 150127
4860                                                 144948
4861                                                 158962
4862                                                 164584
4863                                                 141407
4864                                                 158225
4865                                                 152149
4866                                                 151373
4867                                                 162618
4868                                                 171189
4869                                                 141716
4870                                                 184596
4871                                                 178488
4872                                                 164411
4873                                                 150910
4874                                                 133382
4875                                                 113028
4876                                                 139669
4877                                                 156284
4878                                                 139662
4879                                                 142027
4880                                                 135623
4881                                                 115876
4882                                                 159758
4883                                                 198011
4884                                                 121478
4885                                                 143015
4886                                                 157618
4887                                                 143704
4888                                                 156699
4889                                                 428248
4890                                                 384448
4891                                                 434567
4892                                                 315956
4893                                                 279334
4894                                                 289774
4895                                                 277735
4896                                                 266345
4897                                                 238699
4898                                                 253164
4899                                                 330213
4900                                                 370423
4901                                                 381993
4902                                                 420077
4903                                                 407814
4904                                                 432472
4905                                                 472090
4906                                                 421584
4907                                                 456755
4908                                                 512843
4909                                                 453623
4910                                                 466095
4911                                                 450896
4912                                                 471698
4913                                                 489099
4914                                                 565018
4915                                                 464446
4916                                                 508036
4917                                                 501159
4918                                                 521409
4919                                                 489338
4920                                                 488201
4921                                                 438310
4922                                                 569710
4923                                                 481861
4924                                                 529818
4925                                                 448082
4926                                                 459343
4927                                                 488548
4928                                                 458899
4929                                                 404736
4930                                                 441334
4931                                                 443387
4932                                                 439280
4933                                                 419480
4934                                                 447946
4935                                                 796524
4936                                                 434121
4937                                                 409325
4938                                                 437357
4939                                                 434239
4940                                                 512118
4941                                                 473730
4942                                                 437171
4943                                                 505123
4944                                                 499144
4945                                                 392291
4946                                                 369682
4947                                                 353829
4948                                                 292300
4949                                                 270942
4950                                                 366027
4951                                                 443368
4952                                                 473047
4953                                                 534802
4954                                                 566090
4955                                                 457197
4956                                                 498556
4957                                                 550757
4958                                                 620041
4959                                                 578630
4960                                                 499056
4961                                                 534956
4962                                                 522679
4963                                                 526657
4964                                                 519568
4965                                                 604082
4966                                                 613006
4967                                                 595918
4968                                                 573831
4969                                                 596635
4970                                                 661160
4971                                                 576543
4972                                                 569349
4973                                                 553707
4974                                                 649503
4975                                                 679213
4976                                                 623487
4977                                                 621350
4978                                                 589695
4979                                                 527115
4980                                                 615581
4981                                                 649914
4982                                                 567953
4983                                                 627398
4984                                                 585694
4985                                                 592198
4986                                                 595415
4987                                                 917661
4988                                                 643327
4989                                                 564638
4990                                                 561713
4991                                                 578611
4992                                                 719750
4993                                                 690027
4994                                                 643518
4995                                                 655428
4996                                                 542857
4997                                                 488378
4998                                                 510752
4999                                                 506544
5000                                                 492505
5001                                                 477938
5002                                                 411874
5003                                                 590535
5004                                                 673082
5005                                                 731994
5006                                                 860547
5007                                                 813576
5008                                                 862732
5009                                                 850104
5010                                                 812411
5011                                                 825338
5012                                                1114834
5013                                                 753570
5014                                                 814505
5015                                                 817357
5016                                                 804072
5017                                                 842732
5018                                                 891917
5019                                                 749555
5020                                                 800921
5021                                                 770382
5022                                                 899154
5023                                                 891069
5024                                                 817923
5025                                                 772065
5026                                                 961335
5027                                                1001227
5028                                                1017426
5029                                                 786423
5030                                                 765652
5031                                                 849740
5032                                                 716020
5033                                                 739578
5034                                                 714002
5035                                                 817240
5036                                                 824093
5037                                                 799826
5038                                                 696959
5039                                                1355047
5040                                                 805039
5041                                                 844417
5042                                                 732861
5043                                                 765840
5044                                                 918799
5045                                                 475144
5046                                                 459323
5047                                                 809404
5048                                                 531803
5049                                                 383269
5050                                                 447760
5051                                                 472868
5052                                                 446970
5053                                                 368056
5054                                                 619599
5055                                                 618367
5056                                                 556875
5057                                                 917140
5058                                                 655426
5059                                                 586212
5060                                                 644049
5061                                                 563852
5062                                                 592604
5063                                                 605653
5064                                                 591638
5065                                                 619209
5066                                                 595856
5067                                                 581023
5068                                                 639853
5069                                                 628610
5070                                                 663580
5071                                                 638550
5072                                                 677710
5073                                                 666341
5074                                                 866343
5075                                                 771236
5076                                                 726065
5077                                                 844349
5078                                                1007801
5079                                                 858037
5080                                                 752138
5081                                                 862451
5082                                                 728447
5083                                                 793188
5084                                                 781582
5085                                                 596111
5086                                                 712808
5087                                                 782395
5088                                                 737516
5089                                                 755726
5090                                                 593652
5091                                                1040955
5092                                                 666670
5093                                                 726079
5094                                                 788935
5095                                                 831912
5096                                                 814296
5097                                                 308343
5098                                                 269691
5099                                                 243555
5100                                                 304040
5101                                                 229072
5102                                                 246915
5103                                                 255288
5104                                                 222378
5105                                                 227994
5106                                                 260446
5107                                                 281240
5108                                                 262765
5109                                                 301002
5110                                                 327724
5111                                                 331549
5112                                                 341888
5113                                                 419927
5114                                                 352298
5115                                                 381549
5116                                                 389639
5117                                                 362626
5118                                                 344491
5119                                                 336674
5120                                                 336050
5121                                                 389300
5122                                                 515793
5123                                                 367779
5124                                                 451742
5125                                                 357902
5126                                                 416168
5127                                                 441398
5128                                                 343576
5129                                                 422276
5130                                                 504149
5131                                                 591963
5132                                                 420067
5133                                                 370691
5134                                                 397991
5135                                                 340565
5136                                                 315024
5137                                                 331531
5138                                                 414943
5139                                                 325787
5140                                                 387740
5141                                                 302654
5142                                                 342705
5143                                                 593760
5144                                                 312455
5145                                                 317032
5146                                                 287599
5147                                                 322435
5148                                                 319228
5149                                                5630042
5150                                                5483208
5151                                                5031207
5152                                                5584115
5153                                                4064847
5154                                                4150511
5155                                                4224677
5156                                                4214624
5157                                                3733135
5158                                                4477595
5159                                                4967651
5160                                                5416592
5161                                                5006660
5162                                                5344837
5163                                                6130654
5164                                                6236079
5165                                                6802635
5166                                                5775722
5167                                                5682047
5168                                                5385035
5169                                                5647940
5170                                                5130900
5171                                                5528475
5172                                                5449442
5173                                                5646460
5174                                                6494533
5175                                                6046264
5176                                                6005535
5177                                                6195285
5178                                                6351401
5179                                                6239677
5180                                                6680323
5181                                                6728121
5182                                                7281887
5183                                                6953489
5184                                                6893901
5185                                                6657074
5186                                                6414263
5187                                                6154503
5188                                                6553309
5189                                                6276765
5190                                                5894070
5191                                                5848141
5192                                                5698454
5193                                                5108381
5194                                                6349602
5195                                                7606352
5196                                                5850128
5197                                                3898235
5198                                                5735627
5199                                                5647635
5200                                                5693942
5201                                                3722102
5202                                                3413411
5203                                                2648135
5204                                                3941512
5205                                                2408199
5206                                                2670426
5207                                                2819889
5208                                                2590998
5209                                                2502553
5210                                                2704876
5211                                                3233029
5212                                                2885138
5213                                                3106953
5214                                                3266161
5215                                                3403999
5216                                                3431698
5217                                                4804279
5218                                                3580022
5219                                                3716887
5220                                                4230675
5221                                                3419326
5222                                                3329109
5223                                                3381733
5224                                                3408143
5225                                                3646869
5226                                                5432817
5227                                                3619364
5228                                                4665537
5229                                                3393712
5230                                                4563745
5231                                                4829487
5232                                                3416062
5233                                                5002102
5234                                                4651540
5235                                                6415228
5236                                                5062465
5237                                                3673261
5238                                                4792907
5239                                                3507226
5240                                                3242246
5241                                                3304401
5242                                                4688502
5243                                                3161231
5244                                                4740050
5245                                                3068786
5246                                                3234338
5247                                                6847219
5248                                                3318110
5249                                                3895845
5250                                                2913810
5251                                                4132192
5252                                                3280451
5253                                                  69055
5254                                                  78378
5255                                                  91423
5256                                                  59511
5257                                                  49762
5258                                                  81018
5259                                                  99461
5260                                                  61366
5261                                                  51300
5262                                                  79478
5263                                                  68850
5264                                                  76242
5265                                                 131585
5266                                                  86854
5267                                                  74748
5268                                                  83096
5269                                                  83576
5270                                                  83628
5271                                                  87249
5272                                                  83933
5273                                                  89531
5274                                                  83903
5275                                                  82617
5276                                                  92387
5277                                                  90751
5278                                                  97365
5279                                                  90302
5280                                                  91555
5281                                                  93820
5282                                                 125934
5283                                                 109604
5284                                                 100553
5285                                                 111994
5286                                                 127403
5287                                                 116348
5288                                                  95661
5289                                                 131734
5290                                                 103999
5291                                                  98398
5292                                                 110616
5293                                                  83458
5294                                                  94531
5295                                                 101869
5296                                                  92596
5297                                                 112075
5298                                                  81626
5299                                                 154733
5300                                                  88041
5301                                                  89537
5302                                                 100754
5303                                                 111605
5304                                                 113049
5305                                                 132034
5306                                                 137885
5307                                                 117573
5308                                                 118176
5309                                                 100424
5310                                                  99931
5311                                                 128094
5312                                                 139698
5313                                                 128966
5314                                                 184407
5315                                                 124201
5316                                                 125600
5317                                                 140030
5318                                                 165888
5319                                                 147518
5320                                                 182676
5321                                                 151456
5322                                                 133189
5323                                                 184061
5324                                                 230730
5325                                                 268010
5326                                                 214273
5327                                                 255733
5328                                                 261737
5329                                                 314848
5330                                                 348135
5331                                                 236900
5332                                                 254403
5333                                                 251350
5334                                                 284149
5335                                                 245482
5336                                                 279392
5337                                                 290604
5338                                                 263364
5339                                                 256180
5340                                                 233321
5341                                                 197201
5342                                                 218755
5343                                                 179485
5344                                                 156455
5345                                                 195882
5346                                                 172599
5347                                                 185570
5348                                                 173283
5349                                                 207339
5350                                                 165071
5351                                                 271355
5352                                                 219444
5353                                                 167620
5354                                                 167689
5355                                                 218461
5356                                                 213437
5357                                                  46036
5358                                                  42030
5359                                                  41911
5360                                                  50831
5361                                                  33758
5362                                                  38599
5363                                                  39271
5364                                                  38869
5365                                                  33700
5366                                                  56428
5367                                                  55054
5368                                                  69594
5369                                                  53796
5370                                                  61352
5371                                                  55922
5372                                                  60993
5373                                                  51793
5374                                                  71712
5375                                                  58498
5376                                                  60212
5377                                                  60524
5378                                                  68311
5379                                                  56952
5380                                                  66907
5381                                                  84386
5382                                                  85205
5383                                                  84340
5384                                                  78212
5385                                                  79669
5386                                                  80015
5387                                                  82174
5388                                                  72636
5389                                                  71440
5390                                                  85624
5391                                                  83408
5392                                                  68819
5393                                                  70543
5394                                                  62892
5395                                                  58862
5396                                                  72427
5397                                                  72561
5398                                                  71224
5399                                                  64867
5400                                                  64337
5401                                                  65393
5402                                                  65766
5403                                                  90935
5404                                                  70175
5405                                                  64280
5406                                                  70135
5407                                                  57677
5408                                                  69201
5409                                                 445441
5410                                                 412891
5411                                                 289765
5412                                                 500796
5413                                                 265591
5414                                                 279595
5415                                                 323761
5416                                                 284328
5417                                                 265332
5418                                                 281816
5419                                                 371149
5420                                                 337370
5421                                                 323324
5422                                                 349976
5423                                                 344938
5424                                                 338519
5425                                                 560691
5426                                                 378818
5427                                                 390053
5428                                                 452076
5429                                                 362836
5430                                                 330278
5431                                                 353863
5432                                                 376275
5433                                                 359347
5434                                                 613098
5435                                                 361182
5436                                                 497271
5437                                                 311069
5438                                                 485003
5439                                                 532427
5440                                                 327249
5441                                                 522135
5442                                                 493629
5443                                                 741725
5444                                                 566118
5445                                                 387924
5446                                                 549366
5447                                                 402546
5448                                                 342762
5449                                                 326332
5450                                                 527218
5451                                                 331997
5452                                                 569349
5453                                                 321996
5454                                                 329879
5455                                                 822549
5456                                                 391267
5457                                                 503528
5458                                                 304269
5459                                                 519360
5460                                                 375549
5461                                               30287854
5462                                               29583883
5463                                               30093541
5464                                               31621222
5465                                               22923063
5466                                               24989703
5467                                               24075126
5468                                               22534698
5469                                               21009730
5470                                               24753514
5471                                               27707047
5472                                               28857582
5473                                               29615008
5474                                               30305113
5475                                               31346091
5476                                               34126731
5477                                               37130689
5478                                               33993931
5479                                               33592098
5480                                               34386177
5481                                               33819909
5482                                               31201590
5483                                               32339377
5484                                               32656124
5485                                               35567568
5486                                               39993186
5487                                               36617024
5488                                               38489936
5489                                               35580820
5490                                               40231260
5491                                               40019075
5492                                               36958036
5493                                               39914997
5494                                               46324530
5495                                               42867609
5496                                               39607695
5497                                               37467885
5498                                               36584029
5499                                               33668451
5500                                               35930196
5501                                               36335484
5502                                               36374516
5503                                               35064506
5504                                               36801818
5505                                               32804733
5506                                               36476442
5507                                               52288698
5508                                               34721250
5509                                               32787079
5510                                               34426342
5511                                               35264336
5512                                               38142088
5513                                                5720080
5514                                                5618429
5515                                                6648834
5516                                                5919532
5517                                                4187551
5518                                                4944374
5519                                                4864100
5520                                                4245702
5521                                                3852440
5522                                                4760018
5523                                                5308225
5524                                                5374797
5525                                                6079587
5526                                                5338133
5527                                                5474122
5528                                                6097780
5529                                                6676702
5530                                                6114188
5531                                                6290165
5532                                                6127060
5533                                                6596769
5534                                                5463800
5535                                                5556043
5536                                                5787378
5537                                                6487363
5538                                                6817643
5539                                                6862241
5540                                                6964846
5541                                                6216040
5542                                                7637424
5543                                                7568132
5544                                                6642112
5545                                                7486622
5546                                                8706859
5547                                                7158301
5548                                                6746175
5549                                                7592474
5550                                                7275843
5551                                                6645739
5552                                                7081399
5553                                                6938295
5554                                                6725483
5555                                                6903293
5556                                                7193897
5557                                                7047624
5558                                                6774726
5559                                                9718439
5560                                                6331954
5561                                                6118107
5562                                                7221572
5563                                                7438253
5564                                                7707712
5565                                                 867993
5566                                                 790790
5567                                                 776454
5568                                                 699172
5569                                                 674185
5570                                                 670051
5571                                                 690821
5572                                                 643631
5573                                                 474481
5574                                                 620389
5575                                                 902725
5576                                                 732830
5577                                                 605034
5578                                                 598623
5579                                                 749931
5580                                                1012039
5581                                                 863039
5582                                                 789224
5583                                                 808013
5584                                                 798987
5585                                                 816529
5586                                                 708243
5587                                                 797994
5588                                                 802834
5589                                                 979054
5590                                                1026318
5591                                                1028846
5592                                                1048148
5593                                                 916959
5594                                                1030393
5595                                                 985834
5596                                                 857842
5597                                                 901217
5598                                                1052940
5599                                                 926206
5600                                                 859293
5601                                                 944338
5602                                                 897756
5603                                                 776233
5604                                                 936601
5605                                                 932377
5606                                                 886198
5607                                                 814615
5608                                                 824073
5609                                                 840913
5610                                                 963047
5611                                                1198680
5612                                                 788832
5613                                                 296403
5614                                                 712937
5615                                                 781037
5616                                                 761761
5617                                                 113514
5618                                                  77039
5619                                                  70678
5620                                                  92326
5621                                                 139970
5622                                                  62977
5623                                                  97273
5624                                                 113586
5625                                                  71077
5626                                                  69432
5627                                                  69704
5628                                                  73575
5629                                                  55369
5630                                                  71205
5631                                                  68540
5632                                                  80109
5633                                                  99646
5634                                                  74298
5635                                                  75472
5636                                                  74620
5637                                                 133070
5638                                                  92938
5639                                                  83600
5640                                                  84417
5641                                                 102462
5642                                                 101331
5643                                                  98282
5644                                                  89303
5645                                                  97079
5646                                                  91949
5647                                                  84843
5648                                                 121869
5649                                                 100257
5650                                                  96751
5651                                                 127193
5652                                                 124926
5653                                                  89327
5654                                                  90487
5655                                                 105436
5656                                                  92621
5657                                                 122952
5658                                                  92775
5659                                                  95713
5660                                                 107354
5661                                                  88371
5662                                                  95475
5663                                                  97216
5664                                                 183549
5665                                                  95425
5666                                                 128679
5667                                                  88526
5668                                                  91728
5669                                                 129948
5670                                                 649353
5671                                                 444782
5672                                                 484327
5673                                                 543619
5674                                                 504933
5675                                                 412213
5676                                                 453755
5677                                                 518209
5678                                                 567573
5679                                                 493921
5680                                                 406009
5681                                                 406111
5682                                                 411520
5683                                                 421235
5684                                                 403780
5685                                                 392935
5686                                                 466989
5687                                                 433455
5688                                                 458036
5689                                                 475922
5690                                                 534059
5691                                                 518140
5692                                                 472013
5693                                                 518683
5694                                                 582069
5695                                                 507338
5696                                                 528298
5697                                                 501274
5698                                                 492836
5699                                                 572839
5700                                                 710039
5701                                                 523994
5702                                                 526840
5703                                                 568924
5704                                                 726727
5705                                                 595540
5706                                                 530031
5707                                                 543228
5708                                                 465350
5709                                                 481934
5710                                                 443515
5711                                                 460991
5712                                                 469278
5713                                                 511363
5714                                                 631508
5715                                                 563019
5716                                                 666871
5717                                                 888095
5718                                                 627696
5719                                                 755472
5720                                                 557378
5721                                                 601546
5722                                                 547566
5723                                                 849488
5724                                                 624269
5725                                                 628735
5726                                                 940851
5727                                                 658939
5728                                                 629719
5729                                                 644740
5730                                                 658693
5731                                                 736468
5732                                                 682237
5733                                                 672067
5734                                                 667770
5735                                                 598837
5736                                                 705452
5737                                                 676499
5738                                                 664502
5739                                                 660104
5740                                                 671505
5741                                                 653599
5742                                                 691636
5743                                                 697321
5744                                                 695849
5745                                                 655426
5746                                                 692873
5747                                                 670476
5748                                                 701870
5749                                                 672614
5750                                                 693972
5751                                                 713471
5752                                                 744159
5753                                                 757910
5754                                                 779184
5755                                                 750140
5756                                                 731953
5757                                                1097981
5758                                                 761925
5759                                                 749187
5760                                                 717940
5761                                                 738255
5762                                                 800802
5763                                                 739376
5764                                                 738957
5765                                                 763784
5766                                                 880326
5767                                                 814377
5768                                                 721257
5769                                                 925575
5770                                                1170445
5771                                                 781539
5772                                                 826942
5773                                                 749511
5774                                                1029280
5775                                                 631761
5776                                                  79647
5777                                                  71004
5778                                                  65090
5779                                                  85496
5780                                                  86646
5781                                                  54681
5782                                                  60602
5783                                                  81827
5784                                                  81105
5785                                                  68521
5786                                                  83843
5787                                                  58062
5788                                                  56087
5789                                                  58603
5790                                                  56672
5791                                                  65336
5792                                                  66479
5793                                                  64355
5794                                                  93804
5795                                                  88031
5796                                                  70717
5797                                                  73710
5798                                                  72021
5799                                                  70784
5800                                                  72245
5801                                                 125786
5802                                                  97408
5803                                                  95071
5804                                                  92906
5805                                                  92547
5806                                                  98460
5807                                                 100416
5808                                                  86533
5809                                                  94466
5810                                                 121483
5811                                                 109119
5812                                                  93656
5813                                                  99411
5814                                                  95508
5815                                                  94905
5816                                                  95293
5817                                                  86727
5818                                                 112776
5819                                                  93814
5820                                                 105024
5821                                                 107722
5822                                                  97785
5823                                                 136091
5824                                                 105133
5825                                                  88318
5826                                                  94156
5827                                                 103788
5828                                                 104510
5829                                                 419697
5830                                                 414148
5831                                                 516771
5832                                                 687252
5833                                                 488588
5834                                                 423778
5835                                                 476236
5836                                                 639092
5837                                                 440972
5838                                                 465106
5839                                                 435244
5840                                                 418234
5841                                                 451609
5842                                                 482272
5843                                                 498020
5844                                                 462797
5845                                                 524513
5846                                                 457862
5847                                                 455915
5848                                                 474982
5849                                                 624419
5850                                                 604759
5851                                                 568256
5852                                                 686735
5853                                                 594016
5854                                                 560022
5855                                                 545128
5856                                                 545889
5857                                                 581303
5858                                                 583709
5859                                                 590580
5860                                                 602638
5861                                                 572421
5862                                                 610348
5863                                                 676850
5864                                                 603284
5865                                                 520793
5866                                                 592050
5867                                                 629799
5868                                                 571902
5869                                                 550949
5870                                                 540541
5871                                                 495118
5872                                                 620308
5873                                                 599178
5874                                                 521125
5875                                                 791126
5876                                                 772110
5877                                                 604106
5878                                                 663735
5879                                                 577977
5880                                                 730358
5881                                                 458830
5882                                                 115508
5883                                                 127375
5884                                                 108352
5885                                                 127279
5886                                                 153282
5887                                                 102658
5888                                                 112445
5889                                                 118434
5890                                                 115631
5891                                                 121815
5892                                                  90911
5893                                                  86881
5894                                                 102625
5895                                                  96292
5896                                                 121502
5897                                                 140653
5898                                                 142197
5899                                                 135280
5900                                                 147840
5901                                                 142109
5902                                                 144619
5903                                                 155635
5904                                                 146069
5905                                                 148098
5906                                                 144762
5907                                                 166852
5908                                                 144309
5909                                                 115902
5910                                                 129735
5911                                                 114082
5912                                                 145204
5913                                                 160484
5914                                                 139635
5915                                                 152143
5916                                                 174746
5917                                                 178864
5918                                                 147244
5919                                                 166089
5920                                                 172946
5921                                                 167365
5922                                                 156788
5923                                                 151459
5924                                                 165975
5925                                                 140469
5926                                                 122294
5927                                                 109809
5928                                                 135287
5929                                                 188582
5930                                                 163137
5931                                                 160925
5932                                                 168231
5933                                                 158267
5934                                                 105349
5935                                                7132711
5936                                                5346536
5937                                                6205211
5938                                                5715712
5939                                                5544556
5940                                                4392810
5941                                                4782021
5942                                                5637795
5943                                                5663439
5944                                                5714677
5945                                                4420877
5946                                                4066641
5947                                                4151444
5948                                                3870633
5949                                                3937001
5950                                                4167531
5951                                                4380657
5952                                                4648718
5953                                                4360014
5954                                                4524975
5955                                                5862368
5956                                                5655955
5957                                                5571001
5958                                                5188483
5959                                                5405190
5960                                                6499668
5961                                                6607293
5962                                                6999256
5963                                                6599049
5964                                                6177216
5965                                                6507094
5966                                                6160752
5967                                                5599003
5968                                                6370622
5969                                                7872203
5970                                                5889669
5971                                                5637300
5972                                                5442086
5973                                                6249183
5974                                                5719811
5975                                                5073071
5976                                                5328958
5977                                                5208102
5978                                                5634150
5979                                                6342090
5980                                                6194369
5981                                                6862177
5982                                               11213596
5983                                                8055482
5984                                                8153340
5985                                                6656554
5986                                                6653048
5987                                                7175277
5988                                                 346357
5989                                                 182538
5990                                                 189529
5991                                                 277529
5992                                                 220837
5993                                                 170412
5994                                                 179011
5995                                                 190445
5996                                                 187381
5997                                                 183225
5998                                                 168237
5999                                                 175323
6000                                                 178992
6001                                                 180280
6002                                                 186924
6003                                                 192447
6004                                                 187823
6005                                                 200901
6006                                                 208438
6007                                                 212479
6008                                                 209771
6009                                                 206494
6010                                                 212608
6011                                                 215464
6012                                                 209534
6013                                                 222027
6014                                                 224816
6015                                                 211640
6016                                                 201838
6017                                                 224289
6018                                                 226423
6019                                                 237364
6020                                                 227842
6021                                                 224627
6022                                                 303552
6023                                                 235699
6024                                                 220970
6025                                                 203220
6026                                                 201299
6027                                                 231428
6028                                                 225272
6029                                                 206733
6030                                                 207026
6031                                                 202553
6032                                                 241553
6033                                                 198558
6034                                                 206762
6035                                                 359702
6036                                                 213609
6037                                                 247755
6038                                                 196898
6039                                                 219339
6040                                                 217052
6041                                                1182648
6042                                                 707646
6043                                                 620054
6044                                                1021445
6045                                                 654739
6046                                                 506394
6047                                                 555872
6048                                                 541010
6049                                                 538967
6050                                                 551606
6051                                                 519814
6052                                                 546056
6053                                                 516321
6054                                                 537709
6055                                                 551896
6056                                                 553215
6057                                                 590590
6058                                                 614460
6059                                                 624618
6060                                                 674811
6061                                                 640354
6062                                                 692141
6063                                                 735266
6064                                                 752799
6065                                                 801888
6066                                                 880107
6067                                                 943747
6068                                                 868771
6069                                                 862383
6070                                                 807370
6071                                                 776195
6072                                                 781086
6073                                                 764241
6074                                                 792533
6075                                                 976085
6076                                                 787324
6077                                                 719368
6078                                                 742675
6079                                                 699592
6080                                                 676301
6081                                                 656875
6082                                                 678898
6083                                                 665365
6084                                                 680803
6085                                                 674827
6086                                                 728402
6087                                                 874350
6088                                                1621254
6089                                                 830499
6090                                                 845066
6091                                                 776821
6092                                                 822522
6093                                                 803349
6094                                                 278128
6095                                                 159238
6096                                                 169220
6097                                                 234297
6098                                                 302992
6099                                                 165103
6100                                                 247158
6101                                                 324830
6102                                                 320427
6103                                                 233003
6104                                                 181203
6105                                                 182275
6106                                                 170366
6107                                                 183684
6108                                                 182715
6109                                                 184435
6110                                                 210181
6111                                                 212628
6112                                                 253877
6113                                                 307618
6114                                                 261154
6115                                                 236485
6116                                                 213593
6117                                                 215668
6118                                                 218147
6119                                                 255254
6120                                                 336087
6121                                                 337212
6122                                                 281486
6123                                                 365009
6124                                                 337444
6125                                                 303443
6126                                                 260725
6127                                                 313989
6128                                                 538519
6129                                                 242717
6130                                                 205401
6131                                                 261398
6132                                                 215850
6133                                                 290570
6134                                                 221215
6135                                                 263838
6136                                                 284998
6137                                                 272988
6138                                                 282345
6139                                                 303146
6140                                                 320493
6141                                                 411451
6142                                                 325945
6143                                                 380429
6144                                                 346524
6145                                                 285027
6146                                                 329279
6147                                                 221204
6148                                                 140322
6149                                                 162900
6150                                                 149627
6151                                                 194796
6152                                                 126378
6153                                                 169553
6154                                                 196433
6155                                                 222749
6156                                                 165261
6157                                                 111491
6158                                                 109665
6159                                                 103123
6160                                                 118344
6161                                                 120873
6162                                                 120601
6163                                                 135633
6164                                                 127613
6165                                                 176231
6166                                                 211280
6167                                                 151390
6168                                                 194759
6169                                                 170792
6170                                                 137783
6171                                                 150749
6172                                                 240071
6173                                                 276442
6174                                                 243936
6175                                                 304248
6176                                                 181254
6177                                                 196391
6178                                                 182566
6179                                                 180284
6180                                                 210349
6181                                                 276422
6182                                                 199643
6183                                                 166919
6184                                                 242721
6185                                                 225844
6186                                                 174976
6187                                                 153513
6188                                                 136371
6189                                                 140126
6190                                                 166170
6191                                                 186429
6192                                                 159055
6193                                                 226525
6194                                                 323031
6195                                                 163085
6196                                                 197073
6197                                                 200226
6198                                                 226220
6199                                                 218882
6200                                                1116393
6201                                                1060457
6202                                                1084068
6203                                                1288281
6204                                                1199422
6205                                                 898548
6206                                                 958421
6207                                                1054327
6208                                                1142500
6209                                                1071346
6210                                                1037930
6211                                                 884631
6212                                                 919709
6213                                                 893388
6214                                                 946384
6215                                                 982833
6216                                                 997275
6217                                                1043009
6218                                                1090966
6219                                                1163467
6220                                                1263766
6221                                                1253538
6222                                                1154234
6223                                                1197803
6224                                                1219893
6225                                                1514500
6226                                                1378564
6227                                                1327166
6228                                                1441941
6229                                                1361775
6230                                                1325912
6231                                                1386906
6232                                                1291606
6233                                                1292072
6234                                                1473847
6235                                                1407491
6236                                                1496362
6237                                                1517179
6238                                                1337047
6239                                                1372248
6240                                                1282797
6241                                                1153699
6242                                                1170641
6243                                                1105083
6244                                                1372811
6245                                                1177313
6246                                                1422346
6247                                                1772502
6248                                                1306293
6249                                                1382965
6250                                                1389717
6251                                                1247489
6252                                                1336539
6253                                                 938482
6254                                                 675593
6255                                                 646737
6256                                                 886842
6257                                                 849840
6258                                                 543243
6259                                                 701022
6260                                                 847836
6261                                                 934571
6262                                                 783939
6263                                                 638994
6264                                                 537139
6265                                                 537933
6266                                                 605235
6267                                                 499762
6268                                                 557213
6269                                                 585138
6270                                                 588489
6271                                                 896083
6272                                                 877603
6273                                                 635905
6274                                                 638889
6275                                                 787192
6276                                                 971351
6277                                                 642837
6278                                                 951407
6279                                                 813544
6280                                                 841763
6281                                                 890723
6282                                                 872408
6283                                                 895595
6284                                                 835834
6285                                                 750701
6286                                                 781305
6287                                                 904099
6288                                                 703503
6289                                                 766942
6290                                                 813467
6291                                                 704360
6292                                                 681541
6293                                                 630932
6294                                                 678003
6295                                                 673601
6296                                                 639567
6297                                                 782245
6298                                                 799071
6299                                                 821592
6300                                                1258953
6301                                                 887964
6302                                                 906838
6303                                                 808772
6304                                                 844690
6305                                                 959369
6306                                                 467584
6307                                                 298146
6308                                                 369197
6309                                                 311950
6310                                                 515907
6311                                                 229292
6312                                                 353938
6313                                                 432903
6314                                                 426643
6315                                                 316277
6316                                                 230385
6317                                                 205379
6318                                                 208300
6319                                                 215840
6320                                                 234793
6321                                                 231672
6322                                                 251098
6323                                                 234930
6324                                                 304000
6325                                                 388251
6326                                                 286679
6327                                                 400746
6328                                                 339850
6329                                                 267254
6330                                                 385967
6331                                                 502775
6332                                                 392514
6333                                                 402915
6334                                                 668936
6335                                                 315241
6336                                                 361513
6337                                                 361906
6338                                                 307674
6339                                                 445351
6340                                                 625476
6341                                                 324983
6342                                                 295788
6343                                                 342546
6344                                                 284715
6345                                                 288639
6346                                                 289107
6347                                                 262116
6348                                                 238211
6349                                                 383171
6350                                                 540316
6351                                                 311271
6352                                                 475603
6353                                                 797700
6354                                                 381506
6355                                                 616590
6356                                                 397116
6357                                                 470644
6358                                                 480613
6359                                                 202635
6360                                                 130736
6361                                                 162923
6362                                                 107019
6363                                                 301527
6364                                                  96700
6365                                                 139279
6366                                                 110784
6367                                                 103716
6368                                                 138190
6369                                                  97132
6370                                                  94072
6371                                                  86754
6372                                                  97412
6373                                                 113273
6374                                                 100499
6375                                                 111734
6376                                                 127148
6377                                                 112023
6378                                                 124909
6379                                                 125213
6380                                                 167235
6381                                                 127603
6382                                                 136088
6383                                                 169838
6384                                                 178186
6385                                                 192007
6386                                                 142258
6387                                                 245293
6388                                                 158876
6389                                                 162051
6390                                                 165719
6391                                                 148499
6392                                                 151273
6393                                                 254983
6394                                                 157869
6395                                                 146024
6396                                                 175862
6397                                                 144361
6398                                                 140630
6399                                                 149480
6400                                                 141712
6401                                                 129821
6402                                                 128204
6403                                                 238305
6404                                                 141776
6405                                                 176590
6406                                                 391314
6407                                                 168252
6408                                                 322367
6409                                                 166158
6410                                                 174079
6411                                                 306129
6412                                                4398888
6413                                                2860693
6414                                                3023286
6415                                                3258081
6416                                                3837027
6417                                                2254700
6418                                                2983690
6419                                                3284210
6420                                                3225072
6421                                                2739607
6422                                                2247857
6423                                                2221614
6424                                                2063574
6425                                                2289169
6426                                                2415482
6427                                                2358162
6428                                                2589500
6429                                                2638912
6430                                                2973144
6431                                                3378088
6432                                                2971011
6433                                                3357719
6434                                                3127451
6435                                                3014559
6436                                                3372298
6437                                                4104371
6438                                                4250394
6439                                                3938985
6440                                                4668135
6441                                                3714238
6442                                                3649478
6443                                                3562841
6444                                                3415474
6445                                                3901826
6446                                                5308891
6447                                                3584135
6448                                                3193270
6449                                                3543152
6450                                                3149013
6451                                                3081036
6452                                                3002196
6453                                                2975357
6454                                                2883467
6455                                                3197342
6456                                                3848716
6457                                                3184222
6458                                                4129136
6459                                                6575187
6460                                                3799154
6461                                                4696372
6462                                                3893221
6463                                                4067135
6464                                                4225245
6465                                                 195897
6466                                                 217968
6467                                                 196746
6468                                                 274939
6469                                                 231977
6470                                                 191490
6471                                                 216608
6472                                                 201442
6473                                                 191460
6474                                                 203027
6475                                                 206115
6476                                                 205859
6477                                                 164700
6478                                                 213952
6479                                                 209982
6480                                                 189036
6481                                                 180875
6482                                                 212829
6483                                                 214056
6484                                                 212935
6485                                                 238230
6486                                                 235903
6487                                                 222759
6488                                                 224207
6489                                                 224435
6490                                                 237447
6491                                                 226115
6492                                                 222447
6493                                                 238389
6494                                                 232729
6495                                                 247060
6496                                                 275488
6497                                                 244639
6498                                                 239037
6499                                                 301181
6500                                                 268832
6501                                                 225682
6502                                                 261861
6503                                                 251676
6504                                                 239413
6505                                                 254599
6506                                                 243266
6507                                                 245928
6508                                                 273485
6509                                                 260743
6510                                                 224541
6511                                                 276755
6512                                                 348381
6513                                                 267918
6514                                                 266852
6515                                                 251547
6516                                                 275065
6517                                                 235430
6518                                                 245203
6519                                                 225991
6520                                                 228292
6521                                                 447122
6522                                                 231210
6523                                                 229399
6524                                                 264765
6525                                                 226866
6526                                                 240616
6527                                                 247946
6528                                                 244786
6529                                                 236604
6530                                                 217988
6531                                                 250058
6532                                                 228616
6533                                                 222593
6534                                                 243134
6535                                                 224636
6536                                                 220520
6537                                                 223619
6538                                                 263625
6539                                                 262304
6540                                                 258166
6541                                                 264308
6542                                                 265616
6543                                                 273060
6544                                                 259783
6545                                                 275913
6546                                                 256901
6547                                                 296174
6548                                                 288517
6549                                                 304341
6550                                                 279086
6551                                                 285282
6552                                                 369500
6553                                                 300312
6554                                                 267469
6555                                                 257405
6556                                                 284522
6557                                                 269091
6558                                                 270399
6559                                                 253838
6560                                                 248806
6561                                                 373924
6562                                                 259319
6563                                                 249028
6564                                                 395980
6565                                                 486542
6566                                                 292710
6567                                                 332672
6568                                                 284386
6569                                                 369469
6570                                                 232664
6571                                                1391182
6572                                                1063385
6573                                                 928717
6574                                                1266365
6575                                                1398400
6576                                                 991547
6577                                                1142126
6578                                                1256897
6579                                                1363261
6580                                                1126403
6581                                                1008358
6582                                                1029556
6583                                                1042701
6584                                                 991939
6585                                                 949770
6586                                                 964460
6587                                                1138316
6588                                                 852111
6589                                                1109914
6590                                                1096228
6591                                                1332233
6592                                                1192889
6593                                                1117346
6594                                                1088793
6595                                                1143311
6596                                                1513597
6597                                                1348652
6598                                                1352319
6599                                                1755331
6600                                                1240308
6601                                                1377530
6602                                                1315259
6603                                                1262476
6604                                                1444023
6605                                                1789052
6606                                                1832450
6607                                                1776221
6608                                                1402905
6609                                                1244695
6610                                                1543050
6611                                                1074521
6612                                                1016537
6613                                                 903586
6614                                                1110896
6615                                                1547337
6616                                                1190709
6617                                                1420811
6618                                                1977924
6619                                                1258481
6620                                                1119168
6621                                                1613160
6622                                                1417208
6623                                                1475741
6624                                                 205203
6625                                                 148389
6626                                                 143976
6627                                                 167891
6628                                                 182891
6629                                                 115688
6630                                                 178437
6631                                                 202129
6632                                                 194103
6633                                                 152558
6634                                                 125746
6635                                                 120663
6636                                                 105044
6637                                                 129000
6638                                                 135854
6639                                                 126434
6640                                                 139315
6641                                                 145552
6642                                                 179854
6643                                                 174633
6644                                                 154354
6645                                                 170537
6646                                                 159525
6647                                                 155197
6648                                                 166601
6649                                                 209048
6650                                                 194572
6651                                                 197095
6652                                                 223222
6653                                                 224874
6654                                                 218092
6655                                                 188284
6656                                                 185609
6657                                                 268519
6658                                                 290015
6659                                                 212879
6660                                                 211978
6661                                                 205430
6662                                                 160389
6663                                                 166588
6664                                                 181489
6665                                                 168331
6666                                                 149318
6667                                                 150302
6668                                                 188900
6669                                                 179250
6670                                                 237576
6671                                                 276052
6672                                                 224036
6673                                                 204571
6674                                                 210794
6675                                                 222849
6676                                                 186465
6677                                                 206563
6678                                                 127182
6679                                                 176847
6680                                                 181426
6681                                                 152697
6682                                                 120001
6683                                                 155729
6684                                                 154511
6685                                                 131679
6686                                                 193937
6687                                                 152419
6688                                                 137504
6689                                                 152742
6690                                                 128593
6691                                                 130571
6692                                                 141726
6693                                                 117343
6694                                                 147242
6695                                                 138021
6696                                                 150829
6697                                                 171996
6698                                                 148238
6699                                                 157712
6700                                                 172994
6701                                                 160177
6702                                                 161865
6703                                                 189413
6704                                                 180200
6705                                                 151013
6706                                                 193088
6707                                                 178357
6708                                                 181588
6709                                                 155819
6710                                                 148326
6711                                                 268808
6712                                                 240228
6713                                                 156138
6714                                                 151863
6715                                                 151364
6716                                                 149670
6717                                                 149813
6718                                                 138402
6719                                                 146197
6720                                                 134582
6721                                                 172502
6722                                                 139950
6723                                                 216367
6724                                                 398544
6725                                                 206655
6726                                                 246515
6727                                                 191122
6728                                                 141693
6729                                                 263730
6730                                                 291923
6731                                                 234520
6732                                                 267988
6733                                                 288441
6734                                                 315521
6735                                                 205033
6736                                                 234265
6737                                                 291325
6738                                                 321534
6739                                                 243340
6740                                                 204095
6741                                                 202736
6742                                                 195455
6743                                                 189529
6744                                                 192285
6745                                                 201029
6746                                                 215393
6747                                                 204092
6748                                                 203948
6749                                                 261684
6750                                                 323794
6751                                                 283779
6752                                                 288906
6753                                                 296887
6754                                                 299859
6755                                                 399827
6756                                                 376796
6757                                                 362490
6758                                                 357696
6759                                                 374212
6760                                                 376990
6761                                                 364487
6762                                                 356922
6763                                                 399525
6764                                                 468976
6765                                                 359011
6766                                                 439665
6767                                                 410850
6768                                                 304604
6769                                                 329723
6770                                                 325735
6771                                                 318004
6772                                                 315445
6773                                                 345890
6774                                                 325905
6775                                                 318601
6776                                                 406866
6777                                                 680235
6778                                                 309146
6779                                                 382851
6780                                                 419687
6781                                                 411219
6782                                                 363865
6783                                                3212262
6784                                                2389829
6785                                                3130916
6786                                                2404222
6787                                                2615853
6788                                                2153918
6789                                                2391383
6790                                                2626121
6791                                                2691241
6792                                                2850377
6793                                                1968639
6794                                                1779831
6795                                                1711267
6796                                                1697029
6797                                                1760610
6798                                                1865690
6799                                                1969052
6800                                                2176974
6801                                                2117127
6802                                                2309866
6803                                                2832850
6804                                                2742628
6805                                                2426028
6806                                                2484918
6807                                                2558156
6808                                                3382975
6809                                                3507156
6810                                                3655667
6811                                                3631322
6812                                                3390851
6813                                                3637221
6814                                                3243909
6815                                                2921917
6816                                                3551403
6817                                                4214313
6818                                                3299258
6819                                                3074226
6820                                                2789630
6821                                                2993247
6822                                                3100355
6823                                                2583324
6824                                                2737872
6825                                                2633575
6826                                                2768931
6827                                                2935078
6828                                                3033918
6829                                                3625631
6830                                                5470227
6831                                                4230449
6832                                                4215553
6833                                                3363408
6834                                                3120962
6835                                                3551337
6836                                                 117941
6837                                                  80024
6838                                                  80191
6839                                                 100073
6840                                                 108947
6841                                                  53796
6842                                                  79284
6843                                                 100811
6844                                                  86085
6845                                                 102915
6846                                                  62179
6847                                                  60617
6848                                                  52866
6849                                                  62181
6850                                                  59541
6851                                                  68830
6852                                                  78605
6853                                                  80371
6854                                                  80466
6855                                                  88644
6856                                                  93448
6857                                                  95141
6858                                                  90429
6859                                                  92486
6860                                                  87217
6861                                                 124946
6862                                                 113659
6863                                                 114003
6864                                                 104370
6865                                                 112254
6866                                                 121603
6867                                                 111487
6868                                                 104440
6869                                                  82245
6870                                                 135487
6871                                                  93663
6872                                                  93503
6873                                                 100090
6874                                                  89926
6875                                                  96963
6876                                                 100036
6877                                                  74388
6878                                                  85005
6879                                                 101061
6880                                                 106098
6881                                                  94779
6882                                                 131966
6883                                                 126829
6884                                                 116310
6885                                                 127598
6886                                                  89361
6887                                                 118311
6888                                                 110696
6889                                                 728999
6890                                                 506569
6891                                                 660738
6892                                                 713866
6893                                                 550215
6894                                                 464647
6895                                                 642013
6896                                                 513109
6897                                                 463171
6898                                                 674789
6899                                                 558315
6900                                                 472075
6901                                                 455832
6902                                                 399837
6903                                                 408852
6904                                                 409206
6905                                                 362582
6906                                                 465052
6907                                                 450205
6908                                                 468515
6909                                                 568798
6910                                                 501155
6911                                                 501002
6912                                                 546834
6913                                                 523618
6914                                                 550195
6915                                                 627569
6916                                                 539847
6917                                                 505828
6918                                                 696603
6919                                                 687914
6920                                                 645769
6921                                                 605721
6922                                                 594781
6923                                                 910239
6924                                                 832704
6925                                                 556944
6926                                                 533442
6927                                                 494094
6928                                                 493611
6929                                                 498987
6930                                                 520938
6931                                                 473866
6932                                                 464211
6933                                                 553804
6934                                                 468267
6935                                                 804977
6936                                                1254201
6937                                                 609721
6938                                                 793514
6939                                                 588482
6940                                                 522278
6941                                                 787406
6942                                                3777193
6943                                                2494315
6944                                                2483818
6945                                                3370522
6946                                                3003104
6947                                                2200251
6948                                                2462798
6949                                                2631186
6950                                                2880937
6951                                                2661900
6952                                                2380544
6953                                                2395915
6954                                                2133166
6955                                                2443800
6956                                                2466210
6957                                                2466839
6958                                                2428140
6959                                                2561784
6960                                                2617108
6961                                                2865414
6962                                                2902605
6963                                                2907564
6964                                                2817092
6965                                                2886538
6966                                                2827404
6967                                                3173372
6968                                                3218962
6969                                                3147519
6970                                                3032871
6971                                                3150788
6972                                                3212276
6973                                                3380162
6974                                                3232305
6975                                                3047596
6976                                                4372729
6977                                                3291328
6978                                                3060396
6979                                                2965083
6980                                                2990138
6981                                                3350939
6982                                                3162601
6983                                                2933076
6984                                                3059010
6985                                                3397986
6986                                                3310530
6987                                                2929352
6988                                                3403724
6989                                                4703681
6990                                                3151000
6991                                                3394184
6992                                                3034320
6993                                                3454820
6994                                                2878968
6995                                                 258730
6996                                                 182003
6997                                                 197844
6998                                                 239588
6999                                                 229337
7000                                                 159826
7001                                                 188444
7002                                                 202631
7003                                                 229240
7004                                                 217724
7005                                                 167136
7006                                                 161020
7007                                                 140968
7008                                                 154957
7009                                                 159412
7010                                                 167440
7011                                                 176082
7012                                                 188702
7013                                                 184465
7014                                                 261758
7015                                                 268656
7016                                                 243526
7017                                                 217775
7018                                                 211384
7019                                                 212211
7020                                                 267297
7021                                                 281067
7022                                                 287218
7023                                                 260893
7024                                                 218540
7025                                                 269102
7026                                                 282671
7027                                                 259152
7028                                                 225324
7029                                                 368797
7030                                                 286322
7031                                                 226088
7032                                                 230566
7033                                                 251090
7034                                                 281439
7035                                                 276733
7036                                                 228023
7037                                                 261830
7038                                                 379324
7039                                                 216227
7040                                                 225664
7041                                                 271394
7042                                                 377720
7043                                                 238393
7044                                                 251190
7045                                                 251915
7046                                                 255094
7047                                                 249075
7048                                                 262282
7049                                                 224870
7050                                                 251754
7051                                                 251601
7052                                                 266547
7053                                                 176817
7054                                                 207295
7055                                                 292987
7056                                                 225563
7057                                                 277438
7058                                                 269443
7059                                                 227947
7060                                                 328830
7061                                                 227535
7062                                                 205977
7063                                                 219275
7064                                                 217336
7065                                                 227168
7066                                                 229748
7067                                                 226947
7068                                                 236699
7069                                                 240983
7070                                                 246037
7071                                                 262775
7072                                                 232912
7073                                                 267928
7074                                                 302053
7075                                                 293079
7076                                                 287735
7077                                                 312695
7078                                                 256543
7079                                                 293608
7080                                                 252110
7081                                                 241194
7082                                                 423839
7083                                                 301448
7084                                                 227634
7085                                                 268722
7086                                                 235687
7087                                                 243155
7088                                                 236515
7089                                                 231349
7090                                                 239084
7091                                                 254912
7092                                                 307637
7093                                                 220338
7094                                                 276003
7095                                                 633235
7096                                                 344239
7097                                                 267331
7098                                                 291083
7099                                                 230885
7100                                                 318673
7101                                                1201219
7102                                                1233462
7103                                                1181560
7104                                                2390309
7105                                                1191930
7106                                                1210256
7107                                                1335298
7108                                                1122350
7109                                                1319642
7110                                                1217807
7111                                                1253048
7112                                                1176751
7113                                                1105463
7114                                                1201891
7115                                                1178504
7116                                                1154925
7117                                                1150959
7118                                                1077993
7119                                                1100988
7120                                                1057189
7121                                                1267239
7122                                                1277420
7123                                                1306226
7124                                                1306878
7125                                                1327763
7126                                                1442668
7127                                                1304561
7128                                                1521598
7129                                                1242161
7130                                                1374186
7131                                                1335461
7132                                                1451147
7133                                                1298243
7134                                                1387421
7135                                                1746825
7136                                                1228100
7137                                                1247609
7138                                                1222891
7139                                                1277722
7140                                                1221328
7141                                                1154894
7142                                                1155875
     NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                      1037
2                                                       674
3                                                       795
4                                                      1132
5                                                       941
6                                                      1184
7                                                      1369
8                                                       704
9                                                      1022
10                                                      842
11                                                      925
12                                                     1582
13                                                     2268
14                                                     1205
15                                                     1028
16                                                      986
17                                                      879
18                                                      689
19                                                      733
20                                                      540
21                                                      585
22                                                      510
23                                                      649
24                                                     1042
25                                                      672
26                                                      869
27                                                      664
28                                                      804
29                                                      851
30                                                      657
31                                                      922
32                                                      680
33                                                     1151
34                                                     1420
35                                                      920
36                                                      876
37                                                      774
38                                                      864
39                                                      962
40                                                     1402
41                                                     2142
42                                                     2128
43                                                      796
44                                                      629
45                                                     1088
46                                                      987
47                                                     1357
48                                                     1354
49                                                      941
50                                                      914
51                                                     1003
52                                                     2820
53                                                   292097
54                                                   251774
55                                                   324932
56                                                   283024
57                                                   250289
58                                                   269799
59                                                   263916
60                                                   250441
61                                                   290458
62                                                   236814
63                                                   228710
64                                                   255933
65                                                   265797
66                                                   262107
67                                                   346119
68                                                   278048
69                                                   303113
70                                                   275818
71                                                   274462
72                                                   362580
73                                                   385028
74                                                   306588
75                                                   335372
76                                                   446100
77                                                   310080
78                                                   436378
79                                                   331353
80                                                   449311
81                                                   386371
82                                                   455566
83                                                   382901
84                                                   538127
85                                                   386401
86                                                   413453
87                                                   538403
88                                                   387677
89                                                   368710
90                                                   377578
91                                                   318473
92                                                   305029
93                                                   393591
94                                                   336172
95                                                   361559
96                                                   441544
97                                                   369316
98                                                   364447
99                                                   377256
100                                                  553199
101                                                  393408
102                                                  372237
103                                                  330411
104                                                  364302
105                                                   40450
106                                                   44741
107                                                   44400
108                                                   51129
109                                                   41028
110                                                   40868
111                                                   47110
112                                                   58579
113                                                   51860
114                                                   53766
115                                                   59122
116                                                   34707
117                                                   35342
118                                                   34309
119                                                   39620
120                                                   55699
121                                                   63904
122                                                   48455
123                                                   59242
124                                                   86492
125                                                   56363
126                                                   53958
127                                                   52746
128                                                   52955
129                                                   58828
130                                                   66505
131                                                   65052
132                                                   58399
133                                                   64005
134                                                   62585
135                                                   67745
136                                                   63610
137                                                   63515
138                                                   79192
139                                                   73038
140                                                   58014
141                                                   67487
142                                                   70797
143                                                   53579
144                                                   58098
145                                                   65159
146                                                   53400
147                                                   55285
148                                                   59040
149                                                   50501
150                                                   49752
151                                                   71704
152                                                   93167
153                                                   49696
154                                                   49947
155                                                   51461
156                                                   53987
157                                                   30482
158                                                   25628
159                                                   27149
160                                                   35591
161                                                   24190
162                                                   25409
163                                                   24425
164                                                   31910
165                                                   30435
166                                                   29522
167                                                   29614
168                                                   26114
169                                                   35154
170                                                   47007
171                                                   34827
172                                                   45739
173                                                   44135
174                                                   40927
175                                                   44059
176                                                   46189
177                                                   44740
178                                                   51151
179                                                   50978
180                                                   45922
181                                                   51829
182                                                   61950
183                                                   59111
184                                                   52790
185                                                   58791
186                                                   61245
187                                                   57374
188                                                   54826
189                                                   61320
190                                                   62505
191                                                   66880
192                                                   69545
193                                                   56844
194                                                   44469
195                                                   57340
196                                                   59533
197                                                   44227
198                                                   51472
199                                                   45880
200                                                   40578
201                                                   50872
202                                                   41548
203                                                   54229
204                                                   67496
205                                                   51922
206                                                   50355
207                                                   38112
208                                                   44562
209                                                    3886
210                                                    4912
211                                                    4641
212                                                    5126
213                                                    3609
214                                                    4458
215                                                    5310
216                                                    5304
217                                                    4886
218                                                    4005
219                                                    6410
220                                                    5146
221                                                    5804
222                                                    5211
223                                                    4377
224                                                    5422
225                                                    4237
226                                                    4177
227                                                    4744
228                                                    4461
229                                                    4173
230                                                    4442
231                                                    4299
232                                                    4720
233                                                    5332
234                                                    4743
235                                                    4688
236                                                    3582
237                                                    5104
238                                                    4034
239                                                    4128
240                                                    4602
241                                                    4286
242                                                    4602
243                                                    3829
244                                                    3915
245                                                    4014
246                                                    3576
247                                                    3658
248                                                    3619
249                                                    5956
250                                                    6086
251                                                    3426
252                                                    4106
253                                                    3233
254                                                    3795
255                                                    7653
256                                                    6083
257                                                    4731
258                                                    4384
259                                                    5548
260                                                    7194
261                                                    1368
262                                                    1165
263                                                    1421
264                                                    1738
265                                                    1515
266                                                    1712
267                                                    1804
268                                                    1289
269                                                    2181
270                                                    1546
271                                                    1536
272                                                    2170
273                                                    3020
274                                                    1908
275                                                    1445
276                                                    1573
277                                                    1472
278                                                    1406
279                                                    1287
280                                                    1231
281                                                    1140
282                                                    1448
283                                                    1679
284                                                    1166
285                                                    1119
286                                                    1503
287                                                    1236
288                                                    1255
289                                                    1184
290                                                     779
291                                                    1039
292                                                    1034
293                                                     933
294                                                    1322
295                                                     946
296                                                    1118
297                                                    1022
298                                                     884
299                                                     969
300                                                    1353
301                                                    3091
302                                                    3500
303                                                    1072
304                                                    1033
305                                                    1709
306                                                    1521
307                                                    1822
308                                                    2118
309                                                    1321
310                                                    1625
311                                                    1642
312                                                    3268
313                                                 1833947
314                                                 1676601
315                                                 1806690
316                                                 1943066
317                                                 1461699
318                                                 1602216
319                                                 2243013
320                                                 2317859
321                                                 2369825
322                                                 1733791
323                                                 1847991
324                                                 1757212
325                                                 1461112
326                                                 1860050
327                                                 1702965
328                                                 1863271
329                                                 2859326
330                                                 3104608
331                                                 2626978
332                                                 3098709
333                                                 3260776
334                                                 2940146
335                                                 3112922
336                                                 2805888
337                                                 2747300
338                                                 3581150
339                                                 3163840
340                                                 3328632
341                                                 4075881
342                                                 3614314
343                                                 3620440
344                                                 2978397
345                                                 2923674
346                                                 4085859
347                                                 4340117
348                                                 2421010
349                                                 3024466
350                                                 2848184
351                                                 2754465
352                                                 2609533
353                                                 2348618
354                                                 2962520
355                                                 3484275
356                                                 3516551
357                                                 3210177
358                                                 3315164
359                                                 2908845
360                                                 4794142
361                                                 2380956
362                                                 2780860
363                                                 2889591
364                                                 2843648
365                                                   33070
366                                                   29500
367                                                   31727
368                                                   34117
369                                                   31911
370                                                   30029
371                                                   28544
372                                                   30861
373                                                   33372
374                                                   23094
375                                                   22805
376                                                   22942
377                                                   23649
378                                                   24398
379                                                   25923
380                                                   30123
381                                                   35127
382                                                   33512
383                                                   32281
384                                                   32129
385                                                   29916
386                                                   30200
387                                                   30901
388                                                   33382
389                                                   23581
390                                                   30803
391                                                   23694
392                                                   30951
393                                                   31248
394                                                   43524
395                                                   45688
396                                                   43629
397                                                   44340
398                                                   47626
399                                                   50203
400                                                   39481
401                                                   38330
402                                                   48793
403                                                   43112
404                                                   34498
405                                                   41638
406                                                   39138
407                                                   29980
408                                                   45465
409                                                   44680
410                                                   28228
411                                                   31509
412                                                   52916
413                                                   37383
414                                                   26463
415                                                   31586
416                                                   29419
417                                                   42799
418                                                   35725
419                                                   40380
420                                                   53173
421                                                   42851
422                                                   34869
423                                                   31286
424                                                   44528
425                                                   69420
426                                                   59161
427                                                   25883
428                                                   16455
429                                                   14269
430                                                   16484
431                                                   16478
432                                                   17172
433                                                   17596
434                                                   17363
435                                                   17596
436                                                   19194
437                                                   18237
438                                                   21607
439                                                   26653
440                                                   20535
441                                                   22934
442                                                   28423
443                                                   27392
444                                                   34715
445                                                   55228
446                                                   51411
447                                                   50564
448                                                   57568
449                                                   54088
450                                                   55587
451                                                   64799
452                                                   46749
453                                                   52850
454                                                   45104
455                                                   38641
456                                                   25630
457                                                   29308
458                                                   30101
459                                                   27489
460                                                   24137
461                                                   39072
462                                                   29712
463                                                   28217
464                                                   50784
465                                                   26118
466                                                   24918
467                                                   31240
468                                                   30270
469                                                    2633
470                                                    2732
471                                                    3803
472                                                    2915
473                                                    2399
474                                                    2566
475                                                    2680
476                                                    2979
477                                                    2998
478                                                    2265
479                                                    2297
480                                                    2251
481                                                    2133
482                                                    2221
483                                                    3128
484                                                    2195
485                                                    2463
486                                                    2624
487                                                    2751
488                                                    2473
489                                                    2358
490                                                    2443
491                                                    2474
492                                                    3726
493                                                    3503
494                                                    3238
495                                                    3691
496                                                    3795
497                                                    6856
498                                                   10630
499                                                   10459
500                                                   10259
501                                                   10240
502                                                   11982
503                                                   11469
504                                                    8217
505                                                    8229
506                                                   11177
507                                                    7517
508                                                    3015
509                                                    2968
510                                                    3551
511                                                    3471
512                                                    3610
513                                                    4432
514                                                    4399
515                                                    4246
516                                                    4666
517                                                    3617
518                                                    3333
519                                                    3613
520                                                    3274
521                                                   41809
522                                                   57558
523                                                   69743
524                                                   60376
525                                                   40353
526                                                   50335
527                                                   52475
528                                                   61495
529                                                   58162
530                                                   59745
531                                                   62591
532                                                   57480
533                                                   53606
534                                                   66588
535                                                   86032
536                                                   86159
537                                                   61053
538                                                   64531
539                                                   64598
540                                                   63291
541                                                   64121
542                                                   77973
543                                                   91758
544                                                   75081
545                                                   69964
546                                                   79064
547                                                   72753
548                                                   67311
549                                                   83139
550                                                   92111
551                                                   80729
552                                                   85511
553                                                   97341
554                                                   97880
555                                                   79999
556                                                   87215
557                                                   80304
558                                                   66514
559                                                   67298
560                                                   72473
561                                                  101143
562                                                   90582
563                                                   56324
564                                                   55611
565                                                   56132
566                                                   52222
567                                                   76793
568                                                  111171
569                                                   53202
570                                                   55533
571                                                   64727
572                                                   80299
573                                                  494426
574                                                  439793
575                                                  476179
576                                                  514160
577                                                  477944
578                                                  494873
579                                                  642898
580                                                  563069
581                                                  546040
582                                                  557469
583                                                  570732
584                                                  543167
585                                                  491729
586                                                  533088
587                                                  606586
588                                                  564968
589                                                  626167
590                                                  674671
591                                                  679441
592                                                  718595
593                                                  674531
594                                                  705846
595                                                  661846
596                                                  684455
597                                                  713426
598                                                  835216
599                                                  760374
600                                                  755351
601                                                 1013253
602                                                  788983
603                                                  941838
604                                                  775366
605                                                  855872
606                                                  817727
607                                                  652304
608                                                  717961
609                                                  735235
610                                                  871511
611                                                  802918
612                                                  645523
613                                                  925527
614                                                  726176
615                                                  724776
616                                                  665033
617                                                  695493
618                                                  625814
619                                                  737969
620                                                  786167
621                                                  649344
622                                                  627091
623                                                  680572
624                                                  612796
625                                                   93034
626                                                  113404
627                                                   96222
628                                                  111259
629                                                   85241
630                                                  100048
631                                                   98270
632                                                  113965
633                                                  140330
634                                                  106239
635                                                  117059
636                                                  108539
637                                                  101712
638                                                  119090
639                                                   85382
640                                                  115936
641                                                  138155
642                                                  119850
643                                                  135262
644                                                  157630
645                                                  131770
646                                                  153499
647                                                  138943
648                                                  119266
649                                                  123673
650                                                  146171
651                                                  162886
652                                                  184206
653                                                  194447
654                                                  167992
655                                                  127748
656                                                  198187
657                                                  156010
658                                                  148763
659                                                  182975
660                                                  160372
661                                                  129744
662                                                  176304
663                                                  156967
664                                                  160679
665                                                  131882
666                                                  160422
667                                                  118578
668                                                  101528
669                                                  153410
670                                                  116908
671                                                  153584
672                                                  217716
673                                                  140914
674                                                  151977
675                                                  110974
676                                                  117454
677                                                   83097
678                                                  110508
679                                                  132206
680                                                   92958
681                                                   84236
682                                                   95527
683                                                   88133
684                                                  103367
685                                                  112432
686                                                   84319
687                                                  117479
688                                                  110374
689                                                   81618
690                                                   88574
691                                                  129945
692                                                  151274
693                                                  143928
694                                                  177827
695                                                  114209
696                                                  113822
697                                                  136800
698                                                  157018
699                                                  119085
700                                                  125844
701                                                  127995
702                                                  140339
703                                                  135231
704                                                  133405
705                                                  136803
706                                                  153215
707                                                  162243
708                                                  193348
709                                                  214238
710                                                  177873
711                                                  161288
712                                                  133323
713                                                  140434
714                                                   96442
715                                                  113211
716                                                  120782
717                                                  138398
718                                                  107980
719                                                   97420
720                                                   97606
721                                                   99207
722                                                  100595
723                                                  129910
724                                                  205775
725                                                  110113
726                                                  113617
727                                                  108379
728                                                  121634
729                                                    2993
730                                                    2630
731                                                    3810
732                                                    4027
733                                                    3727
734                                                    3735
735                                                    3491
736                                                    3971
737                                                    3732
738                                                    3900
739                                                    3821
740                                                    3639
741                                                    3242
742                                                    2978
743                                                    3613
744                                                    4114
745                                                    3674
746                                                    3931
747                                                    4847
748                                                    5135
749                                                    4807
750                                                    4123
751                                                    3193
752                                                    2681
753                                                    4664
754                                                    2709
755                                                    3090
756                                                    2552
757                                                    4446
758                                                    6926
759                                                    7097
760                                                    7888
761                                                    5515
762                                                    7384
763                                                    6302
764                                                    4480
765                                                    5547
766                                                    5876
767                                                    4487
768                                                    1978
769                                                    1930
770                                                    1621
771                                                    1784
772                                                    1355
773                                                    1593
774                                                    1659
775                                                    1156
776                                                    1622
777                                                    1112
778                                                     970
779                                                     973
780                                                    1097
781                                                  336674
782                                                  383702
783                                                  463350
784                                                  401676
785                                                  318661
786                                                  347803
787                                                  342003
788                                                  410061
789                                                  436344
790                                                  383560
791                                                  396691
792                                                  355509
793                                                  296033
794                                                  343272
795                                                  460476
796                                                  492741
797                                                  432771
798                                                  478858
799                                                  404182
800                                                  414757
801                                                  420920
802                                                  490577
803                                                  475307
804                                                  449091
805                                                  456045
806                                                  502233
807                                                  476722
808                                                  487937
809                                                  604782
810                                                  689242
811                                                  667194
812                                                  758184
813                                                  787080
814                                                  766731
815                                                  719494
816                                                  609506
817                                                  615564
818                                                  548501
819                                                  504488
820                                                  456519
821                                                  543152
822                                                  475450
823                                                  380674
824                                                  353819
825                                                  391401
826                                                  390973
827                                                  515789
828                                                  768874
829                                                  390290
830                                                  401683
831                                                  416900
832                                                  467259
833                                                   22695
834                                                   24111
835                                                   27054
836                                                   25260
837                                                   23707
838                                                   26602
839                                                   25484
840                                                   27838
841                                                   28916
842                                                   27596
843                                                   27640
844                                                   32043
845                                                   32554
846                                                   30410
847                                                   31925
848                                                   33048
849                                                   37454
850                                                   34596
851                                                   37214
852                                                   37089
853                                                   40320
854                                                   40388
855                                                   39346
856                                                   42406
857                                                   42200
858                                                   49829
859                                                   42688
860                                                   44179
861                                                   42766
862                                                   40588
863                                                   42572
864                                                   43500
865                                                   44842
866                                                   53021
867                                                   46183
868                                                   45102
869                                                   45693
870                                                   35514
871                                                   35706
872                                                   31892
873                                                   28701
874                                                   31226
875                                                   38517
876                                                   28900
877                                                   32241
878                                                   28593
879                                                   35933
880                                                   42732
881                                                   33193
882                                                   30928
883                                                   34536
884                                                   32680
885                                                    4427
886                                                    4807
887                                                    4440
888                                                    4270
889                                                    3573
890                                                    3720
891                                                    4680
892                                                    5048
893                                                    4471
894                                                    3445
895                                                    4980
896                                                    4555
897                                                    5370
898                                                    3979
899                                                    3717
900                                                    4327
901                                                    3976
902                                                    3882
903                                                    4337
904                                                    4402
905                                                    4620
906                                                    4544
907                                                    3580
908                                                    3759
909                                                    4947
910                                                    4848
911                                                    4254
912                                                    4031
913                                                    4927
914                                                    4436
915                                                    4975
916                                                    4532
917                                                    4624
918                                                    5263
919                                                    4005
920                                                    4160
921                                                    3626
922                                                    3432
923                                                    4021
924                                                    3981
925                                                    5901
926                                                    6740
927                                                    3253
928                                                    4548
929                                                    3633
930                                                    3681
931                                                    6791
932                                                    4804
933                                                    4306
934                                                    3347
935                                                    4365
936                                                    6388
937                                                  389773
938                                                  382444
939                                                  412188
940                                                  368529
941                                                  391617
942                                                  402192
943                                                  530464
944                                                  427828
945                                                  395945
946                                                  437330
947                                                  436132
948                                                  410949
949                                                  411727
950                                                  383218
951                                                  417702
952                                                  421534
953                                                  460377
954                                                  559049
955                                                  509472
956                                                  565966
957                                                  474778
958                                                  568695
959                                                  522820
960                                                  517797
961                                                  559623
962                                                  652960
963                                                  613486
964                                                  578768
965                                                  924661
966                                                  675888
967                                                  757231
968                                                  662438
969                                                  676511
970                                                  654228
971                                                  651055
972                                                  689173
973                                                  566198
974                                                  631293
975                                                  608888
976                                                  502389
977                                                  514614
978                                                  526391
979                                                  507329
980                                                  481279
981                                                  520035
982                                                  571823
983                                                  525260
984                                                  540024
985                                                  549415
986                                                  458532
987                                                  463273
988                                                  506427
989                                                    4647
990                                                    3702
991                                                    4905
992                                                    4067
993                                                    3079
994                                                    3980
995                                                    3479
996                                                    4338
997                                                    5225
998                                                    4333
999                                                    4398
1000                                                   4271
1001                                                   3646
1002                                                   2961
1003                                                   3942
1004                                                   3668
1005                                                   3362
1006                                                   3709
1007                                                   4294
1008                                                   5271
1009                                                   3553
1010                                                   3914
1011                                                   3840
1012                                                   4866
1013                                                   4181
1014                                                   4890
1015                                                   5515
1016                                                   7214
1017                                                  10382
1018                                                  16121
1019                                                  13200
1020                                                  19662
1021                                                  18666
1022                                                  16900
1023                                                  18026
1024                                                  12319
1025                                                  12092
1026                                                  13497
1027                                                  12623
1028                                                   5383
1029                                                   3961
1030                                                   4942
1031                                                   6083
1032                                                   4876
1033                                                   4269
1034                                                   5834
1035                                                   7651
1036                                                   7246
1037                                                   3643
1038                                                   2911
1039                                                   3025
1040                                                   4007
1041                                                  91470
1042                                                  63053
1043                                                 100533
1044                                                  65041
1045                                                  85342
1046                                                  77131
1047                                                  57765
1048                                                  62219
1049                                                 110439
1050                                                  61126
1051                                                  57713
1052                                                  93556
1053                                                 102479
1054                                                  52302
1055                                                  97864
1056                                                  55193
1057                                                 109913
1058                                                  64016
1059                                                  60642
1060                                                  60507
1061                                                 121359
1062                                                  63303
1063                                                  69032
1064                                                 111745
1065                                                  62590
1066                                                 132208
1067                                                  78067
1068                                                 118742
1069                                                  72176
1070                                                 132110
1071                                                  86553
1072                                                 139485
1073                                                  81751
1074                                                  85005
1075                                                 185047
1076                                                  87232
1077                                                  81015
1078                                                 132039
1079                                                 105692
1080                                                  74530
1081                                                 136391
1082                                                  76238
1083                                                  77300
1084                                                 121358
1085                                                  79841
1086                                                  70695
1087                                                  62181
1088                                                 171139
1089                                                  66986
1090                                                  57479
1091                                                  57636
1092                                                 105204
1093                                                 135800
1094                                                  96355
1095                                                 101043
1096                                                  94778
1097                                                  88654
1098                                                  87242
1099                                                 100856
1100                                                 119810
1101                                                  87203
1102                                                  79873
1103                                                 108979
1104                                                  62866
1105                                                  69917
1106                                                  63210
1107                                                  70946
1108                                                  82171
1109                                                 123362
1110                                                 114660
1111                                                 131415
1112                                                 110442
1113                                                 117883
1114                                                 137414
1115                                                 137703
1116                                                 131326
1117                                                 136319
1118                                                 147938
1119                                                 138922
1120                                                 128876
1121                                                 145933
1122                                                 146782
1123                                                 134269
1124                                                 152869
1125                                                 144311
1126                                                 148053
1127                                                 146068
1128                                                 133308
1129                                                 206745
1130                                                 245369
1131                                                 226615
1132                                                 194240
1133                                                 151597
1134                                                 112121
1135                                                 114868
1136                                                  92830
1137                                                  98669
1138                                                 101364
1139                                                 108259
1140                                                 144462
1141                                                 114585
1142                                                 100192
1143                                                 126092
1144                                                 134003
1145                                                 976983
1146                                                 870581
1147                                                1072331
1148                                                1204232
1149                                                 833468
1150                                                 886080
1151                                                1281379
1152                                                1314856
1153                                                1232603
1154                                                 974252
1155                                                1045819
1156                                                1014383
1157                                                 798046
1158                                                1004430
1159                                                1024117
1160                                                1076047
1161                                                1809743
1162                                                2084251
1163                                                1687626
1164                                                2040658
1165                                                2176900
1166                                                1883744
1167                                                2052104
1168                                                1801295
1169                                                1707544
1170                                                2373501
1171                                                2073077
1172                                                2133617
1173                                                2747258
1174                                                2356669
1175                                                2355022
1176                                                2013196
1177                                                1817737
1178                                                2743972
1179                                                2914047
1180                                                1567938
1181                                                2029025
1182                                                1818859
1183                                                1753453
1184                                                1672624
1185                                                1423483
1186                                                1841764
1187                                                2005782
1188                                                2145439
1189                                                2050403
1190                                                2146773
1191                                                1673426
1192                                                2770656
1193                                                1518406
1194                                                1925013
1195                                                1786327
1196                                                1838000
1197                                                   1378
1198                                                   1704
1199                                                   1831
1200                                                   2187
1201                                                   1290
1202                                                   1320
1203                                                   1375
1204                                                   2053
1205                                                   3443
1206                                                   2032
1207                                                   1773
1208                                                   2060
1209                                                   1596
1210                                                   1456
1211                                                   1645
1212                                                   1730
1213                                                   2189
1214                                                   4910
1215                                                   2607
1216                                                   5051
1217                                                   3152
1218                                                   2142
1219                                                   1965
1220                                                   5813
1221                                                   2052
1222                                                   1949
1223                                                   2289
1224                                                   3339
1225                                                   2242
1226                                                   8146
1227                                                   7196
1228                                                   2581
1229                                                   2115
1230                                                   2278
1231                                                   2032
1232                                                   2070
1233                                                   2114
1234                                                   2762
1235                                                   1833
1236                                                   2639
1237                                                   2464
1238                                                   2010
1239                                                   2777
1240                                                   1554
1241                                                   3123
1242                                                   3843
1243                                                   6359
1244                                                   5378
1245                                                   2283
1246                                                   2250
1247                                                   2300
1248                                                   1992
1249                                                 387953
1250                                                 238269
1251                                                 387066
1252                                                 247062
1253                                                 349408
1254                                                 359877
1255                                                 258625
1256                                                 223220
1257                                                 415971
1258                                                 212163
1259                                                 224506
1260                                                 384920
1261                                                 411183
1262                                                 200219
1263                                                 381034
1264                                                 197329
1265                                                 442546
1266                                                 212189
1267                                                 218751
1268                                                 213813
1269                                                 450714
1270                                                 219518
1271                                                 233057
1272                                                 436604
1273                                                 235985
1274                                                 483878
1275                                                 259852
1276                                                 445033
1277                                                 273373
1278                                                 503236
1279                                                 296764
1280                                                 571149
1281                                                 323238
1282                                                 315524
1283                                                 690389
1284                                                 341781
1285                                                 306881
1286                                                 525433
1287                                                 370549
1288                                                 261046
1289                                                 480064
1290                                                 272270
1291                                                 253964
1292                                                 484616
1293                                                 256141
1294                                                 243992
1295                                                 249833
1296                                                 566917
1297                                                 289949
1298                                                 285204
1299                                                 242922
1300                                                 398670
1301                                                 435246
1302                                                 446433
1303                                                 515064
1304                                                 507202
1305                                                 417849
1306                                                 422437
1307                                                 470483
1308                                                 568612
1309                                                 549090
1310                                                 522061
1311                                                 555583
1312                                                 469059
1313                                                 467701
1314                                                 479660
1315                                                 555127
1316                                                 574793
1317                                                 564494
1318                                                 516825
1319                                                 571553
1320                                                 627950
1321                                                 531461
1322                                                 532288
1323                                                 531730
1324                                                 569217
1325                                                 532046
1326                                                 632989
1327                                                 534709
1328                                                 601783
1329                                                 653441
1330                                                 724316
1331                                                 734816
1332                                                 719874
1333                                                 698402
1334                                                 721936
1335                                                 793990
1336                                                 698129
1337                                                 654378
1338                                                 665283
1339                                                 617567
1340                                                 576474
1341                                                 681261
1342                                                 570577
1343                                                 545691
1344                                                 620672
1345                                                 632670
1346                                                 634266
1347                                                 732854
1348                                                 888523
1349                                                 566436
1350                                                 530334
1351                                                 560119
1352                                                 575245
1353                                                  79509
1354                                                  87309
1355                                                 103097
1356                                                  88034
1357                                                  77155
1358                                                  79961
1359                                                  77511
1360                                                  87958
1361                                                  97774
1362                                                  89992
1363                                                 114108
1364                                                  83621
1365                                                  78331
1366                                                  93382
1367                                                 108519
1368                                                  76424
1369                                                  92989
1370                                                  82767
1371                                                 112284
1372                                                 126796
1373                                                 105537
1374                                                  87160
1375                                                  85387
1376                                                 113404
1377                                                  90781
1378                                                 121473
1379                                                  90882
1380                                                 111226
1381                                                 103390
1382                                                 128294
1383                                                 117285
1384                                                 140922
1385                                                 100832
1386                                                 114337
1387                                                 159792
1388                                                 117295
1389                                                  91538
1390                                                 111682
1391                                                 104270
1392                                                 102825
1393                                                 122204
1394                                                  86391
1395                                                 104188
1396                                                 121800
1397                                                 101095
1398                                                 109048
1399                                                 125786
1400                                                 160835
1401                                                  95429
1402                                                  97216
1403                                                 103823
1404                                                 113866
1405                                                 105571
1406                                                 110267
1407                                                 119689
1408                                                 117855
1409                                                  96663
1410                                                 112639
1411                                                 113571
1412                                                 122266
1413                                                 129684
1414                                                 117736
1415                                                 124894
1416                                                 135770
1417                                                 133196
1418                                                 123529
1419                                                 135004
1420                                                 140510
1421                                                 155273
1422                                                 144652
1423                                                 152248
1424                                                 151209
1425                                                 171948
1426                                                 157656
1427                                                 171673
1428                                                 167068
1429                                                 149306
1430                                                 185226
1431                                                 163194
1432                                                 182416
1433                                                 166072
1434                                                 186503
1435                                                 164856
1436                                                 175841
1437                                                 172610
1438                                                 176480
1439                                                 204610
1440                                                 179544
1441                                                 172951
1442                                                 168050
1443                                                 166893
1444                                                 161510
1445                                                 196325
1446                                                 159683
1447                                                 163008
1448                                                 138924
1449                                                 178793
1450                                                 155289
1451                                                 169656
1452                                                 271076
1453                                                 188799
1454                                                 179991
1455                                                 165505
1456                                                 148384
1457                                                  13711
1458                                                  13998
1459                                                  15990
1460                                                  15730
1461                                                  13652
1462                                                  15005
1463                                                  23670
1464                                                  20146
1465                                                  24198
1466                                                  18036
1467                                                  23874
1468                                                  14859
1469                                                  19623
1470                                                  15449
1471                                                  16098
1472                                                  20526
1473                                                  19894
1474                                                  18628
1475                                                  22589
1476                                                  19663
1477                                                  23326
1478                                                  21769
1479                                                  19228
1480                                                  20811
1481                                                  22742
1482                                                  23948
1483                                                  17715
1484                                                  18711
1485                                                  23161
1486                                                  24735
1487                                                  24959
1488                                                  21742
1489                                                  21866
1490                                                  27734
1491                                                  23447
1492                                                  20400
1493                                                  20252
1494                                                  18928
1495                                                  20082
1496                                                  21780
1497                                                  22713
1498                                                  22592
1499                                                  31886
1500                                                  19920
1501                                                  18716
1502                                                  17342
1503                                                  26782
1504                                                  22623
1505                                                  18102
1506                                                  18946
1507                                                  15881
1508                                                  23641
1509                                                  69921
1510                                                  72577
1511                                                  81055
1512                                                  85445
1513                                                  71192
1514                                                  79007
1515                                                  89243
1516                                                  86385
1517                                                  95356
1518                                                  88907
1519                                                  93569
1520                                                  88377
1521                                                  99667
1522                                                  86279
1523                                                  86196
1524                                                  95840
1525                                                  99312
1526                                                  93228
1527                                                 107907
1528                                                  97140
1529                                                 105394
1530                                                 104772
1531                                                 102483
1532                                                 107602
1533                                                 110243
1534                                                 122190
1535                                                 105387
1536                                                 106860
1537                                                 112693
1538                                                 109588
1539                                                 116068
1540                                                 112426
1541                                                 114066
1542                                                 134556
1543                                                 129460
1544                                                 110931
1545                                                 110955
1546                                                  93988
1547                                                  97888
1548                                                  96169
1549                                                 118765
1550                                                 111778
1551                                                 113602
1552                                                  88609
1553                                                  92283
1554                                                  88056
1555                                                 128978
1556                                                 133613
1557                                                  96762
1558                                                  91803
1559                                                  97344
1560                                                 126641
1561                                                   2601
1562                                                   2616
1563                                                   2970
1564                                                   3320
1565                                                   2898
1566                                                   2771
1567                                                   2590
1568                                                   2347
1569                                                   3271
1570                                                   2599
1571                                                   3274
1572                                                   3617
1573                                                   3979
1574                                                   2768
1575                                                   2413
1576                                                   1753
1577                                                   2507
1578                                                   2834
1579                                                   2487
1580                                                   2067
1581                                                   2513
1582                                                   2279
1583                                                   2558
1584                                                   3108
1585                                                   3111
1586                                                   2969
1587                                                   2583
1588                                                   2279
1589                                                   2804
1590                                                   2096
1591                                                   2524
1592                                                   2625
1593                                                   2746
1594                                                   2740
1595                                                   2322
1596                                                   1961
1597                                                   2156
1598                                                   2161
1599                                                   2352
1600                                                   2453
1601                                                   4557
1602                                                   6236
1603                                                   2508
1604                                                   2266
1605                                                   2875
1606                                                   2898
1607                                                   4606
1608                                                   4354
1609                                                   3807
1610                                                   3013
1611                                                   4578
1612                                                   4967
1613                                                 211103
1614                                                 131153
1615                                                 217679
1616                                                 135223
1617                                                 190362
1618                                                 184442
1619                                                 129533
1620                                                 132376
1621                                                 228073
1622                                                 138110
1623                                                 131126
1624                                                 211056
1625                                                 224769
1626                                                 114107
1627                                                 201392
1628                                                 113375
1629                                                 232503
1630                                                 123335
1631                                                 113658
1632                                                 128770
1633                                                 249266
1634                                                 130990
1635                                                 128205
1636                                                 226313
1637                                                 133074
1638                                                 258451
1639                                                 144511
1640                                                 243577
1641                                                 141946
1642                                                 271323
1643                                                 174419
1644                                                 295795
1645                                                 168887
1646                                                 185586
1647                                                 369352
1648                                                 179053
1649                                                 157931
1650                                                 275283
1651                                                 211117
1652                                                 150613
1653                                                 260635
1654                                                 154932
1655                                                 149785
1656                                                 227527
1657                                                 151270
1658                                                 139189
1659                                                 137587
1660                                                 358731
1661                                                 133616
1662                                                 112722
1663                                                 119336
1664                                                 190743
1665                                                   9778
1666                                                   9646
1667                                                  12500
1668                                                  16537
1669                                                  11336
1670                                                  12680
1671                                                  13989
1672                                                  13867
1673                                                  15180
1674                                                  19898
1675                                                  14370
1676                                                  13073
1677                                                  14121
1678                                                  14983
1679                                                  14833
1680                                                  15899
1681                                                  16019
1682                                                  14942
1683                                                  21863
1684                                                  14749
1685                                                  14930
1686                                                  15487
1687                                                  16845
1688                                                  15791
1689                                                  15107
1690                                                  16233
1691                                                  15520
1692                                                  16067
1693                                                  16037
1694                                                  17118
1695                                                  18200
1696                                                  15941
1697                                                  16905
1698                                                  18571
1699                                                  27872
1700                                                  17338
1701                                                  16586
1702                                                  15208
1703                                                  15898
1704                                                  15819
1705                                                  27380
1706                                                  15055
1707                                                  19780
1708                                                  16329
1709                                                  14877
1710                                                  15921
1711                                                  26219
1712                                                  30263
1713                                                  16113
1714                                                  15116
1715                                                  14324
1716                                                  24191
1717                                                 738315
1718                                                 785255
1719                                                 546183
1720                                                 760680
1721                                                 449043
1722                                                 441713
1723                                                 690247
1724                                                 793103
1725                                                 592066
1726                                                 435987
1727                                                 728350
1728                                                 382707
1729                                                 363730
1730                                                 364704
1731                                                 410147
1732                                                 606857
1733                                                 937166
1734                                                 610521
1735                                                 562929
1736                                                 836443
1737                                                 621184
1738                                                 611966
1739                                                 579516
1740                                                 608209
1741                                                 689408
1742                                                1096453
1743                                                 668071
1744                                                1028046
1745                                                1046888
1746                                                1130918
1747                                                 981854
1748                                                 968756
1749                                                 739726
1750                                                 775683
1751                                                 901702
1752                                                1012900
1753                                                1097285
1754                                                 746353
1755                                                1058164
1756                                                 998058
1757                                                 813327
1758                                                1104002
1759                                                 824092
1760                                                 755408
1761                                                 925363
1762                                                 938841
1763                                                 881999
1764                                                1194635
1765                                                1002267
1766                                                 811663
1767                                                 849581
1768                                                 770635
1769                                                   1241
1770                                                   1176
1771                                                   1220
1772                                                   1713
1773                                                   1444
1774                                                   1585
1775                                                   1180
1776                                                   1423
1777                                                   1524
1778                                                   2301
1779                                                   1701
1780                                                    981
1781                                                   1068
1782                                                    815
1783                                                   1137
1784                                                   1340
1785                                                   1159
1786                                                   1494
1787                                                   1412
1788                                                   1314
1789                                                   1306
1790                                                   1309
1791                                                   1422
1792                                                   1297
1793                                                   1230
1794                                                   1636
1795                                                   1548
1796                                                   1681
1797                                                   1615
1798                                                   1734
1799                                                   1472
1800                                                   2157
1801                                                   1822
1802                                                   2100
1803                                                   5264
1804                                                   1820
1805                                                   1725
1806                                                   1734
1807                                                   2257
1808                                                   2567
1809                                                   2605
1810                                                   2451
1811                                                   2149
1812                                                    842
1813                                                   1496
1814                                                   1774
1815                                                   1905
1816                                                   2686
1817                                                   1848
1818                                                   2147
1819                                                   1492
1820                                                   3013
1821                                                 571603
1822                                                 497437
1823                                                 695420
1824                                                 579077
1825                                                 460760
1826                                                 584491
1827                                                 549164
1828                                                 513609
1829                                                 469390
1830                                                 559720
1831                                                 492966
1832                                                 708471
1833                                                 492562
1834                                                 564481
1835                                                 611683
1836                                                 727720
1837                                                 857114
1838                                                 699756
1839                                                 930286
1840                                                 911935
1841                                                 789751
1842                                                 761286
1843                                                 898275
1844                                                 824193
1845                                                 953323
1846                                                 927861
1847                                                 954739
1848                                                1049003
1849                                                1117927
1850                                                1207878
1851                                                1085644
1852                                                1221023
1853                                                1228816
1854                                                1319397
1855                                                1485535
1856                                                1022916
1857                                                1055547
1858                                                1423163
1859                                                 898264
1860                                                 912075
1861                                                 885072
1862                                                 839457
1863                                                 838161
1864                                                 854129
1865                                                 818736
1866                                                 847329
1867                                                1077512
1868                                                1383259
1869                                                 841333
1870                                                 966516
1871                                                 737364
1872                                                1027842
1873                                                  87749
1874                                                  82417
1875                                                  94577
1876                                                  90997
1877                                                  78567
1878                                                  83018
1879                                                  83998
1880                                                 100420
1881                                                  98263
1882                                                  95298
1883                                                 113111
1884                                                  84270
1885                                                 104149
1886                                                 159780
1887                                                 121425
1888                                                 222537
1889                                                 174913
1890                                                 154462
1891                                                 153011
1892                                                 180693
1893                                                 174171
1894                                                 193729
1895                                                 178907
1896                                                 188493
1897                                                 264203
1898                                                 215806
1899                                                 196765
1900                                                 170388
1901                                                 180453
1902                                                 194123
1903                                                 249742
1904                                                 190231
1905                                                 210130
1906                                                 241820
1907                                                 226738
1908                                                 238673
1909                                                 144515
1910                                                 150702
1911                                                 160806
1912                                                 162581
1913                                                 153886
1914                                                 156506
1915                                                 147900
1916                                                 138995
1917                                                 117116
1918                                                 140492
1919                                                 161941
1920                                                 165260
1921                                                 131530
1922                                                 155746
1923                                                 121596
1924                                                 126486
1925                                                  47445
1926                                                  43170
1927                                                  51043
1928                                                  54037
1929                                                  49085
1930                                                  44121
1931                                                  52380
1932                                                  61119
1933                                                  56639
1934                                                  52738
1935                                                  49804
1936                                                  47888
1937                                                  48418
1938                                                  47077
1939                                                  50149
1940                                                  63925
1941                                                  56439
1942                                                  52246
1943                                                  50939
1944                                                  50360
1945                                                  42925
1946                                                  49760
1947                                                  50569
1948                                                  46281
1949                                                  38294
1950                                                  42043
1951                                                  39793
1952                                                  45415
1953                                                  60157
1954                                                  73208
1955                                                  77232
1956                                                  58856
1957                                                  77566
1958                                                  76699
1959                                                  70985
1960                                                  75696
1961                                                  67459
1962                                                  71379
1963                                                  68933
1964                                                  56270
1965                                                  78242
1966                                                  66629
1967                                                  41325
1968                                                  57245
1969                                                  65911
1970                                                  66006
1971                                                  68078
1972                                                  79508
1973                                                  61159
1974                                                  48614
1975                                                  43987
1976                                                  53316
1977                                                  46838
1978                                                  45598
1979                                                  57805
1980                                                  65474
1981                                                  46757
1982                                                  44463
1983                                                  57421
1984                                                  83636
1985                                                  72021
1986                                                  68614
1987                                                  70405
1988                                                  61757
1989                                                  67268
1990                                                  61854
1991                                                  76713
1992                                                  86208
1993                                                  72054
1994                                                  70640
1995                                                  76650
1996                                                  70382
1997                                                  72134
1998                                                  76879
1999                                                  74158
2000                                                  74921
2001                                                  80376
2002                                                  94880
2003                                                  78419
2004                                                  95486
2005                                                 102242
2006                                                  84737
2007                                                 102487
2008                                                  91042
2009                                                  91276
2010                                                  72225
2011                                                  89713
2012                                                  76765
2013                                                  75898
2014                                                  60609
2015                                                  69929
2016                                                  54696
2017                                                  61853
2018                                                  66591
2019                                                  50713
2020                                                  53903
2021                                                  75551
2022                                                  70878
2023                                                  74594
2024                                                  99430
2025                                                  54047
2026                                                  54459
2027                                                  71743
2028                                                  56294
2029                                                  33256
2030                                                  27513
2031                                                  38378
2032                                                  41192
2033                                                  24166
2034                                                  28956
2035                                                  41214
2036                                                  53191
2037                                                  54832
2038                                                  57251
2039                                                  48541
2040                                                  53714
2041                                                  51177
2042                                                  44984
2043                                                  64729
2044                                                  69412
2045                                                  42757
2046                                                  39821
2047                                                  38977
2048                                                  40667
2049                                                  45164
2050                                                  48105
2051                                                  48520
2052                                                  48762
2053                                                  50648
2054                                                  54929
2055                                                  50053
2056                                                  51622
2057                                                  58275
2058                                                  58789
2059                                                  57819
2060                                                  55749
2061                                                  55106
2062                                                  52698
2063                                                  54015
2064                                                  63042
2065                                                  68392
2066                                                  50246
2067                                                  48155
2068                                                  46540
2069                                                  51585
2070                                                  47388
2071                                                  43784
2072                                                  45568
2073                                                  55932
2074                                                  68986
2075                                                  78196
2076                                                  71868
2077                                                  48244
2078                                                  44677
2079                                                  45706
2080                                                  48285
2081                                                  98483
2082                                                  99605
2083                                                  94855
2084                                                  82538
2085                                                  80758
2086                                                  83984
2087                                                 100343
2088                                                 118697
2089                                                 180211
2090                                                  98792
2091                                                  94530
2092                                                  85276
2093                                                  70756
2094                                                  84527
2095                                                  79143
2096                                                 101190
2097                                                 137389
2098                                                 114805
2099                                                 112710
2100                                                 136485
2101                                                 146136
2102                                                 131156
2103                                                 130035
2104                                                 130413
2105                                                 130110
2106                                                 161220
2107                                                 143118
2108                                                 137206
2109                                                 149611
2110                                                 143064
2111                                                 156720
2112                                                 110289
2113                                                 141111
2114                                                 162135
2115                                                 149108
2116                                                 101325
2117                                                 117518
2118                                                 119295
2119                                                 120613
2120                                                 110810
2121                                                 106579
2122                                                 113759
2123                                                 152131
2124                                                 143867
2125                                                 137425
2126                                                 134992
2127                                                 144587
2128                                                 287292
2129                                                 101289
2130                                                  83098
2131                                                 109368
2132                                                 110694
2133                                                 141447
2134                                                 130565
2135                                                 155111
2136                                                 196490
2137                                                 143861
2138                                                 163397
2139                                                 264103
2140                                                 255994
2141                                                 211288
2142                                                 172519
2143                                                 197863
2144                                                 202263
2145                                                 154884
2146                                                 194526
2147                                                 204096
2148                                                 191303
2149                                                 271640
2150                                                 277305
2151                                                 250163
2152                                                 281209
2153                                                 285570
2154                                                 275823
2155                                                 279281
2156                                                 258241
2157                                                 251056
2158                                                 328818
2159                                                 295023
2160                                                 368403
2161                                                 403551
2162                                                 378750
2163                                                 358148
2164                                                 273673
2165                                                 283530
2166                                                 399790
2167                                                 424264
2168                                                 235664
2169                                                 270328
2170                                                 260591
2171                                                 249037
2172                                                 234361
2173                                                 235106
2174                                                 257709
2175                                                 314550
2176                                                 317626
2177                                                 301984
2178                                                 303638
2179                                                 229119
2180                                                 357236
2181                                                 217747
2182                                                 250312
2183                                                 303369
2184                                                 244152
2185                                                 181705
2186                                                 173522
2187                                                 127080
2188                                                 102772
2189                                                 102783
2190                                                 121233
2191                                                 165884
2192                                                 165981
2193                                                 214932
2194                                                 126499
2195                                                 146584
2196                                                 106181
2197                                                 119177
2198                                                 208309
2199                                                  94105
2200                                                 110780
2201                                                 154276
2202                                                 177166
2203                                                 129107
2204                                                 145519
2205                                                 158022
2206                                                 164972
2207                                                 150231
2208                                                 146181
2209                                                 149802
2210                                                 168469
2211                                                 154424
2212                                                 161726
2213                                                 181176
2214                                                 167496
2215                                                 192709
2216                                                 131639
2217                                                 167533
2218                                                 172663
2219                                                 237061
2220                                                 107462
2221                                                 134592
2222                                                 159838
2223                                                 143671
2224                                                 145295
2225                                                 136355
2226                                                 204467
2227                                                 260192
2228                                                 251297
2229                                                 165067
2230                                                 176265
2231                                                 252069
2232                                                 369581
2233                                                 127276
2234                                                 107567
2235                                                 155455
2236                                                 179508
2237                                                 101443
2238                                                  88134
2239                                                 114813
2240                                                 117508
2241                                                  90354
2242                                                 111896
2243                                                 146062
2244                                                 135638
2245                                                 105847
2246                                                 130741
2247                                                 147441
2248                                                  87082
2249                                                 103496
2250                                                 159459
2251                                                 158198
2252                                                 230283
2253                                                 167782
2254                                                 171694
2255                                                 137391
2256                                                 173166
2257                                                 220284
2258                                                 210529
2259                                                 158304
2260                                                 197532
2261                                                 261871
2262                                                 201350
2263                                                 175065
2264                                                 178641
2265                                                 207291
2266                                                 194535
2267                                                 244320
2268                                                 213212
2269                                                 176145
2270                                                 263441
2271                                                 226074
2272                                                 202727
2273                                                 130766
2274                                                 134347
2275                                                 148128
2276                                                 162078
2277                                                 192631
2278                                                 173278
2279                                                 170637
2280                                                 162941
2281                                                 106012
2282                                                 114015
2283                                                 153476
2284                                                 201140
2285                                                 118570
2286                                                 160898
2287                                                 144349
2288                                                 165839
2289                                                 137133
2290                                                 115402
2291                                                 148692
2292                                                 130411
2293                                                 125440
2294                                                 123209
2295                                                 116059
2296                                                 118352
2297                                                 143163
2298                                                 107104
2299                                                 105221
2300                                                 121966
2301                                                 123693
2302                                                 111055
2303                                                 148634
2304                                                 124781
2305                                                 165545
2306                                                 130773
2307                                                 139532
2308                                                 157908
2309                                                 179463
2310                                                 148658
2311                                                 160050
2312                                                 212350
2313                                                 143217
2314                                                 204374
2315                                                 152050
2316                                                 207438
2317                                                 172821
2318                                                 223639
2319                                                 185324
2320                                                 247039
2321                                                 200005
2322                                                 199490
2323                                                 271320
2324                                                 191954
2325                                                 185940
2326                                                 220209
2327                                                 187483
2328                                                 151124
2329                                                 218786
2330                                                 171702
2331                                                 173429
2332                                                 213316
2333                                                 193229
2334                                                 163448
2335                                                 169169
2336                                                 284674
2337                                                 187805
2338                                                 160257
2339                                                 162428
2340                                                 180977
2341                                                2295315
2342                                                2166801
2343                                                2366880
2344                                                2271088
2345                                                2105670
2346                                                2187383
2347                                                2762021
2348                                                2470147
2349                                                2344879
2350                                                2542915
2351                                                2488221
2352                                                2351606
2353                                                2257194
2354                                                2252045
2355                                                2453285
2356                                                2608997
2357                                                2897999
2358                                                3171393
2359                                                3058909
2360                                                3273624
2361                                                3096266
2362                                                3276776
2363                                                3166737
2364                                                3141802
2365                                                3318843
2366                                                3835278
2367                                                3656336
2368                                                3460014
2369                                                4668965
2370                                                3870044
2371                                                4136441
2372                                                3794423
2373                                                3979432
2374                                                3969054
2375                                                3520801
2376                                                3637682
2377                                                3657279
2378                                                3851189
2379                                                3676642
2380                                                3091050
2381                                                3785376
2382                                                3290881
2383                                                3215935
2384                                                2944928
2385                                                3077731
2386                                                3046998
2387                                                3323431
2388                                                3776937
2389                                                3205533
2390                                                2839360
2391                                                2973368
2392                                                2745009
2393                                                2045752
2394                                                1449139
2395                                                2127600
2396                                                1520190
2397                                                1797110
2398                                                1799501
2399                                                1455202
2400                                                1420319
2401                                                2058754
2402                                                1278661
2403                                                1274185
2404                                                1810142
2405                                                1909901
2406                                                1266451
2407                                                2000381
2408                                                1317283
2409                                                2175323
2410                                                1422798
2411                                                1423076
2412                                                1615210
2413                                                2430273
2414                                                1539272
2415                                                1615661
2416                                                2507726
2417                                                1578243
2418                                                2713600
2419                                                1721633
2420                                                2602624
2421                                                1910737
2422                                                2862824
2423                                                2048880
2424                                                3209534
2425                                                2098271
2426                                                2167782
2427                                                3682277
2428                                                2170189
2429                                                2014444
2430                                                2801180
2431                                                2257669
2432                                                1804283
2433                                                2823708
2434                                                1865221
2435                                                1894002
2436                                                2682066
2437                                                1960713
2438                                                1820564
2439                                                1871662
2440                                                3656339
2441                                                1990978
2442                                                1815847
2443                                                1667013
2444                                                2296069
2445                                                  20577
2446                                                  17819
2447                                                  22229
2448                                                  18780
2449                                                  16877
2450                                                  17536
2451                                                  17122
2452                                                  19315
2453                                                  20262
2454                                                  16618
2455                                                  16562
2456                                                  11290
2457                                                  18332
2458                                                  25432
2459                                                  20719
2460                                                  39572
2461                                                  32236
2462                                                  31275
2463                                                  34441
2464                                                  33363
2465                                                  32213
2466                                                  35242
2467                                                  33592
2468                                                  39751
2469                                                  45147
2470                                                  43121
2471                                                  38304
2472                                                  33513
2473                                                  36981
2474                                                  40535
2475                                                  42028
2476                                                  41058
2477                                                  36880
2478                                                  46468
2479                                                  44094
2480                                                  41209
2481                                                  31965
2482                                                  27692
2483                                                  30530
2484                                                  36451
2485                                                  32961
2486                                                  32529
2487                                                  35184
2488                                                  26800
2489                                                  25371
2490                                                  24008
2491                                                  28901
2492                                                  35897
2493                                                  23844
2494                                                  28458
2495                                                  21974
2496                                                  26607
2497                                                  50482
2498                                                  40333
2499                                                  64673
2500                                                  60482
2501                                                  38130
2502                                                  40116
2503                                                  62811
2504                                                  54278
2505                                                  49011
2506                                                  52371
2507                                                  53414
2508                                                  77648
2509                                                  64603
2510                                                  99021
2511                                                  77969
2512                                                 108859
2513                                                  85674
2514                                                  74752
2515                                                 111101
2516                                                 186669
2517                                                  92512
2518                                                  79292
2519                                                 120125
2520                                                  99045
2521                                                 132490
2522                                                  97253
2523                                                 107631
2524                                                  84700
2525                                                  87726
2526                                                  92964
2527                                                 147105
2528                                                 135166
2529                                                  96531
2530                                                 125846
2531                                                 190986
2532                                                  86968
2533                                                 101449
2534                                                 138215
2535                                                  77971
2536                                                 111922
2537                                                  77998
2538                                                  70836
2539                                                  73957
2540                                                  93747
2541                                                  75717
2542                                                  88022
2543                                                 140792
2544                                                 209893
2545                                                  99021
2546                                                  78725
2547                                                  79293
2548                                                 125714
2549                                                    829
2550                                                    647
2551                                                    774
2552                                                    875
2553                                                    719
2554                                                    847
2555                                                    912
2556                                                    646
2557                                                   1063
2558                                                    936
2559                                                    749
2560                                                   1054
2561                                                   1777
2562                                                    926
2563                                                    776
2564                                                    882
2565                                                    675
2566                                                    601
2567                                                    579
2568                                                    619
2569                                                    511
2570                                                    723
2571                                                    878
2572                                                    593
2573                                                    577
2574                                                    798
2575                                                    756
2576                                                    624
2577                                                    548
2578                                                    632
2579                                                    744
2580                                                    560
2581                                                    743
2582                                                    899
2583                                                    635
2584                                                    768
2585                                                    721
2586                                                    670
2587                                                    717
2588                                                   1021
2589                                                   2030
2590                                                   2534
2591                                                    797
2592                                                    729
2593                                                   1099
2594                                                    881
2595                                                   1094
2596                                                   1321
2597                                                    810
2598                                                    790
2599                                                    984
2600                                                   2507
2601                                                 246327
2602                                                 146377
2603                                                 242294
2604                                                 145404
2605                                                 213390
2606                                                 194667
2607                                                 138483
2608                                                 135742
2609                                                 228324
2610                                                 109049
2611                                                 112096
2612                                                 175546
2613                                                 184070
2614                                                  99078
2615                                                 186844
2616                                                  97654
2617                                                 205189
2618                                                 126061
2619                                                 126817
2620                                                 139923
2621                                                 257930
2622                                                 139951
2623                                                 133615
2624                                                 258973
2625                                                 149510
2626                                                 282433
2627                                                 157030
2628                                                 262822
2629                                                 152836
2630                                                 295793
2631                                                 181641
2632                                                 331416
2633                                                 182282
2634                                                 197831
2635                                                 401969
2636                                                 203078
2637                                                 182582
2638                                                 304623
2639                                                 242308
2640                                                 169276
2641                                                 310473
2642                                                 173100
2643                                                 166384
2644                                                 258084
2645                                                 167596
2646                                                 154112
2647                                                 155194
2648                                                 392037
2649                                                 161291
2650                                                 132143
2651                                                 142238
2652                                                 226347
2653                                                9626901
2654                                                8710022
2655                                                9855054
2656                                                9405464
2657                                                8094804
2658                                                8571850
2659                                                9907981
2660                                                9991330
2661                                               10138704
2662                                                8683959
2663                                                9162094
2664                                                8828341
2665                                                8353620
2666                                                8454209
2667                                                9422275
2668                                                9875018
2669                                               12569277
2670                                               11650977
2671                                               11283021
2672                                               12680252
2673                                               13003371
2674                                               12115234
2675                                               12196226
2676                                               12742760
2677                                               12384449
2678                                               15643939
2679                                               13299569
2680                                               14699605
2681                                               16383685
2682                                               16529798
2683                                               15503613
2684                                               16000108
2685                                               14615942
2686                                               16215329
2687                                               17787612
2688                                               13833715
2689                                               14251319
2690                                               14793354
2691                                               13939014
2692                                               12524637
2693                                               13697406
2694                                               13149989
2695                                               13013750
2696                                               13282223
2697                                               12628562
2698                                               12626615
2699                                               13308193
2700                                               18933038
2701                                               12167445
2702                                               11858139
2703                                               11544811
2704                                               12357161
2705                                                2038444
2706                                                2017331
2707                                                1798995
2708                                                2097721
2709                                                1461862
2710                                                1549012
2711                                                1996853
2712                                                2204339
2713                                                1815066
2714                                                1574344
2715                                                2012887
2716                                                1287966
2717                                                1369450
2718                                                1601971
2719                                                1552162
2720                                                2194373
2721                                                2682938
2722                                                2163511
2723                                                2160130
2724                                                2640928
2725                                                2368531
2726                                                2470116
2727                                                2293112
2728                                                2337242
2729                                                2688406
2730                                                3328638
2731                                                2686203
2732                                                3062754
2733                                                3239258
2734                                                3451593
2735                                                3094130
2736                                                3206248
2737                                                2786201
2738                                                3050015
2739                                                3115938
2740                                                3163353
2741                                                3118686
2742                                                2561865
2743                                                3132031
2744                                                2978535
2745                                                2511454
2746                                                3034104
2747                                                2541410
2748                                                2221448
2749                                                2444851
2750                                                2483265
2751                                                2749122
2752                                                3531350
2753                                                2695158
2754                                                2431737
2755                                                2203112
2756                                                2275447
2757                                                 451905
2758                                                 389111
2759                                                 437781
2760                                                 398871
2761                                                 335447
2762                                                 403133
2763                                                 483181
2764                                                 445281
2765                                                 350882
2766                                                 363487
2767                                                 409640
2768                                                 268061
2769                                                 240183
2770                                                 255898
2771                                                 289135
2772                                                 341728
2773                                                 487551
2774                                                 518203
2775                                                 535570
2776                                                 489077
2777                                                 576883
2778                                                 573107
2779                                                 542664
2780                                                 552840
2781                                                 515150
2782                                                 606651
2783                                                 670425
2784                                                 601318
2785                                                 651121
2786                                                 750595
2787                                                 626725
2788                                                 692901
2789                                                 721088
2790                                                 774233
2791                                                 677576
2792                                                 596342
2793                                                 687795
2794                                                 564694
2795                                                 660962
2796                                                 595241
2797                                                 489679
2798                                                 610496
2799                                                 568182
2800                                                 439115
2801                                                 455087
2802                                                 520464
2803                                                 539280
2804                                                 611270
2805                                                 519143
2806                                                 516446
2807                                                 347126
2808                                                 426879
2809                                                   3202
2810                                                   3345
2811                                                   2323
2812                                                   6531
2813                                                   2794
2814                                                   3676
2815                                                   3524
2816                                                   3212
2817                                                   3187
2818                                                   4223
2819                                                   4027
2820                                                   3641
2821                                                   4109
2822                                                   7659
2823                                                   6624
2824                                                   6259
2825                                                  14741
2826                                                  34913
2827                                                  14520
2828                                                  24001
2829                                                  14671
2830                                                   9294
2831                                                  11581
2832                                                   9274
2833                                                  20970
2834                                                   8374
2835                                                   7923
2836                                                   6767
2837                                                   7531
2838                                                   4288
2839                                                   2581
2840                                                    929
2841                                                    902
2842                                                   1042
2843                                                    884
2844                                                    955
2845                                                    899
2846                                                    972
2847                                                    676
2848                                                    809
2849                                                    765
2850                                                    848
2851                                                    972
2852                                                    805
2853                                                    869
2854                                                   1641
2855                                                   2032
2856                                                   1386
2857                                                    545
2858                                                   1203
2859                                                    848
2860                                                    940
2861                                                 205856
2862                                                 191753
2863                                                 186344
2864                                                 210602
2865                                                 161632
2866                                                 189207
2867                                                 185966
2868                                                 167083
2869                                                 162368
2870                                                 171215
2871                                                 188793
2872                                                 187261
2873                                                 182418
2874                                                 174532
2875                                                 233801
2876                                                 286406
2877                                                 356593
2878                                                 294241
2879                                                 293240
2880                                                 362924
2881                                                 252172
2882                                                 232641
2883                                                 215523
2884                                                 202639
2885                                                 240109
2886                                                 310551
2887                                                 272203
2888                                                 361698
2889                                                 313216
2890                                                 341028
2891                                                 267461
2892                                                 206761
2893                                                 292233
2894                                                 199995
2895                                                 241665
2896                                                 233878
2897                                                 190570
2898                                                 258662
2899                                                 253541
2900                                                 286918
2901                                                 323217
2902                                                 336351
2903                                                 299983
2904                                                 325884
2905                                                 270173
2906                                                 313342
2907                                                 415641
2908                                                 290451
2909                                                 318373
2910                                                 308723
2911                                                 377245
2912                                                 350316
2913                                                  50819
2914                                                  57866
2915                                                  49240
2916                                                  52096
2917                                                  46243
2918                                                  51079
2919                                                  64631
2920                                                  61459
2921                                                  58412
2922                                                  56864
2923                                                  63424
2924                                                  72776
2925                                                  78717
2926                                                 129774
2927                                                 151205
2928                                                 202958
2929                                                  97714
2930                                                  72407
2931                                                  68444
2932                                                  68336
2933                                                  71155
2934                                                  64023
2935                                                  62897
2936                                                  50832
2937                                                  64926
2938                                                  63051
2939                                                  62585
2940                                                  61789
2941                                                  73621
2942                                                  61074
2943                                                  61989
2944                                                  60638
2945                                                  58944
2946                                                  75493
2947                                                  67682
2948                                                  61118
2949                                                  59233
2950                                                  64550
2951                                                  61533
2952                                                  59850
2953                                                  65397
2954                                                  59401
2955                                                  62540
2956                                                  61484
2957                                                  51913
2958                                                  72825
2959                                                  73754
2960                                                  52642
2961                                                  69829
2962                                                  58788
2963                                                  60261
2964                                                  54492
2965                                                  27464
2966                                                  28725
2967                                                  30311
2968                                                  34195
2969                                                  23775
2970                                                  28834
2971                                                  32035
2972                                                  24935
2973                                                  25833
2974                                                  27936
2975                                                  35486
2976                                                  38087
2977                                                  27543
2978                                                  39342
2979                                                  39719
2980                                                  41793
2981                                                  37234
2982                                                  36838
2983                                                  40944
2984                                                  43526
2985                                                  32775
2986                                                  30747
2987                                                  26990
2988                                                  27671
2989                                                  39211
2990                                                  36208
2991                                                  34024
2992                                                  36119
2993                                                  34791
2994                                                  31280
2995                                                  29695
2996                                                  32113
2997                                                  34103
2998                                                  43200
2999                                                  32241
3000                                                  36438
3001                                                  41244
3002                                                  44345
3003                                                  45953
3004                                                  40229
3005                                                  41756
3006                                                  45571
3007                                                  41714
3008                                                  38143
3009                                                  37808
3010                                                  38043
3011                                                  42826
3012                                                  36196
3013                                                  18003
3014                                                  34303
3015                                                  31802
3016                                                  43869
3017                                                   4350
3018                                                   6124
3019                                                   3711
3020                                                   4372
3021                                                   4243
3022                                                   7918
3023                                                   5234
3024                                                   4017
3025                                                   5543
3026                                                  10445
3027                                                   6472
3028                                                   7435
3029                                                  20872
3030                                                  40864
3031                                                  39971
3032                                                  85204
3033                                                  23482
3034                                                  37757
3035                                                  15420
3036                                                  20311
3037                                                  15830
3038                                                  12550
3039                                                  13100
3040                                                  11290
3041                                                  17289
3042                                                  11398
3043                                                  10380
3044                                                  10851
3045                                                  12891
3046                                                   8834
3047                                                   7708
3048                                                   4319
3049                                                   5790
3050                                                   6383
3051                                                   4765
3052                                                   4158
3053                                                   3872
3054                                                   4327
3055                                                   4683
3056                                                   4254
3057                                                   5364
3058                                                   5420
3059                                                   6153
3060                                                   6633
3061                                                   5601
3062                                                   7592
3063                                                   5987
3064                                                   6037
3065                                                   3108
3066                                                   4393
3067                                                   4120
3068                                                   5113
3069                                                   1197
3070                                                   1276
3071                                                    968
3072                                                    960
3073                                                   1006
3074                                                   1426
3075                                                   1892
3076                                                   1322
3077                                                   1130
3078                                                   1172
3079                                                   1283
3080                                                   1117
3081                                                   1120
3082                                                   4198
3083                                                   2693
3084                                                   1658
3085                                                   3090
3086                                                   2682
3087                                                   1543
3088                                                   2646
3089                                                   1782
3090                                                   1792
3091                                                   1157
3092                                                   1389
3093                                                   1425
3094                                                   1425
3095                                                   1327
3096                                                   1777
3097                                                   4629
3098                                                   1451
3099                                                   1442
3100                                                   1533
3101                                                   1411
3102                                                   1613
3103                                                   1248
3104                                                   1391
3105                                                   1167
3106                                                   1278
3107                                                   1164
3108                                                   1512
3109                                                   1111
3110                                                   1394
3111                                                   1473
3112                                                   1659
3113                                                   1500
3114                                                   1922
3115                                                   2262
3116                                                   2015
3117                                                    468
3118                                                   1779
3119                                                   1619
3120                                                   1487
3121                                                1579235
3122                                                1575319
3123                                                1638639
3124                                                1916640
3125                                                1508447
3126                                                1513797
3127                                                1326907
3128                                                1111432
3129                                                1126017
3130                                                1397559
3131                                                1635631
3132                                                2021375
3133                                                2359102
3134                                                2357904
3135                                                1888694
3136                                                2297602
3137                                                2501655
3138                                                2683110
3139                                                2646368
3140                                                2200100
3141                                                2152079
3142                                                1922055
3143                                                2019597
3144                                                2196723
3145                                                2399361
3146                                                2409026
3147                                                2333532
3148                                                2409003
3149                                                2597934
3150                                                2921963
3151                                                2522305
3152                                                2238875
3153                                                2247484
3154                                                2716222
3155                                                2817406
3156                                                2507347
3157                                                2370403
3158                                                2248562
3159                                                1805556
3160                                                1935666
3161                                                1893618
3162                                                1750944
3163                                                1893787
3164                                                1873878
3165                                                1776499
3166                                                1998150
3167                                                2930343
3168                                                2126067
3169                                                1230068
3170                                                1653348
3171                                                1736168
3172                                                2315175
3173                                                  36126
3174                                                  35762
3175                                                  43745
3176                                                  39222
3177                                                  38976
3178                                                  44045
3179                                                  49399
3180                                                  36841
3181                                                  39376
3182                                                  54982
3183                                                  57529
3184                                                  43326
3185                                                  46365
3186                                                  54111
3187                                                  43116
3188                                                  34441
3189                                                  58888
3190                                                  54875
3191                                                  44007
3192                                                  39824
3193                                                  48640
3194                                                  39820
3195                                                  34250
3196                                                  38199
3197                                                  43388
3198                                                  45221
3199                                                  36686
3200                                                  55098
3201                                                  42197
3202                                                  37431
3203                                                  49748
3204                                                  37008
3205                                                  31854
3206                                                  55854
3207                                                  53590
3208                                                  31821
3209                                                  37151
3210                                                  39142
3211                                                  35648
3212                                                  32858
3213                                                  33582
3214                                                  39326
3215                                                  38806
3216                                                  35461
3217                                                  36397
3218                                                  45730
3219                                                  63129
3220                                                  36408
3221                                                  13437
3222                                                  29998
3223                                                  21276
3224                                                  42857
3225                                                  67146
3226                                                  92760
3227                                                  84616
3228                                                  90158
3229                                                 151462
3230                                                 134285
3231                                                  34385
3232                                                  31207
3233                                                  33565
3234                                                  46709
3235                                                  52200
3236                                                  40105
3237                                                  37926
3238                                                  40601
3239                                                  74369
3240                                                  80472
3241                                                  77982
3242                                                  54971
3243                                                  62002
3244                                                  49617
3245                                                  40121
3246                                                  38276
3247                                                  42453
3248                                                  43790
3249                                                  52541
3250                                                  55651
3251                                                  80280
3252                                                  64900
3253                                                  50498
3254                                                  31729
3255                                                  36554
3256                                                  36569
3257                                                  49040
3258                                                  43166
3259                                                  39249
3260                                                  34134
3261                                                  47878
3262                                                  49679
3263                                                  36212
3264                                                  33748
3265                                                  36018
3266                                                  39540
3267                                                  35309
3268                                                  32414
3269                                                  39220
3270                                                  45558
3271                                                  68454
3272                                                  35214
3273                                                  23863
3274                                                  35100
3275                                                  44289
3276                                                  77301
3277                                                   2169
3278                                                   2280
3279                                                   2475
3280                                                   2444
3281                                                   1811
3282                                                   2013
3283                                                   2998
3284                                                   2896
3285                                                   2126
3286                                                   2790
3287                                                   6798
3288                                                   3166
3289                                                   3206
3290                                                   3822
3291                                                   6195
3292                                                   5371
3293                                                   3790
3294                                                   3863
3295                                                   3838
3296                                                   4691
3297                                                   5244
3298                                                   4322
3299                                                   4347
3300                                                   5442
3301                                                   4664
3302                                                   4595
3303                                                   4554
3304                                                   7033
3305                                                   7943
3306                                                   4643
3307                                                   4644
3308                                                   4092
3309                                                   3506
3310                                                   4411
3311                                                   4133
3312                                                   4308
3313                                                   3370
3314                                                   4235
3315                                                   3481
3316                                                   3097
3317                                                   3139
3318                                                   3172
3319                                                   3704
3320                                                   4252
3321                                                   3480
3322                                                   3898
3323                                                   4898
3324                                                   3262
3325                                                   1985
3326                                                   3683
3327                                                   3115
3328                                                   2731
3329                                                  54284
3330                                                  55605
3331                                                  79159
3332                                                 108398
3333                                                  58518
3334                                                  50017
3335                                                  52996
3336                                                  55231
3337                                                  75422
3338                                                  84697
3339                                                  53964
3340                                                  55586
3341                                                  54053
3342                                                  70129
3343                                                  85332
3344                                                  89424
3345                                                  73012
3346                                                  71113
3347                                                  69616
3348                                                  71827
3349                                                  70943
3350                                                  71526
3351                                                  73713
3352                                                  69177
3353                                                  80020
3354                                                 118888
3355                                                  99553
3356                                                  64426
3357                                                  65443
3358                                                  62728
3359                                                  95063
3360                                                 105960
3361                                                  76165
3362                                                  90445
3363                                                 111020
3364                                                 132005
3365                                                  56381
3366                                                  57345
3367                                                  50791
3368                                                  46922
3369                                                  46047
3370                                                  47504
3371                                                  49587
3372                                                  48902
3373                                                  46772
3374                                                  82199
3375                                                  99885
3376                                                  78647
3377                                                  95512
3378                                                  52491
3379                                                  82730
3380                                                  86026
3381                                                 503169
3382                                                 571587
3383                                                 643580
3384                                                 714900
3385                                                 445308
3386                                                 503089
3387                                                 480163
3388                                                 513466
3389                                                 432539
3390                                                 420152
3391                                                 526672
3392                                                 546921
3393                                                 534107
3394                                                 574457
3395                                                 649266
3396                                                 714506
3397                                                 719597
3398                                                 624795
3399                                                 625055
3400                                                 612988
3401                                                 711726
3402                                                 670208
3403                                                 651631
3404                                                 542103
3405                                                 546253
3406                                                 609483
3407                                                 657915
3408                                                 633636
3409                                                 695737
3410                                                 655972
3411                                                 682738
3412                                                 596612
3413                                                 620140
3414                                                 683287
3415                                                 671693
3416                                                 672950
3417                                                 646060
3418                                                 753608
3419                                                 690161
3420                                                 631284
3421                                                 620849
3422                                                 647713
3423                                                 705096
3424                                                 717452
3425                                                 543538
3426                                                 749745
3427                                                 766439
3428                                                 603100
3429                                                 187313
3430                                                 600984
3431                                                 558567
3432                                                 551922
3433                                                 123942
3434                                                 116070
3435                                                 110203
3436                                                 129941
3437                                                  86312
3438                                                  94900
3439                                                 133529
3440                                                 110498
3441                                                  99370
3442                                                 100520
3443                                                 129257
3444                                                 149622
3445                                                 124505
3446                                                 135132
3447                                                 134608
3448                                                 112292
3449                                                 146922
3450                                                 138029
3451                                                 150776
3452                                                 120450
3453                                                 168010
3454                                                 144731
3455                                                 128025
3456                                                 145159
3457                                                 190377
3458                                                 170576
3459                                                 165859
3460                                                 188106
3461                                                 179534
3462                                                 184535
3463                                                 181471
3464                                                 160299
3465                                                 159349
3466                                                 181355
3467                                                 153152
3468                                                 132551
3469                                                 171832
3470                                                 127375
3471                                                 153222
3472                                                 150919
3473                                                 138939
3474                                                 158017
3475                                                 145894
3476                                                 118100
3477                                                 155250
3478                                                 178547
3479                                                 230722
3480                                                 167669
3481                                                  25727
3482                                                 118600
3483                                                 146631
3484                                                 114122
3485                                                  89825
3486                                                  82537
3487                                                 135590
3488                                                 156550
3489                                                  86558
3490                                                  76105
3491                                                  78974
3492                                                  80605
3493                                                  75577
3494                                                  84501
3495                                                  83561
3496                                                  85267
3497                                                  83700
3498                                                  89632
3499                                                 105596
3500                                                 123014
3501                                                 119899
3502                                                 123354
3503                                                 121469
3504                                                 127204
3505                                                 127164
3506                                                 133526
3507                                                 133985
3508                                                 126818
3509                                                 117420
3510                                                 127175
3511                                                 116198
3512                                                 149056
3513                                                 162656
3514                                                 121770
3515                                                 127404
3516                                                 118921
3517                                                 139498
3518                                                 168697
3519                                                 109542
3520                                                 116268
3521                                                  96174
3522                                                 126215
3523                                                 121653
3524                                                  80333
3525                                                  78492
3526                                                  82407
3527                                                  79240
3528                                                  82100
3529                                                  76212
3530                                                 129795
3531                                                 169611
3532                                                 131407
3533                                                 154051
3534                                                  82804
3535                                                 133287
3536                                                 165617
3537                                                   1346
3538                                                    908
3539                                                   1045
3540                                                   1093
3541                                                   1330
3542                                                   1166
3543                                                   1341
3544                                                   1859
3545                                                   1991
3546                                                   1235
3547                                                   1511
3548                                                   1531
3549                                                   1618
3550                                                   2758
3551                                                   1407
3552                                                   1711
3553                                                   2699
3554                                                   2478
3555                                                   2042
3556                                                   1836
3557                                                   2220
3558                                                   2219
3559                                                   2350
3560                                                   2137
3561                                                   1971
3562                                                   2335
3563                                                   2370
3564                                                   3035
3565                                                   3254
3566                                                   1814
3567                                                   2080
3568                                                   1950
3569                                                   1673
3570                                                   1949
3571                                                   1858
3572                                                   2001
3573                                                   1878
3574                                                   2129
3575                                                   2410
3576                                                   2299
3577                                                   2126
3578                                                   2180
3579                                                   1975
3580                                                   2249
3581                                                   3581
3582                                                   3573
3583                                                   3936
3584                                                   3589
3585                                                   2407
3586                                                   3810
3587                                                   3615
3588                                                   3985
3589                                                 446144
3590                                                 466186
3591                                                 593674
3592                                                 674158
3593                                                 528089
3594                                                 482409
3595                                                 378864
3596                                                 398012
3597                                                 456451
3598                                                 480949
3599                                                 399216
3600                                                 419930
3601                                                 389791
3602                                                 484580
3603                                                 536657
3604                                                 552133
3605                                                 512921
3606                                                 456513
3607                                                 450527
3608                                                 459026
3609                                                 449400
3610                                                 448128
3611                                                 457453
3612                                                 429390
3613                                                 478537
3614                                                 574426
3615                                                 609218
3616                                                 608467
3617                                                 593779
3618                                                 467971
3619                                                 583307
3620                                                 565308
3621                                                 541980
3622                                                 610996
3623                                                 573870
3624                                                 624804
3625                                                 441314
3626                                                 497880
3627                                                 441200
3628                                                 370933
3629                                                 372245
3630                                                 370033
3631                                                 372606
3632                                                 369567
3633                                                 339775
3634                                                 502691
3635                                                 652666
3636                                                 496596
3637                                                 473647
3638                                                 364950
3639                                                 503915
3640                                                 604697
3641                                                  29000
3642                                                  25826
3643                                                  27492
3644                                                  27161
3645                                                  26022
3646                                                  29191
3647                                                  39007
3648                                                  40523
3649                                                  35333
3650                                                  35724
3651                                                  43579
3652                                                  43011
3653                                                  42262
3654                                                  68045
3655                                                  75558
3656                                                 108309
3657                                                  77541
3658                                                  45946
3659                                                  41522
3660                                                  49713
3661                                                  56263
3662                                                  48176
3663                                                  42713
3664                                                  37155
3665                                                  43879
3666                                                  41552
3667                                                  38571
3668                                                  41125
3669                                                  43254
3670                                                  40843
3671                                                  44169
3672                                                  40866
3673                                                  34543
3674                                                  47270
3675                                                  52277
3676                                                  50495
3677                                                  42205
3678                                                  42096
3679                                                  36367
3680                                                  35551
3681                                                  35428
3682                                                  35473
3683                                                  40528
3684                                                  36911
3685                                                  33668
3686                                                  39984
3687                                                  42668
3688                                                  30150
3689                                                  30858
3690                                                  37243
3691                                                  38270
3692                                                  36241
3693                                                   2978
3694                                                   4770
3695                                                   3322
3696                                                   3426
3697                                                   4270
3698                                                   4755
3699                                                   3119
3700                                                   3071
3701                                                   2705
3702                                                   4201
3703                                                   4397
3704                                                   7855
3705                                                  17696
3706                                                  42274
3707                                                  37691
3708                                                  84826
3709                                                  10731
3710                                                   3267
3711                                                   2618
3712                                                   6429
3713                                                   4285
3714                                                   3820
3715                                                   3244
3716                                                   3079
3717                                                   3435
3718                                                   3262
3719                                                   3521
3720                                                   4764
3721                                                   7760
3722                                                   4757
3723                                                   5717
3724                                                   3701
3725                                                   5224
3726                                                   6158
3727                                                   4164
3728                                                   4252
3729                                                   3818
3730                                                   4510
3731                                                   4184
3732                                                   3704
3733                                                   5156
3734                                                   4317
3735                                                   4867
3736                                                   5559
3737                                                   4492
3738                                                   6065
3739                                                   4835
3740                                                   5276
3741                                                   2331
3742                                                   4187
3743                                                   3362
3744                                                   4199
3745                                                 571304
3746                                                 576578
3747                                                 413908
3748                                                 592360
3749                                                 525325
3750                                                 466961
3751                                                 431732
3752                                                 430099
3753                                                 346283
3754                                                 371566
3755                                                 492463
3756                                                 483285
3757                                                 446277
3758                                                 463608
3759                                                 702368
3760                                                 729949
3761                                                 782983
3762                                                 610762
3763                                                 583161
3764                                                 590138
3765                                                 614770
3766                                                 547469
3767                                                 555710
3768                                                 551921
3769                                                 607070
3770                                                 545800
3771                                                 586636
3772                                                 627217
3773                                                 589477
3774                                                 555561
3775                                                 554092
3776                                                 569011
3777                                                 614770
3778                                                 670566
3779                                                 601670
3780                                                 656323
3781                                                 782314
3782                                                 757578
3783                                                 684633
3784                                                 553962
3785                                                 538381
3786                                                 585649
3787                                                 698790
3788                                                 674833
3789                                                 566062
3790                                                 518192
3791                                                 528670
3792                                                 484446
3793                                                 259465
3794                                                 447913
3795                                                 434472
3796                                                 356962
3797                                                   9561
3798                                                   9114
3799                                                  10029
3800                                                   9441
3801                                                   8422
3802                                                   9062
3803                                                   8853
3804                                                   9100
3805                                                   9278
3806                                                   7987
3807                                                  10968
3808                                                  11357
3809                                                  14489
3810                                                  16855
3811                                                  16666
3812                                                  17414
3813                                                  17530
3814                                                  13732
3815                                                  15022
3816                                                  15863
3817                                                  20926
3818                                                  16079
3819                                                  14627
3820                                                  15915
3821                                                  15126
3822                                                  15758
3823                                                  14453
3824                                                  17469
3825                                                  19443
3826                                                  16444
3827                                                  13153
3828                                                  10858
3829                                                  11249
3830                                                  17356
3831                                                  16728
3832                                                  12803
3833                                                  15361
3834                                                  15421
3835                                                  13073
3836                                                  10458
3837                                                  12096
3838                                                  11923
3839                                                  11773
3840                                                  11031
3841                                                  10807
3842                                                  13526
3843                                                  13927
3844                                                   8329
3845                                                   1804
3846                                                   5231
3847                                                   4590
3848                                                   5974
3849                                                  70780
3850                                                  49887
3851                                                  33586
3852                                                  63726
3853                                                  32945
3854                                                  35507
3855                                                  51958
3856                                                  43990
3857                                                  38168
3858                                                  42785
3859                                                  48625
3860                                                  43060
3861                                                  54429
3862                                                  58290
3863                                                  72171
3864                                                  70096
3865                                                 128269
3866                                                  90635
3867                                                  90679
3868                                                  98780
3869                                                  70054
3870                                                  67403
3871                                                  69899
3872                                                  77112
3873                                                  78118
3874                                                 137102
3875                                                  75055
3876                                                 115508
3877                                                  75764
3878                                                 124676
3879                                                 141301
3880                                                  83011
3881                                                  98257
3882                                                 113355
3883                                                 169412
3884                                                 104786
3885                                                  88553
3886                                                 106315
3887                                                  84766
3888                                                  70255
3889                                                  59970
3890                                                 103140
3891                                                  71185
3892                                                 108081
3893                                                  63677
3894                                                  74836
3895                                                 191441
3896                                                  76816
3897                                                 116714
3898                                                  73497
3899                                                 122360
3900                                                 103296
3901                                                 107318
3902                                                  88443
3903                                                  83683
3904                                                  93964
3905                                                 104641
3906                                                  94283
3907                                                 114476
3908                                                  84138
3909                                                  79019
3910                                                  67268
3911                                                  88625
3912                                                 121482
3913                                                  93430
3914                                                  98373
3915                                                 117939
3916                                                 200297
3917                                                 158224
3918                                                 123740
3919                                                 141809
3920                                                 129728
3921                                                 144863
3922                                                 125463
3923                                                 110869
3924                                                 118910
3925                                                 153906
3926                                                 135214
3927                                                 130217
3928                                                 164910
3929                                                 146589
3930                                                 156235
3931                                                 131708
3932                                                 122332
3933                                                 131370
3934                                                 170359
3935                                                 122125
3936                                                 125413
3937                                                 143901
3938                                                 151863
3939                                                 158984
3940                                                 155873
3941                                                 127950
3942                                                 130880
3943                                                 139919
3944                                                 122523
3945                                                 121215
3946                                                 144507
3947                                                 191144
3948                                                 117236
3949                                                   9727
3950                                                 108072
3951                                                 118959
3952                                                 103711
3953                                                 794840
3954                                                 767982
3955                                                 917099
3956                                                1076283
3957                                                 865743
3958                                                 880344
3959                                                 696411
3960                                                 543332
3961                                                 533137
3962                                                 768316
3963                                                 922290
3964                                                1153907
3965                                                1337603
3966                                                1328969
3967                                                 999949
3968                                                1217418
3969                                                1409249
3970                                                1471105
3971                                                1264168
3972                                                1050808
3973                                                1137248
3974                                                 961495
3975                                                1163035
3976                                                1201992
3977                                                1217453
3978                                                1317679
3979                                                1295217
3980                                                1322110
3981                                                1439519
3982                                                1596545
3983                                                1214456
3984                                                1084785
3985                                                1134719
3986                                                1416928
3987                                                1355794
3988                                                1115902
3989                                                1245345
3990                                                1130642
3991                                                 865504
3992                                                 982736
3993                                                 928106
3994                                                 767298
3995                                                 821036
3996                                                 812808
3997                                                 842358
3998                                                 931605
3999                                                1262681
4000                                                1004135
4001                                                 666019
4002                                                 804573
4003                                                 841326
4004                                                1232110
4005                                                   1338
4006                                                   1248
4007                                                   1368
4008                                                   1234
4009                                                   1047
4010                                                   1429
4011                                                   1469
4012                                                   1607
4013                                                   1770
4014                                                   1616
4015                                                   1539
4016                                                   1706
4017                                                   1352
4018                                                   1967
4019                                                   2115
4020                                                   3359
4021                                                   2682
4022                                                   1888
4023                                                   1980
4024                                                   2056
4025                                                   3574
4026                                                   2355
4027                                                   2352
4028                                                   2414
4029                                                   2785
4030                                                   2398
4031                                                   2762
4032                                                   2649
4033                                                   5366
4034                                                   2154
4035                                                   2052
4036                                                   2003
4037                                                   2286
4038                                                   2524
4039                                                   2499
4040                                                   2116
4041                                                   2121
4042                                                   1825
4043                                                   2091
4044                                                   1970
4045                                                   1893
4046                                                   1951
4047                                                   2029
4048                                                   2152
4049                                                   2368
4050                                                   2921
4051                                                   2805
4052                                                   2539
4053                                                   1673
4054                                                   2203
4055                                                   2088
4056                                                   2673
4057                                                 257456
4058                                                 237194
4059                                                 177621
4060                                                 267956
4061                                                 159915
4062                                                 179988
4063                                                 195573
4064                                                 176244
4065                                                 169008
4066                                                 164119
4067                                                 191041
4068                                                 153136
4069                                                 221783
4070                                                 251035
4071                                                 237187
4072                                                 226500
4073                                                 525594
4074                                                 290433
4075                                                 296955
4076                                                 400661
4077                                                 253093
4078                                                 247196
4079                                                 250298
4080                                                 241387
4081                                                 277354
4082                                                 479976
4083                                                 283281
4084                                                 474374
4085                                                 271971
4086                                                 474320
4087                                                 513205
4088                                                 273988
4089                                                 408466
4090                                                 349383
4091                                                 526289
4092                                                 419776
4093                                                 281532
4094                                                 399738
4095                                                 287271
4096                                                 240097
4097                                                 267188
4098                                                 399729
4099                                                 223852
4100                                                 428974
4101                                                 244779
4102                                                 219038
4103                                                 649647
4104                                                 287032
4105                                                 416814
4106                                                 276253
4107                                                 493952
4108                                                 349993
4109                                                 461611
4110                                                 491941
4111                                                 574107
4112                                                 605907
4113                                                 421296
4114                                                 478381
4115                                                 589047
4116                                                 569736
4117                                                 606276
4118                                                 611972
4119                                                 642845
4120                                                 651705
4121                                                 662662
4122                                                 748453
4123                                                 850690
4124                                                 938277
4125                                                 954421
4126                                                 745329
4127                                                 684458
4128                                                 666958
4129                                                 680836
4130                                                 612847
4131                                                 611049
4132                                                 582052
4133                                                 607743
4134                                                 653109
4135                                                 590855
4136                                                 674983
4137                                                 677444
4138                                                 673474
4139                                                 708287
4140                                                 658991
4141                                                 592139
4142                                                 711397
4143                                                 708527
4144                                                 665028
4145                                                 544933
4146                                                 589785
4147                                                 564867
4148                                                 558314
4149                                                 617677
4150                                                 573264
4151                                                 592137
4152                                                 593531
4153                                                 539072
4154                                                 654357
4155                                                 867822
4156                                                 555939
4157                                                 472744
4158                                                 631861
4159                                                 603274
4160                                                 675102
4161                                                  63237
4162                                                  66412
4163                                                  84856
4164                                                  82752
4165                                                  50379
4166                                                  53849
4167                                                  59293
4168                                                  66595
4169                                                  65787
4170                                                  66512
4171                                                  78566
4172                                                  77154
4173                                                  76163
4174                                                  79738
4175                                                  98830
4176                                                 144886
4177                                                 172939
4178                                                 104279
4179                                                 102331
4180                                                 102665
4181                                                  95352
4182                                                  88436
4183                                                  87693
4184                                                  90032
4185                                                  88754
4186                                                 106014
4187                                                 100032
4188                                                 135025
4189                                                 119783
4190                                                 136409
4191                                                 144140
4192                                                 115617
4193                                                 103730
4194                                                 114895
4195                                                 117137
4196                                                 111615
4197                                                  96001
4198                                                  98423
4199                                                  94345
4200                                                  98387
4201                                                 100108
4202                                                  91632
4203                                                  87363
4204                                                  99190
4205                                                 101831
4206                                                 103368
4207                                                 124530
4208                                                  90483
4209                                                  78105
4210                                                  98888
4211                                                 123087
4212                                                 131286
4213                                                 117055
4214                                                  83700
4215                                                  89506
4216                                                 143483
4217                                                  76604
4218                                                  86431
4219                                                 133594
4220                                                  98950
4221                                                  71231
4222                                                 102353
4223                                                 112347
4224                                                 114410
4225                                                 108880
4226                                                 141796
4227                                                 126047
4228                                                 141311
4229                                                 172989
4230                                                 171214
4231                                                 187528
4232                                                 148300
4233                                                 153071
4234                                                 141489
4235                                                 127609
4236                                                 141467
4237                                                 149482
4238                                                 194809
4239                                                 137324
4240                                                 162451
4241                                                 163475
4242                                                 176829
4243                                                 167413
4244                                                 152791
4245                                                 156109
4246                                                 304802
4247                                                 341116
4248                                                 150931
4249                                                 181796
4250                                                 166398
4251                                                 183585
4252                                                 138523
4253                                                 148493
4254                                                 160965
4255                                                 150786
4256                                                 173568
4257                                                 142079
4258                                                 175417
4259                                                 348348
4260                                                 164436
4261                                                 101029
4262                                                 158616
4263                                                 160167
4264                                                 159513
4265                                                  11330
4266                                                  14178
4267                                                  10995
4268                                                  13893
4269                                                  15264
4270                                                  16971
4271                                                  12169
4272                                                  10277
4273                                                   9265
4274                                                  11213
4275                                                  15611
4276                                                  20087
4277                                                  33926
4278                                                 121477
4279                                                 112702
4280                                                 239518
4281                                                  23916
4282                                                  19257
4283                                                  15005
4284                                                  18600
4285                                                  22522
4286                                                  16313
4287                                                  14629
4288                                                  12881
4289                                                  15424
4290                                                  14733
4291                                                  16028
4292                                                  16094
4293                                                  19084
4294                                                  15757
4295                                                  19730
4296                                                  16782
4297                                                  17964
4298                                                  26384
4299                                                  16424
4300                                                  19783
4301                                                  16212
4302                                                  19210
4303                                                  15437
4304                                                  17762
4305                                                  23279
4306                                                  28600
4307                                                  18108
4308                                                  18296
4309                                                  15028
4310                                                  23786
4311                                                  23983
4312                                                  18769
4313                                                  16058
4314                                                  18562
4315                                                  16165
4316                                                  16973
4317                                                 109609
4318                                                 140720
4319                                                 102684
4320                                                 130457
4321                                                 102216
4322                                                 126526
4323                                                 126870
4324                                                 124033
4325                                                 118904
4326                                                 137389
4327                                                 144613
4328                                                 154893
4329                                                 208055
4330                                                 446787
4331                                                 409569
4332                                                 703699
4333                                                 358040
4334                                                 490786
4335                                                 247659
4336                                                 316873
4337                                                 304605
4338                                                 224804
4339                                                 220814
4340                                                 196491
4341                                                 316660
4342                                                 210729
4343                                                 190137
4344                                                 184731
4345                                                 201928
4346                                                 154509
4347                                                 141465
4348                                                 104014
4349                                                 100735
4350                                                 135137
4351                                                 123023
4352                                                 125737
4353                                                 105340
4354                                                 113797
4355                                                  99895
4356                                                  99224
4357                                                 108457
4358                                                 122582
4359                                                 111264
4360                                                 105868
4361                                                  94936
4362                                                 121413
4363                                                 125570
4364                                                 102907
4365                                                  75380
4366                                                 102212
4367                                                  96952
4368                                                  96147
4369                                                  12141
4370                                                  14139
4371                                                   9683
4372                                                  24617
4373                                                  11304
4374                                                  15322
4375                                                  11996
4376                                                  10728
4377                                                  12253
4378                                                  17406
4379                                                  14794
4380                                                  14886
4381                                                  18423
4382                                                  23190
4383                                                  24644
4384                                                  35007
4385                                                  83711
4386                                                 211564
4387                                                  95075
4388                                                 114824
4389                                                 113313
4390                                                  79931
4391                                                  83735
4392                                                  75192
4393                                                 134476
4394                                                  78904
4395                                                  63778
4396                                                  53199
4397                                                  48479
4398                                                  32955
4399                                                  19245
4400                                                   2888
4401                                                   3334
4402                                                   3369
4403                                                   2527
4404                                                   2993
4405                                                   2034
4406                                                   2857
4407                                                   3195
4408                                                   2320
4409                                                   3205
4410                                                   3166
4411                                                   4141
4412                                                   4257
4413                                                   3998
4414                                                   4687
4415                                                   3738
4416                                                   3329
4417                                                    852
4418                                                   3556
4419                                                   2398
4420                                                   3485
4421                                                 131616
4422                                                 113248
4423                                                  84080
4424                                                 129744
4425                                                  76752
4426                                                  83654
4427                                                  97337
4428                                                  93321
4429                                                  82399
4430                                                  83781
4431                                                 104391
4432                                                  91532
4433                                                 117407
4434                                                 122726
4435                                                 133279
4436                                                 150965
4437                                                 275860
4438                                                 163537
4439                                                 170497
4440                                                 210919
4441                                                 143759
4442                                                 137791
4443                                                 145903
4444                                                 141752
4445                                                 143564
4446                                                 277838
4447                                                 143187
4448                                                 238794
4449                                                 143223
4450                                                 262311
4451                                                 283442
4452                                                 163428
4453                                                 218692
4454                                                 213997
4455                                                 301117
4456                                                 230753
4457                                                 172247
4458                                                 229925
4459                                                 178043
4460                                                 152991
4461                                                 136451
4462                                                 216900
4463                                                 142948
4464                                                 233310
4465                                                 145444
4466                                                 168684
4467                                                 370222
4468                                                 163157
4469                                                 234747
4470                                                 155453
4471                                                 279393
4472                                                 201919
4473                                                  11218
4474                                                  11535
4475                                                  12147
4476                                                  12336
4477                                                  10693
4478                                                  13381
4479                                                  14611
4480                                                  14396
4481                                                  13468
4482                                                  13408
4483                                                  15916
4484                                                  16119
4485                                                  18332
4486                                                  42045
4487                                                  47549
4488                                                  73604
4489                                                  47717
4490                                                  21610
4491                                                  14772
4492                                                  21070
4493                                                  23406
4494                                                  15975
4495                                                  13780
4496                                                  14420
4497                                                  15583
4498                                                  14355
4499                                                  15054
4500                                                  14408
4501                                                  14258
4502                                                  15486
4503                                                  15832
4504                                                  15265
4505                                                  14393
4506                                                  20317
4507                                                  16265
4508                                                  18439
4509                                                  17062
4510                                                  18475
4511                                                  17215
4512                                                  17181
4513                                                  17109
4514                                                  27514
4515                                                  16299
4516                                                  14692
4517                                                  14147
4518                                                  15846
4519                                                  16404
4520                                                  18326
4521                                                  12983
4522                                                  15195
4523                                                  14091
4524                                                  13858
4525                                                 595086
4526                                                 733772
4527                                                 508912
4528                                                 731182
4529                                                 464034
4530                                                 753471
4531                                                 437811
4532                                                 334096
4533                                                 261890
4534                                                 250713
4535                                                 273642
4536                                                 382979
4537                                                 345171
4538                                                 354470
4539                                                 377762
4540                                                 504499
4541                                                 947925
4542                                                 590086
4543                                                 991649
4544                                                 795944
4545                                                1031124
4546                                                 392456
4547                                                 423673
4548                                                 410871
4549                                                 485473
4550                                                 539429
4551                                                 848509
4552                                                 852657
4553                                                 471620
4554                                                 644912
4555                                                 823223
4556                                                 616428
4557                                                 877702
4558                                                 941813
4559                                                 657384
4560                                                 884293
4561                                                 662947
4562                                                 924032
4563                                                 690116
4564                                                 952967
4565                                                 877807
4566                                                 670917
4567                                                1037699
4568                                                 816555
4569                                                 560569
4570                                                 788381
4571                                                1093425
4572                                                 663697
4573                                                 537696
4574                                                 632962
4575                                                 868818
4576                                                 692404
4577                                                  21519
4578                                                  47068
4579                                                  22587
4580                                                  22112
4581                                                  17972
4582                                                  21812
4583                                                  22930
4584                                                  24892
4585                                                  25336
4586                                                  25223
4587                                                  23294
4588                                                  24596
4589                                                  27734
4590                                                  62849
4591                                                  28023
4592                                                  22513
4593                                                  18723
4594                                                  10388
4595                                                   1802
4596                                                   1544
4597                                                   1679
4598                                                   1433
4599                                                   1549
4600                                                   1416
4601                                                   1537
4602                                                   1482
4603                                                   1415
4604                                                   2064
4605                                                   3377
4606                                                   2020
4607                                                   1336
4608                                                   1083
4609                                                   1504
4610                                                   1848
4611                                                   1981
4612                                                   1301
4613                                                   1300
4614                                                   1737
4615                                                   1592
4616                                                   1247
4617                                                   1457
4618                                                   1631
4619                                                   1555
4620                                                   1210
4621                                                   1353
4622                                                   2425
4623                                                   3399
4624                                                   2259
4625                                                    107
4626                                                   1565
4627                                                   1767
4628                                                   1512
4629                                                 581227
4630                                                 581862
4631                                                 724149
4632                                                 946350
4633                                                 520566
4634                                                 518903
4635                                                 514296
4636                                                 576884
4637                                                 469958
4638                                                 520221
4639                                                 567498
4640                                                 589475
4641                                                 598896
4642                                                 673111
4643                                                 826480
4644                                                 780495
4645                                                 931227
4646                                                 823545
4647                                                 748383
4648                                                 882148
4649                                                 859776
4650                                                 658829
4651                                                 650652
4652                                                 615735
4653                                                 691422
4654                                                 684349
4655                                                1040820
4656                                                1093073
4657                                                 892690
4658                                                1242318
4659                                                1223081
4660                                                1062580
4661                                                 873323
4662                                                1198630
4663                                                 925373
4664                                                 887509
4665                                                 852518
4666                                                 886184
4667                                                 898127
4668                                                 773936
4669                                                 793584
4670                                                1102893
4671                                                 798295
4672                                                 716192
4673                                                 784111
4674                                                 869883
4675                                                1206795
4676                                                 870098
4677                                                 360743
4678                                                 634914
4679                                                 750885
4680                                                 999389
4681                                                 104032
4682                                                 103823
4683                                                  97136
4684                                                 109778
4685                                                  72973
4686                                                  80041
4687                                                  90572
4688                                                  83618
4689                                                  70233
4690                                                  77058
4691                                                 106967
4692                                                 107797
4693                                                  93261
4694                                                 122350
4695                                                 125312
4696                                                 155407
4697                                                 131619
4698                                                 119830
4699                                                 135899
4700                                                 134422
4701                                                 140180
4702                                                 135647
4703                                                 135877
4704                                                 138377
4705                                                 158448
4706                                                 162121
4707                                                 139894
4708                                                 154975
4709                                                 159711
4710                                                 153775
4711                                                 145240
4712                                                 140269
4713                                                 139703
4714                                                 155346
4715                                                 148330
4716                                                 147879
4717                                                  80085
4718                                                 115156
4719                                                  89147
4720                                                  82570
4721                                                  89990
4722                                                  89366
4723                                                  93796
4724                                                  83580
4725                                                  65381
4726                                                  98599
4727                                                  90313
4728                                                  83567
4729                                                  60001
4730                                                  91789
4731                                                 100450
4732                                                 101181
4733                                                  57637
4734                                                  60411
4735                                                  77872
4736                                                  80765
4737                                                  64282
4738                                                  66027
4739                                                  87802
4740                                                  79225
4741                                                  84333
4742                                                  88588
4743                                                  91951
4744                                                  85813
4745                                                  81422
4746                                                  88405
4747                                                  92754
4748                                                  55464
4749                                                  90299
4750                                                  88768
4751                                                  67591
4752                                                  69870
4753                                                  64078
4754                                                  59208
4755                                                  52638
4756                                                  47084
4757                                                  43146
4758                                                  64012
4759                                                  63248
4760                                                  69175
4761                                                  61649
4762                                                  69779
4763                                                  56828
4764                                                  58844
4765                                                  57226
4766                                                  56914
4767                                                  77784
4768                                                  69533
4769                                                  47754
4770                                                  62707
4771                                                  60612
4772                                                  44251
4773                                                  57434
4774                                                  65417
4775                                                  66432
4776                                                  59637
4777                                                  55054
4778                                                  71137
4779                                                  82797
4780                                                  61313
4781                                                  20212
4782                                                  47604
4783                                                  42070
4784                                                  65934
4785                                                  57198
4786                                                  64260
4787                                                  67314
4788                                                  82394
4789                                                  47392
4790                                                  61551
4791                                                  81429
4792                                                  73480
4793                                                  80900
4794                                                  70436
4795                                                  75897
4796                                                  90444
4797                                                  95733
4798                                                  88120
4799                                                  99452
4800                                                  96273
4801                                                 100754
4802                                                  87612
4803                                                  86900
4804                                                  89132
4805                                                  98313
4806                                                  85722
4807                                                  96398
4808                                                  82855
4809                                                  87548
4810                                                  89753
4811                                                  74356
4812                                                  67620
4813                                                  83556
4814                                                  67444
4815                                                  81288
4816                                                  79353
4817                                                  63701
4818                                                  89112
4819                                                  67527
4820                                                  73891
4821                                                  58574
4822                                                  60884
4823                                                  58169
4824                                                  61031
4825                                                  65822
4826                                                  53661
4827                                                  69079
4828                                                  68025
4829                                                  57431
4830                                                  69755
4831                                                 145747
4832                                                  52911
4833                                                  81686
4834                                                 102087
4835                                                  81955
4836                                                  79192
4837                                                  27393
4838                                                  29594
4839                                                  36800
4840                                                  43235
4841                                                  23710
4842                                                  31584
4843                                                  36640
4844                                                  39065
4845                                                  43906
4846                                                  40460
4847                                                  42681
4848                                                  46103
4849                                                  48667
4850                                                  50868
4851                                                  57841
4852                                                  59142
4853                                                  51973
4854                                                  48406
4855                                                  45316
4856                                                  42322
4857                                                  43872
4858                                                  44288
4859                                                  45204
4860                                                  42726
4861                                                  46153
4862                                                  42474
4863                                                  37011
4864                                                  38806
4865                                                  41650
4866                                                  39706
4867                                                  51556
4868                                                  55227
4869                                                  41009
4870                                                  46723
4871                                                  42590
4872                                                  42884
4873                                                  38227
4874                                                  41263
4875                                                  37271
4876                                                  45215
4877                                                  52022
4878                                                  37200
4879                                                  49401
4880                                                  52420
4881                                                  32922
4882                                                  47759
4883                                                  60920
4884                                                  32757
4885                                                  47641
4886                                                  64688
4887                                                  55844
4888                                                  59482
4889                                                 119612
4890                                                 125324
4891                                                 106960
4892                                                 110569
4893                                                  89559
4894                                                  94610
4895                                                  93242
4896                                                  93519
4897                                                  97714
4898                                                  82313
4899                                                 102990
4900                                                 133618
4901                                                 136133
4902                                                 135265
4903                                                 124963
4904                                                 140888
4905                                                 153240
4906                                                 150624
4907                                                 181120
4908                                                 154532
4909                                                 149607
4910                                                 140605
4911                                                 123359
4912                                                 150252
4913                                                 164625
4914                                                 163405
4915                                                 147822
4916                                                 157355
4917                                                 158599
4918                                                 169294
4919                                                 166777
4920                                                 156353
4921                                                 137852
4922                                                 171748
4923                                                 158376
4924                                                 173547
4925                                                 158324
4926                                                 152170
4927                                                 128563
4928                                                 129400
4929                                                 128297
4930                                                 139305
4931                                                 136469
4932                                                 133684
4933                                                 124241
4934                                                 143312
4935                                                 259382
4936                                                 145375
4937                                                  55327
4938                                                 105469
4939                                                 122363
4940                                                 141162
4941                                                 118030
4942                                                 106000
4943                                                 139067
4944                                                 214063
4945                                                 160596
4946                                                 135338
4947                                                 120524
4948                                                  89365
4949                                                  88975
4950                                                 127392
4951                                                 133021
4952                                                 143508
4953                                                 209856
4954                                                 217680
4955                                                 147767
4956                                                 164685
4957                                                 186261
4958                                                 244514
4959                                                 227978
4960                                                 151195
4961                                                 164926
4962                                                 156893
4963                                                 168729
4964                                                 169871
4965                                                 186259
4966                                                 182472
4967                                                 196596
4968                                                 182110
4969                                                 216162
4970                                                 242213
4971                                                 183029
4972                                                 157624
4973                                                 196230
4974                                                 210276
4975                                                 221162
4976                                                 209423
4977                                                 219231
4978                                                 190244
4979                                                 165482
4980                                                 183067
4981                                                 159593
4982                                                 151220
4983                                                 160581
4984                                                 143189
4985                                                 165757
4986                                                 173875
4987                                                 212981
4988                                                 174250
4989                                                 104832
4990                                                 164565
4991                                                 155538
4992                                                 204145
4993                                                 164596
4994                                                 173910
4995                                                 134468
4996                                                 159831
4997                                                 118187
4998                                                 120582
4999                                                 118821
5000                                                 109081
5001                                                 130025
5002                                                 133677
5003                                                 141221
5004                                                 163265
5005                                                 196086
5006                                                 210602
5007                                                 173635
5008                                                 222298
5009                                                 203090
5010                                                 258579
5011                                                 311234
5012                                                 266261
5013                                                 189862
5014                                                 185497
5015                                                 158291
5016                                                 200748
5017                                                 249271
5018                                                 202576
5019                                                 194825
5020                                                 210316
5021                                                 228295
5022                                                 278153
5023                                                 304281
5024                                                 247489
5025                                                 201206
5026                                                 259594
5027                                                 355141
5028                                                 313239
5029                                                 209131
5030                                                 216994
5031                                                 166177
5032                                                 167888
5033                                                 193704
5034                                                 192003
5035                                                 217966
5036                                                 238542
5037                                                 178439
5038                                                 200199
5039                                                 333064
5040                                                 236161
5041                                                 115037
5042                                                 141713
5043                                                 144507
5044                                                 204501
5045                                                  64750
5046                                                  67731
5047                                                  69914
5048                                                  75095
5049                                                  44831
5050                                                  56982
5051                                                  61375
5052                                                  58648
5053                                                  52131
5054                                                  69252
5055                                                  94033
5056                                                  74612
5057                                                  73072
5058                                                 101293
5059                                                 121885
5060                                                 154068
5061                                                 132309
5062                                                 114777
5063                                                 111363
5064                                                 103908
5065                                                 101061
5066                                                  93422
5067                                                  85460
5068                                                  94220
5069                                                 103864
5070                                                 101636
5071                                                  91565
5072                                                 101860
5073                                                 108550
5074                                                  97147
5075                                                  92530
5076                                                  92634
5077                                                  87749
5078                                                  88762
5079                                                  91136
5080                                                  86999
5081                                                  76011
5082                                                 125384
5083                                                 111242
5084                                                  91025
5085                                                  76059
5086                                                  71767
5087                                                 101164
5088                                                  96853
5089                                                  56523
5090                                                 105339
5091                                                 110676
5092                                                  75853
5093                                                 100315
5094                                                 155213
5095                                                 177584
5096                                                 179152
5097                                                 121219
5098                                                 103487
5099                                                 106629
5100                                                 122449
5101                                                  90091
5102                                                 105061
5103                                                 127839
5104                                                  97078
5105                                                  99127
5106                                                 128649
5107                                                 117958
5108                                                 109192
5109                                                 128825
5110                                                 148998
5111                                                 153617
5112                                                 156751
5113                                                 228636
5114                                                 197155
5115                                                 193878
5116                                                 198570
5117                                                 183406
5118                                                 156886
5119                                                 143275
5120                                                 144883
5121                                                 168421
5122                                                 214287
5123                                                 150192
5124                                                 211555
5125                                                 161172
5126                                                 186493
5127                                                 188093
5128                                                 135034
5129                                                 153126
5130                                                 216508
5131                                                 251274
5132                                                 151185
5133                                                 153726
5134                                                 158605
5135                                                 150247
5136                                                 136388
5137                                                 149730
5138                                                 175359
5139                                                 156335
5140                                                 178407
5141                                                 145774
5142                                                 180058
5143                                                 307136
5144                                                 159089
5145                                                 145617
5146                                                 149490
5147                                                 171276
5148                                                 195470
5149                                                2676153
5150                                                2789696
5151                                                2633723
5152                                                3146436
5153                                                2342116
5154                                                2351203
5155                                                2338884
5156                                                2443877
5157                                                1917985
5158                                                2043311
5159                                                2588087
5160                                                2650641
5161                                                2488199
5162                                                2674487
5163                                                3357771
5164                                                3652516
5165                                                3749549
5166                                                3166010
5167                                                3137489
5168                                                3062124
5169                                                3263107
5170                                                2925166
5171                                                3073632
5172                                                2950117
5173                                                3069816
5174                                                3114587
5175                                                3148032
5176                                                3271758
5177                                                3356664
5178                                                3351333
5179                                                3270603
5180                                                3128528
5181                                                3283251
5182                                                3666928
5183                                                3400699
5184                                                3348754
5185                                                3651444
5186                                                3665847
5187                                                3321836
5188                                                3137633
5189                                                3064744
5190                                                3228471
5191                                                3596736
5192                                                3528192
5193                                                2872173
5194                                                3382977
5195                                                3823016
5196                                                3003443
5197                                                1193350
5198                                                2836078
5199                                                2683173
5200                                                2512692
5201                                                1449894
5202                                                1236271
5203                                                1055827
5204                                                1481392
5205                                                 943433
5206                                                1054588
5207                                                1219549
5208                                                1086704
5209                                                1006135
5210                                                1086334
5211                                                1219511
5212                                                1122505
5213                                                1267964
5214                                                1398880
5215                                                1501213
5216                                                1673305
5217                                                2776885
5218                                                1919441
5219                                                1923227
5220                                                2241425
5221                                                1628428
5222                                                1502915
5223                                                1485492
5224                                                1466379
5225                                                1599856
5226                                                2549453
5227                                                1630877
5228                                                2441553
5229                                                1757284
5230                                                2504517
5231                                                2562670
5232                                                1634621
5233                                                2115292
5234                                                2196755
5235                                                2875233
5236                                                2132612
5237                                                1705009
5238                                                2127099
5239                                                1812848
5240                                                1671683
5241                                                1726223
5242                                                2211226
5243                                                1642178
5244                                                2325377
5245                                                1586507
5246                                                1737635
5247                                                3614202
5248                                                1774274
5249                                                2092736
5250                                                1721273
5251                                                2536174
5252                                                2208432
5253                                                  13135
5254                                                  11469
5255                                                  12118
5256                                                  10872
5257                                                   8072
5258                                                   9351
5259                                                  12238
5260                                                  11312
5261                                                   8157
5262                                                   8981
5263                                                  13123
5264                                                  13780
5265                                                  12841
5266                                                  17515
5267                                                  17028
5268                                                  25161
5269                                                  27415
5270                                                  24063
5271                                                  27169
5272                                                  24616
5273                                                  28152
5274                                                  25236
5275                                                  24997
5276                                                  25708
5277                                                  28564
5278                                                  29447
5279                                                  24210
5280                                                  27585
5281                                                  31353
5282                                                  29094
5283                                                  29399
5284                                                  28757
5285                                                  24776
5286                                                  32461
5287                                                  30544
5288                                                  26549
5289                                                  23286
5290                                                  31093
5291                                                  23190
5292                                                  21799
5293                                                  24107
5294                                                  22600
5295                                                  23604
5296                                                  21928
5297                                                  16913
5298                                                  22684
5299                                                  25010
5300                                                  19600
5301                                                  14123
5302                                                  20833
5303                                                  25931
5304                                                  25325
5305                                                  58511
5306                                                  58409
5307                                                  38790
5308                                                  40781
5309                                                  34165
5310                                                  40938
5311                                                  59890
5312                                                  64239
5313                                                  51882
5314                                                  90464
5315                                                  53894
5316                                                  49980
5317                                                  51859
5318                                                  89035
5319                                                  46991
5320                                                  97943
5321                                                  41710
5322                                                  43864
5323                                                  45179
5324                                                  53921
5325                                                  62086
5326                                                  54119
5327                                                  75714
5328                                                  53603
5329                                                  61310
5330                                                  65689
5331                                                  70090
5332                                                  68071
5333                                                  63118
5334                                                  69395
5335                                                  71157
5336                                                  85909
5337                                                  69857
5338                                                  68597
5339                                                  99574
5340                                                  65855
5341                                                  55008
5342                                                  83222
5343                                                  57658
5344                                                  49442
5345                                                  74089
5346                                                  67143
5347                                                  68571
5348                                                  52181
5349                                                  78891
5350                                                  55936
5351                                                  76563
5352                                                  79031
5353                                                  38175
5354                                                  55840
5355                                                  77169
5356                                                 105268
5357                                                    748
5358                                                    771
5359                                                    762
5360                                                    796
5361                                                    691
5362                                                    815
5363                                                   1266
5364                                                    922
5365                                                    967
5366                                                   1111
5367                                                   1344
5368                                                    980
5369                                                    987
5370                                                   3272
5371                                                   2411
5372                                                   1875
5373                                                   3546
5374                                                   5939
5375                                                   2904
5376                                                   4942
5377                                                   2724
5378                                                   1971
5379                                                   1941
5380                                                   2211
5381                                                   3503
5382                                                   1971
5383                                                   1952
5384                                                   2081
5385                                                   3485
5386                                                   1636
5387                                                   1260
5388                                                    951
5389                                                   1015
5390                                                   1144
5391                                                    992
5392                                                   1000
5393                                                    880
5394                                                    987
5395                                                    652
5396                                                    872
5397                                                    784
5398                                                    875
5399                                                   1024
5400                                                    862
5401                                                    918
5402                                                   1089
5403                                                   1463
5404                                                   1181
5405                                                     72
5406                                                   1078
5407                                                    758
5408                                                    839
5409                                                 157381
5410                                                 132947
5411                                                  99669
5412                                                 163610
5413                                                  92934
5414                                                  95447
5415                                                 124544
5416                                                 110779
5417                                                  93166
5418                                                  91272
5419                                                 116453
5420                                                 110106
5421                                                 123391
5422                                                 140783
5423                                                 132431
5424                                                 154295
5425                                                 298317
5426                                                 177293
5427                                                 175345
5428                                                 213371
5429                                                 147057
5430                                                 134859
5431                                                 143082
5432                                                 143892
5433                                                 141566
5434                                                 288162
5435                                                 143486
5436                                                 234054
5437                                                 136835
5438                                                 261221
5439                                                 287991
5440                                                 164834
5441                                                 214252
5442                                                 238893
5443                                                 336112
5444                                                 233226
5445                                                 183629
5446                                                 226151
5447                                                 196164
5448                                                 159310
5449                                                 148381
5450                                                 219895
5451                                                 149559
5452                                                 248402
5453                                                 146660
5454                                                 160675
5455                                                 385584
5456                                                 155283
5457                                                 184105
5458                                                 138371
5459                                                 250746
5460                                                 226406
5461                                                9255125
5462                                                9394066
5463                                                9009996
5464                                               11043351
5465                                                7891488
5466                                                8531161
5467                                                8235135
5468                                                7804253
5469                                                7100459
5470                                                7579629
5471                                                8810664
5472                                                9552502
5473                                                9534916
5474                                               10548061
5475                                               11337829
5476                                               12962763
5477                                               14643466
5478                                               12561056
5479                                               12725249
5480                                               12352933
5481                                               12197105
5482                                               10168972
5483                                               10331314
5484                                               10320463
5485                                               11457080
5486                                               12508937
5487                                               12189035
5488                                               13488852
5489                                               12291687
5490                                               13808859
5491                                               13682611
5492                                               11712000
5493                                               12447598
5494                                               14223305
5495                                               13748944
5496                                               12913697
5497                                               11954488
5498                                               12879820
5499                                               11320970
5500                                               11249198
5501                                               11134391
5502                                               11661687
5503                                               11824155
5504                                               11907395
5505                                               10015825
5506                                               11913078
5507                                               16573574
5508                                               11098088
5509                                                7020459
5510                                               10036598
5511                                               11441287
5512                                               11616506
5513                                                1951253
5514                                                2112070
5515                                                1687193
5516                                                2142010
5517                                                1525326
5518                                                2005353
5519                                                1740718
5520                                                1493575
5521                                                1398733
5522                                                1301894
5523                                                1613263
5524                                                1941978
5525                                                1560247
5526                                                1763860
5527                                                1966755
5528                                                2364734
5529                                                2858767
5530                                                2276321
5531                                                2887138
5532                                                2524279
5533                                                2858874
5534                                                1874227
5535                                                1812625
5536                                                1883575
5537                                                2293686
5538                                                2313259
5539                                                2645564
5540                                                2805283
5541                                                2213964
5542                                                2492774
5543                                                2670894
5544                                                2319082
5545                                                2693393
5546                                                2987239
5547                                                2324813
5548                                                2621906
5549                                                2283526
5550                                                2750666
5551                                                2376641
5552                                                2701808
5553                                                2557844
5554                                                2302276
5555                                                2817153
5556                                                2394790
5557                                                2022751
5558                                                2645973
5559                                                3353158
5560                                                2168766
5561                                                1121791
5562                                                2091962
5563                                                2530745
5564                                                2204871
5565                                                 484144
5566                                                 388322
5567                                                 308697
5568                                                 353340
5569                                                 415840
5570                                                 407046
5571                                                 429759
5572                                                 389129
5573                                                 230697
5574                                                 326068
5575                                                 490768
5576                                                 432642
5577                                                 326742
5578                                                 334016
5579                                                 471618
5580                                                 689424
5581                                                 570194
5582                                                 472159
5583                                                 484478
5584                                                 449883
5585                                                 500098
5586                                                 404008
5587                                                 432573
5588                                                 449794
5589                                                 571523
5590                                                 581533
5591                                                 558420
5592                                                 633115
5593                                                 552199
5594                                                 625920
5595                                                 556578
5596                                                 497605
5597                                                 581143
5598                                                 623287
5599                                                 489364
5600                                                 475419
5601                                                 538759
5602                                                 567764
5603                                                 552528
5604                                                 638259
5605                                                 572667
5606                                                 563342
5607                                                 548261
5608                                                 532850
5609                                                 531995
5610                                                 621735
5611                                                 755962
5612                                                 512430
5613                                                  45720
5614                                                 440675
5615                                                 486987
5616                                                 419119
5617                                                   2623
5618                                                   2812
5619                                                   2579
5620                                                   3220
5621                                                   3772
5622                                                   2413
5623                                                   2695
5624                                                   4509
5625                                                   2483
5626                                                   2960
5627                                                   3759
5628                                                   3383
5629                                                   3680
5630                                                   4411
5631                                                   2509
5632                                                   3986
5633                                                   3368
5634                                                   4738
5635                                                   2156
5636                                                   1554
5637                                                   1947
5638                                                   2457
5639                                                   1916
5640                                                   1906
5641                                                   2469
5642                                                   2899
5643                                                   2808
5644                                                   2225
5645                                                   2454
5646                                                   1990
5647                                                   1923
5648                                                   2346
5649                                                   2307
5650                                                   2805
5651                                                   2474
5652                                                   2573
5653                                                   4438
5654                                                   4363
5655                                                   3708
5656                                                   4531
5657                                                   3184
5658                                                   2333
5659                                                   2047
5660                                                   3123
5661                                                   3190
5662                                                   2703
5663                                                   3808
5664                                                   5667
5665                                                   3845
5666                                                   4120
5667                                                   3328
5668                                                   3355
5669                                                   4846
5670                                                 341061
5671                                                 212414
5672                                                 231133
5673                                                 274346
5674                                                 263807
5675                                                 211077
5676                                                 239860
5677                                                 251896
5678                                                 275750
5679                                                 256989
5680                                                 219172
5681                                                 197443
5682                                                 213443
5683                                                 222684
5684                                                 222498
5685                                                 204375
5686                                                 241057
5687                                                 235646
5688                                                 230032
5689                                                 230253
5690                                                 251178
5691                                                 252436
5692                                                 247039
5693                                                 285746
5694                                                 301472
5695                                                 233476
5696                                                 248096
5697                                                 249204
5698                                                 269329
5699                                                 318335
5700                                                 361266
5701                                                 273538
5702                                                 253793
5703                                                 265556
5704                                                 377225
5705                                                 304669
5706                                                 249318
5707                                                 237538
5708                                                 223170
5709                                                 226290
5710                                                 222457
5711                                                 215046
5712                                                 217625
5713                                                 237307
5714                                                 302620
5715                                                 279494
5716                                                 355571
5717                                                 442153
5718                                                 285148
5719                                                 320378
5720                                                 249160
5721                                                 279266
5722                                                 224074
5723                                                  66629
5724                                                  66339
5725                                                  67126
5726                                                 103332
5727                                                  69819
5728                                                  59916
5729                                                  64122
5730                                                  78052
5731                                                  93809
5732                                                  62567
5733                                                  60121
5734                                                  57543
5735                                                  58351
5736                                                  57841
5737                                                  58682
5738                                                  55766
5739                                                  52853
5740                                                  58997
5741                                                  51628
5742                                                  58935
5743                                                  61461
5744                                                  60785
5745                                                  57622
5746                                                  65421
5747                                                  64407
5748                                                  64096
5749                                                  57584
5750                                                  57368
5751                                                  62876
5752                                                  65666
5753                                                  62567
5754                                                  66151
5755                                                  70766
5756                                                  67663
5757                                                  75658
5758                                                  74467
5759                                                  69674
5760                                                  67840
5761                                                  71188
5762                                                  82572
5763                                                  70468
5764                                                  70368
5765                                                  72820
5766                                                  84609
5767                                                  82179
5768                                                  96159
5769                                                 190312
5770                                                 174325
5771                                                  81884
5772                                                  81909
5773                                                  76382
5774                                                  83250
5775                                                  54530
5776                                                  38196
5777                                                  39117
5778                                                  31969
5779                                                  53166
5780                                                  38662
5781                                                  28307
5782                                                  31177
5783                                                  37876
5784                                                  40651
5785                                                  33724
5786                                                  49926
5787                                                  30893
5788                                                  28953
5789                                                  33499
5790                                                  29756
5791                                                  35147
5792                                                  36441
5793                                                  30130
5794                                                  45399
5795                                                  42285
5796                                                  36652
5797                                                  37253
5798                                                  36727
5799                                                  36290
5800                                                  35748
5801                                                  47772
5802                                                  41134
5803                                                  41341
5804                                                  40472
5805                                                  40251
5806                                                  42303
5807                                                  40637
5808                                                  35312
5809                                                  38987
5810                                                  60550
5811                                                  41327
5812                                                  41816
5813                                                  43003
5814                                                  39292
5815                                                  41043
5816                                                  43566
5817                                                  33892
5818                                                  33062
5819                                                  29234
5820                                                  31701
5821                                                  33444
5822                                                  41601
5823                                                  36809
5824                                                  35678
5825                                                  34251
5826                                                  36085
5827                                                  35597
5828                                                  27845
5829                                                   9623
5830                                                  10727
5831                                                  10139
5832                                                  13210
5833                                                  12171
5834                                                  10677
5835                                                  11494
5836                                                  15689
5837                                                  13003
5838                                                  14781
5839                                                  19871
5840                                                  20138
5841                                                  16621
5842                                                  14890
5843                                                  10698
5844                                                  11827
5845                                                  10795
5846                                                  10210
5847                                                   7262
5848                                                   6723
5849                                                   7303
5850                                                   8619
5851                                                   8415
5852                                                   7994
5853                                                   9162
5854                                                   8736
5855                                                   6572
5856                                                   5988
5857                                                   5379
5858                                                   5556
5859                                                   5140
5860                                                   5970
5861                                                   5556
5862                                                   5153
5863                                                   6703
5864                                                   5759
5865                                                   9577
5866                                                   7319
5867                                                   5716
5868                                                   7963
5869                                                   6860
5870                                                   5709
5871                                                   5730
5872                                                   9209
5873                                                  11751
5874                                                  27791
5875                                                  83640
5876                                                  50890
5877                                                   5792
5878                                                   4741
5879                                                   5431
5880                                                   7544
5881                                                   4120
5882                                                   5925
5883                                                   7431
5884                                                   7563
5885                                                   7934
5886                                                   7805
5887                                                   6353
5888                                                   8870
5889                                                  10402
5890                                                   9707
5891                                                  11383
5892                                                  24441
5893                                                  26275
5894                                                  25377
5895                                                  22792
5896                                                  11991
5897                                                   7008
5898                                                   2860
5899                                                   2894
5900                                                   1872
5901                                                   2619
5902                                                   2321
5903                                                   2068
5904                                                   1769
5905                                                   1918
5906                                                   1791
5907                                                   2076
5908                                                   1954
5909                                                   1955
5910                                                   2124
5911                                                   1737
5912                                                   1454
5913                                                   1589
5914                                                   1486
5915                                                   1762
5916                                                   1772
5917                                                   1803
5918                                                   2555
5919                                                   3104
5920                                                   1954
5921                                                   3855
5922                                                   2184
5923                                                   1918
5924                                                   1457
5925                                                   1421
5926                                                   1196
5927                                                   1361
5928                                                   1773
5929                                                   1561
5930                                                   1542
5931                                                   1692
5932                                                   2012
5933                                                   1507
5934                                                   1285
5935                                                2280934
5936                                                1934362
5937                                                1901831
5938                                                2234102
5939                                                2333912
5940                                                1734281
5941                                                1879513
5942                                                2309785
5943                                                2148627
5944                                                1981731
5945                                                1604917
5946                                                1348029
5947                                                1377101
5948                                                1288267
5949                                                1383480
5950                                                1571530
5951                                                1677368
5952                                                1856634
5953                                                1889887
5954                                                1995269
5955                                                2346711
5956                                                2313743
5957                                                2179200
5958                                                2201005
5959                                                2319570
5960                                                2634902
5961                                                2527124
5962                                                2706875
5963                                                2691572
5964                                                2302945
5965                                                2378539
5966                                                2307940
5967                                                2077114
5968                                                2375685
5969                                                2851510
5970                                                2197824
5971                                                2027855
5972                                                2047142
5973                                                1926188
5974                                                1856673
5975                                                1693589
5976                                                1857645
5977                                                1871004
5978                                                1961188
5979                                                2193500
5980                                                1999799
5981                                                2429385
5982                                                3986430
5983                                                3009291
5984                                                3089604
5985                                                2075030
5986                                                1988635
5987                                                2266313
5988                                                  60767
5989                                                  53317
5990                                                  58017
5991                                                  58726
5992                                                  58826
5993                                                  45363
5994                                                  47542
5995                                                  53681
5996                                                  46741
5997                                                  52951
5998                                                  44544
5999                                                  45267
6000                                                  50018
6001                                                  43576
6002                                                  47607
6003                                                  56018
6004                                                  45960
6005                                                  49285
6006                                                  60886
6007                                                  57231
6008                                                  47263
6009                                                  43174
6010                                                  54840
6011                                                  50924
6012                                                  44530
6013                                                  62331
6014                                                  60812
6015                                                  53140
6016                                                  45497
6017                                                  50866
6018                                                  59350
6019                                                  55170
6020                                                  56078
6021                                                  52616
6022                                                  76881
6023                                                  57129
6024                                                  48221
6025                                                  48495
6026                                                  50325
6027                                                  47420
6028                                                  48844
6029                                                  42389
6030                                                  48009
6031                                                  43410
6032                                                  50330
6033                                                  46010
6034                                                  58974
6035                                                  95176
6036                                                  48873
6037                                                  42582
6038                                                  39546
6039                                                  56740
6040                                                  47765
6041                                                 144034
6042                                                  83138
6043                                                 113960
6044                                                 142086
6045                                                  99971
6046                                                  71736
6047                                                  86790
6048                                                  90581
6049                                                  96106
6050                                                 117423
6051                                                  84591
6052                                                  89192
6053                                                  62315
6054                                                  73349
6055                                                  79162
6056                                                  59561
6057                                                  65245
6058                                                  65247
6059                                                  87298
6060                                                  91478
6061                                                  64034
6062                                                  68696
6063                                                  76111
6064                                                  79551
6065                                                  91095
6066                                                  82890
6067                                                 128743
6068                                                 132426
6069                                                  68578
6070                                                  87527
6071                                                  79878
6072                                                  62151
6073                                                  67698
6074                                                  99653
6075                                                 133905
6076                                                  81817
6077                                                  81460
6078                                                  65083
6079                                                  70040
6080                                                  64888
6081                                                  60039
6082                                                  61928
6083                                                  59930
6084                                                  59137
6085                                                  52554
6086                                                  61491
6087                                                 144293
6088                                                 378806
6089                                                  86213
6090                                                 120093
6091                                                  78836
6092                                                  79630
6093                                                  87696
6094                                                  86073
6095                                                  34444
6096                                                  21460
6097                                                   5977
6098                                                   5197
6099                                                   3566
6100                                                   4314
6101                                                   5473
6102                                                   4581
6103                                                   4683
6104                                                   4778
6105                                                   6137
6106                                                   6658
6107                                                   7515
6108                                                   4560
6109                                                   4223
6110                                                   4526
6111                                                   4651
6112                                                   4200
6113                                                   4339
6114                                                   4610
6115                                                   4311
6116                                                   3802
6117                                                   4245
6118                                                   3860
6119                                                   3261
6120                                                   3711
6121                                                   4290
6122                                                   4453
6123                                                   7487
6124                                                  11154
6125                                                  10452
6126                                                   7946
6127                                                   8787
6128                                                   8438
6129                                                  11134
6130                                                   7434
6131                                                   7866
6132                                                   8796
6133                                                   7283
6134                                                   2738
6135                                                   2059
6136                                                   3110
6137                                                   2740
6138                                                   3307
6139                                                   2624
6140                                                   3907
6141                                                   3229
6142                                                   3041
6143                                                   3186
6144                                                   2940
6145                                                   4147
6146                                                   2647
6147                                                 103506
6148                                                  47452
6149                                                  55233
6150                                                  62870
6151                                                  74697
6152                                                  60008
6153                                                  78940
6154                                                  98437
6155                                                 108463
6156                                                  72723
6157                                                  46747
6158                                                  47436
6159                                                  46870
6160                                                  53368
6161                                                  53450
6162                                                  51846
6163                                                  54123
6164                                                  53868
6165                                                  86236
6166                                                  93231
6167                                                  59729
6168                                                  82089
6169                                                  87045
6170                                                  62107
6171                                                  61745
6172                                                  94170
6173                                                 109297
6174                                                 100496
6175                                                 115493
6176                                                  82014
6177                                                  82888
6178                                                  81187
6179                                                  84952
6180                                                  91333
6181                                                 126893
6182                                                  87270
6183                                                  70225
6184                                                  97053
6185                                                 107031
6186                                                  75025
6187                                                  68172
6188                                                  64866
6189                                                  62329
6190                                                  74970
6191                                                  63979
6192                                                  60793
6193                                                 100274
6194                                                 140454
6195                                                  66807
6196                                                  75920
6197                                                  90932
6198                                                 105023
6199                                                  87684
6200                                                 481105
6201                                                 565236
6202                                                 540252
6203                                                 637876
6204                                                 575766
6205                                                 523362
6206                                                 561075
6207                                                 509106
6208                                                 600272
6209                                                 548903
6210                                                 525022
6211                                                 480910
6212                                                 488696
6213                                                 492842
6214                                                 523101
6215                                                 562493
6216                                                 569828
6217                                                 589765
6218                                                 631381
6219                                                 624827
6220                                                 677059
6221                                                 663949
6222                                                 636100
6223                                                 640832
6224                                                 572059
6225                                                 675095
6226                                                 637768
6227                                                 688782
6228                                                 734957
6229                                                 734136
6230                                                 712765
6231                                                 747618
6232                                                 728359
6233                                                 674072
6234                                                 824175
6235                                                 653424
6236                                                 673961
6237                                                 756531
6238                                                 710379
6239                                                 798833
6240                                                 700655
6241                                                 591093
6242                                                 617249
6243                                                 558907
6244                                                 821922
6245                                                 501922
6246                                                 624160
6247                                                 882269
6248                                                 789341
6249                                                 850531
6250                                                 750094
6251                                                 556815
6252                                                 526728
6253                                                 127053
6254                                                 142027
6255                                                 157024
6256                                                 150701
6257                                                 149815
6258                                                 125916
6259                                                 132242
6260                                                 137872
6261                                                 122061
6262                                                 130556
6263                                                 126274
6264                                                 126305
6265                                                 133463
6266                                                 114291
6267                                                 125320
6268                                                 150992
6269                                                 114530
6270                                                 122403
6271                                                 122874
6272                                                 113450
6273                                                 148506
6274                                                 145451
6275                                                 145887
6276                                                 149314
6277                                                 108384
6278                                                 164107
6279                                                 124816
6280                                                 165524
6281                                                 185316
6282                                                 192092
6283                                                 198732
6284                                                 172557
6285                                                 145487
6286                                                 166017
6287                                                 147251
6288                                                 145243
6289                                                 162810
6290                                                 164061
6291                                                 136194
6292                                                 150611
6293                                                 158589
6294                                                 152539
6295                                                 138467
6296                                                 142858
6297                                                 139038
6298                                                 153258
6299                                                 204918
6300                                                 239164
6301                                                 172615
6302                                                 149313
6303                                                 147752
6304                                                 169104
6305                                                 138364
6306                                                 146334
6307                                                  50834
6308                                                  60129
6309                                                  89162
6310                                                 101693
6311                                                  71317
6312                                                 112881
6313                                                 163957
6314                                                 154127
6315                                                  91775
6316                                                  57747
6317                                                  57305
6318                                                  55417
6319                                                  56101
6320                                                  61576
6321                                                  56672
6322                                                  60774
6323                                                  58132
6324                                                  99924
6325                                                 113909
6326                                                  64305
6327                                                 101372
6328                                                 114943
6329                                                  66397
6330                                                 100370
6331                                                 119585
6332                                                  65065
6333                                                  96114
6334                                                 127581
6335                                                  71645
6336                                                  77884
6337                                                  83267
6338                                                  71334
6339                                                 110698
6340                                                 160715
6341                                                  64498
6342                                                  60299
6343                                                  68514
6344                                                  64659
6345                                                  65914
6346                                                  69602
6347                                                  71290
6348                                                  73391
6349                                                 117593
6350                                                 133390
6351                                                  82085
6352                                                 148920
6353                                                 214827
6354                                                 125847
6355                                                 129913
6356                                                 124453
6357                                                 157161
6358                                                 100364
6359                                                   2523
6360                                                   2190
6361                                                   2042
6362                                                   2212
6363                                                   2268
6364                                                   1864
6365                                                   2688
6366                                                   2585
6367                                                   2335
6368                                                   2264
6369                                                   2539
6370                                                   3560
6371                                                   2689
6372                                                   3178
6373                                                   2101
6374                                                   1714
6375                                                   2360
6376                                                   2660
6377                                                   1979
6378                                                   2504
6379                                                   3913
6380                                                   2082
6381                                                   2163
6382                                                   2241
6383                                                   2520
6384                                                   2225
6385                                                   2074
6386                                                   2010
6387                                                   2181
6388                                                   2308
6389                                                   2255
6390                                                   1824
6391                                                   1973
6392                                                   1660
6393                                                   2038
6394                                                   2009
6395                                                   1826
6396                                                   1857
6397                                                   2188
6398                                                   1804
6399                                                   1890
6400                                                   1750
6401                                                   1645
6402                                                   1498
6403                                                   1387
6404                                                   1224
6405                                                   1277
6406                                                   1574
6407                                                   1392
6408                                                   1153
6409                                                    935
6410                                                   1226
6411                                                   1218
6412                                                1092011
6413                                                 507534
6414                                                 605188
6415                                                 609987
6416                                                 603156
6417                                                 483896
6418                                                 581511
6419                                                 699961
6420                                                 696600
6421                                                 570309
6422                                                 444287
6423                                                 446923
6424                                                 419515
6425                                                 444534
6426                                                 458465
6427                                                 421370
6428                                                 441484
6429                                                 445856
6430                                                 629034
6431                                                 666458
6432                                                 504445
6433                                                 574438
6434                                                 628374
6435                                                 557160
6436                                                 613738
6437                                                 695313
6438                                                 740503
6439                                                 718886
6440                                                 707123
6441                                                 596035
6442                                                 559145
6443                                                 580441
6444                                                 605625
6445                                                 649626
6446                                                 923002
6447                                                 633332
6448                                                 536785
6449                                                 561510
6450                                                 583906
6451                                                 504640
6452                                                 474957
6453                                                 463864
6454                                                 460240
6455                                                 563498
6456                                                 565283
6457                                                 458083
6458                                                 765348
6459                                                1338530
6460                                                 593815
6461                                                 680491
6462                                                 667329
6463                                                 725717
6464                                                 636278
6465                                                  35963
6466                                                  37343
6467                                                  35591
6468                                                  43089
6469                                                  39382
6470                                                  30488
6471                                                  30820
6472                                                  31166
6473                                                  31048
6474                                                  30541
6475                                                  30374
6476                                                  32691
6477                                                  34257
6478                                                  37491
6479                                                  36336
6480                                                  32974
6481                                                  32676
6482                                                  39154
6483                                                  40614
6484                                                  40413
6485                                                  42116
6486                                                  42013
6487                                                  41369
6488                                                  44426
6489                                                  42951
6490                                                  41066
6491                                                  40998
6492                                                  40133
6493                                                  45186
6494                                                  50903
6495                                                  50485
6496                                                  53528
6497                                                  52736
6498                                                  52237
6499                                                  53636
6500                                                  54369
6501                                                  53509
6502                                                  50601
6503                                                  47838
6504                                                  53424
6505                                                  52944
6506                                                  59161
6507                                                  51307
6508                                                  53962
6509                                                  52855
6510                                                  56042
6511                                                 105171
6512                                                 117876
6513                                                  64322
6514                                                  49775
6515                                                  47537
6516                                                  51591
6517                                                  41801
6518                                                   4805
6519                                                   5611
6520                                                   6272
6521                                                  18098
6522                                                   5716
6523                                                   5695
6524                                                   4591
6525                                                   6490
6526                                                   5209
6527                                                   5939
6528                                                   7441
6529                                                   7043
6530                                                   7540
6531                                                   6771
6532                                                   4810
6533                                                   7489
6534                                                   5195
6535                                                   4477
6536                                                   4246
6537                                                   3660
6538                                                   4240
6539                                                   5057
6540                                                   5478
6541                                                   8142
6542                                                  10004
6543                                                  10848
6544                                                   9173
6545                                                   8658
6546                                                   5735
6547                                                  11602
6548                                                  10922
6549                                                  10672
6550                                                  10370
6551                                                   4502
6552                                                   6755
6553                                                   7021
6554                                                   8181
6555                                                   6809
6556                                                   7410
6557                                                  10131
6558                                                   7861
6559                                                   5615
6560                                                   4902
6561                                                   8437
6562                                                  11083
6563                                                  30001
6564                                                  85641
6565                                                  52461
6566                                                   4741
6567                                                   4349
6568                                                   4665
6569                                                   5105
6570                                                   2772
6571                                                 564063
6572                                                 486643
6573                                                 429277
6574                                                 459265
6575                                                 540763
6576                                                 501157
6577                                                 620361
6578                                                 514065
6579                                                 526091
6580                                                 481865
6581                                                 492168
6582                                                 476687
6583                                                 491562
6584                                                 472252
6585                                                 470511
6586                                                 460807
6587                                                 606027
6588                                                 426424
6589                                                 510227
6590                                                 458024
6591                                                 406049
6592                                                 552896
6593                                                 536259
6594                                                 510128
6595                                                 475986
6596                                                 565234
6597                                                 559731
6598                                                 569850
6599                                                 583953
6600                                                 627611
6601                                                 603107
6602                                                 627786
6603                                                 579271
6604                                                 625728
6605                                                 732115
6606                                                 576270
6607                                                 665436
6608                                                 820487
6609                                                 684060
6610                                                 879080
6611                                                 663134
6612                                                 653307
6613                                                 619358
6614                                                 697103
6615                                                1067092
6616                                                 565042
6617                                                 781130
6618                                                1026765
6619                                                 789020
6620                                                 798586
6621                                                1134750
6622                                                 933182
6623                                                 985040
6624                                                  67905
6625                                                  22249
6626                                                  18372
6627                                                   9369
6628                                                   8806
6629                                                   7132
6630                                                   7408
6631                                                  11814
6632                                                   8576
6633                                                   8565
6634                                                   8945
6635                                                   9351
6636                                                  10072
6637                                                   9051
6638                                                   7949
6639                                                   7890
6640                                                   8832
6641                                                   7686
6642                                                   8672
6643                                                   7183
6644                                                   7054
6645                                                   7818
6646                                                   7453
6647                                                   7483
6648                                                   9862
6649                                                   8754
6650                                                   8629
6651                                                   7379
6652                                                  11624
6653                                                  11584
6654                                                  11335
6655                                                  11652
6656                                                  13080
6657                                                  17927
6658                                                  22285
6659                                                  14828
6660                                                  11832
6661                                                  13018
6662                                                  11776
6663                                                  11376
6664                                                  12343
6665                                                  12799
6666                                                  10980
6667                                                  12866
6668                                                  12096
6669                                                  12336
6670                                                  17435
6671                                                  19444
6672                                                  12914
6673                                                  13553
6674                                                  15259
6675                                                  17784
6676                                                  16193
6677                                                 115794
6678                                                  67109
6679                                                  98660
6680                                                  95943
6681                                                  87017
6682                                                  65331
6683                                                  84638
6684                                                  85332
6685                                                  74309
6686                                                 108447
6687                                                  89649
6688                                                  75857
6689                                                  89903
6690                                                  68331
6691                                                  82615
6692                                                  82016
6693                                                  62701
6694                                                  82574
6695                                                  83467
6696                                                  86429
6697                                                  90069
6698                                                  82275
6699                                                  89090
6700                                                 101545
6701                                                  88735
6702                                                  98758
6703                                                 113927
6704                                                  99600
6705                                                  94578
6706                                                 119698
6707                                                 119655
6708                                                  96509
6709                                                  86716
6710                                                  79945
6711                                                 155607
6712                                                 150982
6713                                                  85994
6714                                                  83665
6715                                                  81449
6716                                                  84325
6717                                                  81656
6718                                                  72614
6719                                                  78257
6720                                                  71350
6721                                                  90292
6722                                                  72634
6723                                                 107196
6724                                                 191954
6725                                                  87624
6726                                                  75809
6727                                                  80023
6728                                                  47783
6729                                                  94910
6730                                                  57664
6731                                                  63831
6732                                                  62937
6733                                                  65072
6734                                                  66925
6735                                                  52245
6736                                                  60519
6737                                                  57132
6738                                                  57828
6739                                                  56225
6740                                                  61741
6741                                                  57479
6742                                                  62574
6743                                                  58262
6744                                                  59560
6745                                                  64271
6746                                                 116268
6747                                                  95446
6748                                                 107288
6749                                                 109202
6750                                                 100523
6751                                                 114985
6752                                                 113472
6753                                                 114294
6754                                                 131681
6755                                                 138190
6756                                                 129619
6757                                                 130867
6758                                                 133508
6759                                                 158132
6760                                                 137455
6761                                                 130568
6762                                                 117367
6763                                                 125448
6764                                                 160728
6765                                                 113105
6766                                                 118344
6767                                                 119501
6768                                                 115812
6769                                                 118798
6770                                                 117623
6771                                                 111396
6772                                                 114791
6773                                                 119712
6774                                                  97278
6775                                                 135002
6776                                                 128160
6777                                                 286395
6778                                                 120542
6779                                                 133276
6780                                                 118905
6781                                                 112947
6782                                                  95268
6783                                                1368620
6784                                                1076721
6785                                                1046466
6786                                                1024593
6787                                                1177940
6788                                                 987928
6789                                                1042472
6790                                                1225567
6791                                                1079147
6792                                                1085429
6793                                                 924451
6794                                                 741759
6795                                                 753730
6796                                                 725653
6797                                                 768659
6798                                                 837463
6799                                                 898754
6800                                                1050439
6801                                                1096036
6802                                                1207541
6803                                                1412649
6804                                                1359070
6805                                                1263812
6806                                                1266619
6807                                                1327686
6808                                                1520215
6809                                                1521073
6810                                                1609002
6811                                                1581223
6812                                                1280363
6813                                                1330141
6814                                                1296067
6815                                                1169689
6816                                                1376169
6817                                                1745366
6818                                                1329982
6819                                                1118406
6820                                                1044500
6821                                                 957440
6822                                                 975079
6823                                                 861802
6824                                                 965782
6825                                                 974291
6826                                                 897311
6827                                                 980146
6828                                                1029675
6829                                                1181121
6830                                                1741607
6831                                                1439454
6832                                                1715034
6833                                                1075573
6834                                                 969758
6835                                                1223299
6836                                                  26049
6837                                                   6596
6838                                                   6894
6839                                                   6065
6840                                                   2489
6841                                                   1858
6842                                                   2182
6843                                                   3181
6844                                                   3045
6845                                                   3751
6846                                                   3538
6847                                                   3404
6848                                                   4093
6849                                                   3158
6850                                                   2257
6851                                                   2266
6852                                                   2337
6853                                                   2707
6854                                                   3038
6855                                                   2852
6856                                                   2736
6857                                                   2317
6858                                                   2385
6859                                                   2204
6860                                                   3059
6861                                                   2696
6862                                                   2606
6863                                                   2137
6864                                                   2582
6865                                                   2252
6866                                                   2191
6867                                                   2099
6868                                                   2091
6869                                                   2266
6870                                                   2467
6871                                                   2431
6872                                                   2092
6873                                                   2110
6874                                                   2222
6875                                                   2229
6876                                                   2435
6877                                                   1884
6878                                                   2122
6879                                                   1915
6880                                                   2182
6881                                                   1980
6882                                                   2079
6883                                                   2215
6884                                                   2083
6885                                                   2408
6886                                                   2069
6887                                                   2489
6888                                                   1692
6889                                                 499353
6890                                                 336797
6891                                                 449485
6892                                                 484033
6893                                                 358080
6894                                                 302437
6895                                                 418092
6896                                                 336664
6897                                                 314039
6898                                                 450543
6899                                                 378185
6900                                                 324878
6901                                                 302211
6902                                                 254128
6903                                                 291021
6904                                                 278164
6905                                                 266570
6906                                                 323446
6907                                                 302628
6908                                                 317677
6909                                                 383487
6910                                                 341186
6911                                                 342501
6912                                                 374063
6913                                                 367931
6914                                                 371244
6915                                                 419259
6916                                                 349941
6917                                                 311873
6918                                                 447673
6919                                                 449727
6920                                                 403556
6921                                                 383030
6922                                                 373018
6923                                                 569792
6924                                                 511843
6925                                                 333198
6926                                                 329068
6927                                                 312737
6928                                                 299395
6929                                                 297987
6930                                                 297628
6931                                                 286726
6932                                                 273177
6933                                                 328099
6934                                                 262618
6935                                                 462515
6936                                                 689711
6937                                                 271896
6938                                                 308900
6939                                                 251140
6940                                                 209904
6941                                                 309692
6942                                                 937260
6943                                                 589483
6944                                                 586473
6945                                                 728666
6946                                                 755828
6947                                                 488106
6948                                                 567752
6949                                                 670773
6950                                                 797196
6951                                                 639487
6952                                                 537789
6953                                                 529662
6954                                                 515354
6955                                                 484619
6956                                                 494295
6957                                                 512068
6958                                                 466611
6959                                                 512115
6960                                                 577443
6961                                                 613834
6962                                                 595916
6963                                                 601191
6964                                                 613040
6965                                                 613827
6966                                                 566735
6967                                                 643600
6968                                                 663115
6969                                                 673327
6970                                                 600416
6971                                                 640517
6972                                                 699462
6973                                                 750399
6974                                                 740206
6975                                                 721744
6976                                                 926758
6977                                                 771445
6978                                                 617150
6979                                                 618950
6980                                                 650950
6981                                                 670531
6982                                                 673396
6983                                                 607104
6984                                                 718846
6985                                                 737562
6986                                                 689257
6987                                                 665322
6988                                                 936824
6989                                                1220323
6990                                                 740797
6991                                                 737949
6992                                                 693675
6993                                                 777266
6994                                                 653896
6995                                                 159029
6996                                                  96259
6997                                                  97644
6998                                                 123093
6999                                                 123038
7000                                                  83217
7001                                                 104128
7002                                                 121879
7003                                                 144908
7004                                                 125955
7005                                                  97915
7006                                                  87210
7007                                                  77117
7008                                                  73759
7009                                                  74533
7010                                                  70892
7011                                                  72428
7012                                                  76965
7013                                                  82465
7014                                                 114191
7015                                                 124291
7016                                                 106179
7017                                                 106460
7018                                                  95944
7019                                                  93140
7020                                                 101168
7021                                                 112545
7022                                                 114570
7023                                                 108421
7024                                                 107489
7025                                                 133059
7026                                                 149462
7027                                                 139176
7028                                                 124826
7029                                                 169744
7030                                                 147000
7031                                                 109054
7032                                                 111412
7033                                                 110091
7034                                                 122671
7035                                                 135016
7036                                                 110762
7037                                                 154343
7038                                                 174850
7039                                                 121850
7040                                                 113868
7041                                                 139709
7042                                                 182396
7043                                                 109656
7044                                                 112821
7045                                                 109164
7046                                                 126439
7047                                                 112089
7048                                                 164148
7049                                                 127281
7050                                                 151886
7051                                                 144317
7052                                                 163448
7053                                                  96043
7054                                                 118191
7055                                                 176864
7056                                                 131135
7057                                                 169106
7058                                                 159834
7059                                                 135384
7060                                                 207981
7061                                                 132185
7062                                                 129861
7063                                                 136981
7064                                                 123071
7065                                                 129857
7066                                                 133655
7067                                                 128288
7068                                                 130628
7069                                                 130001
7070                                                 142551
7071                                                 155839
7072                                                 120631
7073                                                 156936
7074                                                 177147
7075                                                 168867
7076                                                 177973
7077                                                 187011
7078                                                 158512
7079                                                 182795
7080                                                 155348
7081                                                 139087
7082                                                 261367
7083                                                 193113
7084                                                 134822
7085                                                 156177
7086                                                 134722
7087                                                 137881
7088                                                 133158
7089                                                 130994
7090                                                 145740
7091                                                 134356
7092                                                 190220
7093                                                 123639
7094                                                 160041
7095                                                 400600
7096                                                 208315
7097                                                 138670
7098                                                 171326
7099                                                 124109
7100                                                 175386
7101                                                  36680
7102                                                  36685
7103                                                  35511
7104                                                  48483
7105                                                  42352
7106                                                  39943
7107                                                  47063
7108                                                  51661
7109                                                  61830
7110                                                  74424
7111                                                  71423
7112                                                  75695
7113                                                  75445
7114                                                  83288
7115                                                  77197
7116                                                  71451
7117                                                  76108
7118                                                  72173
7119                                                  73401
7120                                                  72101
7121                                                  64028
7122                                                  59767
7123                                                  63099
7124                                                  63537
7125                                                  71450
7126                                                  82965
7127                                                  56685
7128                                                  53675
7129                                                  55733
7130                                                  54294
7131                                                  51741
7132                                                  52862
7133                                                  54128
7134                                                  51359
7135                                                  56815
7136                                                  48043
7137                                                  45533
7138                                                  38975
7139                                                  37746
7140                                                  36139
7141                                                  28450
7142                                                  16705
     NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                   54455
2                                                   44639
3                                                  109150
4                                                   71976
5                                                   43838
6                                                   48068
7                                                   73673
8                                                  101815
9                                                   87316
10                                                  64757
11                                                  75596
12                                                  52678
13                                                  49881
14                                                  99409
15                                                  59313
16                                                  65697
17                                                  90063
18                                                  94363
19                                                  67934
20                                                  68666
21                                                 100961
22                                                  62035
23                                                  91949
24                                                  82049
25                                                  94694
26                                                  72601
27                                                  57546
28                                                  76689
29                                                  55401
30                                                  99221
31                                                  70470
32                                                  71377
33                                                  81955
34                                                 102001
35                                                  45490
36                                                  35842
37                                                  33942
38                                                  30374
39                                                  35578
40                                                  58623
41                                                  34314
42                                                  30447
43                                                  30371
44                                                  45633
45                                                  35056
46                                                  30046
47                                                  39112
48                                                  60017
49                                                  33196
50                                                  31540
51                                                  31640
52                                                  28287
53                                                  27351
54                                                  20702
55                                                  31019
56                                                  23741
57                                                  28890
58                                                  29732
59                                                  28442
60                                                  34483
61                                                  62980
62                                                  64608
63                                                  59732
64                                                  91047
65                                                  92780
66                                                  61871
67                                                  82763
68                                                  62486
69                                                  73676
70                                                  44839
71                                                  46224
72                                                  41992
73                                                  47040
74                                                  41907
75                                                  44087
76                                                  47838
77                                                  37953
78                                                  54675
79                                                  37699
80                                                  30232
81                                                  17701
82                                                  22414
83                                                  19543
84                                                  27284
85                                                  18619
86                                                  18861
87                                                  28568
88                                                  18366
89                                                  18041
90                                                  22420
91                                                  19254
92                                                  16652
93                                                  23420
94                                                  16508
95                                                  15789
96                                                  21184
97                                                  18325
98                                                  17420
99                                                  17163
100                                                 31583
101                                                 18718
102                                                 18702
103                                                 18958
104                                                 23821
105                                                394104
106                                                434591
107                                                399852
108                                                453587
109                                                379156
110                                                386138
111                                                503470
112                                                576513
113                                                473819
114                                                397911
115                                                745385
116                                                392009
117                                                407610
118                                                451061
119                                                450283
120                                                675524
121                                                522568
122                                                458207
123                                                499100
124                                                597185
125                                                557364
126                                                535167
127                                                496509
128                                                496206
129                                                547537
130                                                567641
131                                                534535
132                                                527867
133                                                593500
134                                                462951
135                                                617814
136                                                560740
137                                                455167
138                                                507104
139                                                536710
140                                                431533
141                                                427623
142                                                523170
143                                                401279
144                                                398051
145                                                524971
146                                                395837
147                                                367671
148                                                498873
149                                                445971
150                                                361677
151                                                554857
152                                                666010
153                                                386399
154                                                393360
155                                                420838
156                                                552906
157                                                  2972
158                                                  2546
159                                                  2986
160                                                 12527
161                                                  2790
162                                                  3256
163                                                 12086
164                                                  4652
165                                                  4360
166                                                 10090
167                                                  9069
168                                                 33416
169                                                 10822
170                                                  5754
171                                                 21592
172                                                  4394
173                                                  5402
174                                                  5810
175                                                 14861
176                                                  5258
177                                                  5034
178                                                  5141
179                                                  4856
180                                                  5300
181                                                  5803
182                                                  8022
183                                                  6573
184                                                 15445
185                                                 17880
186                                                  7238
187                                                  7421
188                                                 14839
189                                                  7394
190                                                 15897
191                                                  7942
192                                                  7985
193                                                 21631
194                                                  8506
195                                                  9060
196                                                  7120
197                                                  6590
198                                                  7018
199                                                  7206
200                                                 23739
201                                                 16375
202                                                  7840
203                                                  9647
204                                                 36532
205                                                  7556
206                                                  6342
207                                                 10998
208                                                 24964
209                                                346965
210                                                390101
211                                                455362
212                                                407520
213                                                272719
214                                                383420
215                                                420937
216                                                542881
217                                                449532
218                                                430726
219                                                627504
220                                                378296
221                                                427359
222                                                463080
223                                                398673
224                                                560792
225                                                477868
226                                                438503
227                                                488292
228                                                464476
229                                                590998
230                                                468592
231                                                393282
232                                                477630
233                                                471640
234                                                418251
235                                                403231
236                                                404909
237                                                521255
238                                                421007
239                                                418105
240                                                490486
241                                                380514
242                                                476828
243                                                429586
244                                                352464
245                                                384880
246                                                294164
247                                                330425
248                                                339299
249                                                344397
250                                                308997
251                                                290513
252                                                383574
253                                                251341
254                                                281106
255                                                495732
256                                                373452
257                                                288095
258                                                287779
259                                                320577
260                                                396752
261                                                 39543
262                                                 38431
263                                                 40783
264                                                 58197
265                                                 35683
266                                                 38781
267                                                 41457
268                                                 49507
269                                                 61875
270                                                 36646
271                                                 40702
272                                                 50862
273                                                 38353
274                                                 60293
275                                                 39832
276                                                 48469
277                                                 49388
278                                                 61601
279                                                 43655
280                                                 45938
281                                                 56289
282                                                 44621
283                                                 45615
284                                                 54493
285                                                 47295
286                                                 56925
287                                                 51802
288                                                 47846
289                                                 48287
290                                                 58000
291                                                 54249
292                                                 55019
293                                                 61668
294                                                 73754
295                                                 50266
296                                                 49557
297                                                 52955
298                                                 45444
299                                                 51024
300                                                 48430
301                                                 45420
302                                                 45689
303                                                 61974
304                                                 41685
305                                                 45394
306                                                 43272
307                                                 66262
308                                                 64771
309                                                 54007
310                                                 61860
311                                                 50985
312                                                 55693
313                                               1760956
314                                               1543281
315                                               1627241
316                                               2100246
317                                               1810203
318                                               1917125
319                                               2164099
320                                               1758965
321                                               2596785
322                                               2025016
323                                               2286236
324                                               2530023
325                                               2788318
326                                               2635028
327                                               2230694
328                                               2388023
329                                               2077194
330                                               1660274
331                                               1798911
332                                               1731349
333                                               2196705
334                                               1737846
335                                               1636660
336                                               1629872
337                                               1923893
338                                               2120303
339                                               1610910
340                                               1743509
341                                               1771909
342                                               1860329
343                                               1826497
344                                               1873206
345                                               1649624
346                                               1735132
347                                               3403145
348                                               1729487
349                                               2070974
350                                               1988818
351                                               1886169
352                                               1869271
353                                               2314394
354                                               1737354
355                                               1649936
356                                               2460932
357                                               1933699
358                                               1620462
359                                               2200394
360                                               3460744
361                                               1827783
362                                               2108450
363                                               2485720
364                                               2267755
365                                                 62956
366                                                 55521
367                                                 62544
368                                                 63075
369                                                 53471
370                                                 53645
371                                                 80245
372                                                 54456
373                                                 47080
374                                                 38357
375                                                 54519
376                                                 45669
377                                                 44671
378                                                 54210
379                                                 46906
380                                                 41617
381                                                 62187
382                                                 41701
383                                                 50476
384                                                 42068
385                                                 43783
386                                                 48687
387                                                 39608
388                                                 49072
389                                                 56317
390                                                 73470
391                                                 58162
392                                                 58913
393                                                 64829
394                                                 45227
395                                                 43260
396                                                 59208
397                                                 46424
398                                                 42864
399                                                 69447
400                                                 44797
401                                                 41954
402                                                 50390
403                                                 40448
404                                                 50741
405                                                 44727
406                                                 48596
407                                                 39245
408                                                 40007
409                                                 48499
410                                                 38592
411                                                 35567
412                                                 71210
413                                                 44001
414                                                 40476
415                                                 38119
416                                                 47221
417                                                445219
418                                                464574
419                                                451470
420                                                455048
421                                                422479
422                                                553545
423                                                441754
424                                                498562
425                                                562215
426                                                454353
427                                                482992
428                                                503814
429                                                485262
430                                                532029
431                                                534644
432                                                546965
433                                                581941
434                                                570147
435                                                550360
436                                                609692
437                                                526303
438                                                559825
439                                                577460
440                                                560872
441                                                545739
442                                                661207
443                                                524477
444                                                536926
445                                                586037
446                                                544664
447                                                518850
448                                                611797
449                                                569043
450                                                545784
451                                                690168
452                                                543002
453                                                594215
454                                                488323
455                                                530947
456                                                545318
457                                                596342
458                                                600833
459                                                523118
460                                                637043
461                                                533387
462                                                488592
463                                                499138
464                                                824745
465                                                488218
466                                                533718
467                                                558488
468                                                550752
469                                                100444
470                                                108931
471                                                123545
472                                                129979
473                                                 94094
474                                                115591
475                                                129292
476                                                156268
477                                                166868
478                                                132626
479                                                131738
480                                                146962
481                                                157238
482                                                138938
483                                                139043
484                                                139864
485                                                154106
486                                                153833
487                                                141969
488                                                146748
489                                                144958
490                                                142848
491                                                139527
492                                                146966
493                                                148643
494                                                165480
495                                                144984
496                                                158957
497                                                145975
498                                                146360
499                                                143894
500                                                152036
501                                                150324
502                                                172174
503                                                162213
504                                                138764
505                                                144901
506                                                120830
507                                                135094
508                                                122178
509                                                137561
510                                                131234
511                                                147536
512                                                157401
513                                                134259
514                                                122866
515                                                140927
516                                                224968
517                                                162645
518                                                128858
519                                                153100
520                                                168765
521                                                 27121
522                                                 23198
523                                                 21751
524                                                 33565
525                                                 22858
526                                                 25644
527                                                 26706
528                                                 35337
529                                                 31821
530                                                 23351
531                                                 33117
532                                                 39208
533                                                 38396
534                                                 33743
535                                                 31599
536                                                 31465
537                                                 40881
538                                                 32173
539                                                 29728
540                                                 36257
541                                                 52440
542                                                 30064
543                                                 25540
544                                                 33397
545                                                 32449
546                                                 39344
547                                                 38878
548                                                 40383
549                                                 33535
550                                                 33225
551                                                 21814
552                                                 37314
553                                                 38624
554                                                 27581
555                                                 53621
556                                                 28964
557                                                 40370
558                                                 28066
559                                                 30313
560                                                 25151
561                                                 40166
562                                                 27040
563                                                 37382
564                                                 36035
565                                                 26134
566                                                 20940
567                                                 23239
568                                                 59740
569                                                 32775
570                                                 26459
571                                                 34844
572                                                 51860
573                                                276557
574                                                257532
575                                                319790
576                                                412692
577                                                244880
578                                                264821
579                                                263132
580                                                278245
581                                                376913
582                                                301144
583                                                266044
584                                                349744
585                                                439095
586                                                390555
587                                                425539
588                                                494079
589                                                505569
590                                                309275
591                                                321325
592                                                287299
593                                                332173
594                                                253861
595                                                406524
596                                                364124
597                                                319278
598                                                334916
599                                                302578
600                                                375821
601                                                353165
602                                                319284
603                                                315653
604                                                299938
605                                                261026
606                                                357330
607                                                509070
608                                                270228
609                                                284293
610                                                288421
611                                                387746
612                                                396361
613                                                297656
614                                                368421
615                                                371564
616                                                358628
617                                                305789
618                                                299799
619                                                376914
620                                                495262
621                                                271152
622                                                374231
623                                                348535
624                                                374421
625                                                246747
626                                                188263
627                                                321764
628                                                378124
629                                                179982
630                                                323797
631                                                428999
632                                                354455
633                                                446008
634                                                393921
635                                                435492
636                                                432102
637                                                364774
638                                                386987
639                                                461273
640                                                451936
641                                                420366
642                                                421032
643                                                318116
644                                                348864
645                                                377129
646                                                423520
647                                                376355
648                                                513055
649                                                423853
650                                                428389
651                                                362226
652                                                405470
653                                                401133
654                                                439309
655                                                365471
656                                                369924
657                                                305201
658                                                454026
659                                                485743
660                                                381779
661                                                544167
662                                                574793
663                                                396450
664                                                371990
665                                                380285
666                                                403061
667                                                491584
668                                                487874
669                                                584094
670                                                404107
671                                                466313
672                                                608156
673                                                422435
674                                                500684
675                                                427723
676                                                429518
677                                                 50546
678                                                 42663
679                                                 38089
680                                                 78806
681                                                 38244
682                                                 55945
683                                                 35473
684                                                 72647
685                                                 67252
686                                                 49928
687                                                 97788
688                                                105188
689                                                 60336
690                                                 43702
691                                                 71336
692                                                 73573
693                                                 51351
694                                                 75478
695                                                 36663
696                                                 86784
697                                                 56896
698                                                 58592
699                                                 38501
700                                                 66224
701                                                 36570
702                                                 62718
703                                                 30176
704                                                 87076
705                                                 58418
706                                                 87106
707                                                 28904
708                                                 34774
709                                                 98513
710                                                 42423
711                                                 71920
712                                                 61051
713                                                139016
714                                                 24664
715                                                 62860
716                                                 28183
717                                                109058
718                                                 31613
719                                                 29943
720                                                101935
721                                                 34703
722                                                 31170
723                                                 35997
724                                                136120
725                                                 47558
726                                                 45446
727                                                 90105
728                                                117865
729                                                101110
730                                                 85260
731                                                 69583
732                                                165454
733                                                 82760
734                                                 94795
735                                                 74695
736                                                149877
737                                                147281
738                                                 86435
739                                                118522
740                                                106364
741                                                102317
742                                                 87275
743                                                177686
744                                                143018
745                                                111965
746                                                152332
747                                                 72827
748                                                177610
749                                                120579
750                                                109854
751                                                 66066
752                                                122123
753                                                 66046
754                                                109358
755                                                 55014
756                                                167585
757                                                116393
758                                                134230
759                                                 90412
760                                                 74169
761                                                202939
762                                                 84948
763                                                176718
764                                                105591
765                                                217324
766                                                 66804
767                                                 92045
768                                                 63601
769                                                231212
770                                                 69453
771                                                 68592
772                                                182094
773                                                 69935
774                                                 67026
775                                                 74114
776                                                240216
777                                                 78093
778                                                 78433
779                                                127984
780                                                189349
781                                               1411809
782                                               1337404
783                                               1342450
784                                               1680591
785                                               1199426
786                                               1471865
787                                               1322818
788                                               1794703
789                                               1825513
790                                               1460066
791                                               1695842
792                                               1652244
793                                               1632488
794                                               1605775
795                                               1887111
796                                               1958150
797                                               1876393
798                                               1877733
799                                               1596910
800                                               2087150
801                                               1839863
802                                               1722755
803                                               1616355
804                                               1843047
805                                               1617124
806                                               2055126
807                                               1631460
808                                               1958437
809                                               1744519
810                                               1723625
811                                               1478976
812                                               1764211
813                                               1939235
814                                               1723311
815                                               2200706
816                                               1580854
817                                               2140254
818                                               1403327
819                                               1595354
820                                               1472879
821                                               2146437
822                                               1626923
823                                               1675102
824                                               2135518
825                                               1482033
826                                               1331420
827                                               1541253
828                                               2948565
829                                               1649083
830                                               1650327
831                                               1818618
832                                               2059658
833                                                 98629
834                                                100758
835                                                107145
836                                                 99014
837                                                 82016
838                                                 85742
839                                                113516
840                                                137671
841                                                140626
842                                                101619
843                                                186373
844                                                137367
845                                                 95392
846                                                108386
847                                                101201
848                                                170884
849                                                128772
850                                                125106
851                                                128402
852                                                161019
853                                                149596
854                                                143352
855                                                123456
856                                                119273
857                                                119799
858                                                142250
859                                                124702
860                                                128615
861                                                140404
862                                                138950
863                                                125282
864                                                132430
865                                                120943
866                                                158314
867                                                130135
868                                                118534
869                                                112023
870                                                101051
871                                                112157
872                                                102587
873                                                129732
874                                                 84433
875                                                 75751
876                                                134020
877                                                 83703
878                                                 85311
879                                                126558
880                                                168622
881                                                 89075
882                                                 85410
883                                                 78779
884                                                121021
885                                                194438
886                                                212205
887                                                186550
888                                                199395
889                                                172790
890                                                176358
891                                                228184
892                                                260746
893                                                271818
894                                                183081
895                                                357183
896                                                206738
897                                                205512
898                                                196808
899                                                179938
900                                                283221
901                                                221998
902                                                241163
903                                                248479
904                                                292977
905                                                292318
906                                                268798
907                                                205204
908                                                189920
909                                                299937
910                                                250697
911                                                226700
912                                                258201
913                                                253424
914                                                281286
915                                                237651
916                                                229800
917                                                281567
918                                                288463
919                                                255379
920                                                206009
921                                                196720
922                                                182585
923                                                183801
924                                                184278
925                                                230144
926                                                150491
927                                                125713
928                                                250130
929                                                142741
930                                                138691
931                                                289098
932                                                216923
933                                                150045
934                                                160684
935                                                143002
936                                                267594
937                                                288004
938                                                278067
939                                                386865
940                                                490805
941                                                289534
942                                                391111
943                                                332541
944                                                411366
945                                                365506
946                                                313129
947                                                242843
948                                                385630
949                                                435388
950                                                458983
951                                                445473
952                                                540499
953                                                495488
954                                                260761
955                                                321617
956                                                297435
957                                                356593
958                                                281941
959                                                443177
960                                                424787
961                                                307628
962                                                371701
963                                                337700
964                                                449585
965                                                439063
966                                                364707
967                                                383627
968                                                324448
969                                                263395
970                                                424396
971                                                502617
972                                                295786
973                                                250465
974                                                353794
975                                                496479
976                                                480447
977                                                393975
978                                                401260
979                                                517670
980                                                391781
981                                                346618
982                                                364818
983                                                535769
984                                                597856
985                                                309975
986                                                429687
987                                                441786
988                                                436348
989                                                 69385
990                                                 67984
991                                                 69984
992                                                 89453
993                                                 65254
994                                                 68940
995                                                 71346
996                                                 84844
997                                                 84968
998                                                 89943
999                                                102118
1000                                                75605
1001                                                87385
1002                                                85578
1003                                               116684
1004                                               130328
1005                                                92569
1006                                                86768
1007                                                77251
1008                                                90142
1009                                                91632
1010                                                94006
1011                                                84797
1012                                               101984
1013                                               101947
1014                                               119457
1015                                               121149
1016                                               124628
1017                                                97080
1018                                                80781
1019                                                80054
1020                                                92857
1021                                                89511
1022                                               127193
1023                                               113204
1024                                                88398
1025                                               106309
1026                                                86722
1027                                                95214
1028                                                97691
1029                                               102319
1030                                                88080
1031                                                97698
1032                                               110741
1033                                                80443
1034                                                75495
1035                                               109167
1036                                               181784
1037                                               108152
1038                                               103891
1039                                               100510
1040                                               118436
1041                                                 7689
1042                                                 6544
1043                                                 8914
1044                                                 7717
1045                                                 7841
1046                                                 8054
1047                                                 7319
1048                                                 7708
1049                                                11892
1050                                                 8956
1051                                                 9666
1052                                                12102
1053                                                13923
1054                                                14642
1055                                                21666
1056                                                19472
1057                                                23440
1058                                                19572
1059                                                19270
1060                                                16156
1061                                                22751
1062                                                19717
1063                                                19637
1064                                                24069
1065                                                18466
1066                                                27446
1067                                                19523
1068                                                23815
1069                                                13980
1070                                                13657
1071                                                 7981
1072                                                13258
1073                                                 8352
1074                                                 8544
1075                                                16451
1076                                                 9219
1077                                                 8893
1078                                                13393
1079                                                11012
1080                                                 8433
1081                                                13643
1082                                                 8988
1083                                                 8998
1084                                                13686
1085                                                10684
1086                                                 9458
1087                                                 9887
1088                                                22526
1089                                                14505
1090                                                16443
1091                                                17025
1092                                                19148
1093                                                93317
1094                                                77086
1095                                                68491
1096                                               107759
1097                                                81160
1098                                                91575
1099                                               106817
1100                                                74649
1101                                                94900
1102                                               115618
1103                                               126743
1104                                               155591
1105                                               154944
1106                                               170341
1107                                               163822
1108                                               179103
1109                                               128141
1110                                               124424
1111                                                84542
1112                                               136169
1113                                               163300
1114                                                79607
1115                                                75824
1116                                                78567
1117                                                83226
1118                                               100709
1119                                                86493
1120                                               126684
1121                                               161220
1122                                               112611
1123                                                84842
1124                                                83857
1125                                                84179
1126                                               117102
1127                                               188534
1128                                               132943
1129                                                66506
1130                                                69485
1131                                                76598
1132                                               104621
1133                                               115109
1134                                               108345
1135                                               132276
1136                                               151164
1137                                               103066
1138                                               111729
1139                                               162192
1140                                               185057
1141                                                98937
1142                                                94931
1143                                               101653
1144                                               120628
1145                                               455203
1146                                               396516
1147                                               456121
1148                                               682692
1149                                               501667
1150                                               558303
1151                                               661936
1152                                               702842
1153                                               914725
1154                                               925306
1155                                              1169758
1156                                              1205554
1157                                              1120569
1158                                              1305810
1159                                               947562
1160                                              1079298
1161                                               738938
1162                                               503078
1163                                               538010
1164                                               516719
1165                                               813281
1166                                               503248
1167                                               440414
1168                                               417290
1169                                               548712
1170                                               564583
1171                                               419199
1172                                               473295
1173                                               497879
1174                                               447752
1175                                               455405
1176                                               465604
1177                                               390302
1178                                               390902
1179                                               670161
1180                                               427886
1181                                               487492
1182                                               579426
1183                                               490701
1184                                               535932
1185                                               679697
1186                                               445562
1187                                               400644
1188                                               592196
1189                                               505580
1190                                               408396
1191                                               582236
1192                                               854673
1193                                               456563
1194                                               526107
1195                                               617233
1196                                               524430
1197                                                37760
1198                                                30942
1199                                                47375
1200                                                65644
1201                                                34020
1202                                                33164
1203                                                33869
1204                                                52494
1205                                                60545
1206                                                36450
1207                                                46436
1208                                                44941
1209                                                39701
1210                                                40353
1211                                                40185
1212                                                56765
1213                                                65116
1214                                                40377
1215                                                39933
1216                                                45326
1217                                                52753
1218                                                59505
1219                                                64026
1220                                                44740
1221                                                43381
1222                                                49320
1223                                                41216
1224                                                44778
1225                                                50908
1226                                                62401
1227                                                58910
1228                                                56000
1229                                                48390
1230                                                60222
1231                                                66287
1232                                                42192
1233                                                62591
1234                                                61734
1235                                                49893
1236                                                64264
1237                                                62778
1238                                                36583
1239                                                38415
1240                                                53159
1241                                                77315
1242                                                50486
1243                                                59424
1244                                                83855
1245                                                63039
1246                                                63827
1247                                                53314
1248                                                75090
1249                                                44652
1250                                                32387
1251                                                49363
1252                                                34861
1253                                                42436
1254                                                47195
1255                                                42921
1256                                                37563
1257                                                54993
1258                                                35902
1259                                                42454
1260                                                59336
1261                                                63183
1262                                                57857
1263                                                76606
1264                                                64771
1265                                                80524
1266                                                66570
1267                                                70677
1268                                                61635
1269                                                86741
1270                                                66231
1271                                                63066
1272                                                96849
1273                                                79717
1274                                               101120
1275                                                79483
1276                                                90433
1277                                                55875
1278                                                60937
1279                                                35493
1280                                                62990
1281                                                36762
1282                                                37151
1283                                                81078
1284                                                41476
1285                                                38959
1286                                                63130
1287                                                48767
1288                                                32977
1289                                                58232
1290                                                35375
1291                                                32889
1292                                                60308
1293                                                35033
1294                                                34942
1295                                                35897
1296                                                74533
1297                                                41120
1298                                                42799
1299                                                36044
1300                                                54844
1301                                              1022862
1302                                              1024405
1303                                              1060754
1304                                              1154808
1305                                               939039
1306                                               955973
1307                                              1302220
1308                                              1248271
1309                                              1188243
1310                                               980865
1311                                              1537197
1312                                              1057488
1313                                              1070892
1314                                              1206766
1315                                              1122684
1316                                              1444402
1317                                              1458691
1318                                              1161145
1319                                              1286342
1320                                              1355610
1321                                              1328249
1322                                              1359711
1323                                              1239354
1324                                              1234664
1325                                              1337981
1326                                              1545460
1327                                              1324231
1328                                              1363070
1329                                              1484201
1330                                              1217522
1331                                              1377202
1332                                              1431142
1333                                              1201257
1334                                              1299999
1335                                              1557507
1336                                              1125853
1337                                              1125461
1338                                              1298472
1339                                              1066609
1340                                              1160794
1341                                              1282053
1342                                              1066471
1343                                               949015
1344                                              1151354
1345                                              1209150
1346                                               982380
1347                                              1222160
1348                                              1798505
1349                                              1077631
1350                                              1045425
1351                                              1032606
1352                                              1311503
1353                                                 8706
1354                                                 7416
1355                                                11175
1356                                                 9656
1357                                                 9407
1358                                                10083
1359                                                11869
1360                                                11807
1361                                                20103
1362                                                20511
1363                                                29077
1364                                                35428
1365                                                30106
1366                                                25445
1367                                                32479
1368                                                25095
1369                                                30511
1370                                                21072
1371                                                19284
1372                                                18393
1373                                                20560
1374                                                19863
1375                                                19400
1376                                                19372
1377                                                17435
1378                                                25125
1379                                                19436
1380                                                17917
1381                                                17224
1382                                                10386
1383                                                 8352
1384                                                 9349
1385                                                 8162
1386                                                 9080
1387                                                13149
1388                                                 8600
1389                                                 7599
1390                                                 9659
1391                                                 8267
1392                                                 8307
1393                                                 9195
1394                                                 6822
1395                                                 7724
1396                                                 9713
1397                                                10053
1398                                                 9817
1399                                                 8120
1400                                                13446
1401                                                 8372
1402                                                 8424
1403                                                 9099
1404                                                11084
1405                                                18656
1406                                                18630
1407                                                31214
1408                                                21553
1409                                                23573
1410                                                18823
1411                                                21747
1412                                                21553
1413                                                16060
1414                                                17517
1415                                                18241
1416                                                16126
1417                                                20602
1418                                                17616
1419                                                24187
1420                                                18107
1421                                                18010
1422                                                14747
1423                                                18688
1424                                                16682
1425                                                10121
1426                                                 8026
1427                                                10443
1428                                                 8931
1429                                                11069
1430                                                 9202
1431                                                10738
1432                                                 8804
1433                                                10920
1434                                                 8769
1435                                                 8537
1436                                                10463
1437                                                 9661
1438                                                 7960
1439                                                13134
1440                                                 9195
1441                                                12172
1442                                                 7155
1443                                                 7767
1444                                                 9473
1445                                                 8986
1446                                                11363
1447                                                12379
1448                                                16230
1449                                                10820
1450                                                11864
1451                                                 8648
1452                                                11861
1453                                                12772
1454                                                23263
1455                                                10681
1456                                                14086
1457                                               872604
1458                                               867407
1459                                               975505
1460                                               887708
1461                                               814572
1462                                               905344
1463                                              1107466
1464                                              1097994
1465                                              1916955
1466                                               790163
1467                                              1598365
1468                                               792684
1469                                              1060769
1470                                               941113
1471                                               913023
1472                                              1208256
1473                                              1074698
1474                                               982356
1475                                              1222688
1476                                              1291206
1477                                              1290583
1478                                              1184265
1479                                               910717
1480                                               923816
1481                                               956051
1482                                              1290777
1483                                               917011
1484                                              1312242
1485                                               931945
1486                                              1347903
1487                                              1077663
1488                                              1103695
1489                                               871213
1490                                              1711900
1491                                              1317970
1492                                               932216
1493                                               927146
1494                                               764676
1495                                               909664
1496                                               882072
1497                                               884993
1498                                               749461
1499                                               755538
1500                                              1025372
1501                                               757988
1502                                               688201
1503                                              1310966
1504                                              1084530
1505                                               768132
1506                                               749309
1507                                               714531
1508                                              1127882
1509                                              2313156
1510                                              2330694
1511                                              2852334
1512                                              2541187
1513                                              1964334
1514                                              2316405
1515                                              2738914
1516                                              3333003
1517                                              3920642
1518                                              2438454
1519                                              4025382
1520                                              2383019
1521                                              2679761
1522                                              2965154
1523                                              2492114
1524                                              3364305
1525                                              3227507
1526                                              2981372
1527                                              3291931
1528                                              3382543
1529                                              3894802
1530                                              3244096
1531                                              2757146
1532                                              3057929
1533                                              3051823
1534                                              3328289
1535                                              2670470
1536                                              3203945
1537                                              2985954
1538                                              3416600
1539                                              2954176
1540                                              3212552
1541                                              2730591
1542                                              4143703
1543                                              3365963
1544                                              2492744
1545                                              2552885
1546                                              2102180
1547                                              2409450
1548                                              2543290
1549                                              2526520
1550                                              2082038
1551                                              2111936
1552                                              2790180
1553                                              2003076
1554                                              1958075
1555                                              3354877
1556                                              3149375
1557                                              2129188
1558                                              2098784
1559                                              2070661
1560                                              2860710
1561                                               250271
1562                                               232460
1563                                               369076
1564                                               261503
1565                                               181978
1566                                               230517
1567                                               237255
1568                                               453089
1569                                               281499
1570                                               268057
1571                                               361448
1572                                               231543
1573                                               253346
1574                                               427545
1575                                               270776
1576                                               301172
1577                                               456885
1578                                               337185
1579                                               338131
1580                                               304465
1581                                               523493
1582                                               347110
1583                                               324259
1584                                               522040
1585                                               341892
1586                                               338863
1587                                               282588
1588                                               300070
1589                                               362083
1590                                               314309
1591                                               313153
1592                                               372289
1593                                               287792
1594                                               503984
1595                                               304233
1596                                               253563
1597                                               284389
1598                                               214310
1599                                               252307
1600                                               372165
1601                                               229493
1602                                               247093
1603                                               234532
1604                                               310490
1605                                               217477
1606                                               232118
1607                                               308443
1608                                               361694
1609                                               233233
1610                                               241381
1611                                               265252
1612                                               264352
1613                                                20765
1614                                                15795
1615                                                24261
1616                                                21556
1617                                                21008
1618                                                21586
1619                                                20682
1620                                                21007
1621                                                29351
1622                                                24182
1623                                                24094
1624                                                30064
1625                                                34086
1626                                                41995
1627                                                51931
1628                                                51292
1629                                                56930
1630                                                51488
1631                                                51869
1632                                                46942
1633                                                57952
1634                                                49483
1635                                                51179
1636                                                57749
1637                                                53987
1638                                                66372
1639                                                52467
1640                                                57123
1641                                                36946
1642                                                33611
1643                                                19642
1644                                                29758
1645                                                19797
1646                                                19591
1647                                                36611
1648                                                21352
1649                                                18812
1650                                                28203
1651                                                25859
1652                                                18785
1653                                                29683
1654                                                21354
1655                                                19868
1656                                                26600
1657                                                22481
1658                                                21210
1659                                                24318
1660                                                50048
1661                                                29418
1662                                                34703
1663                                                39236
1664                                                38265
1665                                               208945
1666                                               198362
1667                                               244536
1668                                               254809
1669                                               195284
1670                                               226194
1671                                               263608
1672                                               268320
1673                                               453730
1674                                               283086
1675                                               388376
1676                                               256351
1677                                               268719
1678                                               255353
1679                                               251090
1680                                               346217
1681                                               284480
1682                                               269812
1683                                               336375
1684                                               324062
1685                                               294414
1686                                               288809
1687                                               251977
1688                                               237183
1689                                               233808
1690                                               306536
1691                                               234778
1692                                               310906
1693                                               253566
1694                                               325421
1695                                               270398
1696                                               277233
1697                                               241209
1698                                               381135
1699                                               393976
1700                                               249071
1701                                               242741
1702                                               210183
1703                                               240592
1704                                               222182
1705                                               322071
1706                                               199104
1707                                               207010
1708                                               267027
1709                                               214953
1710                                               210875
1711                                               336509
1712                                               417994
1713                                               211454
1714                                               209523
1715                                               198387
1716                                               294715
1717                                               286858
1718                                               204147
1719                                               241775
1720                                               271207
1721                                               208439
1722                                               220375
1723                                               244821
1724                                               234927
1725                                               232051
1726                                               240690
1727                                               287935
1728                                               321487
1729                                               269016
1730                                               229488
1731                                               403761
1732                                               294312
1733                                               293505
1734                                               238518
1735                                               228549
1736                                               223690
1737                                               228961
1738                                               205131
1739                                               204148
1740                                               200733
1741                                               201235
1742                                               220124
1743                                               176318
1744                                               188115
1745                                               180389
1746                                               199670
1747                                               177851
1748                                               180677
1749                                               167186
1750                                               182956
1751                                               256792
1752                                               159158
1753                                               164461
1754                                               181418
1755                                               172116
1756                                               157108
1757                                               208871
1758                                               149255
1759                                               143843
1760                                               198956
1761                                               163230
1762                                               143378
1763                                               184023
1764                                               261342
1765                                               150641
1766                                               200514
1767                                               182630
1768                                               178418
1769                                                45856
1770                                                40726
1771                                                38684
1772                                                41482
1773                                                35859
1774                                                42393
1775                                                42967
1776                                                85218
1777                                                60508
1778                                                40984
1779                                                43226
1780                                                59821
1781                                                69556
1782                                                62972
1783                                                44085
1784                                                43000
1785                                                78579
1786                                                40728
1787                                                51015
1788                                                53769
1789                                                99815
1790                                                42703
1791                                                40238
1792                                                43697
1793                                                40945
1794                                                67122
1795                                                62790
1796                                                43293
1797                                                44491
1798                                                43817
1799                                                45514
1800                                               117544
1801                                                50365
1802                                                48280
1803                                               145405
1804                                                44304
1805                                                43529
1806                                                38758
1807                                                48395
1808                                                51530
1809                                                46711
1810                                                44601
1811                                               116151
1812                                                39074
1813                                                42829
1814                                                32544
1815                                                37355
1816                                                75346
1817                                                70060
1818                                                36730
1819                                                33759
1820                                                35457
1821                                               404838
1822                                               341262
1823                                               463238
1824                                               394657
1825                                               364749
1826                                               403638
1827                                               441216
1828                                               467809
1829                                               584277
1830                                               583991
1831                                               588305
1832                                               576154
1833                                               566241
1834                                               729792
1835                                               506380
1836                                               491074
1837                                               547236
1838                                               477305
1839                                               498121
1840                                               508403
1841                                               498857
1842                                               506915
1843                                               576871
1844                                               491747
1845                                               530476
1846                                               627548
1847                                               480811
1848                                               474166
1849                                               443242
1850                                               445070
1851                                               418764
1852                                               450494
1853                                               413931
1854                                               424406
1855                                               508886
1856                                               447515
1857                                               433297
1858                                               471484
1859                                               437184
1860                                               441015
1861                                               450193
1862                                               435374
1863                                               412581
1864                                               460987
1865                                               430680
1866                                               409541
1867                                               490404
1868                                               926444
1869                                               454162
1870                                               485150
1871                                               448208
1872                                               466641
1873                                               131202
1874                                               134957
1875                                               162734
1876                                               270189
1877                                               113850
1878                                               131660
1879                                               199357
1880                                               152265
1881                                               182673
1882                                               191062
1883                                               188908
1884                                               324386
1885                                               172302
1886                                               187080
1887                                               291367
1888                                               181247
1889                                               188352
1890                                               186125
1891                                               274926
1892                                               190950
1893                                               185098
1894                                               217474
1895                                               171527
1896                                               180269
1897                                               187613
1898                                               273227
1899                                               223129
1900                                               284788
1901                                               323410
1902                                               239758
1903                                               226578
1904                                               295332
1905                                               162760
1906                                               295586
1907                                               305964
1908                                               224599
1909                                               337188
1910                                               199633
1911                                               178796
1912                                               163123
1913                                               213514
1914                                               160239
1915                                               201530
1916                                               359784
1917                                               287695
1918                                               153004
1919                                               232249
1920                                               535325
1921                                               229573
1922                                               220992
1923                                               292969
1924                                               377139
1925                                                86212
1926                                                78630
1927                                                86614
1928                                                84518
1929                                                72844
1930                                                75631
1931                                               112379
1932                                                68546
1933                                                60350
1934                                                50170
1935                                                64754
1936                                                54546
1937                                                56829
1938                                                71030
1939                                                63791
1940                                                55554
1941                                                83271
1942                                                61767
1943                                                68496
1944                                                59217
1945                                                65068
1946                                                64420
1947                                                52944
1948                                                63763
1949                                                78845
1950                                               103086
1951                                                84150
1952                                                87728
1953                                                95409
1954                                                61503
1955                                                60701
1956                                                80893
1957                                                64994
1958                                                60772
1959                                               108604
1960                                                62293
1961                                                58453
1962                                                72737
1963                                                53335
1964                                                71238
1965                                                60049
1966                                                71028
1967                                                54060
1968                                                55214
1969                                                69081
1970                                                55127
1971                                                47671
1972                                               115316
1973                                                59375
1974                                                55881
1975                                                54185
1976                                                72178
1977                                                67975
1978                                                73851
1979                                                75114
1980                                                77494
1981                                                65442
1982                                                69493
1983                                               101471
1984                                                76222
1985                                                93881
1986                                                70132
1987                                               106054
1988                                                85084
1989                                                91382
1990                                               101485
1991                                                72628
1992                                                89291
1993                                               112959
1994                                                86152
1995                                                96309
1996                                                95072
1997                                                87339
1998                                               101905
1999                                                86910
2000                                                84053
2001                                                90574
2002                                               118023
2003                                                90965
2004                                                99696
2005                                               113772
2006                                                90992
2007                                                98091
2008                                               116589
2009                                               103883
2010                                               115680
2011                                               128429
2012                                                97539
2013                                                91143
2014                                                96302
2015                                                95586
2016                                                96406
2017                                                91980
2018                                                87712
2019                                                64965
2020                                                83986
2021                                                89875
2022                                                77855
2023                                                81139
2024                                               140203
2025                                                75205
2026                                                66964
2027                                                66850
2028                                                80396
2029                                                31680
2030                                                31883
2031                                                34347
2032                                                35662
2033                                                30146
2034                                                29324
2035                                                45406
2036                                                35852
2037                                                40084
2038                                                33830
2039                                                47290
2040                                                37829
2041                                                38394
2042                                                44626
2043                                                37056
2044                                                49831
2045                                                55251
2046                                                43619
2047                                                47017
2048                                                43699
2049                                                40963
2050                                                45921
2051                                                38794
2052                                                41555
2053                                                42235
2054                                                51261
2055                                                43906
2056                                                47602
2057                                                50915
2058                                                41702
2059                                                41122
2060                                                50453
2061                                                46303
2062                                                52243
2063                                                60973
2064                                                47028
2065                                                44914
2066                                                49286
2067                                                44874
2068                                                46916
2069                                                46659
2070                                                43328
2071                                                36289
2072                                                38349
2073                                                45806
2074                                                39204
2075                                                38764
2076                                                65784
2077                                                41412
2078                                                37854
2079                                                37630
2080                                                37563
2081                                               249363
2082                                               224843
2083                                               221628
2084                                               184350
2085                                               216852
2086                                               218912
2087                                               262929
2088                                               185190
2089                                               300978
2090                                               190021
2091                                               175182
2092                                               211956
2093                                               259003
2094                                               213298
2095                                               220538
2096                                               220365
2097                                               262140
2098                                               197034
2099                                               233165
2100                                               202459
2101                                               206011
2102                                               209986
2103                                               200669
2104                                               210335
2105                                               218611
2106                                               305123
2107                                               210344
2108                                               215069
2109                                               209926
2110                                               224039
2111                                               219047
2112                                               232223
2113                                               200745
2114                                               217681
2115                                               458179
2116                                               205561
2117                                               241637
2118                                               208546
2119                                               214547
2120                                               203705
2121                                               221095
2122                                               204089
2123                                               199611
2124                                               256090
2125                                               216791
2126                                               194031
2127                                               237752
2128                                               429602
2129                                               210412
2130                                               238957
2131                                               271300
2132                                               270108
2133                                               130342
2134                                               119299
2135                                               118665
2136                                               209351
2137                                               140359
2138                                               129579
2139                                               150523
2140                                               154270
2141                                               179996
2142                                               165523
2143                                               179049
2144                                               234834
2145                                               194839
2146                                               245816
2147                                               173106
2148                                               199954
2149                                               165035
2150                                               145975
2151                                               153379
2152                                               176899
2153                                               288087
2154                                               168301
2155                                               161574
2156                                               142493
2157                                               182845
2158                                               187821
2159                                               142349
2160                                               163856
2161                                               165021
2162                                               164367
2163                                               153680
2164                                               155814
2165                                               131773
2166                                               136148
2167                                               247709
2168                                               141949
2169                                               156651
2170                                               189714
2171                                               162602
2172                                               155583
2173                                               221942
2174                                               144761
2175                                               127158
2176                                               202619
2177                                               151870
2178                                               127875
2179                                               162856
2180                                               277723
2181                                               140457
2182                                               163944
2183                                               192913
2184                                               165299
2185                                               422618
2186                                               364622
2187                                               384959
2188                                               498975
2189                                               462966
2190                                               502068
2191                                               517366
2192                                               319176
2193                                               563719
2194                                               334052
2195                                               332942
2196                                               351965
2197                                               563257
2198                                               349649
2199                                               381000
2200                                               367834
2201                                               384033
2202                                               364371
2203                                               380935
2204                                               364969
2205                                               345590
2206                                               374727
2207                                               366576
2208                                               385521
2209                                               430541
2210                                               451891
2211                                               377055
2212                                               396191
2213                                               403174
2214                                               477146
2215                                               469209
2216                                               467572
2217                                               434957
2218                                               462219
2219                                               975142
2220                                               458056
2221                                               584923
2222                                               469655
2223                                               473143
2224                                               460145
2225                                               568189
2226                                               455307
2227                                               442834
2228                                               697970
2229                                               502502
2230                                               414827
2231                                               581737
2232                                               896514
2233                                               481792
2234                                               554501
2235                                               670523
2236                                               637000
2237                                               178460
2238                                               139794
2239                                               156348
2240                                               219413
2241                                               131571
2242                                               155495
2243                                               213666
2244                                               172982
2245                                               176923
2246                                               201858
2247                                               185070
2248                                               301657
2249                                               281914
2250                                               152003
2251                                               242850
2252                                               181241
2253                                               155469
2254                                               150815
2255                                               265837
2256                                               201936
2257                                               169097
2258                                               181275
2259                                               172990
2260                                               192076
2261                                               204321
2262                                               263047
2263                                               222872
2264                                               272214
2265                                               274971
2266                                               207214
2267                                               185304
2268                                               240666
2269                                               196907
2270                                               242012
2271                                               355250
2272                                               188385
2273                                               324680
2274                                               184720
2275                                               238613
2276                                               205582
2277                                               229940
2278                                               189015
2279                                               190974
2280                                               327300
2281                                               353202
2282                                               171967
2283                                               257165
2284                                               578709
2285                                               228986
2286                                               223146
2287                                               278069
2288                                               341837
2289                                                48908
2290                                                39932
2291                                                47393
2292                                                47119
2293                                                42270
2294                                                42099
2295                                                61600
2296                                                47267
2297                                                59938
2298                                                46792
2299                                                55039
2300                                                64658
2301                                                70671
2302                                                72273
2303                                                77644
2304                                                61067
2305                                                78503
2306                                                58762
2307                                                64118
2308                                                60468
2309                                                69024
2310                                                64352
2311                                                63163
2312                                                70691
2313                                                81354
2314                                                93000
2315                                                76048
2316                                                71557
2317                                                60267
2318                                                46631
2319                                                43302
2320                                                58353
2321                                                46163
2322                                                44018
2323                                                72325
2324                                                43170
2325                                                43228
2326                                                49060
2327                                                44278
2328                                                45650
2329                                                48984
2330                                                44168
2331                                                39010
2332                                                42197
2333                                                45810
2334                                                40081
2335                                                41469
2336                                                78055
2337                                                46948
2338                                                44020
2339                                                39714
2340                                                46253
2341                                              1290847
2342                                              1226509
2343                                              1559601
2344                                              1989751
2345                                              1234911
2346                                              1451469
2347                                              1375460
2348                                              1630407
2349                                              1704035
2350                                              1537781
2351                                              1352548
2352                                              1833545
2353                                              2067870
2354                                              2042361
2355                                              2117632
2356                                              2390282
2357                                              2322077
2358                                              1387820
2359                                              1546629
2360                                              1474653
2361                                              1600372
2362                                              1254704
2363                                              1982138
2364                                              1766900
2365                                              1523778
2366                                              1639736
2367                                              1416249
2368                                              1739133
2369                                              1660109
2370                                              1479527
2371                                              1501302
2372                                              1434384
2373                                              1202270
2374                                              1709201
2375                                              2265494
2376                                              1248423
2377                                              1183498
2378                                              1385674
2379                                              1856953
2380                                              1836366
2381                                              1476714
2382                                              1644220
2383                                              1855972
2384                                              1629786
2385                                              1408136
2386                                              1421557
2387                                              1927404
2388                                              2348980
2389                                              1298843
2390                                              1782045
2391                                              1717171
2392                                              1755142
2393                                               275823
2394                                               211596
2395                                               303892
2396                                               248205
2397                                               273706
2398                                               285066
2399                                               294620
2400                                               298082
2401                                               472311
2402                                               393459
2403                                               426237
2404                                               579737
2405                                               591640
2406                                               519007
2407                                               663554
2408                                               534413
2409                                               650270
2410                                               464252
2411                                               477976
2412                                               431016
2413                                               498991
2414                                               430134
2415                                               424561
2416                                               515359
2417                                               467849
2418                                               592279
2419                                               464034
2420                                               462243
2421                                               315079
2422                                               294520
2423                                               206982
2424                                               311177
2425                                               211868
2426                                               212422
2427                                               383804
2428                                               220781
2429                                               214218
2430                                               292733
2431                                               252738
2432                                               205041
2433                                               299770
2434                                               211823
2435                                               199318
2436                                               281503
2437                                               236520
2438                                               219337
2439                                               226040
2440                                               451195
2441                                               266024
2442                                               273696
2443                                               269027
2444                                               320374
2445                                                21592
2446                                                16577
2447                                                20739
2448                                                39234
2449                                                16827
2450                                                21806
2451                                                38868
2452                                                26208
2453                                                23802
2454                                                33389
2455                                                30937
2456                                                56878
2457                                                47471
2458                                                23736
2459                                                42343
2460                                                24065
2461                                                18154
2462                                                16652
2463                                                35455
2464                                                25970
2465                                                23114
2466                                                24454
2467                                                22294
2468                                                23169
2469                                                23703
2470                                                30060
2471                                                26660
2472                                                33790
2473                                                35548
2474                                                26272
2475                                                24334
2476                                                33680
2477                                                24111
2478                                                31703
2479                                                48511
2480                                                24094
2481                                                42073
2482                                                23282
2483                                                29903
2484                                                26800
2485                                                28458
2486                                                26391
2487                                                24433
2488                                                44708
2489                                                45292
2490                                                22724
2491                                                36737
2492                                                84741
2493                                                29591
2494                                                29720
2495                                                35997
2496                                                44342
2497                                                25207
2498                                                23868
2499                                                24481
2500                                                25223
2501                                                26526
2502                                                27004
2503                                                28500
2504                                                29530
2505                                                34559
2506                                                37040
2507                                                34898
2508                                                25627
2509                                                36643
2510                                                34232
2511                                                37270
2512                                                33406
2513                                                36577
2514                                                34387
2515                                                35104
2516                                                44789
2517                                                47874
2518                                                43746
2519                                                38710
2520                                                41713
2521                                                44204
2522                                                57669
2523                                                40137
2524                                                38461
2525                                                41783
2526                                                38450
2527                                                38945
2528                                                38773
2529                                                37553
2530                                                33051
2531                                                36253
2532                                                42321
2533                                                38169
2534                                                37442
2535                                                34545
2536                                                39575
2537                                                37696
2538                                                36549
2539                                                31857
2540                                                39404
2541                                                36668
2542                                                33530
2543                                                31996
2544                                                48651
2545                                                31382
2546                                                50702
2547                                                41050
2548                                                34556
2549                                                23561
2550                                                22231
2551                                                33150
2552                                                34440
2553                                                21285
2554                                                22314
2555                                                34237
2556                                                37789
2557                                                36282
2558                                                30448
2559                                                28156
2560                                                27691
2561                                                22699
2562                                                43139
2563                                                27299
2564                                                30697
2565                                                37505
2566                                                43932
2567                                                30616
2568                                                32283
2569                                                39597
2570                                                26662
2571                                                41541
2572                                                34450
2573                                                43148
2574                                                35081
2575                                                30246
2576                                                32511
2577                                                27341
2578                                                41825
2579                                                34986
2580                                                34572
2581                                                42174
2582                                                44891
2583                                                24201
2584                                                23424
2585                                                24885
2586                                                21962
2587                                                24676
2588                                                28858
2589                                                21884
2590                                                20482
2591                                                23821
2592                                                22777
2593                                                21441
2594                                                19622
2595                                                26366
2596                                                30244
2597                                                22526
2598                                                24755
2599                                                21576
2600                                                20905
2601                                                35652
2602                                                23811
2603                                                40944
2604                                                29926
2605                                                41027
2606                                                39338
2607                                                32426
2608                                                33352
2609                                                72749
2610                                                51940
2611                                                54378
2612                                                90767
2613                                                92367
2614                                                70565
2615                                               104345
2616                                                69978
2617                                                94842
2618                                                53666
2619                                                54874
2620                                                50158
2621                                                58044
2622                                                50642
2623                                                48153
2624                                                61716
2625                                                54928
2626                                                71004
2627                                                56095
2628                                                58036
2629                                                39331
2630                                                35164
2631                                                18122
2632                                                30795
2633                                                18250
2634                                                20278
2635                                                37801
2636                                                19757
2637                                                19553
2638                                                30736
2639                                                26336
2640                                                18562
2641                                                32912
2642                                                19983
2643                                                19097
2644                                                27867
2645                                                22043
2646                                                20647
2647                                                21932
2648                                                53180
2649                                                30245
2650                                                33674
2651                                                36018
2652                                                37518
2653                                             10197890
2654                                              9329862
2655                                             10805839
2656                                             12160839
2657                                              9003178
2658                                             10389880
2659                                             11699788
2660                                             12199657
2661                                             14229287
2662                                             11410478
2663                                             14082540
2664                                             13326573
2665                                             13775652
2666                                             13819913
2667                                             13846045
2668                                             14888078
2669                                             14245598
2670                                             11995961
2671                                             12551530
2672                                             12998327
2673                                             13926693
2674                                             12219014
2675                                             12009228
2676                                             12605457
2677                                             12403360
2678                                             14213650
2679                                             11505999
2680                                             13244467
2681                                             12821015
2682                                             12582265
2683                                             11599634
2684                                             12513821
2685                                             11003341
2686                                             13509065
2687                                             16602589
2688                                             10867403
2689                                             12277859
2690                                             11210544
2691                                             11526980
2692                                             11541041
2693                                             12659785
2694                                             10634071
2695                                             10973973
2696                                             13733124
2697                                             11354282
2698                                              9783490
2699                                             13381348
2700                                             18956480
2701                                             10734653
2702                                             11701948
2703                                             12134773
2704                                             13624083
2705                                              1717599
2706                                              1314711
2707                                              1596329
2708                                              2051393
2709                                              1216811
2710                                              1588339
2711                                              2060440
2712                                              1668417
2713                                              1937480
2714                                              1990845
2715                                              2170793
2716                                              2714364
2717                                              2378441
2718                                              2116030
2719                                              2825877
2720                                              2317428
2721                                              2086230
2722                                              1986059
2723                                              2054711
2724                                              2027603
2725                                              2068854
2726                                              1962854
2727                                              1776143
2728                                              2065939
2729                                              1950436
2730                                              2304907
2731                                              1907834
2732                                              2299962
2733                                              2416002
2734                                              2145072
2735                                              1835735
2736                                              2036656
2737                                              1654564
2738                                              2260891
2739                                              2917084
2740                                              2021746
2741                                              2557272
2742                                              2267855
2743                                              2022524
2744                                              2012384
2745                                              2163704
2746                                              1829868
2747                                              2120112
2748                                              2822864
2749                                              2650986
2750                                              1840716
2751                                              2418817
2752                                              3872672
2753                                              2031938
2754                                              2258070
2755                                              2292761
2756                                              2582301
2757                                               141599
2758                                               108176
2759                                               100110
2760                                               133434
2761                                               103636
2762                                               122078
2763                                               155779
2764                                               123746
2765                                               131577
2766                                               166608
2767                                               177573
2768                                               258519
2769                                               317701
2770                                               376233
2771                                               352999
2772                                               330566
2773                                               183612
2774                                               136374
2775                                               100109
2776                                               154806
2777                                               154758
2778                                                94633
2779                                                96112
2780                                               101244
2781                                               100149
2782                                               123466
2783                                               108020
2784                                               158997
2785                                               202732
2786                                               152737
2787                                               124037
2788                                               107964
2789                                               112071
2790                                               128169
2791                                               166456
2792                                               174561
2793                                               154972
2794                                               167106
2795                                               163482
2796                                               199938
2797                                               157680
2798                                               115090
2799                                               137012
2800                                               167246
2801                                               121269
2802                                               133696
2803                                               175207
2804                                               205181
2805                                               124249
2806                                               128439
2807                                               129717
2808                                               147958
2809                                                58280
2810                                                55950
2811                                                56546
2812                                                99746
2813                                                47106
2814                                                56899
2815                                                49838
2816                                                43024
2817                                                45899
2818                                                77537
2819                                                54187
2820                                                87174
2821                                                57516
2822                                                79426
2823                                                63385
2824                                                63512
2825                                                64967
2826                                                94929
2827                                                63417
2828                                                72970
2829                                                69054
2830                                                96915
2831                                                65196
2832                                                64261
2833                                                96582
2834                                                82122
2835                                               106657
2836                                                85374
2837                                                83771
2838                                                92056
2839                                               104877
2840                                                74678
2841                                                75848
2842                                                96138
2843                                               163570
2844                                                87571
2845                                                70043
2846                                                56129
2847                                                70460
2848                                                78146
2849                                                97082
2850                                                96117
2851                                                74693
2852                                                72160
2853                                                84485
2854                                                77133
2855                                               157272
2856                                                79882
2857                                                70803
2858                                               100613
2859                                                66697
2860                                               139736
2861                                                86015
2862                                                80565
2863                                                56200
2864                                                93415
2865                                                55595
2866                                                58006
2867                                                63349
2868                                                65208
2869                                                69366
2870                                                67824
2871                                                82089
2872                                                69425
2873                                                69411
2874                                                77099
2875                                                70931
2876                                                54348
2877                                                55476
2878                                                42109
2879                                                48350
2880                                                60913
2881                                                63197
2882                                                76302
2883                                                92726
2884                                                82942
2885                                                95457
2886                                               150340
2887                                                82764
2888                                                96388
2889                                                61564
2890                                               123406
2891                                               154239
2892                                               110884
2893                                               166131
2894                                               159037
2895                                               211777
2896                                               189043
2897                                               124409
2898                                               141606
2899                                                69327
2900                                                59290
2901                                                61128
2902                                               110106
2903                                                61770
2904                                               106312
2905                                                61591
2906                                                57925
2907                                               134517
2908                                                58974
2909                                                86817
2910                                                45916
2911                                                67316
2912                                                32958
2913                                               344700
2914                                               487110
2915                                               375438
2916                                               345132
2917                                               336732
2918                                               309529
2919                                               311688
2920                                               284547
2921                                               304617
2922                                               336434
2923                                               363925
2924                                               395481
2925                                               381625
2926                                               347949
2927                                               367426
2928                                               494756
2929                                               442803
2930                                               443668
2931                                               413652
2932                                               421189
2933                                               432957
2934                                               402053
2935                                               422903
2936                                               400288
2937                                               489315
2938                                               501970
2939                                               509114
2940                                               523095
2941                                               507383
2942                                               537896
2943                                               577334
2944                                               540988
2945                                               629734
2946                                               804252
2947                                               648817
2948                                               638834
2949                                               576827
2950                                               522216
2951                                               523512
2952                                               523532
2953                                               614918
2954                                               580134
2955                                               541219
2956                                               641585
2957                                               446499
2958                                               596869
2959                                               621956
2960                                               506188
2961                                               689359
2962                                               535245
2963                                               511067
2964                                               583418
2965                                                 2893
2966                                                 2337
2967                                                10383
2968                                                 2996
2969                                                 2187
2970                                                 2463
2971                                                 3042
2972                                                 2894
2973                                                 3018
2974                                                 3769
2975                                                 2007
2976                                                 2089
2977                                                 8194
2978                                                 2342
2979                                                 2199
2980                                                 1784
2981                                                 2056
2982                                                 1982
2983                                                 2078
2984                                                 1959
2985                                                 2002
2986                                                 1921
2987                                                 1685
2988                                                 1614
2989                                                 4977
2990                                                 6422
2991                                                 5853
2992                                                 6692
2993                                                 2579
2994                                                 5423
2995                                                 4570
2996                                                 3221
2997                                                 6201
2998                                                 5397
2999                                                 3928
3000                                                 2850
3001                                                 9076
3002                                                 3304
3003                                                 5362
3004                                                 6891
3005                                                 2698
3006                                                 4921
3007                                                 5373
3008                                                 5361
3009                                                 9085
3010                                                 5303
3011                                                14822
3012                                                 4791
3013                                                 4208
3014                                                 7884
3015                                                 8347
3016                                                10277
3017                                               346516
3018                                               488107
3019                                               409646
3020                                               393748
3021                                               317090
3022                                               356868
3023                                               314435
3024                                               284810
3025                                               304461
3026                                               335244
3027                                               345051
3028                                               366649
3029                                               340343
3030                                               338301
3031                                               346156
3032                                               470860
3033                                               381831
3034                                               388174
3035                                               353351
3036                                               353845
3037                                               335034
3038                                               338692
3039                                               343836
3040                                               320251
3041                                               359934
3042                                               408602
3043                                               433432
3044                                               456522
3045                                               421979
3046                                               417995
3047                                               461425
3048                                               430581
3049                                               517840
3050                                               698438
3051                                               520370
3052                                               446541
3053                                               438211
3054                                               456030
3055                                               406529
3056                                               463187
3057                                               490720
3058                                               487268
3059                                               434300
3060                                               506049
3061                                               388957
3062                                               560259
3063                                               511549
3064                                               501280
3065                                               482031
3066                                               486768
3067                                               391873
3068                                               492478
3069                                                64435
3070                                                52115
3071                                                62963
3072                                                54243
3073                                                50582
3074                                                52281
3075                                                56518
3076                                                56678
3077                                                56077
3078                                                50974
3079                                                61796
3080                                                68717
3081                                                62757
3082                                                62356
3083                                                70019
3084                                                81284
3085                                                67791
3086                                                64246
3087                                                70785
3088                                                72837
3089                                                74561
3090                                                64652
3091                                                63921
3092                                                71782
3093                                                88106
3094                                                85759
3095                                                74747
3096                                                80407
3097                                                79865
3098                                                78923
3099                                                81631
3100                                                72247
3101                                                72074
3102                                                97493
3103                                                69914
3104                                                69261
3105                                                67585
3106                                                55802
3107                                                72025
3108                                                64644
3109                                                62344
3110                                                77325
3111                                                60517
3112                                                78721
3113                                                52666
3114                                                60453
3115                                                76309
3116                                                81676
3117                                                54309
3118                                                49449
3119                                                52034
3120                                                57211
3121                                              2192461
3122                                              1774200
3123                                              2137291
3124                                              1449672
3125                                              1313001
3126                                              1394929
3127                                              1367685
3128                                              1333387
3129                                              1186844
3130                                              1129206
3131                                              1600568
3132                                              1750075
3133                                              1664176
3134                                              1924934
3135                                              1934688
3136                                              1976499
3137                                              2179345
3138                                              1878140
3139                                              1712067
3140                                              2538994
3141                                              2039791
3142                                              2069410
3143                                              2147541
3144                                              2037094
3145                                              2117397
3146                                              2439612
3147                                              1967325
3148                                              2045112
3149                                              1869930
3150                                              2131717
3151                                              2097509
3152                                              2178821
3153                                              1968269
3154                                              2615648
3155                                              2628579
3156                                              2355999
3157                                              1875910
3158                                              1958359
3159                                              2247248
3160                                              2149392
3161                                              2191468
3162                                              1855263
3163                                              1975668
3164                                              2020328
3165                                              2073957
3166                                              1974912
3167                                              3950852
3168                                              2069193
3169                                              2457752
3170                                              2336705
3171                                              2173554
3172                                              2856102
3173                                                50792
3174                                                46277
3175                                                40971
3176                                                46286
3177                                                34346
3178                                                28907
3179                                                26597
3180                                                27501
3181                                                29382
3182                                                39750
3183                                                56367
3184                                                52190
3185                                                52893
3186                                                53594
3187                                                54193
3188                                                59554
3189                                                56700
3190                                                57123
3191                                                62976
3192                                                66724
3193                                                64125
3194                                                68964
3195                                                68516
3196                                                69125
3197                                                79104
3198                                                72710
3199                                                68054
3200                                                77705
3201                                                74896
3202                                                77701
3203                                                92111
3204                                                95769
3205                                               103793
3206                                               113811
3207                                               112927
3208                                               106492
3209                                               100815
3210                                                93571
3211                                                87529
3212                                                90916
3213                                               101740
3214                                               111944
3215                                                98213
3216                                               106915
3217                                                86394
3218                                                87862
3219                                               160545
3220                                               108724
3221                                               110262
3222                                               104175
3223                                                94805
3224                                                87749
3225                                               352087
3226                                               363658
3227                                               449932
3228                                               372929
3229                                               291206
3230                                               422382
3231                                               265007
3232                                               224562
3233                                               226981
3234                                               251075
3235                                               324241
3236                                               314006
3237                                               311086
3238                                               337874
3239                                               340540
3240                                               355229
3241                                               415925
3242                                               373442
3243                                               372918
3244                                               371087
3245                                               385924
3246                                               373206
3247                                               386822
3248                                               425776
3249                                               381031
3250                                               584813
3251                                               499474
3252                                               550500
3253                                               478336
3254                                               606702
3255                                               642858
3256                                               592065
3257                                               609294
3258                                               612340
3259                                               587919
3260                                               592371
3261                                               619840
3262                                               464982
3263                                               457314
3264                                               600796
3265                                               514604
3266                                               569734
3267                                               557027
3268                                               522790
3269                                               483562
3270                                               501189
3271                                               758582
3272                                               512609
3273                                               543471
3274                                               500624
3275                                               534405
3276                                               656387
3277                                               102227
3278                                               100542
3279                                               101664
3280                                               132793
3281                                                75977
3282                                                85408
3283                                                92084
3284                                                91903
3285                                                89381
3286                                                94638
3287                                                89325
3288                                               100995
3289                                               105493
3290                                               112150
3291                                               112907
3292                                               122059
3293                                               117600
3294                                               126642
3295                                               118303
3296                                               125988
3297                                               130022
3298                                               129945
3299                                               133484
3300                                               136099
3301                                               149185
3302                                               168217
3303                                               161667
3304                                               154162
3305                                               149995
3306                                               174172
3307                                               164356
3308                                               144151
3309                                               151116
3310                                               183122
3311                                               156007
3312                                               141434
3313                                               141000
3314                                               125253
3315                                               109917
3316                                               131467
3317                                               132075
3318                                               126851
3319                                               129151
3320                                               129161
3321                                               117329
3322                                               144375
3323                                               177381
3324                                               133277
3325                                               155257
3326                                               142146
3327                                               151374
3328                                               149328
3329                                                24335
3330                                                31791
3331                                                19836
3332                                                42478
3333                                                19134
3334                                                21271
3335                                                26129
3336                                                23397
3337                                                16017
3338                                                21559
3339                                                22128
3340                                                23319
3341                                                25748
3342                                                37334
3343                                                26635
3344                                                25413
3345                                                29162
3346                                                34420
3347                                                33285
3348                                                34065
3349                                                37216
3350                                                31744
3351                                                34227
3352                                                38319
3353                                                36097
3354                                                38362
3355                                                37202
3356                                                36827
3357                                                32053
3358                                                38735
3359                                                36787
3360                                                37764
3361                                                47726
3362                                                46435
3363                                                47074
3364                                                35759
3365                                                48784
3366                                                27303
3367                                                28964
3368                                                32128
3369                                                35538
3370                                                31782
3371                                                42502
3372                                                41406
3373                                                36674
3374                                                38936
3375                                                55304
3376                                                38158
3377                                                43917
3378                                                30085
3379                                                33602
3380                                                40617
3381                                               313573
3382                                               250533
3383                                               188669
3384                                               187180
3385                                               158734
3386                                               183916
3387                                               199890
3388                                               163206
3389                                               156226
3390                                               240421
3391                                               188633
3392                                               283337
3393                                               186984
3394                                               228336
3395                                               269041
3396                                               230293
3397                                               256376
3398                                               255434
3399                                               231497
3400                                               240643
3401                                               241322
3402                                               213926
3403                                               228113
3404                                               210287
3405                                               205087
3406                                               273911
3407                                               213130
3408                                               250585
3409                                               219369
3410                                               313964
3411                                               292600
3412                                               352915
3413                                               308644
3414                                               307561
3415                                               319831
3416                                               327965
3417                                               232036
3418                                               211182
3419                                               245284
3420                                               291595
3421                                               317080
3422                                               217854
3423                                               198718
3424                                               207475
3425                                               221807
3426                                               306905
3427                                               410258
3428                                               287514
3429                                               289209
3430                                               369825
3431                                               394770
3432                                               411340
3433                                               206365
3434                                               232183
3435                                               219904
3436                                               277375
3437                                               131941
3438                                               146401
3439                                               197035
3440                                               148423
3441                                               239345
3442                                               166316
3443                                               156075
3444                                               240858
3445                                               172836
3446                                               168060
3447                                               198214
3448                                               227729
3449                                               254464
3450                                               282568
3451                                               190695
3452                                               189114
3453                                               183569
3454                                               178801
3455                                               187555
3456                                               204309
3457                                               230362
3458                                               256861
3459                                               229713
3460                                               224899
3461                                               242834
3462                                               326967
3463                                               282618
3464                                               266856
3465                                               252574
3466                                               427697
3467                                               261525
3468                                               225789
3469                                               285968
3470                                               353041
3471                                               209188
3472                                               208644
3473                                               360370
3474                                               261686
3475                                               242906
3476                                               300336
3477                                               331998
3478                                               277085
3479                                               557897
3480                                               270482
3481                                               404617
3482                                               403010
3483                                               366331
3484                                               526049
3485                                                59759
3486                                                85859
3487                                                44004
3488                                               173438
3489                                                47554
3490                                                46524
3491                                                43868
3492                                                46243
3493                                                41554
3494                                                51517
3495                                                51486
3496                                                50764
3497                                                49320
3498                                                50863
3499                                                53982
3500                                                57729
3501                                                56047
3502                                                54190
3503                                                53707
3504                                                53137
3505                                                60622
3506                                                51178
3507                                                39971
3508                                                41461
3509                                                41581
3510                                                42030
3511                                                50836
3512                                                60808
3513                                                38374
3514                                                90921
3515                                                45533
3516                                                40269
3517                                                86028
3518                                                84170
3519                                                48136
3520                                                50906
3521                                               116001
3522                                                30729
3523                                                33904
3524                                                65448
3525                                                67762
3526                                                42594
3527                                                86748
3528                                                66020
3529                                                42300
3530                                                51192
3531                                               118252
3532                                                59678
3533                                                95838
3534                                                46383
3535                                                49833
3536                                                93942
3537                                                91323
3538                                               109289
3539                                                60599
3540                                               189102
3541                                                62174
3542                                                82542
3543                                                62842
3544                                                58869
3545                                                80588
3546                                                64736
3547                                                69626
3548                                                67528
3549                                                67660
3550                                                75047
3551                                                82347
3552                                                76988
3553                                                79727
3554                                                68530
3555                                                66472
3556                                                61893
3557                                                72545
3558                                                78076
3559                                                66147
3560                                                69206
3561                                                70502
3562                                                79978
3563                                               104540
3564                                               130169
3565                                                93760
3566                                               218135
3567                                               117665
3568                                                84537
3569                                               211337
3570                                               201017
3571                                               131194
3572                                               113326
3573                                               256400
3574                                                95777
3575                                                97646
3576                                               146038
3577                                               140410
3578                                                91195
3579                                               191952
3580                                               141142
3581                                                93604
3582                                                98244
3583                                               205007
3584                                               126342
3585                                               195586
3586                                               106815
3587                                               110381
3588                                               191590
3589                                              1256640
3590                                              1327456
3591                                              1251696
3592                                              1769354
3593                                               937488
3594                                              1176231
3595                                              1003256
3596                                               946982
3597                                               955805
3598                                              1062333
3599                                              1126801
3600                                              1162529
3601                                              1183844
3602                                              1282329
3603                                              1278413
3604                                              1351448
3605                                              1430594
3606                                              1330167
3607                                              1308748
3608                                              1316694
3609                                              1387947
3610                                              1374845
3611                                              1381176
3612                                              1441658
3613                                              1500517
3614                                              1781703
3615                                              1609911
3616                                              1766243
3617                                              1519607
3618                                              2147776
3619                                              1952012
3620                                              1785951
3621                                              2165411
3622                                              2239471
3623                                              1927106
3624                                              1787143
3625                                              2322236
3626                                              1454196
3627                                              1373509
3628                                              1846740
3629                                              1730563
3630                                              1668503
3631                                              2069787
3632                                              1862762
3633                                              1566427
3634                                              1784879
3635                                              2644419
3636                                              1762047
3637                                              2043222
3638                                              1695888
3639                                              1753942
3640                                              2200075
3641                                                97384
3642                                               133480
3643                                               115422
3644                                                93529
3645                                                81008
3646                                                91103
3647                                                92585
3648                                                82050
3649                                                78895
3650                                                99576
3651                                                95965
3652                                               111487
3653                                               106682
3654                                                89410
3655                                                73638
3656                                               103071
3657                                               112618
3658                                               114244
3659                                               119685
3660                                               114887
3661                                               109040
3662                                               110155
3663                                               103034
3664                                                99017
3665                                               118216
3666                                               129784
3667                                               141143
3668                                               132642
3669                                               114427
3670                                               134735
3671                                               143023
3672                                               124678
3673                                               159859
3674                                               247409
3675                                               185445
3676                                               157367
3677                                               135972
3678                                               116592
3679                                                88834
3680                                               135848
3681                                               159452
3682                                               148078
3683                                               130175
3684                                               157390
3685                                               136617
3686                                               155336
3687                                               186545
3688                                               141568
3689                                               145119
3690                                               127825
3691                                               113996
3692                                               157969
3693                                               178949
3694                                               256346
3695                                               186955
3696                                               160247
3697                                               149413
3698                                               168091
3699                                               129123
3700                                               119662
3701                                               130996
3702                                               152904
3703                                               148211
3704                                               171101
3705                                               145719
3706                                               125999
3707                                               130354
3708                                               225724
3709                                               199814
3710                                               209240
3711                                               191018
3712                                               186844
3713                                               183605
3714                                               170921
3715                                               165703
3716                                               173492
3717                                               192339
3718                                               212725
3719                                               245341
3720                                               253641
3721                                               242441
3722                                               219463
3723                                               310084
3724                                               224263
3725                                               353743
3726                                               449501
3727                                               286951
3728                                               277216
3729                                               212804
3730                                               213983
3731                                               204808
3732                                               234449
3733                                               315608
3734                                               253677
3735                                               241128
3736                                               305867
3737                                               214537
3738                                               326487
3739                                               306374
3740                                               322398
3741                                               234917
3742                                               265631
3743                                               213815
3744                                               275681
3745                                               238202
3746                                               258779
3747                                               275659
3748                                               274634
3749                                               173402
3750                                               202860
3751                                               231630
3752                                               168815
3753                                               181579
3754                                               145059
3755                                               223737
3756                                               344449
3757                                               260177
3758                                               266059
3759                                               203949
3760                                               188319
3761                                               265697
3762                                               216733
3763                                               248160
3764                                               218436
3765                                               239658
3766                                               203888
3767                                               218180
3768                                               219856
3769                                               208422
3770                                               245932
3771                                               216134
3772                                               228843
3773                                               236621
3774                                               242491
3775                                               247280
3776                                               339100
3777                                               335853
3778                                               293099
3779                                               368704
3780                                               324423
3781                                               191432
3782                                               188936
3783                                               264272
3784                                               406713
3785                                               327365
3786                                               247462
3787                                               182051
3788                                               180298
3789                                               200935
3790                                               334137
3791                                               424427
3792                                               348543
3793                                               363892
3794                                               369479
3795                                               437751
3796                                               454200
3797                                                59101
3798                                                56820
3799                                                61399
3800                                                70442
3801                                                43655
3802                                                52842
3803                                                56482
3804                                                55558
3805                                                61450
3806                                                65585
3807                                                60050
3808                                                61270
3809                                                66598
3810                                                68404
3811                                                67689
3812                                                70737
3813                                                75640
3814                                                78139
3815                                                73967
3816                                                79507
3817                                                77899
3818                                                80211
3819                                                82110
3820                                                93316
3821                                                96588
3822                                                97348
3823                                                90386
3824                                                91178
3825                                                89226
3826                                               100387
3827                                               109784
3828                                               105337
3829                                                98565
3830                                               106300
3831                                               106590
3832                                               116191
3833                                               113833
3834                                                84834
3835                                                73684
3836                                               103262
3837                                                91016
3838                                                97729
3839                                               116610
3840                                               107091
3841                                                91309
3842                                               133957
3843                                               145592
3844                                               102864
3845                                                93614
3846                                               105607
3847                                               101117
3848                                               109973
3849                                                31214
3850                                                27329
3851                                                18098
3852                                                35344
3853                                                18662
3854                                                19385
3855                                                22431
3856                                                21711
3857                                                20159
3858                                                22755
3859                                                36096
3860                                                35356
3861                                                29513
3862                                                21093
3863                                                27540
3864                                                23110
3865                                                34370
3866                                                32155
3867                                                36441
3868                                                43133
3869                                                30914
3870                                                31854
3871                                                39378
3872                                                34465
3873                                                34028
3874                                                48699
3875                                                31812
3876                                                41557
3877                                                28485
3878                                                32124
3879                                                36411
3880                                                27438
3881                                                59902
3882                                                34526
3883                                                70592
3884                                                61113
3885                                                31280
3886                                                54201
3887                                                27201
3888                                                27912
3889                                                26015
3890                                                47857
3891                                                26488
3892                                                43494
3893                                                22329
3894                                                23878
3895                                                57532
3896                                                21969
3897                                                18557
3898                                                 9811
3899                                                10625
3900                                                 8715
3901                                                43302
3902                                                49296
3903                                                55353
3904                                                56503
3905                                                41993
3906                                                29776
3907                                                32699
3908                                                29998
3909                                                31779
3910                                                48015
3911                                                51474
3912                                                40083
3913                                                45097
3914                                                44922
3915                                                57221
3916                                                70912
3917                                                69349
3918                                                56927
3919                                                50487
3920                                                53955
3921                                                57549
3922                                                54745
3923                                                58714
3924                                                52024
3925                                                69545
3926                                                82727
3927                                                74317
3928                                                76173
3929                                                75379
3930                                               109764
3931                                               115790
3932                                                89287
3933                                               107125
3934                                               144990
3935                                               115747
3936                                               120811
3937                                               110596
3938                                                91834
3939                                                62626
3940                                                72324
3941                                               116702
3942                                               109512
3943                                                86200
3944                                                98921
3945                                               124296
3946                                               110750
3947                                               142489
3948                                                87110
3949                                                81835
3950                                                98544
3951                                               110550
3952                                               138143
3953                                               669585
3954                                               513487
3955                                               631013
3956                                               476163
3957                                               416438
3958                                               456709
3959                                               436389
3960                                               423352
3961                                               383974
3962                                               427296
3963                                               501533
3964                                               559077
3965                                               471344
3966                                               468793
3967                                               457933
3968                                               534763
3969                                               626923
3970                                               537893
3971                                               480926
3972                                               605409
3973                                               632756
3974                                               562613
3975                                               629930
3976                                               630743
3977                                               678995
3978                                               746045
3979                                               655948
3980                                               593239
3981                                               529970
3982                                               650813
3983                                               691109
3984                                               782145
3985                                               643465
3986                                               929684
3987                                              1047924
3988                                               704492
3989                                               643221
3990                                               715740
3991                                               683860
3992                                               836002
3993                                               901465
3994                                               657175
3995                                               680884
3996                                               750266
3997                                               671213
3998                                               837742
3999                                              1447534
4000                                               721989
4001                                               779057
4002                                               854486
4003                                               803197
4004                                               992213
4005                                                35235
4006                                                33646
4007                                                44378
4008                                                60677
4009                                                26663
4010                                                29057
4011                                                30444
4012                                                34663
4013                                                35446
4014                                                37427
4015                                                37516
4016                                                36813
4017                                                37152
4018                                                41729
4019                                                48963
4020                                                51733
4021                                                45781
4022                                                48992
4023                                                50040
4024                                                54113
4025                                                53454
4026                                                53670
4027                                                57404
4028                                                60191
4029                                                62214
4030                                                64636
4031                                                56615
4032                                                54424
4033                                                50561
4034                                                56151
4035                                                71648
4036                                                77719
4037                                                62309
4038                                                87801
4039                                                81916
4040                                                55940
4041                                                55696
4042                                                49692
4043                                                52626
4044                                                74447
4045                                                76889
4046                                                47341
4047                                                49581
4048                                                63257
4049                                                75574
4050                                                81576
4051                                                98136
4052                                                70021
4053                                                72603
4054                                                48151
4055                                                63266
4056                                                73869
4057                                               148592
4058                                               158602
4059                                                97260
4060                                               173005
4061                                                89345
4062                                               102113
4063                                               101415
4064                                                96964
4065                                                98080
4066                                               125399
4067                                               158620
4068                                               112104
4069                                               125422
4070                                               108281
4071                                               103912
4072                                                89642
4073                                               140627
4074                                               131833
4075                                               128877
4076                                               142476
4077                                               125027
4078                                               112883
4079                                               132337
4080                                               136078
4081                                               142735
4082                                               184173
4083                                               130937
4084                                               182509
4085                                               107339
4086                                               149115
4087                                               167161
4088                                               103460
4089                                               227686
4090                                               137741
4091                                               260626
4092                                               227523
4093                                               117780
4094                                               193377
4095                                               103463
4096                                                99290
4097                                               105077
4098                                               176358
4099                                                93574
4100                                               169812
4101                                               102685
4102                                               101867
4103                                               241271
4104                                                79763
4105                                                61068
4106                                                62107
4107                                                82028
4108                                                44399
4109                                               873785
4110                                               999959
4111                                               862587
4112                                               873735
4113                                               729253
4114                                               712348
4115                                               723969
4116                                               697012
4117                                               713428
4118                                               851527
4119                                               921534
4120                                               951060
4121                                               965797
4122                                               947416
4123                                              1019588
4124                                              1164894
4125                                              1150321
4126                                              1165119
4127                                              1180366
4128                                              1211100
4129                                              1274556
4130                                              1247700
4131                                              1286836
4132                                              1272165
4133                                              1498358
4134                                              1523685
4135                                              1468309
4136                                              1530426
4137                                              1422914
4138                                              1510541
4139                                              1603135
4140                                              1530509
4141                                              1687342
4142                                              2144351
4143                                              1861915
4144                                              1711269
4145                                              1613810
4146                                              1349758
4147                                              1351630
4148                                              1535010
4149                                              1715343
4150                                              1674136
4151                                              1532055
4152                                              1680330
4153                                              1378971
4154                                              1639481
4155                                              2164457
4156                                              1608441
4157                                              1787663
4158                                              1547484
4159                                              1439157
4160                                              1566127
4161                                                18070
4162                                                16272
4163                                                12359
4164                                                20042
4165                                                12291
4166                                                12277
4167                                                13161
4168                                                13757
4169                                                17343
4170                                                28376
4171                                                21640
4172                                                15555
4173                                                15616
4174                                                20581
4175                                                16915
4176                                                12777
4177                                                14374
4178                                                12601
4179                                                15917
4180                                                19071
4181                                                25466
4182                                                29436
4183                                                31317
4184                                                33913
4185                                                37966
4186                                                46053
4187                                                25603
4188                                                19716
4189                                                12816
4190                                                17532
4191                                                21274
4192                                                18840
4193                                                31345
4194                                                26342
4195                                                37443
4196                                                33821
4197                                                23422
4198                                                31062
4199                                                19391
4200                                                20113
4201                                                21587
4202                                                32085
4203                                                20762
4204                                                31559
4205                                                25448
4206                                                42831
4207                                                59611
4208                                                33297
4209                                                33125
4210                                                30228
4211                                                29886
4212                                                11154
4213                                                23166
4214                                                21082
4215                                                18892
4216                                                24486
4217                                                17901
4218                                                23610
4219                                                30402
4220                                                22892
4221                                                22081
4222                                                30817
4223                                                27294
4224                                                41720
4225                                                32258
4226                                                34973
4227                                                32908
4228                                                37595
4229                                                65044
4230                                                49486
4231                                                43283
4232                                                48205
4233                                                52770
4234                                                39957
4235                                                41610
4236                                                40878
4237                                                41307
4238                                                44368
4239                                                37596
4240                                                39329
4241                                                35056
4242                                                26539
4243                                                47486
4244                                                32548
4245                                                35603
4246                                                41989
4247                                                60231
4248                                                33965
4249                                                32868
4250                                                34799
4251                                                29117
4252                                                31627
4253                                                30607
4254                                                38523
4255                                                27025
4256                                                35256
4257                                                31666
4258                                                29031
4259                                                55887
4260                                                33072
4261                                                36031
4262                                                41110
4263                                                24063
4264                                                40902
4265                                               713042
4266                                               954803
4267                                               793990
4268                                               696042
4269                                               696849
4270                                               732069
4271                                               523322
4272                                               460230
4273                                               435952
4274                                               512038
4275                                               636342
4276                                               688906
4277                                               658467
4278                                               566150
4279                                               551449
4280                                               883866
4281                                               832270
4282                                               715527
4283                                               771413
4284                                               714407
4285                                               668121
4286                                               609413
4287                                               650142
4288                                               611445
4289                                               700325
4290                                               746733
4291                                              1130567
4292                                               901973
4293                                               976391
4294                                               955312
4295                                              1354635
4296                                              1157504
4297                                              1274098
4298                                              2283465
4299                                              1106990
4300                                              1290475
4301                                               582843
4302                                               588026
4303                                               912293
4304                                              1008215
4305                                              1269405
4306                                              1237675
4307                                              1074827
4308                                              1282457
4309                                               930110
4310                                              1388157
4311                                              1630430
4312                                              1284269
4313                                               993964
4314                                              1422978
4315                                              1012218
4316                                              1192876
4317                                              2191724
4318                                              2795231
4319                                              2390082
4320                                              2427296
4321                                              1938617
4322                                              2178698
4323                                              1797497
4324                                              1616563
4325                                              1616421
4326                                              1930227
4327                                              2009401
4328                                              2258828
4329                                              2048824
4330                                              1993514
4331                                              1938471
4332                                              2632018
4333                                              2446669
4334                                              2495011
4335                                              2351280
4336                                              2323362
4337                                              2245560
4338                                              2213893
4339                                              2172523
4340                                              2123945
4341                                              2589206
4342                                              2669362
4343                                              3188128
4344                                              2920243
4345                                              2903948
4346                                              2911585
4347                                              3554079
4348                                              3018204
4349                                              3556590
4350                                              5246830
4351                                              3800242
4352                                              3366389
4353                                              2415296
4354                                              2340135
4355                                              2745625
4356                                              2932815
4357                                              3414702
4358                                              3460336
4359                                              2950419
4360                                              3361016
4361                                              2707200
4362                                              3553331
4363                                              4290646
4364                                              3443651
4365                                              2940359
4366                                              3491029
4367                                              2696732
4368                                              3588932
4369                                               257988
4370                                               293063
4371                                               246740
4372                                               378804
4373                                               210220
4374                                               247461
4375                                               211327
4376                                               179548
4377                                               185281
4378                                               223022
4379                                               224369
4380                                               239615
4381                                               222358
4382                                               236473
4383                                               235008
4384                                               237321
4385                                               209148
4386                                               287750
4387                                               197872
4388                                               226795
4389                                               241098
4390                                               239638
4391                                               244441
4392                                               228100
4393                                               339263
4394                                               321186
4395                                               323720
4396                                               322696
4397                                               307759
4398                                               314403
4399                                               337330
4400                                               280360
4401                                               314998
4402                                               370027
4403                                               538038
4404                                               326907
4405                                               303892
4406                                               291174
4407                                               411414
4408                                               327260
4409                                               325110
4410                                               382631
4411                                               303582
4412                                               288178
4413                                               278339
4414                                               316153
4415                                               531500
4416                                               292520
4417                                               319014
4418                                               328750
4419                                               270035
4420                                               492915
4421                                                81351
4422                                                76983
4423                                                48772
4424                                                95284
4425                                                48667
4426                                                50316
4427                                                50338
4428                                                53545
4429                                                52976
4430                                                68746
4431                                                87928
4432                                                81061
4433                                                66861
4434                                                54807
4435                                                59374
4436                                                55135
4437                                                75406
4438                                                80918
4439                                                87311
4440                                                92045
4441                                                84662
4442                                                80413
4443                                                92078
4444                                                90770
4445                                                84547
4446                                               118093
4447                                                76178
4448                                                98795
4449                                                64911
4450                                                71420
4451                                                82501
4452                                                55453
4453                                               121578
4454                                                80588
4455                                               142408
4456                                               124208
4457                                                69222
4458                                               113252
4459                                                55774
4460                                                56406
4461                                                56331
4462                                                97078
4463                                                51358
4464                                                93393
4465                                                50581
4466                                                50342
4467                                               119919
4468                                                61348
4469                                                54289
4470                                                21801
4471                                                31582
4472                                                31730
4473                                               202765
4474                                               231498
4475                                               231525
4476                                               195612
4477                                               180338
4478                                               207065
4479                                               177198
4480                                               162911
4481                                               150271
4482                                               179713
4483                                               192515
4484                                               203204
4485                                               195429
4486                                               166763
4487                                               167573
4488                                               218302
4489                                               240345
4490                                               200121
4491                                               215056
4492                                               201588
4493                                               189679
4494                                               180678
4495                                               184982
4496                                               190535
4497                                               211189
4498                                               219161
4499                                               279488
4500                                               245062
4501                                               236402
4502                                               264045
4503                                               300578
4504                                               282262
4505                                               313359
4506                                               511601
4507                                               304615
4508                                               329516
4509                                               199177
4510                                               188452
4511                                               231665
4512                                               254821
4513                                               287549
4514                                               380795
4515                                               278370
4516                                               293977
4517                                               268802
4518                                               283608
4519                                               385631
4520                                               344188
4521                                               287751
4522                                               340076
4523                                               271291
4524                                               309378
4525                                               215903
4526                                               203894
4527                                               226308
4528                                               187419
4529                                               212696
4530                                               183315
4531                                               189026
4532                                               154481
4533                                               135479
4534                                               188686
4535                                               223810
4536                                               208869
4537                                               206765
4538                                               208122
4539                                               206298
4540                                               216560
4541                                               261415
4542                                               207913
4543                                               202900
4544                                               228315
4545                                               214144
4546                                               202784
4547                                               201696
4548                                               188087
4549                                               213070
4550                                               249522
4551                                               230323
4552                                               231637
4553                                               222421
4554                                               271580
4555                                               251167
4556                                               233772
4557                                               266908
4558                                               325968
4559                                               324710
4560                                               264604
4561                                               286552
4562                                               246403
4563                                               244434
4564                                               252486
4565                                               283973
4566                                               256532
4567                                               259847
4568                                               311747
4569                                               347499
4570                                               243842
4571                                               286749
4572                                               293462
4573                                               293418
4574                                               272231
4575                                               252752
4576                                               250116
4577                                                23868
4578                                                38354
4579                                                22461
4580                                                22668
4581                                                18777
4582                                                24292
4583                                                26629
4584                                                27434
4585                                                21348
4586                                                26248
4587                                                24184
4588                                                27239
4589                                                31202
4590                                                67363
4591                                                40378
4592                                                30643
4593                                                37833
4594                                                43896
4595                                                51711
4596                                                52112
4597                                                53440
4598                                                52791
4599                                                55309
4600                                                54927
4601                                                57549
4602                                                68197
4603                                                59568
4604                                                59253
4605                                                56238
4606                                                61595
4607                                                68421
4608                                                68959
4609                                               113018
4610                                                97359
4611                                               114448
4612                                                52354
4613                                                64913
4614                                                57326
4615                                                57684
4616                                                53508
4617                                                50816
4618                                                52730
4619                                                58262
4620                                                58768
4621                                                57903
4622                                                52892
4623                                                72084
4624                                                61619
4625                                                63654
4626                                                56551
4627                                                67789
4628                                                61042
4629                                               446634
4630                                               428227
4631                                               330241
4632                                               349761
4633                                               272841
4634                                               306191
4635                                               357174
4636                                               366464
4637                                               297119
4638                                               350913
4639                                               367702
4640                                               416484
4641                                               378849
4642                                               360990
4643                                               439168
4644                                               488706
4645                                               541981
4646                                               462410
4647                                               445643
4648                                               435932
4649                                               534862
4650                                               526275
4651                                               565159
4652                                               583709
4653                                               634634
4654                                               761168
4655                                               490842
4656                                               925766
4657                                               628987
4658                                               518979
4659                                               495022
4660                                               619173
4661                                               621229
4662                                               861839
4663                                               636658
4664                                               650864
4665                                               756239
4666                                               507777
4667                                               451253
4668                                               518334
4669                                               691375
4670                                               548240
4671                                               481425
4672                                               496106
4673                                               499721
4674                                               525736
4675                                              1165323
4676                                               571495
4677                                               518203
4678                                               499796
4679                                               510182
4680                                               840638
4681                                               135603
4682                                               135172
4683                                               256730
4684                                               143749
4685                                               104742
4686                                               114101
4687                                               119197
4688                                               116113
4689                                               109966
4690                                               127808
4691                                               107928
4692                                               124431
4693                                               187759
4694                                               123794
4695                                               146731
4696                                               156921
4697                                               166648
4698                                               173788
4699                                               156328
4700                                               139971
4701                                               166750
4702                                               130930
4703                                               142590
4704                                               140619
4705                                               152087
4706                                               189258
4707                                               158417
4708                                               168949
4709                                               167508
4710                                               234870
4711                                               204586
4712                                               157858
4713                                               220232
4714                                               244456
4715                                               219777
4716                                               194071
4717                                               285328
4718                                               233413
4719                                               249614
4720                                               247869
4721                                               177624
4722                                               223411
4723                                               207463
4724                                               209750
4725                                               277280
4726                                               169229
4727                                               340413
4728                                               223505
4729                                               208201
4730                                               249095
4731                                               241994
4732                                               291668
4733                                                63984
4734                                                60082
4735                                                51721
4736                                                51555
4737                                                41537
4738                                                40838
4739                                                39963
4740                                                42184
4741                                                42819
4742                                                53189
4743                                                64317
4744                                                67027
4745                                                79272
4746                                                70495
4747                                                82985
4748                                                81088
4749                                                90748
4750                                               100303
4751                                               102581
4752                                               113634
4753                                               115113
4754                                               116645
4755                                               114296
4756                                               109983
4757                                               124464
4758                                               107878
4759                                               110539
4760                                               116062
4761                                               111257
4762                                               115207
4763                                               118782
4764                                               123522
4765                                               131575
4766                                               154920
4767                                               143134
4768                                               135697
4769                                               137650
4770                                               112390
4771                                               113708
4772                                               129664
4773                                               140114
4774                                               142777
4775                                               140243
4776                                               136706
4777                                               118359
4778                                               118416
4779                                               207314
4780                                               145758
4781                                               135264
4782                                               140275
4783                                               120386
4784                                               127744
4785                                                58579
4786                                                54299
4787                                                51725
4788                                                49249
4789                                                48587
4790                                                49335
4791                                                47267
4792                                                43302
4793                                                43432
4794                                                54871
4795                                                67555
4796                                                66362
4797                                                68004
4798                                                66844
4799                                                78465
4800                                                71791
4801                                                86558
4802                                                85621
4803                                                84502
4804                                                80717
4805                                                93057
4806                                                86667
4807                                                91586
4808                                                92471
4809                                               117236
4810                                               116414
4811                                               104881
4812                                               122627
4813                                               108482
4814                                               117810
4815                                               106697
4816                                               105907
4817                                               121475
4818                                               158034
4819                                               132271
4820                                               118253
4821                                               119481
4822                                                82433
4823                                                74249
4824                                               109864
4825                                               127368
4826                                               125743
4827                                               117735
4828                                               107712
4829                                               101387
4830                                               118256
4831                                               168149
4832                                               115933
4833                                               131405
4834                                               115257
4835                                                97008
4836                                               102412
4837                                                28263
4838                                                26461
4839                                                27761
4840                                                26048
4841                                                23787
4842                                                25267
4843                                                25756
4844                                                23895
4845                                                21234
4846                                                29276
4847                                                32597
4848                                                34297
4849                                                35465
4850                                                39270
4851                                                38598
4852                                                38350
4853                                                42949
4854                                                43350
4855                                                46240
4856                                                41577
4857                                                45989
4858                                                43886
4859                                                41844
4860                                                45127
4861                                                54601
4862                                                55216
4863                                                52755
4864                                                58288
4865                                                52625
4866                                                56077
4867                                                52309
4868                                                50049
4869                                                55895
4870                                                76767
4871                                                71618
4872                                                57629
4873                                                59222
4874                                                31990
4875                                                32720
4876                                                50007
4877                                                55818
4878                                                57107
4879                                                51285
4880                                                48195
4881                                                45912
4882                                                55675
4883                                                79535
4884                                                52095
4885                                                55634
4886                                                51994
4887                                                42999
4888                                                58349
4889                                               263467
4890                                               218206
4891                                               275887
4892                                               156813
4893                                               150299
4894                                               151992
4895                                               144958
4896                                               137695
4897                                               118831
4898                                               127357
4899                                               180666
4900                                               190297
4901                                               191756
4902                                               230424
4903                                               234690
4904                                               229037
4905                                               247685
4906                                               225696
4907                                               217956
4908                                               299818
4909                                               239914
4910                                               255279
4911                                               253984
4912                                               237468
4913                                               231260
4914                                               303030
4915                                               228940
4916                                               276856
4917                                               263137
4918                                               269556
4919                                               252375
4920                                               253577
4921                                               224843
4922                                               307614
4923                                               251468
4924                                               281110
4925                                               210774
4926                                               227081
4927                                               284765
4928                                               248862
4929                                               203155
4930                                               227494
4931                                               216300
4932                                               213423
4933                                               219980
4934                                               207645
4935                                               419045
4936                                               209171
4937                                               278224
4938                                               256284
4939                                               229930
4940                                               301173
4941                                               191755
4942                                               161105
4943                                               205743
4944                                               133319
4945                                               108872
4946                                               120006
4947                                               126173
4948                                               128357
4949                                               119080
4950                                               119290
4951                                               139616
4952                                               142805
4953                                               131355
4954                                               136015
4955                                               139189
4956                                               144232
4957                                               164050
4958                                               145516
4959                                               127819
4960                                               164961
4961                                               168656
4962                                               167606
4963                                               168790
4964                                               161030
4965                                               204705
4966                                               186674
4967                                               163148
4968                                               160232
4969                                               144196
4970                                               171999
4971                                               168420
4972                                               205497
4973                                               169362
4974                                               194614
4975                                               221266
4976                                               193980
4977                                               155882
4978                                               158654
4979                                               148672
4980                                               162858
4981                                               189449
4982                                               139501
4983                                               156090
4984                                               144668
4985                                               159025
4986                                               140454
4987                                               302239
4988                                               192218
4989                                               157896
4990                                               190461
4991                                               153030
4992                                               256692
4993                                               462873
4994                                               401462
4995                                               447892
4996                                               310593
4997                                               297883
4998                                               308964
4999                                               308678
5000                                               304926
5001                                               285048
5002                                               178796
5003                                               362859
5004                                               409308
5005                                               421421
5006                                               549378
5007                                               549722
5008                                               533968
5009                                               552429
5010                                               469333
5011                                               415962
5012                                               757101
5013                                               463373
5014                                               513372
5015                                               527451
5016                                               481291
5017                                               458731
5018                                               546097
5019                                               411086
5020                                               459979
5021                                               418904
5022                                               481324
5023                                               462080
5024                                               416812
5025                                               438490
5026                                               569012
5027                                               534187
5028                                               570670
5029                                               415099
5030                                               399404
5031                                               546228
5032                                               409136
5033                                               416864
5034                                               383558
5035                                               441193
5036                                               445285
5037                                               509200
5038                                               357790
5039                                               858526
5040                                               431120
5041                                               621996
5042                                               474840
5043                                               487615
5044                                               593430
5045                                               143842
5046                                               132123
5047                                               207214
5048                                               131323
5049                                               120318
5050                                               128919
5051                                               152069
5052                                               130209
5053                                               108922
5054                                               212505
5055                                               146878
5056                                               138353
5057                                               190566
5058                                               130310
5059                                               150307
5060                                               167761
5061                                               141811
5062                                               174074
5063                                               140739
5064                                               158812
5065                                               192576
5066                                               157723
5067                                               163758
5068                                               165714
5069                                               163812
5070                                               179740
5071                                               174576
5072                                               193696
5073                                               178700
5074                                               262684
5075                                               210395
5076                                               212729
5077                                               218296
5078                                               334254
5079                                               271005
5080                                               222809
5081                                               252921
5082                                               228654
5083                                               191068
5084                                               192540
5085                                               193207
5086                                               189254
5087                                               203599
5088                                               180912
5089                                               215390
5090                                               152778
5091                                               347696
5092                                               190463
5093                                               253247
5094                                               203618
5095                                               272041
5096                                               290450
5097                                                62512
5098                                                56975
5099                                                42052
5100                                                64900
5101                                                40561
5102                                                37789
5103                                                40771
5104                                                42625
5105                                                45339
5106                                                52741
5107                                                64028
5108                                                56454
5109                                                66172
5110                                                68555
5111                                                62718
5112                                                59266
5113                                                60398
5114                                                48370
5115                                                58093
5116                                                67082
5117                                                59165
5118                                                67075
5119                                                81764
5120                                                77243
5121                                                87043
5122                                               125503
5123                                                90300
5124                                               100653
5125                                                80778
5126                                               103324
5127                                               120645
5128                                                98568
5129                                               137073
5130                                               132765
5131                                               163223
5132                                               146951
5133                                               109476
5134                                               126385
5135                                                97714
5136                                                91996
5137                                                94542
5138                                               127187
5139                                                90668
5140                                               112748
5141                                                82587
5142                                                81397
5143                                               151186
5144                                                88741
5145                                                92971
5146                                                74437
5147                                                76297
5148                                                64802
5149                                              1320134
5150                                              1116482
5151                                               987150
5152                                              1023317
5153                                               747939
5154                                               871662
5155                                               971219
5156                                               789648
5157                                               802090
5158                                              1016611
5159                                               984551
5160                                              1376612
5161                                              1053486
5162                                              1129009
5163                                              1103971
5164                                              1003812
5165                                              1321332
5166                                              1144645
5167                                              1105902
5168                                              1103048
5169                                              1162455
5170                                              1026989
5171                                              1095931
5172                                              1052371
5173                                              1012710
5174                                              1226469
5175                                               995500
5176                                              1118583
5177                                              1079764
5178                                              1281792
5179                                              1322066
5180                                              1539489
5181                                              1441163
5182                                              1367081
5183                                              1559296
5184                                              1465438
5185                                              1058770
5186                                               870524
5187                                              1083779
5188                                              1507245
5189                                              1411797
5190                                              1083004
5191                                               903361
5192                                               930353
5193                                              1020822
5194                                              1416071
5195                                              1930304
5196                                              1462783
5197                                              1530144
5198                                              1756469
5199                                              1900835
5200                                              2024262
5201                                               760830
5202                                               729401
5203                                               463051
5204                                               851643
5205                                               459434
5206                                               480430
5207                                               506555
5208                                               508907
5209                                               517368
5210                                               625236
5211                                               791522
5212                                               657058
5213                                               621971
5214                                               588360
5215                                               566389
5216                                               497550
5217                                               664440
5218                                               610782
5219                                               648952
5220                                               738177
5221                                               687208
5222                                               710445
5223                                               845297
5224                                               813315
5225                                               848789
5226                                              1175339
5227                                               777463
5228                                               936051
5229                                               592433
5230                                               823705
5231                                               971083
5232                                               666118
5233                                              1218469
5234                                               933113
5235                                              1472240
5236                                              1298673
5237                                               779185
5238                                              1116067
5239                                               636305
5240                                               604703
5241                                               616754
5242                                              1041734
5243                                               592206
5244                                               994256
5245                                               590120
5246                                               613314
5247                                              1364491
5248                                               625042
5249                                               663828
5250                                               425617
5251                                               558424
5252                                               339055
5253                                                22889
5254                                                24326
5255                                                27759
5256                                                19424
5257                                                17786
5258                                                25545
5259                                                31223
5260                                                21354
5261                                                15740
5262                                                34481
5263                                                19622
5264                                                19166
5265                                                28798
5266                                                19839
5267                                                21111
5268                                                14719
5269                                                15404
5270                                                18387
5271                                                14030
5272                                                16235
5273                                                21160
5274                                                15512
5275                                                15529
5276                                                15297
5277                                                16331
5278                                                19298
5279                                                18082
5280                                                19850
5281                                                17048
5282                                                30006
5283                                                21853
5284                                                23439
5285                                                22869
5286                                                34939
5287                                                28946
5288                                                21236
5289                                                29662
5290                                                26585
5291                                                22272
5292                                                22446
5293                                                19605
5294                                                17656
5295                                                22577
5296                                                19964
5297                                                27399
5298                                                21398
5299                                                56113
5300                                                19031
5301                                                29929
5302                                                23920
5303                                                32689
5304                                                37805
5305                                                 9135
5306                                                 7757
5307                                                 6952
5308                                                 6623
5309                                                 6474
5310                                                 8786
5311                                                11029
5312                                                10904
5313                                                 6010
5314                                                 8444
5315                                                12564
5316                                                19770
5317                                                14341
5318                                                12644
5319                                                23066
5320                                                20573
5321                                                27154
5322                                                22002
5323                                                23410
5324                                                22788
5325                                                28665
5326                                                28848
5327                                                23532
5328                                                25828
5329                                                22959
5330                                                21478
5331                                                10839
5332                                                14770
5333                                                10829
5334                                                10227
5335                                                 9859
5336                                                 8500
5337                                                10441
5338                                                12628
5339                                                10729
5340                                                10637
5341                                                11057
5342                                                 8054
5343                                                 7307
5344                                                10039
5345                                                11333
5346                                                 9122
5347                                                 9372
5348                                                12434
5349                                                27326
5350                                                21669
5351                                                80994
5352                                                33530
5353                                                28333
5354                                                32776
5355                                                28510
5356                                                29055
5357                                                29453
5358                                                28069
5359                                                31387
5360                                                42943
5361                                                24790
5362                                                27877
5363                                                27381
5364                                                26702
5365                                                25926
5366                                                37054
5367                                                31562
5368                                                46378
5369                                                32212
5370                                                38680
5371                                                36169
5372                                                39694
5373                                                35938
5374                                                45350
5375                                                37192
5376                                                39269
5377                                                41584
5378                                                47610
5379                                                35492
5380                                                39136
5381                                                49141
5382                                                47538
5383                                                52517
5384                                                45937
5385                                                43664
5386                                                46955
5387                                                52293
5388                                                40672
5389                                                41631
5390                                                51235
5391                                                54950
5392                                                39960
5393                                                39173
5394                                                32612
5395                                                31827
5396                                                43181
5397                                                46257
5398                                                42612
5399                                                38547
5400                                                39219
5401                                                40416
5402                                                37685
5403                                                60707
5404                                                41174
5405                                                34869
5406                                                41232
5407                                                31788
5408                                                47417
5409                                               104317
5410                                               102323
5411                                                60414
5412                                               123042
5413                                                61345
5414                                                63841
5415                                                69065
5416                                                67754
5417                                                68008
5418                                                92612
5419                                               117544
5420                                               105328
5421                                                72977
5422                                                66910
5423                                                66930
5424                                                62809
5425                                               105770
5426                                                99784
5427                                               100776
5428                                               110703
5429                                                95386
5430                                                87239
5431                                                97555
5432                                               101299
5433                                                92116
5434                                               142384
5435                                                88209
5436                                               127731
5437                                                76895
5438                                               100100
5439                                               117845
5440                                                65401
5441                                               138867
5442                                                96504
5443                                               170271
5444                                               148356
5445                                                79809
5446                                               140518
5447                                                73787
5448                                                70271
5449                                                69086
5450                                               131685
5451                                                67540
5452                                               134265
5453                                                67637
5454                                                76136
5455                                               189390
5456                                                95493
5457                                               122562
5458                                                49997
5459                                                88162
5460                                                46448
5461                                             10282926
5462                                             10339168
5463                                              9967220
5464                                              9908983
5465                                              7337342
5466                                              8033511
5467                                              7759608
5468                                              7126936
5469                                              6852046
5470                                              8104522
5471                                              8855073
5472                                              9579339
5473                                              9123898
5474                                              9255914
5475                                              9481313
5476                                             10380438
5477                                             11083513
5478                                             10420973
5479                                              9906499
5480                                             10879342
5481                                             10731380
5482                                             10423958
5483                                             10795751
5484                                             10628873
5485                                             11677528
5486                                             13315901
5487                                             12029919
5488                                             12842698
5489                                             11533970
5490                                             13396652
5491                                             13829591
5492                                             12981224
5493                                             14437190
5494                                             17896392
5495                                             15899858
5496                                             14382185
5497                                             12896367
5498                                             11538132
5499                                             11512622
5500                                             12745267
5501                                             13727454
5502                                             13104888
5503                                             12196587
5504                                             13210855
5505                                             12003752
5506                                             13187973
5507                                             20470573
5508                                             13278054
5509                                             14054368
5510                                             13832256
5511                                             13226089
5512                                             16054084
5513                                              1240718
5514                                              1168213
5515                                              1545122
5516                                              1164206
5517                                               938769
5518                                               913022
5519                                              1032253
5520                                               867974
5521                                               762971
5522                                              1138469
5523                                              1052993
5524                                              1006693
5525                                              1206951
5526                                              1029363
5527                                              1200624
5528                                              1265511
5529                                              1348831
5530                                              1334700
5531                                              1153540
5532                                              1212034
5533                                              1399001
5534                                              1254401
5535                                              1301288
5536                                              1304616
5537                                              1475917
5538                                              1738563
5539                                              1532440
5540                                              1600274
5541                                              1516386
5542                                              2070557
5543                                              1834685
5544                                              1642959
5545                                              1778717
5546                                              2488059
5547                                              2013821
5548                                              1746410
5549                                              2074921
5550                                              1941317
5551                                              1623273
5552                                              1651027
5553                                              1955451
5554                                              1773673
5555                                              1691666
5556                                              1865705
5557                                              2166535
5558                                              1680248
5559                                              2960080
5560                                              1735400
5561                                              2113197
5562                                              2079268
5563                                              2193263
5564                                              2638893
5565                                                69977
5566                                                66773
5567                                                68325
5568                                                66386
5569                                                45218
5570                                                40680
5571                                                39758
5572                                                47290
5573                                                55532
5574                                                68190
5575                                                72348
5576                                                61268
5577                                                61488
5578                                                61710
5579                                                85785
5580                                               117339
5581                                                87177
5582                                                93803
5583                                                87641
5584                                                89652
5585                                                81237
5586                                                76077
5587                                                85762
5588                                                85498
5589                                               102689
5590                                               106150
5591                                               101284
5592                                               111121
5593                                                94430
5594                                               125188
5595                                               134448
5596                                               111206
5597                                               136712
5598                                               183589
5599                                               148534
5600                                               155178
5601                                               154217
5602                                               128899
5603                                                80391
5604                                               112685
5605                                               148116
5606                                               136620
5607                                               108856
5608                                               112139
5609                                               140945
5610                                               151510
5611                                               197734
5612                                                88820
5613                                                99167
5614                                               120098
5615                                               152838
5616                                               178471
5617                                               101136
5618                                                58592
5619                                                50812
5620                                                75148
5621                                               126551
5622                                                49076
5623                                                80596
5624                                                96748
5625                                                55509
5626                                                57585
5627                                                57340
5628                                                63355
5629                                                45844
5630                                                57416
5631                                                56023
5632                                                66935
5633                                                87155
5634                                                59299
5635                                                59832
5636                                                59028
5637                                               118605
5638                                                76509
5639                                                73288
5640                                                72533
5641                                                86708
5642                                                81929
5643                                                79968
5644                                                74283
5645                                                82154
5646                                                76737
5647                                                72573
5648                                               106690
5649                                                86818
5650                                                80469
5651                                                87792
5652                                                99452
5653                                                61513
5654                                                71958
5655                                                87776
5656                                                68015
5657                                               100854
5658                                                72033
5659                                                67163
5660                                                90784
5661                                                73960
5662                                                81692
5663                                                81070
5664                                               165530
5665                                                78315
5666                                               111173
5667                                                71957
5668                                                75641
5669                                               117027
5670                                                41818
5671                                                30835
5672                                                33482
5673                                                38434
5674                                                32457
5675                                                27773
5676                                                31169
5677                                                31719
5678                                                32495
5679                                                36335
5680                                                35959
5681                                                34761
5682                                                32020
5683                                                45066
5684                                                45025
5685                                                47136
5686                                                47619
5687                                                47493
5688                                                48133
5689                                                49200
5690                                                62181
5691                                                60585
5692                                                60150
5693                                                65016
5694                                                63898
5695                                                57936
5696                                                56275
5697                                                46343
5698                                                49178
5699                                                51386
5700                                                55628
5701                                                50237
5702                                                49347
5703                                                49123
5704                                                72058
5705                                                74961
5706                                                55046
5707                                                48908
5708                                                48913
5709                                                48770
5710                                                50731
5711                                                50085
5712                                                48170
5713                                                52012
5714                                                53783
5715                                                52644
5716                                                77241
5717                                               167182
5718                                                86150
5719                                               135921
5720                                                86964
5721                                                77758
5722                                               118926
5723                                               519460
5724                                               363593
5725                                               369811
5726                                               546810
5727                                               407522
5728                                               377227
5729                                               365922
5730                                               387453
5731                                               458178
5732                                               434269
5733                                               418177
5734                                               426158
5735                                               380898
5736                                               461605
5737                                               451996
5738                                               443693
5739                                               424594
5740                                               435941
5741                                               402657
5742                                               417108
5743                                               431019
5744                                               440986
5745                                               399898
5746                                               435764
5747                                               415328
5748                                               448758
5749                                               397714
5750                                               446949
5751                                               462836
5752                                               475096
5753                                               482039
5754                                               477778
5755                                               467149
5756                                               394707
5757                                               722002
5758                                               471826
5759                                               458300
5760                                               439898
5761                                               438986
5762                                               493953
5763                                               462479
5764                                               463108
5765                                               476272
5766                                               591422
5767                                               531502
5768                                               434568
5769                                               538660
5770                                               770463
5771                                               489024
5772                                               528126
5773                                               472453
5774                                               750034
5775                                               408952
5776                                                 1706
5777                                                 2348
5778                                                 1752
5779                                                 1936
5780                                                 1518
5781                                                 1707
5782                                                 2085
5783                                                 2047
5784                                                 1849
5785                                                 2180
5786                                                 2948
5787                                                 2911
5788                                                 2680
5789                                                 2015
5790                                                 1936
5791                                                 2638
5792                                                 2817
5793                                                 3171
5794                                                 2514
5795                                                 2840
5796                                                 3647
5797                                                 3803
5798                                                 3473
5799                                                 3130
5800                                                 3544
5801                                                 3135
5802                                                 3403
5803                                                 3574
5804                                                 3263
5805                                                 2998
5806                                                 3758
5807                                                 3548
5808                                                 3430
5809                                                 2779
5810                                                 3285
5811                                                 2195
5812                                                 2688
5813                                                 3555
5814                                                 4116
5815                                                 3617
5816                                                 4141
5817                                                 3887
5818                                                 9416
5819                                                 5257
5820                                                 5200
5821                                                 7192
5822                                                 4101
5823                                                11334
5824                                                 6533
5825                                                 5627
5826                                                 4774
5827                                                 7163
5828                                                 9409
5829                                               325398
5830                                               312861
5831                                               413484
5832                                               557435
5833                                               386056
5834                                               304833
5835                                               341486
5836                                               533027
5837                                               334876
5838                                               360615
5839                                               328476
5840                                               331423
5841                                               322932
5842                                               366123
5843                                               384522
5844                                               323528
5845                                               394645
5846                                               333916
5847                                               319718
5848                                               328846
5849                                               492069
5850                                               470233
5851                                               429987
5852                                               556263
5853                                               463807
5854                                               464670
5855                                               437069
5856                                               434223
5857                                               452146
5858                                               457513
5859                                               460654
5860                                               460431
5861                                               441357
5862                                               448443
5863                                               493448
5864                                               467084
5865                                               382450
5866                                               437483
5867                                               450287
5868                                               427484
5869                                               412841
5870                                               425274
5871                                               389750
5872                                               529716
5873                                               489162
5874                                               391316
5875                                               593329
5876                                               594523
5877                                               464829
5878                                               526893
5879                                               457448
5880                                               605625
5881                                               371223
5882                                                62632
5883                                                72517
5884                                                57326
5885                                                63390
5886                                                87461
5887                                                50509
5888                                                55800
5889                                                55305
5890                                                54119
5891                                                53895
5892                                                39989
5893                                                40395
5894                                                31577
5895                                                42862
5896                                                52357
5897                                                59413
5898                                                66980
5899                                                67611
5900                                                74398
5901                                                71901
5902                                                60730
5903                                                78780
5904                                                65452
5905                                                67608
5906                                                72329
5907                                                80023
5908                                                80411
5909                                                77255
5910                                                82873
5911                                                75552
5912                                                80513
5913                                                75153
5914                                                72164
5915                                                66532
5916                                                87260
5917                                                83395
5918                                                70195
5919                                                70002
5920                                                80633
5921                                                73054
5922                                                67001
5923                                                72622
5924                                                85677
5925                                                75284
5926                                                71329
5927                                                62450
5928                                                71051
5929                                                97167
5930                                                72001
5931                                                70337
5932                                                68322
5933                                                83906
5934                                                58532
5935                                              3201737
5936                                              1934711
5937                                              2877209
5938                                              2013200
5939                                              1660573
5940                                              1354966
5941                                              1360694
5942                                              1882561
5943                                              2224529
5944                                              2384846
5945                                              1779178
5946                                              1699673
5947                                              1829531
5948                                              1608863
5949                                              1575761
5950                                              1556656
5951                                              1599511
5952                                              1720931
5953                                              1420373
5954                                              1293180
5955                                              2079376
5956                                              1892140
5957                                              2206571
5958                                              1738865
5959                                              1821613
5960                                              1818683
5961                                              1942683
5962                                              1977950
5963                                              1650089
5964                                              1517908
5965                                              1580024
5966                                              1793496
5967                                              1627754
5968                                              1570245
5969                                              2470795
5970                                              1689226
5971                                              1521895
5972                                              1572972
5973                                              2128867
5974                                              1580307
5975                                              1542979
5976                                              1555271
5977                                              1577127
5978                                              1720073
5979                                              2038285
5980                                              2098407
5981                                              1870885
5982                                              3550403
5983                                              2295856
5984                                              2659661
5985                                              2450277
5986                                              2569566
5987                                              2877688
5988                                               108930
5989                                                58732
5990                                                56565
5991                                                60516
5992                                                94262
5993                                                56764
5994                                                59312
5995                                                65657
5996                                                65174
5997                                                62872
5998                                                65040
5999                                                68120
6000                                                66076
6001                                                74146
6002                                                71519
6003                                                64593
6004                                                68912
6005                                                69478
6006                                                65605
6007                                                69135
6008                                                78915
6009                                                78386
6010                                                81789
6011                                                75359
6012                                                73163
6013                                                70720
6014                                                76449
6015                                                72807
6016                                                78803
6017                                                86114
6018                                                86779
6019                                                89548
6020                                                87873
6021                                                77142
6022                                               106192
6023                                                87501
6024                                                78265
6025                                                77381
6026                                                75492
6027                                                85811
6028                                                94478
6029                                                89210
6030                                                87660
6031                                                87666
6032                                               118607
6033                                                78996
6034                                                74076
6035                                               172311
6036                                                86136
6037                                               116160
6038                                                84479
6039                                                80202
6040                                                94572
6041                                               845965
6042                                               417906
6043                                               275987
6044                                               277789
6045                                               378155
6046                                               278263
6047                                               285841
6048                                               276787
6049                                               284220
6050                                               268774
6051                                               275588
6052                                               288024
6053                                               296817
6054                                               293405
6055                                               322017
6056                                               315414
6057                                               318096
6058                                               343566
6059                                               336708
6060                                               349704
6061                                               355733
6062                                               401420
6063                                               447892
6064                                               459859
6065                                               486178
6066                                               504038
6067                                               534893
6068                                               473567
6069                                               549160
6070                                               514710
6071                                               493632
6072                                               538900
6073                                               496380
6074                                               470280
6075                                               591928
6076                                               498580
6077                                               470215
6078                                               490302
6079                                               454692
6080                                               452599
6081                                               432870
6082                                               448963
6083                                               446178
6084                                               454626
6085                                               442526
6086                                               461727
6087                                               454381
6088                                               912672
6089                                               511366
6090                                               497236
6091                                               480072
6092                                               499836
6093                                               531287
6094                                                43570
6095                                                41603
6096                                                53839
6097                                                88001
6098                                               133150
6099                                                62154
6100                                                89762
6101                                               119880
6102                                               121602
6103                                                80070
6104                                                59197
6105                                                59692
6106                                                50675
6107                                                58917
6108                                                68228
6109                                                69168
6110                                                74603
6111                                                73802
6112                                                88697
6113                                               107640
6114                                                92313
6115                                                88272
6116                                                82404
6117                                                85749
6118                                                91781
6119                                                95015
6120                                               101206
6121                                               100910
6122                                               110402
6123                                                85499
6124                                                83650
6125                                                76777
6126                                                73693
6127                                                87347
6128                                               131508
6129                                                89608
6130                                                68249
6131                                                77040
6132                                                76149
6133                                                72866
6134                                                75139
6135                                                71214
6136                                                77407
6137                                                82627
6138                                               108390
6139                                                93503
6140                                               131464
6141                                               181551
6142                                               118753
6143                                               142025
6144                                               125732
6145                                               126967
6146                                               130251
6147                                                30763
6148                                                20794
6149                                                32627
6150                                                18377
6151                                                45552
6152                                                16437
6153                                                14167
6154                                                14574
6155                                                15618
6156                                                18569
6157                                                15691
6158                                                16441
6159                                                 8225
6160                                                13598
6161                                                16472
6162                                                16292
6163                                                19955
6164                                                21627
6165                                                19788
6166                                                20982
6167                                                19182
6168                                                24630
6169                                                20908
6170                                                20699
6171                                                28472
6172                                                28459
6173                                                29875
6174                                                26548
6175                                                35647
6176                                                22619
6177                                                20624
6178                                                20819
6179                                                22123
6180                                                15547
6181                                                33866
6182                                                27191
6183                                                19860
6184                                                23007
6185                                                23208
6186                                                25021
6187                                                23491
6188                                                24225
6189                                                32440
6190                                                29780
6191                                                49175
6192                                                31711
6193                                                43261
6194                                                60090
6195                                                32338
6196                                                47945
6197                                                32602
6198                                                34667
6199                                                50244
6200                                               307423
6201                                               203335
6202                                               217662
6203                                               219737
6204                                               258400
6205                                               160636
6206                                               167540
6207                                               271438
6208                                               245464
6209                                               213646
6210                                               186939
6211                                               174845
6212                                               194837
6213                                               170718
6214                                               168546
6215                                               181712
6216                                               167026
6217                                               185508
6218                                               186107
6219                                               228512
6220                                               260342
6221                                               307187
6222                                               259718
6223                                               275273
6224                                               327859
6225                                               287851
6226                                               287481
6227                                               221432
6228                                               307811
6229                                               231556
6230                                               227993
6231                                               269246
6232                                               222774
6233                                               238305
6234                                               269157
6235                                               337552
6236                                               338733
6237                                               289149
6238                                               275048
6239                                               216633
6240                                               223658
6241                                               237495
6242                                               200229
6243                                               208324
6244                                               198567
6245                                               272758
6246                                               276021
6247                                               362715
6248                                               172742
6249                                               222669
6250                                               313393
6251                                               343124
6252                                               438042
6253                                               355322
6254                                               171218
6255                                               154962
6256                                               330683
6257                                               325073
6258                                               171383
6259                                               196662
6260                                               269918
6261                                               320968
6262                                               226577
6263                                               238206
6264                                               158787
6265                                               140122
6266                                               249373
6267                                               161436
6268                                               156645
6269                                               167203
6270                                               165312
6271                                               379023
6272                                               324068
6273                                               198504
6274                                               211822
6275                                               313773
6276                                               353626
6277                                               207831
6278                                               267690
6279                                               182812
6280                                               173433
6281                                               198309
6282                                               212253
6283                                               179793
6284                                               175140
6285                                               205775
6286                                               223914
6287                                               357128
6288                                               162527
6289                                               163230
6290                                               178842
6291                                               164299
6292                                               159644
6293                                               150935
6294                                               156752
6295                                               157144
6296                                               161939
6297                                               237454
6298                                               254319
6299                                               291658
6300                                               502457
6301                                               214812
6302                                               268030
6303                                               212523
6304                                               249168
6305                                               336468
6306                                                91028
6307                                                57335
6308                                                98625
6309                                                44930
6310                                               183341
6311                                                40629
6312                                                39979
6313                                                42219
6314                                                42917
6315                                                40457
6316                                                39114
6317                                                33515
6318                                                17298
6319                                                24145
6320                                                32561
6321                                                29721
6322                                                32686
6323                                                35365
6324                                                29649
6325                                                34529
6326                                                33590
6327                                                45320
6328                                                39063
6329                                                40479
6330                                                55199
6331                                                56064
6332                                                63951
6333                                                58117
6334                                               129556
6335                                                61427
6336                                                57323
6337                                                48464
6338                                                44187
6339                                                44187
6340                                                82133
6341                                                50224
6342                                                42596
6343                                                51563
6344                                                48429
6345                                                45497
6346                                                44603
6347                                                45055
6348                                                40215
6349                                                42027
6350                                               105833
6351                                                46507
6352                                                87966
6353                                               228907
6354                                                70436
6355                                               202324
6356                                                72303
6357                                                76520
6358                                               165060
6359                                               103361
6360                                                59470
6361                                                74185
6362                                                52467
6363                                               182507
6364                                                50330
6365                                                68242
6366                                                49202
6367                                                46899
6368                                                65814
6369                                                37656
6370                                                37971
6371                                                30568
6372                                                35899
6373                                                48553
6374                                                40379
6375                                                46227
6376                                                52612
6377                                                45103
6378                                                47877
6379                                                48945
6380                                                69687
6381                                                49418
6382                                                56573
6383                                                70377
6384                                                71380
6385                                                71126
6386                                                54018
6387                                                96016
6388                                                64251
6389                                                74167
6390                                                70747
6391                                                64369
6392                                                68015
6393                                               134403
6394                                                72819
6395                                                67510
6396                                                80672
6397                                                69916
6398                                                68299
6399                                                71916
6400                                                70211
6401                                                64058
6402                                                59098
6403                                               140947
6404                                                80219
6405                                               107963
6406                                               298898
6407                                               100681
6408                                               227004
6409                                               107349
6410                                               102135
6411                                               224774
6412                                              1740609
6413                                              1076521
6414                                              1037403
6415                                               926925
6416                                              1732528
6417                                               837408
6418                                               991256
6419                                              1049661
6420                                              1043530
6421                                               901890
6422                                               806546
6423                                               801195
6424                                               658132
6425                                               780138
6426                                               895148
6427                                               851996
6428                                               913391
6429                                               975125
6430                                               996527
6431                                              1089386
6432                                              1051827
6433                                              1199618
6434                                              1159890
6435                                              1180490
6436                                              1337473
6437                                              1385858
6438                                              1423925
6439                                              1270260
6440                                              1685605
6441                                              1338516
6442                                              1336833
6443                                              1365403
6444                                              1302177
6445                                              1290415
6446                                              1932631
6447                                              1431881
6448                                              1228763
6449                                              1337527
6450                                              1255688
6451                                              1212296
6452                                              1228379
6453                                              1224341
6454                                              1259336
6455                                              1313704
6456                                              1692495
6457                                              1330000
6458                                              1694611
6459                                              3117639
6460                                              1631555
6461                                              2241043
6462                                              1705656
6463                                              1755106
6464                                              2157250
6465                                               106173
6466                                               115065
6467                                               101937
6468                                               163729
6469                                               127730
6470                                                89564
6471                                                97308
6472                                                99684
6473                                                99317
6474                                               117170
6475                                               111837
6476                                               112917
6477                                                79474
6478                                               115716
6479                                               122033
6480                                               107531
6481                                                97800
6482                                               117859
6483                                               112225
6484                                               104200
6485                                               127783
6486                                               129112
6487                                               115565
6488                                               116786
6489                                               120360
6490                                               129466
6491                                               111399
6492                                               121033
6493                                               131058
6494                                               115824
6495                                               118452
6496                                               137083
6497                                               119602
6498                                                95013
6499                                               140317
6500                                               135977
6501                                               103642
6502                                               123727
6503                                               121350
6504                                               110825
6505                                               131659
6506                                               118545
6507                                               126552
6508                                               151537
6509                                               139067
6510                                               104681
6511                                               106548
6512                                               153442
6513                                               129736
6514                                               135846
6515                                               126095
6516                                               153751
6517                                               136110
6518                                               183946
6519                                               161963
6520                                               160130
6521                                               359320
6522                                               166828
6523                                               153323
6524                                               169972
6525                                               162389
6526                                               161648
6527                                               188044
6528                                               179802
6529                                               177669
6530                                               159212
6531                                               189987
6532                                               181192
6533                                               162729
6534                                               182050
6535                                               165218
6536                                               160116
6537                                               155327
6538                                               193119
6539                                               200008
6540                                               190640
6541                                               201586
6542                                               205772
6543                                               198967
6544                                               191483
6545                                               220849
6546                                               195638
6547                                               218428
6548                                               216913
6549                                               225753
6550                                               208423
6551                                               193014
6552                                               251850
6553                                               234305
6554                                               201384
6555                                               189287
6556                                               199909
6557                                               204311
6558                                               203664
6559                                               195073
6560                                               186373
6561                                               316786
6562                                               193422
6563                                               167971
6564                                               249991
6565                                               356399
6566                                               220160
6567                                               247185
6568                                               223678
6569                                               315473
6570                                               188108
6571                                               209001
6572                                               150511
6573                                               184347
6574                                               294180
6575                                               289729
6576                                               134619
6577                                               134476
6578                                               251034
6579                                               264224
6580                                               189259
6581                                               128029
6582                                               149935
6583                                               146966
6584                                               141695
6585                                               145808
6586                                               171012
6587                                               165585
6588                                               171139
6589                                               195358
6590                                               216584
6591                                               395755
6592                                               251754
6593                                               203628
6594                                               214166
6595                                               251488
6596                                               223074
6597                                               240189
6598                                               285477
6599                                               412002
6600                                               201534
6601                                               192106
6602                                               268181
6603                                               219957
6604                                               231431
6605                                               350524
6606                                               451255
6607                                               352920
6608                                               207708
6609                                               272460
6610                                               183772
6611                                               182629
6612                                               183350
6613                                               151499
6614                                               161909
6615                                               116819
6616                                               142848
6617                                               148460
6618                                               406006
6619                                               215934
6620                                               170358
6621                                               184546
6622                                               198435
6623                                               290584
6624                                                57395
6625                                                58458
6626                                                58046
6627                                                83043
6628                                               103238
6629                                                51923
6630                                                76810
6631                                                89236
6632                                                86634
6633                                                65715
6634                                                57230
6635                                                52217
6636                                                37064
6637                                                53986
6638                                                63487
6639                                                55952
6640                                                60422
6641                                                61680
6642                                                83185
6643                                                83861
6644                                                68256
6645                                                78546
6646                                                74598
6647                                                70452
6648                                                82250
6649                                                85279
6650                                                78472
6651                                                72671
6652                                                96522
6653                                                72044
6654                                                79917
6655                                                77776
6656                                                71966
6657                                                93536
6658                                               116928
6659                                                86661
6660                                                72470
6661                                                79072
6662                                                69901
6663                                                61513
6664                                                68120
6665                                                60512
6666                                                65279
6667                                                66252
6668                                                83034
6669                                                74485
6670                                               116691
6671                                               146038
6672                                                93253
6673                                                92881
6674                                               102479
6675                                               112339
6676                                                97954
6677                                                14230
6678                                                 8049
6679                                                11261
6680                                                11558
6681                                                 9779
6682                                                 7096
6683                                                10606
6684                                                 9938
6685                                                 8741
6686                                                13949
6687                                                11079
6688                                                10194
6689                                                10997
6690                                                14372
6691                                                12009
6692                                                13545
6693                                                11080
6694                                                14145
6695                                                12673
6696                                                13226
6697                                                14575
6698                                                12280
6699                                                13103
6700                                                14943
6701                                                14195
6702                                                14133
6703                                                18894
6704                                                16687
6705                                                12993
6706                                                15933
6707                                                16224
6708                                                15849
6709                                                14543
6710                                                12922
6711                                                26575
6712                                                24979
6713                                                16105
6714                                                16186
6715                                                17365
6716                                                16424
6717                                                16051
6718                                                15207
6719                                                17191
6720                                                16171
6721                                                20631
6722                                                18684
6723                                                33548
6724                                                65201
6725                                                30000
6726                                                50764
6727                                                30494
6728                                                23081
6729                                                46910
6730                                               111439
6731                                                66599
6732                                               102137
6733                                                94141
6734                                               127968
6735                                                75503
6736                                                77336
6737                                               110255
6738                                               121042
6739                                                94603
6740                                                74165
6741                                                76991
6742                                                60756
6743                                                67848
6744                                                62384
6745                                                63852
6746                                                26602
6747                                                29557
6748                                                26219
6749                                                44716
6750                                                68158
6751                                                53059
6752                                                46395
6753                                                62879
6754                                                54115
6755                                                54695
6756                                                48965
6757                                                49035
6758                                                55578
6759                                                51454
6760                                                53765
6761                                                50154
6762                                                63084
6763                                                75420
6764                                                76426
6765                                                65026
6766                                                81561
6767                                                58233
6768                                                40245
6769                                                41150
6770                                                43375
6771                                                43301
6772                                                38281
6773                                                49738
6774                                                57129
6775                                                40838
6776                                                59930
6777                                               121441
6778                                                45791
6779                                                64436
6780                                                80218
6781                                                77764
6782                                                75111
6783                                               755743
6784                                               350755
6785                                              1167417
6786                                               396712
6787                                               396804
6788                                               327525
6789                                               309130
6790                                               413517
6791                                               743293
6792                                               843048
6793                                               360936
6794                                               385403
6795                                               343708
6796                                               335816
6797                                               337638
6798                                               357662
6799                                               359807
6800                                               441327
6801                                               344686
6802                                               324883
6803                                               452872
6804                                               414553
6805                                               399836
6806                                               407573
6807                                               409058
6808                                               437585
6809                                               497357
6810                                               414533
6811                                               480083
6812                                               415143
6813                                               418291
6814                                               466480
6815                                               428611
6816                                               430527
6817                                               583071
6818                                               518019
6819                                               429078
6820                                               455872
6821                                               408516
6822                                               428361
6823                                               418362
6824                                               422615
6825                                               439066
6826                                               518370
6827                                               477454
6828                                               493496
6829                                               592688
6830                                               937332
6831                                               741370
6832                                               663032
6833                                               703853
6834                                               692909
6835                                               829897
6836                                                34289
6837                                                28325
6838                                                28129
6839                                                37049
6840                                                52286
6841                                                22808
6842                                                33869
6843                                                43510
6844                                                37126
6845                                                44116
6846                                                25087
6847                                                25005
6848                                                17191
6849                                                25612
6850                                                25575
6851                                                31174
6852                                                34553
6853                                                35074
6854                                                33675
6855                                                35594
6856                                                37309
6857                                                37610
6858                                                33398
6859                                                37671
6860                                                41177
6861                                                45861
6862                                                47985
6863                                                43420
6864                                                49620
6865                                                46391
6866                                                48995
6867                                                48808
6868                                                51642
6869                                                37229
6870                                                57993
6871                                                48499
6872                                                42839
6873                                                47638
6874                                                43334
6875                                                43115
6876                                                46979
6877                                                44133
6878                                                42103
6879                                                49340
6880                                                59928
6881                                                41852
6882                                                58270
6883                                                74681
6884                                                55703
6885                                                66870
6886                                                43684
6887                                                55252
6888                                                60442
6889                                                74266
6890                                                44095
6891                                                63179
6892                                                71986
6893                                                50526
6894                                                44200
6895                                                65920
6896                                                51672
6897                                                47477
6898                                                71919
6899                                                61183
6900                                                49047
6901                                                44414
6902                                                48864
6903                                                42336
6904                                                53156
6905                                                34079
6906                                                50948
6907                                                49718
6908                                                56350
6909                                                70900
6910                                                64790
6911                                                62144
6912                                                67585
6913                                                65180
6914                                                67379
6915                                                76464
6916                                                66569
6917                                                66761
6918                                                88004
6919                                                85907
6920                                                74338
6921                                                75985
6922                                                71835
6923                                               130127
6924                                               127586
6925                                                78525
6926                                                75101
6927                                                74503
6928                                                74727
6929                                                79372
6930                                                79475
6931                                                80308
6932                                                78151
6933                                                90099
6934                                                89038
6935                                               171783
6936                                               281503
6937                                               128996
6938                                               230820
6939                                               125992
6940                                               121128
6941                                               199636
6942                                              1398684
6943                                               939519
6944                                               918893
6945                                              1219626
6946                                              1275665
6947                                               903101
6948                                               938850
6949                                              1022489
6950                                              1081493
6951                                              1075382
6952                                              1026120
6953                                              1066264
6954                                               852451
6955                                              1130202
6956                                              1150980
6957                                              1116828
6958                                              1074164
6959                                              1135717
6960                                              1071864
6961                                              1140931
6962                                              1267015
6963                                              1272882
6964                                              1200264
6965                                              1240752
6966                                              1217132
6967                                              1287443
6968                                              1257957
6969                                              1319522
6970                                              1348478
6971                                              1365910
6972                                              1357927
6973                                              1352784
6974                                              1308057
6975                                              1036405
6976                                              1699123
6977                                              1301501
6978                                              1225887
6979                                              1222428
6980                                              1221294
6981                                              1325657
6982                                              1328646
6983                                              1325163
6984                                              1306320
6985                                              1432040
6986                                              1618435
6987                                              1215057
6988                                              1373681
6989                                              2257430
6990                                              1363482
6991                                              1519035
6992                                              1293221
6993                                              1624950
6994                                              1285364
6995                                                10138
6996                                                 6817
6997                                                 7363
6998                                                 7030
6999                                                 8062
7000                                                 6254
7001                                                 6946
7002                                                 7035
7003                                                 8243
7004                                                 9477
7005                                                 9503
7006                                                10228
7007                                                 4016
7008                                                21325
7009                                                22831
7010                                                29794
7011                                                37439
7012                                                42751
7013                                                40039
7014                                                37849
7015                                                38811
7016                                                36728
7017                                                29771
7018                                                32145
7019                                                32247
7020                                                35679
7021                                                39947
7022                                                47014
7023                                                33689
7024                                                23110
7025                                                12468
7026                                                 7593
7027                                                 7392
7028                                                 7631
7029                                                12218
7030                                                11874
7031                                                 8878
7032                                                 9802
7033                                                10197
7034                                                10967
7035                                                10773
7036                                                10020
7037                                                10155
7038                                                10907
7039                                                13162
7040                                                12392
7041                                                30103
7042                                                43117
7043                                                20938
7044                                                30482
7045                                                20522
7046                                                17389
7047                                                27328
7048                                                23240
7049                                                14373
7050                                                18381
7051                                                21841
7052                                                19343
7053                                                12239
7054                                                14363
7055                                                25045
7056                                                19876
7057                                                21885
7058                                                24350
7059                                                18515
7060                                                24630
7061                                                21112
7062                                                22073
7063                                                25106
7064                                                24261
7065                                                26735
7066                                                27697
7067                                                25043
7068                                                30559
7069                                                34141
7070                                                30114
7071                                                38068
7072                                                29406
7073                                                23221
7074                                                24029
7075                                                19761
7076                                                25894
7077                                                31940
7078                                                25352
7079                                                30515
7080                                                27177
7081                                                25295
7082                                                53102
7083                                                28593
7084                                                21724
7085                                                33662
7086                                                26489
7087                                                33318
7088                                                29087
7089                                                32649
7090                                                25219
7091                                                50229
7092                                                30519
7093                                                24706
7094                                                30196
7095                                                80089
7096                                                36547
7097                                                34757
7098                                                35658
7099                                                31296
7100                                                42840
7101                                               816262
7102                                               791089
7103                                               661370
7104                                              1906061
7105                                               652690
7106                                               696301
7107                                               654065
7108                                               667319
7109                                               632293
7110                                               788262
7111                                               788732
7112                                               747794
7113                                               669975
7114                                               707903
7115                                               716125
7116                                               693111
7117                                               681320
7118                                               630744
7119                                               639877
7120                                               582404
7121                                               686338
7122                                               821262
7123                                               856414
7124                                               830715
7125                                               859372
7126                                               800414
7127                                               733184
7128                                              1060721
7129                                               765118
7130                                               753430
7131                                               834880
7132                                               824445
7133                                               817106
7134                                               797685
7135                                               920314
7136                                               808259
7137                                               838408
7138                                               775310
7139                                               775730
7140                                               791416
7141                                               717036
7142                                               737596
     NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                       48
2                                                       58
3                                                      131
4                                                       73
5                                                       76
6                                                       44
7                                                       93
8                                                       80
9                                                       85
10                                                     113
11                                                     117
12                                                     105
13                                                     101
14                                                     155
15                                                     151
16                                                     142
17                                                     241
18                                                     335
19                                                     445
20                                                     395
21                                                     369
22                                                     741
23                                                     967
24                                                    2238
25                                                    4258
26                                                    5883
27                                                    4663
28                                                    5481
29                                                    4377
30                                                      90
31                                                      51
32                                                      59
33                                                      94
34                                                     186
35                                                     217
36                                                      90
37                                                      47
38                                                      22
39                                                      94
40                                                      90
41                                                     142
42                                                     100
43                                                     159
44                                                     181
45                                                     151
46                                                     222
47                                                     163
48                                                     179
49                                                     164
50                                                     136
51                                                     127
52                                                      50
53                                                     298
54                                                     103
55                                                     276
56                                                     182
57                                                     308
58                                                     501
59                                                     456
60                                                     488
61                                                     253
62                                                     304
63                                                     291
64                                                     600
65                                                     644
66                                                     681
67                                                    1349
68                                                     715
69                                                     911
70                                                    1034
71                                                     950
72                                                    1425
73                                                    4252
74                                                    3515
75                                                     708
76                                                    1982
77                                                     867
78                                                     849
79                                                     817
80                                                     678
81                                                     472
82                                                     739
83                                                     523
84                                                    1261
85                                                     839
86                                                    1089
87                                                    1060
88                                                    1042
89                                                     873
90                                                     219
91                                                     375
92                                                     261
93                                                     305
94                                                     311
95                                                     237
96                                                     348
97                                                     237
98                                                     638
99                                                     525
100                                                    295
101                                                    594
102                                                    512
103                                                   1135
104                                                     82
105                                                  17354
106                                                  19112
107                                                  24291
108                                                  25760
109                                                  20148
110                                                  23343
111                                                  37990
112                                                  51035
113                                                  58616
114                                                  49086
115                                                  49171
116                                                  58490
117                                                  42258
118                                                  59019
119                                                  45336
120                                                  42270
121                                                  68180
122                                                  42754
123                                                  47216
124                                                  43103
125                                                  42934
126                                                  44750
127                                                  45011
128                                                  50320
129                                                  50679
130                                                  56045
131                                                  51110
132                                                  51953
133                                                  48345
134                                                  43721
135                                                  45833
136                                                  49809
137                                                  44841
138                                                  44391
139                                                  77537
140                                                  39943
141                                                  42125
142                                                  42271
143                                                  41867
144                                                  43760
145                                                  42381
146                                                  46596
147                                                  42268
148                                                  40242
149                                                  62612
150                                                  45900
151                                                  37437
152                                                  83652
153                                                  39489
154                                                  40576
155                                                  42527
156                                                  39995
157                                                   5894
158                                                   7394
159                                                   6458
160                                                   4086
161                                                   6031
162                                                   6663
163                                                   6502
164                                                   6286
165                                                   6428
166                                                   6552
167                                                   6586
168                                                   7604
169                                                   7552
170                                                   3663
171                                                   6640
172                                                   6593
173                                                   7992
174                                                   7923
175                                                   4433
176                                                   6457
177                                                   3931
178                                                   5435
179                                                   5480
180                                                   5565
181                                                   7474
182                                                   8435
183                                                   3975
184                                                   5876
185                                                   3136
186                                                   6656
187                                                   4028
188                                                   6037
189                                                   2920
190                                                   7891
191                                                   4290
192                                                   3402
193                                                   3260
194                                                   7523
195                                                   3790
196                                                   3102
197                                                   7290
198                                                   2982
199                                                   7404
200                                                   3492
201                                                   2122
202                                                   6493
203                                                   3047
204                                                   2905
205                                                   2061
206                                                   2257
207                                                   3322
208                                                   2752
209                                                  13953
210                                                   5888
211                                                    219
212                                                    143
213                                                    106
214                                                    234
215                                                    140
216                                                    232
217                                                    170
218                                                    191
219                                                    333
220                                                    355
221                                                    278
222                                                    289
223                                                    418
224                                                    354
225                                                    497
226                                                    554
227                                                    609
228                                                    749
229                                                    827
230                                                   1452
231                                                   1958
232                                                   5072
233                                                   9362
234                                                  11054
235                                                   9120
236                                                   8899
237                                                   6545
238                                                     93
239                                                    109
240                                                    277
241                                                    163
242                                                    131
243                                                    240
244                                                    131
245                                                    163
246                                                    106
247                                                    100
248                                                    151
249                                                    156
250                                                    112
251                                                     79
252                                                    193
253                                                    142
254                                                    143
255                                                    384
256                                                    273
257                                                     46
258                                                    133
259                                                    122
260                                                    129
261                                                     86
262                                                    107
263                                                     66
264                                                    167
265                                                    113
266                                                    108
267                                                    107
268                                                     55
269                                                    186
270                                                     80
271                                                     58
272                                                     96
273                                                    101
274                                                    106
275                                                     89
276                                                    134
277                                                    173
278                                                    242
279                                                    170
280                                                    258
281                                                    349
282                                                    472
283                                                    742
284                                                   2205
285                                                   4715
286                                                   6708
287                                                   5397
288                                                   5425
289                                                   4433
290                                                    139
291                                                     79
292                                                    104
293                                                     57
294                                                    185
295                                                     82
296                                                    106
297                                                     59
298                                                     93
299                                                     96
300                                                     81
301                                                     48
302                                                     66
303                                                    102
304                                                    104
305                                                    132
306                                                     58
307                                                    162
308                                                    112
309                                                     75
310                                                    133
311                                                     80
312                                                    110
313                                                 232756
314                                                 266690
315                                                 232985
316                                                 221957
317                                                 222311
318                                                 215632
319                                                 195159
320                                                 216524
321                                                 211902
322                                                 215623
323                                                 217814
324                                                 221033
325                                                 222261
326                                                 206460
327                                                 273922
328                                                 270794
329                                                 240185
330                                                 233027
331                                                 222083
332                                                 208725
333                                                 193832
334                                                 183471
335                                                 209427
336                                                 188207
337                                                 157478
338                                                 254187
339                                                 212173
340                                                 218424
341                                                 210671
342                                                 221330
343                                                 209443
344                                                 195991
345                                                 168597
346                                                 194576
347                                                 192474
348                                                 196469
349                                                 177355
350                                                 185199
351                                                 225397
352                                                 193578
353                                                 195791
354                                                 194761
355                                                 184721
356                                                 170581
357                                                 172676
358                                                 169908
359                                                 149459
360                                                 177145
361                                                 150536
362                                                 121614
363                                                 103573
364                                                 137480
365                                                  23042
366                                                  19843
367                                                  23843
368                                                  28483
369                                                  22686
370                                                  24222
371                                                  36861
372                                                  49282
373                                                  53969
374                                                  44883
375                                                  44707
376                                                  58990
377                                                  40367
378                                                  58552
379                                                  41262
380                                                  36469
381                                                  64372
382                                                  38130
383                                                  41678
384                                                  41343
385                                                  37614
386                                                  39735
387                                                  39261
388                                                  39515
389                                                  35107
390                                                  40602
391                                                  42044
392                                                  38260
393                                                  41193
394                                                  38579
395                                                  44530
396                                                  46014
397                                                  40249
398                                                  38370
399                                                  77627
400                                                  37961
401                                                  36041
402                                                  39638
403                                                  36210
404                                                  40688
405                                                  37099
406                                                  43740
407                                                  36250
408                                                  34949
409                                                  61590
410                                                  40431
411                                                  31779
412                                                  80814
413                                                  31576
414                                                  38677
415                                                  40802
416                                                  38569
417                                                  78378
418                                                  96306
419                                                  94163
420                                                  92888
421                                                  74989
422                                                  89732
423                                                  93857
424                                                 101889
425                                                 106537
426                                                 108012
427                                                 118311
428                                                 119996
429                                                 105711
430                                                 101194
431                                                 103104
432                                                 128620
433                                                 122938
434                                                 112344
435                                                 103622
436                                                 104997
437                                                 104796
438                                                  97419
439                                                  99067
440                                                 116910
441                                                 109149
442                                                 118635
443                                                 104595
444                                                 122240
445                                                 107908
446                                                 122929
447                                                 132733
448                                                 113476
449                                                 109205
450                                                 141251
451                                                 129694
452                                                  97410
453                                                  93303
454                                                  83138
455                                                  90802
456                                                  84866
457                                                  83938
458                                                  98822
459                                                 112934
460                                                 111791
461                                                 106178
462                                                 110447
463                                                 119634
464                                                 164884
465                                                 145882
466                                                 140240
467                                                 133849
468                                                 124506
469                                                   9547
470                                                   7517
471                                                   4574
472                                                  15476
473                                                   5886
474                                                   9596
475                                                   4906
476                                                  19577
477                                                  13268
478                                                   9187
479                                                   8932
480                                                  13778
481                                                  11768
482                                                  11725
483                                                  21180
484                                                  18310
485                                                   8957
486                                                  14357
487                                                   5300
488                                                  21571
489                                                  10922
490                                                   9778
491                                                   5692
492                                                  14449
493                                                   4243
494                                                  10202
495                                                   3667
496                                                  15259
497                                                  10047
498                                                  14602
499                                                   4652
500                                                   4491
501                                                  14524
502                                                   2408
503                                                   7282
504                                                   6904
505                                                  12959
506                                                   1306
507                                                   2508
508                                                   2448
509                                                  23368
510                                                   3387
511                                                   3678
512                                                  18681
513                                                   3240
514                                                   3067
515                                                   4186
516                                                  19442
517                                                    656
518                                                   1087
519                                                   1204
520                                                   1447
521                                                  15564
522                                                  16371
523                                                  12958
524                                                  24435
525                                                  16653
526                                                  20731
527                                                  15259
528                                                  29584
529                                                  23764
530                                                  19024
531                                                  18607
532                                                  24725
533                                                  23069
534                                                  18528
535                                                  26200
536                                                  26703
537                                                  20842
538                                                  25752
539                                                  15723
540                                                  32384
541                                                  20857
542                                                  17345
543                                                  13557
544                                                  24209
545                                                  16035
546                                                  24675
547                                                  12797
548                                                  24529
549                                                  20024
550                                                  29167
551                                                  13935
552                                                  14262
553                                                  22935
554                                                  10126
555                                                  15882
556                                                  16624
557                                                  26369
558                                                   9956
559                                                   9927
560                                                   8712
561                                                  24996
562                                                   9632
563                                                  11405
564                                                  25775
565                                                  10604
566                                                   8940
567                                                   7653
568                                                  21796
569                                                   7823
570                                                   7041
571                                                   7190
572                                                   7609
573                                                  84913
574                                                  91158
575                                                  62437
576                                                   8533
577                                                   6212
578                                                   9914
579                                                  10306
580                                                  33027
581                                                  85323
582                                                  49959
583                                                  61892
584                                                  99901
585                                                  50993
586                                                  25647
587                                                  10973
588                                                   9095
589                                                   9816
590                                                   7468
591                                                   8262
592                                                   7090
593                                                   7793
594                                                   4688
595                                                   6417
596                                                   4970
597                                                   4382
598                                                   5388
599                                                   7191
600                                                   8601
601                                                   7558
602                                                  13350
603                                                   7287
604                                                   6833
605                                                   6383
606                                                   7804
607                                                   9754
608                                                  12091
609                                                  16014
610                                                  12597
611                                                  13593
612                                                  13340
613                                                  11678
614                                                  14066
615                                                  11202
616                                                  12399
617                                                  12580
618                                                  12657
619                                                  12107
620                                                  18855
621                                                   9611
622                                                  15551
623                                                  11901
624                                                   9817
625                                                  19104
626                                                  24478
627                                                  29349
628                                                   8808
629                                                  14146
630                                                  18216
631                                                  20029
632                                                  12294
633                                                   8551
634                                                  11222
635                                                  13693
636                                                  18841
637                                                  27622
638                                                  15286
639                                                  25530
640                                                  17939
641                                                  19091
642                                                  19354
643                                                  21420
644                                                  18155
645                                                  24026
646                                                  16711
647                                                  25778
648                                                  17089
649                                                  22068
650                                                  19547
651                                                  18450
652                                                  12854
653                                                  17694
654                                                  17507
655                                                  18725
656                                                  18818
657                                                  17378
658                                                  16724
659                                                  14810
660                                                   5981
661                                                   6232
662                                                   8604
663                                                   6309
664                                                   4760
665                                                   8461
666                                                   5122
667                                                   7265
668                                                   5507
669                                                   5686
670                                                   7798
671                                                   5421
672                                                   5736
673                                                   4945
674                                                   4225
675                                                   5358
676                                                   5554
677                                                  59789
678                                                  45460
679                                                  47788
680                                                 113791
681                                                  63664
682                                                  63404
683                                                  52491
684                                                 113928
685                                                 104530
686                                                  74328
687                                                  72553
688                                                  72961
689                                                  90271
690                                                  78777
691                                                 111298
692                                                 106453
693                                                  79770
694                                                 100520
695                                                  61915
696                                                 125070
697                                                  80146
698                                                  76534
699                                                  63100
700                                                 105282
701                                                  62708
702                                                  96051
703                                                  48619
704                                                 121665
705                                                  90748
706                                                 131114
707                                                  53234
708                                                  46504
709                                                 116504
710                                                  48825
711                                                  74594
712                                                  66652
713                                                 107931
714                                                  43008
715                                                  49926
716                                                  38352
717                                                 144746
718                                                  48303
719                                                  46763
720                                                 129286
721                                                  46472
722                                                  41640
723                                                  40516
724                                                 127174
725                                                  45889
726                                                  37740
727                                                  76985
728                                                  74063
729                                                   5755
730                                                   3212
731                                                   3264
732                                                  15636
733                                                   3337
734                                                   5726
735                                                   2506
736                                                   7557
737                                                   8605
738                                                   9431
739                                                  17329
740                                                  49279
741                                                  18103
742                                                  13024
743                                                   9652
744                                                  20440
745                                                   6016
746                                                  16719
747                                                   5460
748                                                  20395
749                                                   8390
750                                                  10360
751                                                   9958
752                                                  29478
753                                                   9834
754                                                  34986
755                                                   9941
756                                                  32903
757                                                   4934
758                                                  10408
759                                                   3360
760                                                   3112
761                                                  12421
762                                                   3818
763                                                   6728
764                                                   6422
765                                                  15024
766                                                   2717
767                                                   5488
768                                                   3004
769                                                  19098
770                                                   4214
771                                                   3903
772                                                  26454
773                                                   4895
774                                                   4215
775                                                   4855
776                                                  19212
777                                                   6374
778                                                   6412
779                                                  13799
780                                                  22612
781                                                 254630
782                                                 241581
783                                                 228577
784                                                 398321
785                                                 248819
786                                                 280544
787                                                 248635
788                                                 425243
789                                                 388703
790                                                 331097
791                                                 353742
792                                                 456771
793                                                 381987
794                                                 344489
795                                                 418235
796                                                 447109
797                                                 348449
798                                                 419391
799                                                 279711
800                                                 475383
801                                                 331337
802                                                 321611
803                                                 281882
804                                                 454643
805                                                 288141
806                                                 442060
807                                                 261864
808                                                 493929
809                                                 346867
810                                                 447117
811                                                 280465
812                                                 263069
813                                                 406338
814                                                 274260
815                                                 327172
816                                                 294074
817                                                 383841
818                                                 190091
819                                                 221603
820                                                 196545
821                                                 451799
822                                                 223789
823                                                 253979
824                                                 478702
825                                                 246541
826                                                 237030
827                                                 238781
828                                                 510154
829                                                 271643
830                                                 257106
831                                                 316857
832                                                 318102
833                                                    149
834                                                    158
835                                                    230
836                                                    118
837                                                    111
838                                                    198
839                                                     94
840                                                    170
841                                                    173
842                                                    186
843                                                    408
844                                                    268
845                                                    324
846                                                    295
847                                                    280
848                                                    294
849                                                    465
850                                                    615
851                                                    585
852                                                    403
853                                                    511
854                                                    733
855                                                    480
856                                                   1021
857                                                   2740
858                                                   3216
859                                                   2557
860                                                   3182
861                                                   2028
862                                                    676
863                                                    804
864                                                    778
865                                                    487
866                                                    585
867                                                    528
868                                                    415
869                                                    502
870                                                    400
871                                                    485
872                                                    418
873                                                    482
874                                                    471
875                                                    334
876                                                    614
877                                                    507
878                                                    504
879                                                    723
880                                                    851
881                                                    426
882                                                    536
883                                                    582
884                                                   1286
885                                                    170
886                                                    185
887                                                    333
888                                                    192
889                                                    169
890                                                    319
891                                                    197
892                                                    172
893                                                    288
894                                                    300
895                                                    594
896                                                    492
897                                                    287
898                                                    249
899                                                    271
900                                                    206
901                                                    498
902                                                    594
903                                                    422
904                                                    887
905                                                    707
906                                                   1284
907                                                   2171
908                                                   5497
909                                                  11286
910                                                  11793
911                                                   9682
912                                                  10100
913                                                   6840
914                                                    219
915                                                    143
916                                                    178
917                                                    249
918                                                    391
919                                                    539
920                                                    230
921                                                    175
922                                                    134
923                                                    194
924                                                    217
925                                                    140
926                                                    161
927                                                    145
928                                                    272
929                                                    286
930                                                    217
931                                                    215
932                                                    365
933                                                    232
934                                                    287
935                                                    223
936                                                    165
937                                                 126151
938                                                 127372
939                                                  81450
940                                                   7041
941                                                   4335
942                                                   6924
943                                                   4611
944                                                  20404
945                                                 111264
946                                                  81275
947                                                  80895
948                                                 126766
949                                                  43558
950                                                  16781
951                                                   6960
952                                                   5559
953                                                   6231
954                                                   4514
955                                                   4324
956                                                   3479
957                                                   5288
958                                                   3495
959                                                   5097
960                                                   4234
961                                                   3226
962                                                   3957
963                                                   1936
964                                                   2228
965                                                   4700
966                                                   3900
967                                                   2927
968                                                   5152
969                                                   3241
970                                                   3776
971                                                   4522
972                                                   5527
973                                                   3899
974                                                   3937
975                                                   4878
976                                                   4633
977                                                   5199
978                                                   5000
979                                                   5322
980                                                   4150
981                                                   6532
982                                                   5598
983                                                   5175
984                                                   8063
985                                                   4231
986                                                   9354
987                                                   4094
988                                                   4379
989                                                  11206
990                                                   9328
991                                                  11398
992                                                  13570
993                                                  10855
994                                                   9640
995                                                  12795
996                                                  20220
997                                                  16933
998                                                  16586
999                                                  12142
1000                                                 13860
1001                                                 13529
1002                                                 16176
1003                                                 24166
1004                                                 17968
1005                                                 16662
1006                                                 15531
1007                                                 10288
1008                                                 20018
1009                                                 12389
1010                                                 13848
1011                                                  7897
1012                                                 15101
1013                                                  7053
1014                                                 13496
1015                                                  9267
1016                                                 14564
1017                                                 13744
1018                                                 10649
1019                                                  6631
1020                                                 14814
1021                                                 16163
1022                                                  5271
1023                                                  7489
1024                                                 16641
1025                                                 10137
1026                                                  2458
1027                                                  2844
1028                                                  8096
1029                                                 15543
1030                                                  5551
1031                                                 10846
1032                                                 14372
1033                                                  5162
1034                                                  4664
1035                                                  8455
1036                                                 14762
1037                                                   725
1038                                                  2049
1039                                                  1772
1040                                                  1202
1041                                                   515
1042                                                   241
1043                                                   199
1044                                                   703
1045                                                   266
1046                                                   302
1047                                                   999
1048                                                   411
1049                                                   995
1050                                                   797
1051                                                   835
1052                                                  1201
1053                                                   538
1054                                                  1047
1055                                                   448
1056                                                   461
1057                                                  1561
1058                                                   657
1059                                                   731
1060                                                   697
1061                                                   669
1062                                                   759
1063                                                   619
1064                                                   647
1065                                                   584
1066                                                  1193
1067                                                   867
1068                                                  1147
1069                                                  2357
1070                                                   710
1071                                                   616
1072                                                  1049
1073                                                   524
1074                                                   626
1075                                                  1347
1076                                                   595
1077                                                   651
1078                                                   645
1079                                                   848
1080                                                   861
1081                                                   613
1082                                                  1000
1083                                                   745
1084                                                   571
1085                                                  1447
1086                                                   596
1087                                                   376
1088                                                  1300
1089                                                   524
1090                                                   514
1091                                                   529
1092                                                   469
1093                                                  4978
1094                                                  4750
1095                                                  4943
1096                                                 10794
1097                                                  5228
1098                                                  3927
1099                                                  4615
1100                                                  5456
1101                                                 12913
1102                                                 14217
1103                                                  4682
1104                                                 13358
1105                                                  5552
1106                                                  4057
1107                                                  5225
1108                                                 11064
1109                                                  7150
1110                                                  6959
1111                                                  4562
1112                                                  7799
1113                                                  8926
1114                                                  6251
1115                                                  8655
1116                                                  5011
1117                                                  5024
1118                                                  6282
1119                                                  4335
1120                                                  4219
1121                                                  3769
1122                                                  5234
1123                                                  8254
1124                                                  4566
1125                                                  3609
1126                                                  4266
1127                                                  6101
1128                                                  5032
1129                                                  7619
1130                                                  4230
1131                                                  6194
1132                                                  7463
1133                                                  5684
1134                                                  5898
1135                                                  5339
1136                                                 12441
1137                                                  4732
1138                                                  3869
1139                                                  4611
1140                                                  4255
1141                                                  3875
1142                                                  4888
1143                                                  9592
1144                                                  4591
1145                                                 86202
1146                                                 96112
1147                                                 67975
1148                                                 64728
1149                                                 70944
1150                                                 75963
1151                                                 70734
1152                                                 75385
1153                                                 74253
1154                                                 78774
1155                                                 78304
1156                                                 74862
1157                                                 86683
1158                                                 81865
1159                                                118706
1160                                                 97210
1161                                                 90625
1162                                                 86574
1163                                                 92246
1164                                                 79891
1165                                                 69168
1166                                                 58533
1167                                                 79479
1168                                                 89206
1169                                                 83398
1170                                                 99097
1171                                                 75760
1172                                                 79616
1173                                                 69556
1174                                                 71706
1175                                                 76580
1176                                                 73415
1177                                                 54789
1178                                                 60232
1179                                                 61569
1180                                                 62487
1181                                                 58423
1182                                                 64716
1183                                                 73965
1184                                                 69023
1185                                                 68607
1186                                                 70873
1187                                                 62568
1188                                                 61864
1189                                                 61573
1190                                                 62512
1191                                                 58216
1192                                                 64440
1193                                                 60922
1194                                                 59364
1195                                                 58893
1196                                                 64226
1197                                                  3204
1198                                                  2555
1199                                                  1614
1200                                                  4604
1201                                                  2343
1202                                                  3367
1203                                                  1787
1204                                                  6709
1205                                                  5446
1206                                                  4127
1207                                                  2941
1208                                                  4874
1209                                                  4199
1210                                                  4205
1211                                                  7295
1212                                                  5424
1213                                                  3287
1214                                                  5962
1215                                                  1974
1216                                                  7750
1217                                                  4026
1218                                                  3667
1219                                                  2058
1220                                                  4935
1221                                                  1679
1222                                                  3206
1223                                                  1061
1224                                                  6133
1225                                                  3570
1226                                                  4540
1227                                                  1623
1228                                                  1617
1229                                                  4737
1230                                                   607
1231                                                  2642
1232                                                  2781
1233                                                  5342
1234                                                   341
1235                                                   566
1236                                                  1117
1237                                                  7476
1238                                                  1294
1239                                                  1615
1240                                                  6909
1241                                                  1218
1242                                                  1394
1243                                                  1307
1244                                                  5155
1245                                                   234
1246                                                   427
1247                                                   238
1248                                                   284
1249                                                    54
1250                                                    92
1251                                                    85
1252                                                    83
1253                                                    70
1254                                                    72
1255                                                    21
1256                                                    21
1257                                                    33
1258                                                    42
1259                                                    25
1260                                                    22
1261                                                    48
1262                                                    41
1263                                                    58
1264                                                    18
1265                                                    14
1266                                                    74
1267                                                    64
1268                                                    32
1269                                                    81
1270                                                    66
1271                                                    77
1272                                                    99
1273                                                    87
1274                                                   194
1275                                                   262
1276                                                  5434
1277                                                  9215
1278                                                   104
1279                                                    58
1280                                                    73
1281                                                   136
1282                                                    58
1283                                                    36
1284                                                   120
1285                                                    41
1286                                                    60
1287                                                    91
1288                                                    87
1289                                                   165
1290                                                   146
1291                                                    63
1292                                                    42
1293                                                    68
1294                                                    77
1295                                                    35
1296                                                    82
1297                                                    66
1298                                                    43
1299                                                    39
1300                                                    39
1301                                                103812
1302                                                 96387
1303                                                113979
1304                                                133317
1305                                                101740
1306                                                117353
1307                                                168587
1308                                                228267
1309                                                260946
1310                                                211478
1311                                                215609
1312                                                277954
1313                                                194004
1314                                                274903
1315                                                208538
1316                                                182703
1317                                                314498
1318                                                196951
1319                                                210164
1320                                                222563
1321                                                203933
1322                                                208420
1323                                                199553
1324                                                218258
1325                                                205774
1326                                                232975
1327                                                215752
1328                                                215613
1329                                                206160
1330                                                200001
1331                                                207709
1332                                                231745
1333                                                203616
1334                                                190756
1335                                                364284
1336                                                192090
1337                                                190006
1338                                                185692
1339                                                183654
1340                                                203058
1341                                                197574
1342                                                210235
1343                                                179824
1344                                                182873
1345                                                295228
1346                                                206500
1347                                                159492
1348                                                388259
1349                                                164873
1350                                                186028
1351                                                191515
1352                                                181059
1353                                                  4748
1354                                                  4357
1355                                                  6146
1356                                                  5448
1357                                                  5435
1358                                                  5985
1359                                                  5904
1360                                                  4873
1361                                                  5054
1362                                                  4334
1363                                                  6047
1364                                                  7009
1365                                                  6363
1366                                                  6808
1367                                                  9287
1368                                                  9786
1369                                                  9639
1370                                                  7913
1371                                                 10061
1372                                                 13672
1373                                                 10196
1374                                                  9366
1375                                                  9807
1376                                                  9568
1377                                                  9746
1378                                                 10804
1379                                                  8298
1380                                                  8103
1381                                                  7011
1382                                                 10508
1383                                                 11839
1384                                                 14228
1385                                                 10853
1386                                                 13933
1387                                                 16219
1388                                                 15685
1389                                                 12378
1390                                                 12738
1391                                                 14142
1392                                                 14080
1393                                                 13156
1394                                                 11458
1395                                                 10814
1396                                                 10895
1397                                                 13694
1398                                                 11086
1399                                                  9718
1400                                                 17578
1401                                                 11082
1402                                                 12188
1403                                                 11666
1404                                                 11699
1405                                                   285
1406                                                   256
1407                                                   438
1408                                                   325
1409                                                   299
1410                                                   389
1411                                                   335
1412                                                   692
1413                                                   486
1414                                                   647
1415                                                  1004
1416                                                  1156
1417                                                  1172
1418                                                  1516
1419                                                  1609
1420                                                  1714
1421                                                  2204
1422                                                  2416
1423                                                  2887
1424                                                  7406
1425                                                 11932
1426                                                 11763
1427                                                 12344
1428                                                 11720
1429                                                 11822
1430                                                 15051
1431                                                  8080
1432                                                  7162
1433                                                   269
1434                                                   297
1435                                                   319
1436                                                   235
1437                                                   262
1438                                                   321
1439                                                   300
1440                                                   288
1441                                                   373
1442                                                   294
1443                                                   250
1444                                                    78
1445                                                   179
1446                                                   184
1447                                                   270
1448                                                   385
1449                                                   347
1450                                                   253
1451                                                   203
1452                                                   426
1453                                                   353
1454                                                   214
1455                                                   232
1456                                                   219
1457                                                   895
1458                                                   804
1459                                                  1658
1460                                                   893
1461                                                   864
1462                                                  1228
1463                                                   930
1464                                                   754
1465                                                  1227
1466                                                   541
1467                                                  1173
1468                                                   721
1469                                                  1078
1470                                                   984
1471                                                   801
1472                                                  1030
1473                                                  1295
1474                                                  1531
1475                                                   822
1476                                                  1728
1477                                                   976
1478                                                  1331
1479                                                  1322
1480                                                  2324
1481                                                  5130
1482                                                  5471
1483                                                  3347
1484                                                  5159
1485                                                  3548
1486                                                  2236
1487                                                  1369
1488                                                  1724
1489                                                  1648
1490                                                  4591
1491                                                  4554
1492                                                  2618
1493                                                  2367
1494                                                  1846
1495                                                  2011
1496                                                  1813
1497                                                  1651
1498                                                  1924
1499                                                  2110
1500                                                  2849
1501                                                  2885
1502                                                  2660
1503                                                  2996
1504                                                  3252
1505                                                  3184
1506                                                  3039
1507                                                  2316
1508                                                  1871
1509                                                 35858
1510                                                 14910
1511                                                  4716
1512                                                  3341
1513                                                  3025
1514                                                  4067
1515                                                  3393
1516                                                  4492
1517                                                  4729
1518                                                  3364
1519                                                  5421
1520                                                  4365
1521                                                  5434
1522                                                  4786
1523                                                  4294
1524                                                  4617
1525                                                  6693
1526                                                 11075
1527                                                  7167
1528                                                  8139
1529                                                  9117
1530                                                 11726
1531                                                 14865
1532                                                 36476
1533                                                 75096
1534                                                 92678
1535                                                 72709
1536                                                 77296
1537                                                 56827
1538                                                  7059
1539                                                  5489
1540                                                  7775
1541                                                  5593
1542                                                 10221
1543                                                 13488
1544                                                  7040
1545                                                  6390
1546                                                  5307
1547                                                  6204
1548                                                  5707
1549                                                  5437
1550                                                  5531
1551                                                  7865
1552                                                  7318
1553                                                  7050
1554                                                  7773
1555                                                  7220
1556                                                  9191
1557                                                  7924
1558                                                  7216
1559                                                  6915
1560                                                  7580
1561                                                 12123
1562                                                  3821
1563                                                   117
1564                                                    94
1565                                                    89
1566                                                   141
1567                                                    91
1568                                                   132
1569                                                   209
1570                                                   158
1571                                                   193
1572                                                   205
1573                                                   248
1574                                                   265
1575                                                   292
1576                                                   277
1577                                                   378
1578                                                   457
1579                                                   608
1580                                                   775
1581                                                   816
1582                                                  1638
1583                                                  2452
1584                                                  6852
1585                                                 15372
1586                                                 17992
1587                                                 15156
1588                                                 14780
1589                                                 10745
1590                                                    37
1591                                                    61
1592                                                    53
1593                                                    30
1594                                                    79
1595                                                    60
1596                                                    80
1597                                                    78
1598                                                    59
1599                                                    82
1600                                                    57
1601                                                    56
1602                                                    91
1603                                                    15
1604                                                    41
1605                                                    24
1606                                                    33
1607                                                    34
1608                                                    34
1609                                                    24
1610                                                    38
1611                                                    23
1612                                                    15
1613                                                   124
1614                                                   122
1615                                                   169
1616                                                   122
1617                                                    38
1618                                                   121
1619                                                   109
1620                                                    92
1621                                                    81
1622                                                    91
1623                                                    71
1624                                                   106
1625                                                    61
1626                                                   142
1627                                                   120
1628                                                    44
1629                                                    83
1630                                                   173
1631                                                    82
1632                                                    92
1633                                                   100
1634                                                    89
1635                                                    71
1636                                                    61
1637                                                    73
1638                                                    83
1639                                                   119
1640                                                   727
1641                                                  2084
1642                                                   562
1643                                                    73
1644                                                   160
1645                                                   174
1646                                                   139
1647                                                   166
1648                                                    94
1649                                                   206
1650                                                    97
1651                                                   104
1652                                                   129
1653                                                   141
1654                                                   116
1655                                                    87
1656                                                   115
1657                                                    67
1658                                                    37
1659                                                    99
1660                                                   180
1661                                                    92
1662                                                    84
1663                                                    52
1664                                                    75
1665                                                   531
1666                                                   533
1667                                                   683
1668                                                   541
1669                                                   534
1670                                                   592
1671                                                   605
1672                                                   480
1673                                                   571
1674                                                   437
1675                                                   819
1676                                                   551
1677                                                   754
1678                                                   497
1679                                                   580
1680                                                   752
1681                                                   633
1682                                                   655
1683                                                   717
1684                                                   652
1685                                                   802
1686                                                   956
1687                                                   857
1688                                                  1473
1689                                                  1886
1690                                                  1024
1691                                                   807
1692                                                  1155
1693                                                  1064
1694                                                  1340
1695                                                  1069
1696                                                  1056
1697                                                  1129
1698                                                  2051
1699                                                  1835
1700                                                  1440
1701                                                  1310
1702                                                  1218
1703                                                  1291
1704                                                  1169
1705                                                  1104
1706                                                  1078
1707                                                  1051
1708                                                  1528
1709                                                  1354
1710                                                  1260
1711                                                  1354
1712                                                  1722
1713                                                  1409
1714                                                  1469
1715                                                  1715
1716                                                  2121
1717                                                 11642
1718                                                 10347
1719                                                  9430
1720                                                 13355
1721                                                  9770
1722                                                 11103
1723                                                 11413
1724                                                 11555
1725                                                 20971
1726                                                 19969
1727                                                 10256
1728                                                 19580
1729                                                 10664
1730                                                  9975
1731                                                  6031
1732                                                 15400
1733                                                  6102
1734                                                  5932
1735                                                  4923
1736                                                  8295
1737                                                  7041
1738                                                  5262
1739                                                  8806
1740                                                  4302
1741                                                  4760
1742                                                  5252
1743                                                  4419
1744                                                  4911
1745                                                  4263
1746                                                  4500
1747                                                 10401
1748                                                  6014
1749                                                  4707
1750                                                  4879
1751                                                  5692
1752                                                  5833
1753                                                  7534
1754                                                  5732
1755                                                  7128
1756                                                  8639
1757                                                  6035
1758                                                  6042
1759                                                  5737
1760                                                 12552
1761                                                  6792
1762                                                  5939
1763                                                  5517
1764                                                  6336
1765                                                  5034
1766                                                  5643
1767                                                 12237
1768                                                  6509
1769                                                   951
1770                                                  1004
1771                                                   960
1772                                                  1082
1773                                                   959
1774                                                  1120
1775                                                   980
1776                                                  2314
1777                                                  1707
1778                                                  1289
1779                                                  1466
1780                                                  1536
1781                                                  2321
1782                                                  1852
1783                                                  1177
1784                                                   999
1785                                                  2075
1786                                                  3632
1787                                                  1715
1788                                                  1381
1789                                                  3022
1790                                                  1152
1791                                                  1089
1792                                                  1676
1793                                                  2653
1794                                                  5316
1795                                                  3824
1796                                                  4210
1797                                                  3148
1798                                                  1483
1799                                                  1440
1800                                                  3203
1801                                                  1407
1802                                                  1279
1803                                                  5183
1804                                                  1309
1805                                                  1287
1806                                                  1181
1807                                                  1645
1808                                                  1504
1809                                                  1370
1810                                                  1292
1811                                                  3732
1812                                                  1226
1813                                                  1188
1814                                                  1559
1815                                                   990
1816                                                  2164
1817                                                  2398
1818                                                  1075
1819                                                  1325
1820                                                  1562
1821                                                 25189
1822                                                 27254
1823                                                 17928
1824                                                 13005
1825                                                 10648
1826                                                 15422
1827                                                 17268
1828                                                 19976
1829                                                 17014
1830                                                 15617
1831                                                 14931
1832                                                 14586
1833                                                 15402
1834                                                 14588
1835                                                 15441
1836                                                 15652
1837                                                 15398
1838                                                 14634
1839                                                 16042
1840                                                 14778
1841                                                 21090
1842                                                 33146
1843                                                 53882
1844                                                 37430
1845                                                 14462
1846                                                 19636
1847                                                 18638
1848                                                 22902
1849                                                 27161
1850                                                 17035
1851                                                 11919
1852                                                 12148
1853                                                 11424
1854                                                 12271
1855                                                 17406
1856                                                 23878
1857                                                 33180
1858                                                 12343
1859                                                 11646
1860                                                 10085
1861                                                 11549
1862                                                 10344
1863                                                  9284
1864                                                 11418
1865                                                 20287
1866                                                 17650
1867                                                 12488
1868                                                 13769
1869                                                 14023
1870                                                 14505
1871                                                 10009
1872                                                 10477
1873                                                 16183
1874                                                 13276
1875                                                 12487
1876                                                 13360
1877                                                 13672
1878                                                 14807
1879                                                 16341
1880                                                 15085
1881                                                 11994
1882                                                 13674
1883                                                 16086
1884                                                 31628
1885                                                 45230
1886                                                 13101
1887                                                 12832
1888                                                 15103
1889                                                 13358
1890                                                 13236
1891                                                 15313
1892                                                 15333
1893                                                 17536
1894                                                 20133
1895                                                 17190
1896                                                 16445
1897                                                 17027
1898                                                 22970
1899                                                 21602
1900                                                 32660
1901                                                 18609
1902                                                 19235
1903                                                 17219
1904                                                 15508
1905                                                 19253
1906                                                 16212
1907                                                 16792
1908                                                 13860
1909                                                 13456
1910                                                 15965
1911                                                 19336
1912                                                 18487
1913                                                 16449
1914                                                 17301
1915                                                 17445
1916                                                 16252
1917                                                 15574
1918                                                 16459
1919                                                 13387
1920                                                 15904
1921                                                 13384
1922                                                 14693
1923                                                 22743
1924                                                 19782
1925                                                 21669
1926                                                 20913
1927                                                 24041
1928                                                 26501
1929                                                 21864
1930                                                 25367
1931                                                 38425
1932                                                 52452
1933                                                 63742
1934                                                 50087
1935                                                 53069
1936                                                 69418
1937                                                 45935
1938                                                 69313
1939                                                 47238
1940                                                 37519
1941                                                 77353
1942                                                 42040
1943                                                 46614
1944                                                 47920
1945                                                 44441
1946                                                 44520
1947                                                 41447
1948                                                 45046
1949                                                 42205
1950                                                 40892
1951                                                 45055
1952                                                 41369
1953                                                 41274
1954                                                 41892
1955                                                 43537
1956                                                 50073
1957                                                 41159
1958                                                 37794
1959                                                 80830
1960                                                 38961
1961                                                 36477
1962                                                 37444
1963                                                 37207
1964                                                 44155
1965                                                 37930
1966                                                 46569
1967                                                 37878
1968                                                 36330
1969                                                 69371
1970                                                 48503
1971                                                 33712
1972                                                 88450
1973                                                 36067
1974                                                 39544
1975                                                 41273
1976                                                 39928
1977                                                  5986
1978                                                  5425
1979                                                  7097
1980                                                  7029
1981                                                  5500
1982                                                  6546
1983                                                  9941
1984                                                 12315
1985                                                 16392
1986                                                 13184
1987                                                 13205
1988                                                 16005
1989                                                 11357
1990                                                 16431
1991                                                 11692
1992                                                  9499
1993                                                 19485
1994                                                 10562
1995                                                 12156
1996                                                 12570
1997                                                 12732
1998                                                 13009
1999                                                 11762
2000                                                 12404
2001                                                 12718
2002                                                 15212
2003                                                 11394
2004                                                 11121
2005                                                 10990
2006                                                 10333
2007                                                 11467
2008                                                 13055
2009                                                 11274
2010                                                 11037
2011                                                 21170
2012                                                 11133
2013                                                 10864
2014                                                  9863
2015                                                  9827
2016                                                 11553
2017                                                 10380
2018                                                 11622
2019                                                 10296
2020                                                  9841
2021                                                 17018
2022                                                 10942
2023                                                  7883
2024                                                 21686
2025                                                  8644
2026                                                  9958
2027                                                 10952
2028                                                  9762
2029                                                   153
2030                                                   117
2031                                                   127
2032                                                   100
2033                                                   115
2034                                                   164
2035                                                    99
2036                                                   135
2037                                                   177
2038                                                   153
2039                                                   115
2040                                                   151
2041                                                   127
2042                                                    84
2043                                                   128
2044                                                   180
2045                                                   139
2046                                                   261
2047                                                   318
2048                                                   411
2049                                                    76
2050                                                    92
2051                                                    68
2052                                                   110
2053                                                   741
2054                                                  2542
2055                                                    69
2056                                                    73
2057                                                    20
2058                                                   110
2059                                                    33
2060                                                   100
2061                                                    68
2062                                                   146
2063                                                   121
2064                                                    82
2065                                                   147
2066                                                   130
2067                                                   259
2068                                                   110
2069                                                   103
2070                                                    74
2071                                                    82
2072                                                    80
2073                                                    43
2074                                                    87
2075                                                   134
2076                                                    94
2077                                                   104
2078                                                   118
2079                                                    58
2080                                                    34
2081                                                 13805
2082                                                 15917
2083                                                 16954
2084                                                 12748
2085                                                 13205
2086                                                 12685
2087                                                 11182
2088                                                 11093
2089                                                 12762
2090                                                 12903
2091                                                 12783
2092                                                 13142
2093                                                 12312
2094                                                 13481
2095                                                 12365
2096                                                 15103
2097                                                 17202
2098                                                 17332
2099                                                 12416
2100                                                 13396
2101                                                 13618
2102                                                 14771
2103                                                 13185
2104                                                  9285
2105                                                  6078
2106                                                 17132
2107                                                 13590
2108                                                 14700
2109                                                 13868
2110                                                 14289
2111                                                 14172
2112                                                 12830
2113                                                 12034
2114                                                 13246
2115                                                 13262
2116                                                 13085
2117                                                 13267
2118                                                 13073
2119                                                 15099
2120                                                 13740
2121                                                 13424
2122                                                 14831
2123                                                 13403
2124                                                 13870
2125                                                 11562
2126                                                 10274
2127                                                  9799
2128                                                 15342
2129                                                  9507
2130                                                  5672
2131                                                  5094
2132                                                  9738
2133                                                 20175
2134                                                 25053
2135                                                 16727
2136                                                 17406
2137                                                 20206
2138                                                 18974
2139                                                 15638
2140                                                 16457
2141                                                 17717
2142                                                 18703
2143                                                 19381
2144                                                 17638
2145                                                 18666
2146                                                 14808
2147                                                 28630
2148                                                 21646
2149                                                 19961
2150                                                 19844
2151                                                 20783
2152                                                 16942
2153                                                 14248
2154                                                 12741
2155                                                 16605
2156                                                 16611
2157                                                 14525
2158                                                 18795
2159                                                 15418
2160                                                 16576
2161                                                 14479
2162                                                 13915
2163                                                 14151
2164                                                 13519
2165                                                  9903
2166                                                 11998
2167                                                 14409
2168                                                 14634
2169                                                 13282
2170                                                 14666
2171                                                 15719
2172                                                 14998
2173                                                 14165
2174                                                 17440
2175                                                 14754
2176                                                 14036
2177                                                 14485
2178                                                 15334
2179                                                 14251
2180                                                 15691
2181                                                 13327
2182                                                 14125
2183                                                 12901
2184                                                 15303
2185                                                 28185
2186                                                 33084
2187                                                 34070
2188                                                 37321
2189                                                 31195
2190                                                 29410
2191                                                 27969
2192                                                 36599
2193                                                 31482
2194                                                 31359
2195                                                 31021
2196                                                 33512
2197                                                 32511
2198                                                 28302
2199                                                 33740
2200                                                 48323
2201                                                 30732
2202                                                 28648
2203                                                 27090
2204                                                 27531
2205                                                 24997
2206                                                 28139
2207                                                 32096
2208                                                 19150
2209                                                 10214
2210                                                 30803
2211                                                 29604
2212                                                 29789
2213                                                 32092
2214                                                 36846
2215                                                 26110
2216                                                 23811
2217                                                 26014
2218                                                 33343
2219                                                 32834
2220                                                 35558
2221                                                 25209
2222                                                 25316
2223                                                 35651
2224                                                 26460
2225                                                 30960
2226                                                 25350
2227                                                 31289
2228                                                 22241
2229                                                 27812
2230                                                 27243
2231                                                 20266
2232                                                 20588
2233                                                 21294
2234                                                 12869
2235                                                  4107
2236                                                  8804
2237                                                  7001
2238                                                  6308
2239                                                  9651
2240                                                  9120
2241                                                  9879
2242                                                  9372
2243                                                  9651
2244                                                  9196
2245                                                 10033
2246                                                  8273
2247                                                 10284
2248                                                 15431
2249                                                 11368
2250                                                 10158
2251                                                 11283
2252                                                 10788
2253                                                 12347
2254                                                 12204
2255                                                  9739
2256                                                 12056
2257                                                 13416
2258                                                 12790
2259                                                 12492
2260                                                 11883
2261                                                 12664
2262                                                 16267
2263                                                 13849
2264                                                 16161
2265                                                 13480
2266                                                 14325
2267                                                 14395
2268                                                 14400
2269                                                 13150
2270                                                  9484
2271                                                 11154
2272                                                 10046
2273                                                 10877
2274                                                 11710
2275                                                  9791
2276                                                  9896
2277                                                  8716
2278                                                 12218
2279                                                  8269
2280                                                 12577
2281                                                 10014
2282                                                  8106
2283                                                 10979
2284                                                 10183
2285                                                 11119
2286                                                 11178
2287                                                 18076
2288                                                 15291
2289                                                  8152
2290                                                  6244
2291                                                  7392
2292                                                  9428
2293                                                  7454
2294                                                  8114
2295                                                 11570
2296                                                 15743
2297                                                 19045
2298                                                 17192
2299                                                 16617
2300                                                 20190
2301                                                 14906
2302                                                 18766
2303                                                 14422
2304                                                 13940
2305                                                 23189
2306                                                 15285
2307                                                 17090
2308                                                 17615
2309                                                 18362
2310                                                 19052
2311                                                 18772
2312                                                 18958
2313                                                 17191
2314                                                 20073
2315                                                 18079
2316                                                 17373
2317                                                 18288
2318                                                 17295
2319                                                 18016
2320                                                 20374
2321                                                 18078
2322                                                 16482
2323                                                 26965
2324                                                 16204
2325                                                 15722
2326                                                 16839
2327                                                 18419
2328                                                 16553
2329                                                 15238
2330                                                 18024
2331                                                 14401
2332                                                 13638
2333                                                 23876
2334                                                 14735
2335                                                 12641
2336                                                 27248
2337                                                 12432
2338                                                 14954
2339                                                 14197
2340                                                 12923
2341                                                392846
2342                                                412829
2343                                                271515
2344                                                 38648
2345                                                 27985
2346                                                 39737
2347                                                 39020
2348                                                115277
2349                                                363473
2350                                                247539
2351                                                274014
2352                                                426601
2353                                                184771
2354                                                 83994
2355                                                 39835
2356                                                 34341
2357                                                 36319
2358                                                 28998
2359                                                 30816
2360                                                 35284
2361                                                 40173
2362                                                 24749
2363                                                 32905
2364                                                 28797
2365                                                 33416
2366                                                 47955
2367                                                 81756
2368                                                 97003
2369                                                 77845
2370                                                106107
2371                                                 34073
2372                                                 38143
2373                                                 33292
2374                                                 36331
2375                                                 58510
2376                                                 73077
2377                                                114924
2378                                                102729
2379                                                104285
2380                                                 89374
2381                                                 81040
2382                                                115290
2383                                                 79560
2384                                                 90168
2385                                                 81708
2386                                                 93962
2387                                                 75885
2388                                                161845
2389                                                 68871
2390                                                146481
2391                                                 88374
2392                                                 73433
2393                                                 13994
2394                                                 10520
2395                                                 12361
2396                                                 15673
2397                                                 12261
2398                                                 13737
2399                                                 20815
2400                                                 25683
2401                                                 31277
2402                                                 28828
2403                                                 28372
2404                                                 34931
2405                                                 25995
2406                                                 33834
2407                                                 27932
2408                                                 26776
2409                                                 43507
2410                                                 31619
2411                                                 35515
2412                                                 55158
2413                                                 79632
2414                                                 81145
2415                                                 78530
2416                                                 77561
2417                                                 72898
2418                                                 97112
2419                                                 59679
2420                                                 62635
2421                                                 46586
2422                                                 26236
2423                                                 25671
2424                                                 30510
2425                                                 26128
2426                                                 24441
2427                                                 40064
2428                                                 23845
2429                                                 23685
2430                                                 23471
2431                                                 26137
2432                                                 23225
2433                                                 21571
2434                                                 25793
2435                                                 20684
2436                                                 19430
2437                                                 34466
2438                                                 21706
2439                                                 18310
2440                                                 40259
2441                                                 18601
2442                                                 22004
2443                                                 21919
2444                                                 18938
2445                                                  2890
2446                                                  2660
2447                                                  2190
2448                                                  2759
2449                                                  2524
2450                                                  2672
2451                                                  2014
2452                                                  2182
2453                                                  2429
2454                                                  2074
2455                                                  1935
2456                                                  1933
2457                                                  1657
2458                                                  2196
2459                                                  4327
2460                                                  2658
2461                                                  3892
2462                                                  3821
2463                                                  2498
2464                                                  3108
2465                                                  3262
2466                                                  3189
2467                                                  3204
2468                                                  2910
2469                                                  3714
2470                                                  6422
2471                                                  6368
2472                                                  4666
2473                                                  3429
2474                                                  3745
2475                                                  3310
2476                                                  3564
2477                                                  4295
2478                                                  3072
2479                                                  3133
2480                                                  2597
2481                                                  2783
2482                                                  3057
2483                                                  3073
2484                                                  2051
2485                                                  2400
2486                                                  3968
2487                                                  2713
2488                                                  2870
2489                                                  2537
2490                                                  2684
2491                                                  3176
2492                                                  2705
2493                                                  2672
2494                                                  2933
2495                                                  4132
2496                                                  3661
2497                                                    24
2498                                                    41
2499                                                    72
2500                                                    27
2501                                                   115
2502                                                    23
2503                                                    15
2504                                                    25
2505                                                    43
2506                                                    38
2507                                                    25
2508                                                    28
2509                                                    51
2510                                                    62
2511                                                    59
2512                                                   228
2513                                                    72
2514                                                    16
2515                                                    33
2516                                                   102
2517                                                   231
2518                                                     4
2519                                                    22
2520                                                    56
2521                                                   233
2522                                                    24
2523                                                    55
2524                                                    51
2525                                                   102
2526                                                    42
2527                                                     9
2528                                                     9
2529                                                    37
2530                                                    43
2531                                                    32
2532                                                    15
2533                                                    34
2534                                                   145
2535                                                    68
2536                                                    56
2537                                                    40
2538                                                    70
2539                                                    48
2540                                                   101
2541                                                    58
2542                                                    41
2543                                                    49
2544                                                    59
2545                                                    43
2546                                                   145
2547                                                    63
2548                                                    54
2549                                                    14
2550                                                    13
2551                                                     6
2552                                                    12
2553                                                     9
2554                                                    34
2555                                                    21
2556                                                    13
2557                                                    30
2558                                                    18
2559                                                    22
2560                                                    26
2561                                                    10
2562                                                    20
2563                                                    30
2564                                                    45
2565                                                    97
2566                                                   102
2567                                                    78
2568                                                    82
2569                                                   127
2570                                                   220
2571                                                   335
2572                                                  1028
2573                                                  2809
2574                                                  3981
2575                                                  2965
2576                                                  3173
2577                                                  2737
2578                                                    32
2579                                                    45
2580                                                    36
2581                                                    39
2582                                                    25
2583                                                    19
2584                                                    19
2585                                                    49
2586                                                    26
2587                                                    20
2588                                                    43
2589                                                    43
2590                                                    19
2591                                                    25
2592                                                    54
2593                                                    42
2594                                                     7
2595                                                    14
2596                                                    14
2597                                                    36
2598                                                    28
2599                                                    15
2600                                                    17
2601                                                    57
2602                                                    34
2603                                                    52
2604                                                    44
2605                                                    18
2606                                                    58
2607                                                    52
2608                                                    40
2609                                                   101
2610                                                    43
2611                                                    42
2612                                                    81
2613                                                   107
2614                                                   100
2615                                                    88
2616                                                   102
2617                                                    63
2618                                                   149
2619                                                    67
2620                                                    66
2621                                                   161
2622                                                   170
2623                                                   116
2624                                                   139
2625                                                   101
2626                                                   164
2627                                                   108
2628                                                   773
2629                                                  2087
2630                                                   468
2631                                                   204
2632                                                   280
2633                                                    80
2634                                                    88
2635                                                   164
2636                                                   118
2637                                                   138
2638                                                   170
2639                                                   194
2640                                                    94
2641                                                   105
2642                                                    63
2643                                                    68
2644                                                    38
2645                                                    39
2646                                                    56
2647                                                    59
2648                                                    80
2649                                                    41
2650                                                    37
2651                                                    56
2652                                                    53
2653                                               1184340
2654                                               1201020
2655                                               1016163
2656                                                931831
2657                                                731008
2658                                                804663
2659                                                815642
2660                                               1143215
2661                                               1410928
2662                                               1188119
2663                                               1220251
2664                                               1614283
2665                                               1209045
2666                                               1061979
2667                                               1112405
2668                                               1118989
2669                                               1129771
2670                                               1060353
2671                                                909284
2672                                               1143365
2673                                               1014521
2674                                                984703
2675                                               1017158
2676                                               1154897
2677                                                980362
2678                                               1342466
2679                                               1045833
2680                                               1326423
2681                                               1085082
2682                                               1144716
2683                                                903908
2684                                                899780
2685                                                963550
2686                                                858145
2687                                               1118330
2688                                                889732
2689                                               1016631
2690                                                807942
2691                                                871981
2692                                                811273
2693                                               1066386
2694                                                871575
2695                                                834009
2696                                               1070576
2697                                                937139
2698                                                845654
2699                                                737939
2700                                               1381516
2701                                                768020
2702                                                831302
2703                                                866575
2704                                                844093
2705                                                125255
2706                                                130850
2707                                                134102
2708                                                107568
2709                                                104220
2710                                                118171
2711                                                122763
2712                                                107754
2713                                                132884
2714                                                134573
2715                                                110349
2716                                                178042
2717                                                179192
2718                                                 98926
2719                                                124208
2720                                                136996
2721                                                124723
2722                                                124658
2723                                                107787
2724                                                123335
2725                                                135408
2726                                                120435
2727                                                146113
2728                                                113524
2729                                                133097
2730                                                155863
2731                                                123262
2732                                                138621
2733                                                112965
2734                                                119830
2735                                                129139
2736                                                120399
2737                                                108561
2738                                                115291
2739                                                104932
2740                                                 79259
2741                                                 87251
2742                                                103111
2743                                                 93055
2744                                                 89701
2745                                                101626
2746                                                 85831
2747                                                 98093
2748                                                110088
2749                                                 79182
2750                                                 91125
2751                                                 76305
2752                                                 80894
2753                                                 71551
2754                                                 76348
2755                                                127412
2756                                                 97024
2757                                                 15487
2758                                                 12954
2759                                                 13576
2760                                                 21088
2761                                                 11463
2762                                                 12009
2763                                                 12781
2764                                                 11968
2765                                                 32803
2766                                                 31960
2767                                                 15806
2768                                                 31027
2769                                                 16662
2770                                                 12988
2771                                                 14247
2772                                                 26175
2773                                                 16171
2774                                                 16299
2775                                                 13332
2776                                                 20866
2777                                                 20222
2778                                                 13662
2779                                                 25087
2780                                                 16067
2781                                                 16186
2782                                                 18234
2783                                                 13078
2784                                                 13455
2785                                                 13413
2786                                                 12543
2787                                                 25329
2788                                                 14654
2789                                                 12171
2790                                                 13890
2791                                                 15065
2792                                                 14469
2793                                                 16243
2794                                                 11291
2795                                                 15530
2796                                                 18571
2797                                                 14084
2798                                                 13115
2799                                                 12345
2800                                                 28226
2801                                                 16471
2802                                                 12100
2803                                                 13718
2804                                                 14107
2805                                                 10573
2806                                                 12473
2807                                                 27944
2808                                                 15268
2809                                                   427
2810                                                   139
2811                                                    87
2812                                                    51
2813                                                    18
2814                                                    11
2815                                                    34
2816                                                    36
2817                                                    54
2818                                                    46
2819                                                    54
2820                                                   102
2821                                                    84
2822                                                    43
2823                                                    37
2824                                                    42
2825                                                    88
2826                                                    54
2827                                                    28
2828                                                    27
2829                                                    11
2830                                                    25
2831                                                    14
2832                                                    80
2833                                                    46
2834                                                   147
2835                                                    37
2836                                                    30
2837                                                    81
2838                                                    54
2839                                                   104
2840                                                    59
2841                                                    83
2842                                                    85
2843                                                    38
2844                                                    43
2845                                                    25
2846                                                    38
2847                                                    31
2848                                                    37
2849                                                    70
2850                                                    61
2851                                                    56
2852                                                    63
2853                                                    25
2854                                                    12
2855                                                   110
2856                                                    69
2857                                                    68
2858                                                    51
2859                                                   109
2860                                                   132
2861                                                   185
2862                                                   283
2863                                                   172
2864                                                   207
2865                                                   167
2866                                                   168
2867                                                   181
2868                                                   168
2869                                                   160
2870                                                   166
2871                                                   104
2872                                                   157
2873                                                   141
2874                                                   132
2875                                                   132
2876                                                   206
2877                                                   131
2878                                                   124
2879                                                    83
2880                                                    87
2881                                                    58
2882                                                    65
2883                                                   111
2884                                                   164
2885                                                   256
2886                                                   165
2887                                                   174
2888                                                   264
2889                                                  1175
2890                                                   562
2891                                                   247
2892                                                   175
2893                                                    80
2894                                                   254
2895                                                    54
2896                                                    67
2897                                                   106
2898                                                   433
2899                                                  1349
2900                                                  1320
2901                                                  1727
2902                                                  1907
2903                                                  1499
2904                                                  1137
2905                                                  1996
2906                                                  1008
2907                                                   419
2908                                                   412
2909                                                   401
2910                                                   654
2911                                                   464
2912                                                   397
2913                                                  8530
2914                                                  8752
2915                                                  9977
2916                                                 10050
2917                                                  8237
2918                                                 13095
2919                                                 28558
2920                                                 41287
2921                                                 27904
2922                                                 27037
2923                                                 19879
2924                                                 20640
2925                                                 19493
2926                                                 19206
2927                                                 18809
2928                                                 19882
2929                                                 20155
2930                                                 15649
2931                                                 21950
2932                                                 24864
2933                                                 28505
2934                                                 31448
2935                                                 30142
2936                                                 32758
2937                                                 44219
2938                                                 50115
2939                                                 48950
2940                                                 54130
2941                                                 55744
2942                                                 46715
2943                                                 44266
2944                                                 19545
2945                                                 16372
2946                                                 16819
2947                                                 15073
2948                                                 15861
2949                                                 15881
2950                                                 13248
2951                                                 12784
2952                                                 15295
2953                                                 16343
2954                                                 18703
2955                                                 21461
2956                                                 20335
2957                                                 54666
2958                                                 60290
2959                                                 48009
2960                                                 24482
2961                                                 24030
2962                                                 25662
2963                                                 26791
2964                                                 27147
2965                                                  6681
2966                                                  5563
2967                                                  4088
2968                                                  3772
2969                                                  5526
2970                                                  7123
2971                                                  6079
2972                                                  7688
2973                                                  7312
2974                                                  6919
2975                                                  6689
2976                                                  6562
2977                                                  7083
2978                                                  5737
2979                                                  6951
2980                                                  6412
2981                                                  7067
2982                                                  5919
2983                                                  4695
2984                                                  6569
2985                                                     3
2986                                                     3
2987                                                     3
2988                                                     6
2989                                                     3
2990                                                    12
2991                                                     9
2992                                                     2
2993                                                     3
2994                                                    12
2995                                                     7
2996                                                     3
2997                                                    16
2998                                                     7
2999                                                     0
3000                                                   591
3001                                                  4730
3002                                                  5341
3003                                                  6316
3004                                                  9114
3005                                                  9201
3006                                                  6448
3007                                                  7307
3008                                                  8767
3009                                                  4891
3010                                                  6617
3011                                                 17989
3012                                                  8441
3013                                                  4714
3014                                                  8901
3015                                                  9065
3016                                                  5432
3017                                                  4184
3018                                                  7765
3019                                                  5053
3020                                                  3449
3021                                                  3069
3022                                                  4916
3023                                                  3727
3024                                                  3370
3025                                                  3788
3026                                                  6145
3027                                                  4742
3028                                                  3838
3029                                                  5004
3030                                                  6516
3031                                                  7080
3032                                                  9618
3033                                                 10225
3034                                                  7654
3035                                                  7924
3036                                                  8195
3037                                                  8735
3038                                                  8772
3039                                                 10966
3040                                                 10381
3041                                                 14983
3042                                                 17326
3043                                                 28899
3044                                                 38655
3045                                                 43091
3046                                                 51386
3047                                                 72849
3048                                                 81860
3049                                                 63055
3050                                                 80414
3051                                                 54779
3052                                                 51959
3053                                                 43927
3054                                                 74452
3055                                                 42113
3056                                                 51478
3057                                                 34715
3058                                                 46933
3059                                                 36353
3060                                                 36934
3061                                                 36874
3062                                                 58165
3063                                                 25200
3064                                                 25252
3065                                                 26053
3066                                                 32506
3067                                                 13321
3068                                                 21183
3069                                                    42
3070                                                    60
3071                                                    54
3072                                                    23
3073                                                    12
3074                                                    28
3075                                                    84
3076                                                    80
3077                                                    82
3078                                                    78
3079                                                    51
3080                                                   112
3081                                                    90
3082                                                    36
3083                                                    52
3084                                                    65
3085                                                    69
3086                                                    67
3087                                                    44
3088                                                    71
3089                                                    43
3090                                                    55
3091                                                    62
3092                                                   102
3093                                                    46
3094                                                    53
3095                                                    83
3096                                                    58
3097                                                   107
3098                                                   258
3099                                                   354
3100                                                   857
3101                                                  1161
3102                                                   765
3103                                                  1641
3104                                                  1785
3105                                                    58
3106                                                    54
3107                                                    19
3108                                                    44
3109                                                    55
3110                                                    25
3111                                                    32
3112                                                    36
3113                                                    31
3114                                                    40
3115                                                   124
3116                                                    89
3117                                                   131
3118                                                   121
3119                                                   110
3120                                                    99
3121                                                 99998
3122                                                 90984
3123                                                 96836
3124                                                 86153
3125                                                 81897
3126                                                 93901
3127                                                112542
3128                                                120964
3129                                                 92064
3130                                                 82276
3131                                                108458
3132                                                123430
3133                                                121961
3134                                                117424
3135                                                112715
3136                                                114241
3137                                                107653
3138                                                133979
3139                                                171379
3140                                                218247
3141                                                211671
3142                                                244730
3143                                                302735
3144                                                278664
3145                                                292541
3146                                                356022
3147                                                328206
3148                                                319712
3149                                                328654
3150                                                373358
3151                                                341992
3152                                                329738
3153                                                353196
3154                                                336388
3155                                                291449
3156                                                325243
3157                                                382295
3158                                                358016
3159                                                334735
3160                                                311357
3161                                                299003
3162                                                317337
3163                                                325582
3164                                                302211
3165                                                267509
3166                                                278558
3167                                                424390
3168                                                287234
3169                                                272665
3170                                                250106
3171                                                261931
3172                                                257268
3173                                                  7325
3174                                                  7943
3175                                                  8697
3176                                                  9452
3177                                                  8265
3178                                                 13913
3179                                                 22715
3180                                                 25306
3181                                                 26881
3182                                                 20290
3183                                                 17532
3184                                                 19420
3185                                                 16737
3186                                                 17495
3187                                                 16564
3188                                                 17914
3189                                                 18659
3190                                                 15013
3191                                                 20731
3192                                                 23025
3193                                                 24178
3194                                                 24742
3195                                                 26839
3196                                                 25757
3197                                                 40461
3198                                                 40378
3199                                                 39269
3200                                                 46282
3201                                                 46177
3202                                                 41412
3203                                                 41274
3204                                                 20860
3205                                                 17608
3206                                                 18608
3207                                                 18934
3208                                                 18456
3209                                                 17306
3210                                                 16897
3211                                                 14615
3212                                                 15519
3213                                                 18631
3214                                                 22962
3215                                                 21769
3216                                                 19046
3217                                                 19834
3218                                                 18324
3219                                                 42057
3220                                                 25919
3221                                                 30644
3222                                                 29113
3223                                                 29603
3224                                                 31682
3225                                                110167
3226                                                101491
3227                                                103933
3228                                                 94496
3229                                                 81651
3230                                                 80126
3231                                                 73022
3232                                                 61666
3233                                                 60261
3234                                                 68235
3235                                                 75842
3236                                                 90032
3237                                                 90495
3238                                                 98809
3239                                                 97901
3240                                                 99521
3241                                                 91324
3242                                                 93289
3243                                                 87450
3244                                                102966
3245                                                103403
3246                                                 97843
3247                                                109032
3248                                                108231
3249                                                150963
3250                                                184519
3251                                                159812
3252                                                163028
3253                                                140925
3254                                                145607
3255                                                145364
3256                                                145104
3257                                                157985
3258                                                173294
3259                                                155290
3260                                                151281
3261                                                137010
3262                                                153442
3263                                                139240
3264                                                131467
3265                                                122808
3266                                                125902
3267                                                129160
3268                                                133067
3269                                                125839
3270                                                131203
3271                                                155377
3272                                                132958
3273                                                136034
3274                                                139310
3275                                                143203
3276                                                162054
3277                                                   970
3278                                                  1472
3279                                                   754
3280                                                  2845
3281                                                   690
3282                                                   853
3283                                                   900
3284                                                  1004
3285                                                   841
3286                                                  1181
3287                                                  1275
3288                                                  1223
3289                                                  1381
3290                                                  1396
3291                                                  1335
3292                                                  1567
3293                                                  2099
3294                                                  1684
3295                                                  1922
3296                                                  2662
3297                                                  3143
3298                                                  3805
3299                                                  7053
3300                                                  6999
3301                                                  6514
3302                                                  6496
3303                                                  9805
3304                                                 14007
3305                                                  7051
3306                                                 23750
3307                                                  7149
3308                                                  6811
3309                                                 21963
3310                                                 17790
3311                                                  9602
3312                                                  9484
3313                                                 25464
3314                                                  8960
3315                                                 10847
3316                                                 16191
3317                                                 16430
3318                                                  7483
3319                                                 24315
3320                                                 16207
3321                                                  5552
3322                                                  8009
3323                                                 30150
3324                                                 12917
3325                                                 23681
3326                                                  7457
3327                                                  7200
3328                                                 18925
3329                                                  1538
3330                                                  2523
3331                                                  1302
3332                                                  5532
3333                                                  1296
3334                                                  1336
3335                                                  1460
3336                                                  1604
3337                                                  1374
3338                                                  1763
3339                                                  1875
3340                                                  1901
3341                                                  2077
3342                                                  2426
3343                                                  2505
3344                                                  2345
3345                                                  2616
3346                                                  2593
3347                                                  2842
3348                                                  3157
3349                                                  3955
3350                                                  4295
3351                                                  6084
3352                                                  6346
3353                                                  5813
3354                                                  6699
3355                                                 10853
3356                                                 15000
3357                                                  8090
3358                                                 25833
3359                                                  7985
3360                                                  6778
3361                                                 21037
3362                                                 19164
3363                                                  9593
3364                                                 10151
3365                                                 27375
3366                                                  9075
3367                                                 21042
3368                                                 29364
3369                                                 28532
3370                                                 18666
3371                                                 35277
3372                                                 28500
3373                                                 15758
3374                                                 17175
3375                                                 36192
3376                                                 23467
3377                                                 35350
3378                                                 20931
3379                                                 17903
3380                                                 32940
3381                                                  3069
3382                                                  2578
3383                                                  3182
3384                                                  3036
3385                                                  2460
3386                                                  2768
3387                                                  3947
3388                                                  1932
3389                                                  2502
3390                                                  3183
3391                                                  2337
3392                                                  5585
3393                                                  1902
3394                                                  1798
3395                                                  2165
3396                                                  2193
3397                                                  2742
3398                                                  2998
3399                                                  4763
3400                                                  3601
3401                                                  3385
3402                                                  4548
3403                                                  4389
3404                                                  7623
3405                                                 40097
3406                                                 95675
3407                                                 86436
3408                                                 61508
3409                                                 87625
3410                                                 74561
3411                                                 58729
3412                                                102485
3413                                                 77617
3414                                                130305
3415                                                 63779
3416                                                102387
3417                                                113528
3418                                                112050
3419                                                112750
3420                                                129805
3421                                                134806
3422                                                118454
3423                                                 67157
3424                                                 53556
3425                                                 70977
3426                                                135348
3427                                                143876
3428                                                 78917
3429                                                 47421
3430                                                 79252
3431                                                 54920
3432                                                 80184
3433                                                 15600
3434                                                 10972
3435                                                 11428
3436                                                 11513
3437                                                 14113
3438                                                 15291
3439                                                 16010
3440                                                 18859
3441                                                 16411
3442                                                 19087
3443                                                 16490
3444                                                 13026
3445                                                 16448
3446                                                 16829
3447                                                 16329
3448                                                 14433
3449                                                 17240
3450                                                 13197
3451                                                 13733
3452                                                 19583
3453                                                 18625
3454                                                 19083
3455                                                 19241
3456                                                 19017
3457                                                 20484
3458                                                 21307
3459                                                 17278
3460                                                 20738
3461                                                 19839
3462                                                 16486
3463                                                 33023
3464                                                 17526
3465                                                 39118
3466                                                 13291
3467                                                 15299
3468                                                 11419
3469                                                 27996
3470                                                 11021
3471                                                 25632
3472                                                 20424
3473                                                 10951
3474                                                 33866
3475                                                 18706
3476                                                 62908
3477                                                 14973
3478                                                 17993
3479                                                 18935
3480                                                 27490
3481                                                 15455
3482                                                 31010
3483                                                 37684
3484                                                 10375
3485                                                  7122
3486                                                 10805
3487                                                  5245
3488                                                 22752
3489                                                  4975
3490                                                  5328
3491                                                  5687
3492                                                  5689
3493                                                  4806
3494                                                  8023
3495                                                  6767
3496                                                  6966
3497                                                  7838
3498                                                  8202
3499                                                  8602
3500                                                 10906
3501                                                 11880
3502                                                 10761
3503                                                 13152
3504                                                 15900
3505                                                 20553
3506                                                 23139
3507                                                 40560
3508                                                 41888
3509                                                 38635
3510                                                 37960
3511                                                 57170
3512                                                 75225
3513                                                 38385
3514                                                123671
3515                                                 38082
3516                                                 35078
3517                                                120895
3518                                                107930
3519                                                 46049
3520                                                 45926
3521                                                132061
3522                                                 44982
3523                                                 72329
3524                                                119489
3525                                                111819
3526                                                 65647
3527                                                154833
3528                                                108296
3529                                                 62843
3530                                                 71030
3531                                                192417
3532                                                 96299
3533                                                151280
3534                                                 78514
3535                                                 73427
3536                                                143912
3537                                                  3769
3538                                                  4631
3539                                                  2268
3540                                                  9126
3541                                                  2036
3542                                                  2576
3543                                                  2934
3544                                                  2786
3545                                                  2821
3546                                                  3120
3547                                                  3811
3548                                                  3409
3549                                                  4167
3550                                                  4715
3551                                                  4838
3552                                                  6085
3553                                                  8314
3554                                                 10745
3555                                                 18507
3556                                                 23662
3557                                                 19401
3558                                                 12112
3559                                                 26207
3560                                                 24890
3561                                                 21318
3562                                                 20020
3563                                                 14725
3564                                                 18999
3565                                                  2234
3566                                                  6826
3567                                                  2496
3568                                                  4986
3569                                                  6472
3570                                                  5353
3571                                                  3003
3572                                                  3088
3573                                                  8606
3574                                                  3412
3575                                                  3234
3576                                                  5101
3577                                                  4357
3578                                                  2608
3579                                                  7753
3580                                                  5164
3581                                                  4068
3582                                                 14048
3583                                                 43867
3584                                                 14941
3585                                                 16377
3586                                                  5407
3587                                                  3921
3588                                                 12294
3589                                                146507
3590                                                146479
3591                                                134248
3592                                                179768
3593                                                109137
3594                                                109089
3595                                                103231
3596                                                 91683
3597                                                 88514
3598                                                105335
3599                                                111905
3600                                                129381
3601                                                129396
3602                                                144883
3603                                                150024
3604                                                156893
3605                                                158777
3606                                                166365
3607                                                180362
3608                                                217555
3609                                                219477
3610                                                207792
3611                                                293305
3612                                                291137
3613                                                328565
3614                                                367119
3615                                                376048
3616                                                431784
3617                                                285262
3618                                                487106
3619                                                280609
3620                                                285243
3621                                                491345
3622                                                471428
3623                                                320732
3624                                                323412
3625                                                508030
3626                                                299670
3627                                                360264
3628                                                464302
3629                                                425737
3630                                                319149
3631                                                534051
3632                                                427177
3633                                                295942
3634                                                352376
3635                                                704467
3636                                                422064
3637                                                553447
3638                                                357832
3639                                                352247
3640                                                543718
3641                                                  1530
3642                                                   209
3643                                                   113
3644                                                    71
3645                                                    84
3646                                                   117
3647                                                   127
3648                                                   152
3649                                                    88
3650                                                   114
3651                                                   176
3652                                                   218
3653                                                   192
3654                                                   184
3655                                                   177
3656                                                   124
3657                                                   231
3658                                                  1087
3659                                                   101
3660                                                   194
3661                                                   538
3662                                                   347
3663                                                   273
3664                                                   207
3665                                                   437
3666                                                   762
3667                                                   593
3668                                                   298
3669                                                   125
3670                                                   192
3671                                                   137
3672                                                   183
3673                                                   227
3674                                                   358
3675                                                   363
3676                                                   235
3677                                                   138
3678                                                   168
3679                                                    90
3680                                                   157
3681                                                   270
3682                                                   202
3683                                                   212
3684                                                   213
3685                                                   158
3686                                                   224
3687                                                   334
3688                                                   148
3689                                                   187
3690                                                   215
3691                                                   142
3692                                                   315
3693                                                  7914
3694                                                   995
3695                                                  2350
3696                                                   591
3697                                                   120
3698                                                   122
3699                                                   107
3700                                                   162
3701                                                   192
3702                                                   194
3703                                                   239
3704                                                   275
3705                                                   620
3706                                                   127
3707                                                   133
3708                                                   197
3709                                                   842
3710                                                   278
3711                                                   224
3712                                                   655
3713                                                   565
3714                                                   200
3715                                                   149
3716                                                   287
3717                                                   700
3718                                                  1331
3719                                                   263
3720                                                   308
3721                                                   319
3722                                                   246
3723                                                   433
3724                                                   522
3725                                                   779
3726                                                   436
3727                                                   247
3728                                                   685
3729                                                    95
3730                                                   172
3731                                                   449
3732                                                   197
3733                                                   278
3734                                                   179
3735                                                   295
3736                                                   233
3737                                                   280
3738                                                   317
3739                                                   531
3740                                                   256
3741                                                   304
3742                                                   223
3743                                                   238
3744                                                   297
3745                                                  3258
3746                                                  2886
3747                                                  3480
3748                                                  4509
3749                                                  3567
3750                                                  4070
3751                                                  4850
3752                                                  2922
3753                                                  3193
3754                                                  2489
3755                                                  3349
3756                                                  9671
3757                                                  3196
3758                                                  2894
3759                                                  3024
3760                                                  2466
3761                                                  3440
3762                                                  3065
3763                                                  5697
3764                                                  3816
3765                                                  5033
3766                                                  4165
3767                                                  5209
3768                                                  8568
3769                                                 41629
3770                                                139911
3771                                                113474
3772                                                 74763
3773                                                110055
3774                                                110458
3775                                                116263
3776                                                169714
3777                                                 95672
3778                                                185667
3779                                                 89822
3780                                                163348
3781                                                153135
3782                                                151966
3783                                                181951
3784                                                177920
3785                                                121839
3786                                                185545
3787                                                 86478
3788                                                 85512
3789                                                 90646
3790                                                210029
3791                                                203798
3792                                                161507
3793                                                 79193
3794                                                116441
3795                                                 85369
3796                                                113069
3797                                                  1963
3798                                                  1974
3799                                                  2771
3800                                                  5144
3801                                                  1231
3802                                                  1517
3803                                                  1725
3804                                                  1578
3805                                                  1683
3806                                                  2220
3807                                                  1953
3808                                                  2174
3809                                                  2092
3810                                                  2557
3811                                                  2707
3812                                                  3135
3813                                                  3253
3814                                                  2802
3815                                                  3406
3816                                                  4255
3817                                                  5742
3818                                                  6277
3819                                                  9887
3820                                                  9427
3821                                                  9531
3822                                                  9153
3823                                                 15030
3824                                                 19044
3825                                                 19115
3826                                                 21893
3827                                                 12496
3828                                                 17820
3829                                                 23506
3830                                                 18839
3831                                                 12071
3832                                                 22244
3833                                                 24253
3834                                                 11125
3835                                                 14509
3836                                                 23243
3837                                                 16825
3838                                                 17714
3839                                                 24631
3840                                                 16742
3841                                                  8892
3842                                                 15622
3843                                                 27708
3844                                                 22381
3845                                                 23023
3846                                                 12443
3847                                                 18455
3848                                                 25839
3849                                                   208
3850                                                   104
3851                                                   127
3852                                                   133
3853                                                    95
3854                                                   192
3855                                                   213
3856                                                   290
3857                                                   207
3858                                                   212
3859                                                   228
3860                                                   144
3861                                                    94
3862                                                   145
3863                                                    84
3864                                                   149
3865                                                   158
3866                                                   113
3867                                                   189
3868                                                   218
3869                                                   331
3870                                                   440
3871                                                   494
3872                                                   413
3873                                                   680
3874                                                  1135
3875                                                   749
3876                                                  1509
3877                                                   983
3878                                                   784
3879                                                   982
3880                                                   357
3881                                                   276
3882                                                   280
3883                                                   249
3884                                                   134
3885                                                   185
3886                                                   196
3887                                                   150
3888                                                   402
3889                                                   269
3890                                                   316
3891                                                   503
3892                                                   218
3893                                                   212
3894                                                   377
3895                                                   594
3896                                                   256
3897                                                   473
3898                                                   302
3899                                                   273
3900                                                   488
3901                                                  7607
3902                                                  7073
3903                                                  6832
3904                                                  5327
3905                                                  4857
3906                                                  5608
3907                                                  6683
3908                                                  8196
3909                                                  7158
3910                                                  8492
3911                                                  5357
3912                                                  5061
3913                                                  5877
3914                                                  5907
3915                                                  5319
3916                                                  5573
3917                                                  5841
3918                                                  6192
3919                                                  5836
3920                                                  6998
3921                                                  7063
3922                                                  7320
3923                                                  7525
3924                                                  7496
3925                                                  7717
3926                                                  9481
3927                                                 12079
3928                                                 11019
3929                                                 18142
3930                                                 13189
3931                                                 11870
3932                                                 15173
3933                                                  1468
3934                                                  8687
3935                                                  8420
3936                                                  8101
3937                                                  6531
3938                                                  6305
3939                                                  6877
3940                                                  7122
3941                                                 13632
3942                                                  6824
3943                                                  6810
3944                                                 14452
3945                                                  6448
3946                                                  7331
3947                                                 10625
3948                                                 14510
3949                                                  6141
3950                                                 12497
3951                                                  6134
3952                                                 15505
3953                                                 65359
3954                                                 56245
3955                                                 59600
3956                                                 53730
3957                                                 50950
3958                                                 60512
3959                                                 71033
3960                                                 77065
3961                                                 59597
3962                                                 44807
3963                                                 56116
3964                                                 61747
3965                                                 62565
3966                                                 62738
3967                                                 55346
3968                                                 49050
3969                                                 43844
3970                                                 57212
3971                                                 57963
3972                                                 73826
3973                                                 67935
3974                                                 70784
3975                                                 83980
3976                                                 84008
3977                                                 81637
3978                                                107626
3979                                                105880
3980                                                114307
3981                                                105647
3982                                                121003
3983                                                113180
3984                                                 89228
3985                                                 95527
3986                                                107684
3987                                                 98634
3988                                                102739
3989                                                100884
3990                                                 95958
3991                                                101585
3992                                                 94366
3993                                                 91299
3994                                                 96885
3995                                                 90068
3996                                                 95505
3997                                                 83794
3998                                                 90043
3999                                                 98684
4000                                                 75112
4001                                                 92941
4002                                                 84389
4003                                                 88910
4004                                                 90511
4005                                                   180
4006                                                   434
4007                                                   142
4008                                                   665
4009                                                   141
4010                                                   159
4011                                                   215
4012                                                   236
4013                                                   162
4014                                                   315
4015                                                   282
4016                                                   329
4017                                                   487
4018                                                   413
4019                                                   565
4020                                                   635
4021                                                   769
4022                                                   615
4023                                                   736
4024                                                   772
4025                                                  1058
4026                                                  1145
4027                                                  1996
4028                                                  2111
4029                                                  2084
4030                                                  1811
4031                                                  3534
4032                                                  5025
4033                                                  2496
4034                                                  9893
4035                                                  2468
4036                                                  2244
4037                                                  6838
4038                                                  6925
4039                                                  3924
4040                                                  3819
4041                                                  9699
4042                                                  2962
4043                                                  3899
4044                                                  6189
4045                                                  6366
4046                                                  3216
4047                                                  8998
4048                                                  5796
4049                                                  2286
4050                                                  3867
4051                                                 10194
4052                                                  4775
4053                                                  9688
4054                                                  2802
4055                                                  2595
4056                                                  6301
4057                                                   828
4058                                                  3460
4059                                                   160
4060                                                    51
4061                                                   120
4062                                                    44
4063                                                   256
4064                                                   233
4065                                                   248
4066                                                   248
4067                                                   236
4068                                                   170
4069                                                   361
4070                                                   181
4071                                                   281
4072                                                   194
4073                                                   218
4074                                                   259
4075                                                    95
4076                                                   139
4077                                                   115
4078                                                   177
4079                                                   164
4080                                                   190
4081                                                   151
4082                                                   130
4083                                                   166
4084                                                   115
4085                                                    78
4086                                                   252
4087                                                   249
4088                                                   257
4089                                                   224
4090                                                   173
4091                                                   584
4092                                                   547
4093                                                   101
4094                                                   156
4095                                                    72
4096                                                   128
4097                                                   142
4098                                                   181
4099                                                    93
4100                                                   703
4101                                                    78
4102                                                    75
4103                                                   231
4104                                                   169
4105                                                   260
4106                                                   292
4107                                                   250
4108                                                    41
4109                                                 33980
4110                                                 36485
4111                                                 39179
4112                                                 41579
4113                                                 33161
4114                                                 53734
4115                                                 99449
4116                                                122472
4117                                                107745
4118                                                 94123
4119                                                 76681
4120                                                 81958
4121                                                 77381
4122                                                 73333
4123                                                 70265
4124                                                 82492
4125                                                 86827
4126                                                 67371
4127                                                 96331
4128                                                107540
4129                                                119738
4130                                                127239
4131                                                133520
4132                                                137997
4133                                                198307
4134                                                213315
4135                                                204710
4136                                                230514
4137                                                229465
4138                                                214242
4139                                                199248
4140                                                 95835
4141                                                 89571
4142                                                 94749
4143                                                 89465
4144                                                 90676
4145                                                 97350
4146                                                 79795
4147                                                 78798
4148                                                 90880
4149                                                 98399
4150                                                107243
4151                                                122485
4152                                                106124
4153                                                141965
4154                                                144264
4155                                                220032
4156                                                133522
4157                                                146095
4158                                                136753
4159                                                141334
4160                                                150717
4161                                                    66
4162                                                   104
4163                                                   158
4164                                                   854
4165                                                   177
4166                                                    99
4167                                                   182
4168                                                   127
4169                                                   166
4170                                                   126
4171                                                   233
4172                                                   128
4173                                                    86
4174                                                   188
4175                                                    81
4176                                                   342
4177                                                   372
4178                                                   347
4179                                                   194
4180                                                   174
4181                                                   161
4182                                                   251
4183                                                   256
4184                                                   220
4185                                                   320
4186                                                   354
4187                                                   244
4188                                                   437
4189                                                   905
4190                                                   728
4191                                                   993
4192                                                   713
4193                                                   976
4194                                                   746
4195                                                  1426
4196                                                  1474
4197                                                  1199
4198                                                  3073
4199                                                  6467
4200                                                  6374
4201                                                  6535
4202                                                  5966
4203                                                  5970
4204                                                  7035
4205                                                  9519
4206                                                  8627
4207                                                  7759
4208                                                  8013
4209                                                  6297
4210                                                  6428
4211                                                  7580
4212                                                  7695
4213                                                   259
4214                                                   430
4215                                                   205
4216                                                   120
4217                                                    50
4218                                                    51
4219                                                   103
4220                                                    95
4221                                                   374
4222                                                   245
4223                                                   502
4224                                                   402
4225                                                   339
4226                                                   892
4227                                                   448
4228                                                   253
4229                                                   275
4230                                                   364
4231                                                   305
4232                                                   190
4233                                                   334
4234                                                   239
4235                                                   397
4236                                                   271
4237                                                   335
4238                                                   321
4239                                                   396
4240                                                   268
4241                                                   496
4242                                                   557
4243                                                   355
4244                                                   496
4245                                                   456
4246                                                   456
4247                                                  1500
4248                                                  3088
4249                                                   381
4250                                                   612
4251                                                  4574
4252                                                  1282
4253                                                  1534
4254                                                   455
4255                                                   566
4256                                                   992
4257                                                   322
4258                                                   379
4259                                                   567
4260                                                   347
4261                                                   403
4262                                                   500
4263                                                   441
4264                                                   353
4265                                                 84414
4266                                                 15429
4267                                                  5247
4268                                                  2350
4269                                                  2023
4270                                                  2999
4271                                                  2970
4272                                                  3519
4273                                                  1596
4274                                                  2087
4275                                                  1794
4276                                                  1807
4277                                                  3847
4278                                                  2002
4279                                                  1664
4280                                                  2149
4281                                                 12219
4282                                                 37850
4283                                                  4586
4284                                                 13050
4285                                                 26114
4286                                                 21054
4287                                                 22933
4288                                                 28823
4289                                                 38821
4290                                                 49981
4291                                                 30502
4292                                                 28829
4293                                                 21104
4294                                                 23822
4295                                                 24552
4296                                                 16383
4297                                                 16601
4298                                                 21634
4299                                                 11518
4300                                                 12409
4301                                                  4694
4302                                                  2137
4303                                                  1685
4304                                                  1438
4305                                                  1917
4306                                                  2801
4307                                                  2066
4308                                                  2028
4309                                                  3071
4310                                                  1220
4311                                                  3000
4312                                                  1384
4313                                                  1854
4314                                                  4949
4315                                                  1670
4316                                                  1462
4317                                                117488
4318                                                 36712
4319                                                 19969
4320                                                 12276
4321                                                 10853
4322                                                 16299
4323                                                 14009
4324                                                 13244
4325                                                 12120
4326                                                 16941
4327                                                 13908
4328                                                 12845
4329                                                 17033
4330                                                 18242
4331                                                 17881
4332                                                 25571
4333                                                 38849
4334                                                 68593
4335                                                 25740
4336                                                 40750
4337                                                 59915
4338                                                 57230
4339                                                 63714
4340                                                 74756
4341                                                 99899
4342                                                123210
4343                                                118845
4344                                                132513
4345                                                135414
4346                                                156594
4347                                                213855
4348                                                219222
4349                                                172918
4350                                                211976
4351                                                144510
4352                                                142678
4353                                                102787
4354                                                164664
4355                                                 90728
4356                                                104254
4357                                                 79981
4358                                                111255
4359                                                 83452
4360                                                 84169
4361                                                 84110
4362                                                129490
4363                                                 59775
4364                                                 59280
4365                                                 66878
4366                                                 77510
4367                                                 34789
4368                                                 53766
4369                                                  2878
4370                                                  5317
4371                                                  3081
4372                                                  2350
4373                                                  2393
4374                                                  3473
4375                                                  2651
4376                                                  2261
4377                                                  2879
4378                                                  4023
4379                                                  3353
4380                                                  2844
4381                                                  3193
4382                                                  3706
4383                                                  4265
4384                                                  7205
4385                                                  6202
4386                                                  4902
4387                                                  4669
4388                                                  5813
4389                                                  5884
4390                                                  6618
4391                                                  7568
4392                                                  7593
4393                                                 10103
4394                                                 14096
4395                                                 20457
4396                                                 27248
4397                                                 30138
4398                                                 35125
4399                                                 58060
4400                                                 64721
4401                                                 47340
4402                                                 55131
4403                                                 37533
4404                                                 39188
4405                                                 29549
4406                                                 50625
4407                                                 26852
4408                                                 29092
4409                                                 25615
4410                                                 36964
4411                                                 26686
4412                                                 26835
4413                                                 26089
4414                                                 41375
4415                                                 16923
4416                                                 18558
4417                                                 22048
4418                                                 22335
4419                                                 11133
4420                                                 17576
4421                                                   133
4422                                                   118
4423                                                    68
4424                                                   114
4425                                                   121
4426                                                    91
4427                                                   167
4428                                                   149
4429                                                   144
4430                                                   135
4431                                                   152
4432                                                   129
4433                                                   189
4434                                                   134
4435                                                    90
4436                                                    63
4437                                                   172
4438                                                    92
4439                                                    83
4440                                                   132
4441                                                   115
4442                                                    91
4443                                                   142
4444                                                   105
4445                                                   130
4446                                                   279
4447                                                    95
4448                                                   250
4449                                                   142
4450                                                   232
4451                                                   345
4452                                                   308
4453                                                   378
4454                                                   259
4455                                                   403
4456                                                   745
4457                                                   226
4458                                                   214
4459                                                   252
4460                                                    63
4461                                                    89
4462                                                   450
4463                                                    39
4464                                                   222
4465                                                    90
4466                                                   103
4467                                                   222
4468                                                   159
4469                                                   326
4470                                                    83
4471                                                   199
4472                                                   234
4473                                                 18780
4474                                                  2124
4475                                                   735
4476                                                   846
4477                                                   860
4478                                                  1487
4479                                                  1840
4480                                                  1466
4481                                                   701
4482                                                   665
4483                                                   718
4484                                                   965
4485                                                   898
4486                                                   776
4487                                                   748
4488                                                   955
4489                                                  4083
4490                                                 13529
4491                                                  2559
4492                                                  5607
4493                                                 12191
4494                                                 12677
4495                                                 13603
4496                                                 17209
4497                                                 20445
4498                                                 25017
4499                                                 21092
4500                                                 18156
4501                                                 16971
4502                                                 17990
4503                                                 17074
4504                                                 10912
4505                                                 10280
4506                                                 16821
4507                                                 11522
4508                                                 11453
4509                                                  5217
4510                                                  2461
4511                                                   410
4512                                                   501
4513                                                   615
4514                                                   776
4515                                                   637
4516                                                   821
4517                                                  1816
4518                                                  1006
4519                                                  1418
4520                                                   505
4521                                                   692
4522                                                  2772
4523                                                   700
4524                                                   918
4525                                                 17008
4526                                                 14396
4527                                                 14223
4528                                                 11916
4529                                                 11542
4530                                                 14661
4531                                                 15106
4532                                                 16680
4533                                                 15843
4534                                                 16864
4535                                                 13628
4536                                                 10641
4537                                                 11411
4538                                                 12131
4539                                                 11915
4540                                                 11582
4541                                                 13070
4542                                                 10717
4543                                                  9205
4544                                                 11524
4545                                                 11938
4546                                                 11881
4547                                                 12392
4548                                                 11537
4549                                                 11651
4550                                                 14795
4551                                                 16236
4552                                                 17321
4553                                                 22944
4554                                                 17419
4555                                                 18218
4556                                                 22534
4557                                                 13478
4558                                                 29263
4559                                                 14203
4560                                                 14665
4561                                                 14462
4562                                                 37714
4563                                                 17173
4564                                                 35479
4565                                                 21556
4566                                                 16153
4567                                                 14567
4568                                                 22261
4569                                                 15355
4570                                                 22140
4571                                                 57213
4572                                                 21553
4573                                                 15409
4574                                                 19499
4575                                                 12048
4576                                                 20951
4577                                                   962
4578                                                  1975
4579                                                  1185
4580                                                  1314
4581                                                  1117
4582                                                  1051
4583                                                  1041
4584                                                  1137
4585                                                  1150
4586                                                  1186
4587                                                   995
4588                                                   953
4589                                                  1369
4590                                                  3010
4591                                                  1331
4592                                                   925
4593                                                  1349
4594                                                  1022
4595                                                  1004
4596                                                  1002
4597                                                  1001
4598                                                   943
4599                                                  1233
4600                                                  1133
4601                                                  1295
4602                                                  1266
4603                                                  1294
4604                                                  1173
4605                                                  1172
4606                                                  1294
4607                                                  1567
4608                                                  1537
4609                                                  2931
4610                                                  2818
4611                                                  2935
4612                                                  1240
4613                                                  1801
4614                                                  1601
4615                                                  1736
4616                                                  1505
4617                                                  1225
4618                                                  1333
4619                                                  1404
4620                                                  1383
4621                                                  1372
4622                                                  1332
4623                                                  1740
4624                                                  1456
4625                                                  1742
4626                                                  1255
4627                                                  1612
4628                                                  1390
4629                                                  4268
4630                                                  3272
4631                                                  3600
4632                                                  3190
4633                                                  3226
4634                                                  4456
4635                                                  5306
4636                                                  6473
4637                                                  5264
4638                                                  5549
4639                                                  5139
4640                                                  4681
4641                                                  5181
4642                                                  5573
4643                                                  5721
4644                                                  5273
4645                                                  6177
4646                                                  5249
4647                                                  5419
4648                                                  6194
4649                                                  6165
4650                                                  7472
4651                                                  7417
4652                                                 11130
4653                                                 16160
4654                                                 10692
4655                                                  9370
4656                                                 11010
4657                                                 11291
4658                                                 10391
4659                                                 12126
4660                                                 10708
4661                                                 22170
4662                                                 18181
4663                                                 27642
4664                                                 11773
4665                                                 10597
4666                                                 19359
4667                                                 45777
4668                                                 44612
4669                                                 33667
4670                                                 49504
4671                                                 44772
4672                                                 38147
4673                                                 24200
4674                                                 20578
4675                                                 29502
4676                                                 18333
4677                                                 16919
4678                                                 25613
4679                                                 36259
4680                                                 19331
4681                                                 13342
4682                                                 11774
4683                                                 11762
4684                                                 11803
4685                                                 11473
4686                                                 13949
4687                                                 15746
4688                                                 14248
4689                                                 15009
4690                                                 12872
4691                                                 13598
4692                                                 15503
4693                                                 15822
4694                                                 16380
4695                                                 13569
4696                                                 15697
4697                                                 13320
4698                                                 12315
4699                                                 11484
4700                                                 15591
4701                                                 15568
4702                                                 15067
4703                                                 16246
4704                                                 16322
4705                                                 15965
4706                                                 20839
4707                                                 19976
4708                                                 19367
4709                                                 19532
4710                                                 23659
4711                                                 19960
4712                                                 18037
4713                                                 18398
4714                                                 20853
4715                                                 18792
4716                                                 18735
4717                                                 20489
4718                                                 21805
4719                                                 23099
4720                                                 17851
4721                                                 17767
4722                                                 19425
4723                                                 32886
4724                                                 18300
4725                                                 14448
4726                                                 15639
4727                                                 17669
4728                                                 18005
4729                                                 17305
4730                                                 16915
4731                                                 20423
4732                                                 22086
4733                                                  6997
4734                                                  8200
4735                                                  8646
4736                                                  8087
4737                                                  6927
4738                                                 11043
4739                                                 22905
4740                                                 25755
4741                                                 23851
4742                                                 21782
4743                                                 17585
4744                                                 20238
4745                                                 17416
4746                                                 15700
4747                                                 15057
4748                                                 19103
4749                                                 19655
4750                                                 13156
4751                                                 21071
4752                                                 23429
4753                                                 25308
4754                                                 25332
4755                                                 26361
4756                                                 29373
4757                                                 42700
4758                                                 44753
4759                                                 43580
4760                                                 48616
4761                                                 47594
4762                                                 42240
4763                                                 41393
4764                                                 19570
4765                                                 15603
4766                                                 16994
4767                                                 17389
4768                                                 18009
4769                                                 17999
4770                                                 16301
4771                                                 14035
4772                                                 15426
4773                                                 17215
4774                                                 20694
4775                                                 22198
4776                                                 19136
4777                                                 19436
4778                                                 18500
4779                                                 41708
4780                                                 26482
4781                                                 26788
4782                                                 27591
4783                                                 29659
4784                                                 29345
4785                                                  2184
4786                                                  2892
4787                                                  2895
4788                                                  2715
4789                                                  2116
4790                                                  3169
4791                                                  4975
4792                                                  6292
4793                                                  5927
4794                                                  5858
4795                                                  4957
4796                                                  4535
4797                                                  5205
4798                                                  4599
4799                                                  4205
4800                                                  5967
4801                                                  6484
4802                                                  5088
4803                                                  6792
4804                                                  8139
4805                                                  8282
4806                                                  9343
4807                                                  9257
4808                                                  9386
4809                                                 12341
4810                                                 14142
4811                                                 13640
4812                                                 15409
4813                                                 15693
4814                                                 13829
4815                                                 14414
4816                                                  5995
4817                                                  5702
4818                                                  6248
4819                                                  6671
4820                                                  6402
4821                                                  6469
4822                                                  6104
4823                                                  5177
4824                                                  4987
4825                                                  5713
4826                                                  6976
4827                                                  7266
4828                                                  6325
4829                                                  5840
4830                                                  4864
4831                                                 11393
4832                                                  7356
4833                                                  7717
4834                                                  8462
4835                                                  8835
4836                                                  8339
4837                                                    95
4838                                                   125
4839                                                   130
4840                                                   161
4841                                                    86
4842                                                    89
4843                                                   133
4844                                                   156
4845                                                   184
4846                                                   172
4847                                                   130
4848                                                   199
4849                                                   184
4850                                                   117
4851                                                    93
4852                                                   164
4853                                                   107
4854                                                   109
4855                                                    65
4856                                                    89
4857                                                   171
4858                                                    92
4859                                                    61
4860                                                   139
4861                                                   141
4862                                                   153
4863                                                   111
4864                                                   134
4865                                                   145
4866                                                   113
4867                                                   200
4868                                                   230
4869                                                   200
4870                                                   278
4871                                                   715
4872                                                    98
4873                                                   101
4874                                                   136
4875                                                   170
4876                                                    72
4877                                                   140
4878                                                   148
4879                                                   111
4880                                                   149
4881                                                   102
4882                                                   186
4883                                                   179
4884                                                   135
4885                                                   181
4886                                                    99
4887                                                   178
4888                                                   183
4889                                                   811
4890                                                   888
4891                                                  1253
4892                                                  1306
4893                                                  1112
4894                                                  1202
4895                                                  1255
4896                                                  1450
4897                                                  1177
4898                                                  1930
4899                                                  2661
4900                                                  4510
4901                                                  4079
4902                                                  3264
4903                                                  3772
4904                                                  4351
4905                                                  4575
4906                                                  5538
4907                                                 10653
4908                                                 14040
4909                                                 13056
4910                                                 16262
4911                                                 18158
4912                                                 16901
4913                                                 20005
4914                                                 24533
4915                                                 20249
4916                                                 18509
4917                                                 22373
4918                                                 25619
4919                                                 18824
4920                                                 20550
4921                                                 27156
4922                                                 19762
4923                                                 16678
4924                                                 18902
4925                                                 21379
4926                                                 22373
4927                                                 21876
4928                                                 20119
4929                                                 19763
4930                                                 18205
4931                                                 19506
4932                                                 21516
4933                                                 17229
4934                                                 17758
4935                                                 34236
4936                                                 19002
4937                                                 18007
4938                                                 15556
4939                                                 15444
4940                                                 16054
4941                                                 14438
4942                                                 14145
4943                                                 14737
4944                                                 15081
4945                                                 12510
4946                                                 14499
4947                                                 18445
4948                                                 18570
4949                                                 14742
4950                                                 13216
4951                                                 14088
4952                                                 15433
4953                                                 17066
4954                                                 15809
4955                                                 12716
4956                                                 12611
4957                                                 12126
4958                                                 14633
4959                                                 13817
4960                                                 17325
4961                                                 17490
4962                                                 18152
4963                                                 22672
4964                                                 23096
4965                                                 20783
4966                                                 29141
4967                                                 28460
4968                                                 28934
4969                                                 26931
4970                                                 31852
4971                                                 32043
4972                                                 20406
4973                                                 19468
4974                                                 24706
4975                                                 23603
4976                                                 22783
4977                                                 22416
4978                                                 21394
4979                                                 25761
4980                                                 23077
4981                                                 21445
4982                                                 23806
4983                                                 22298
4984                                                 25138
4985                                                 19780
4986                                                 22030
4987                                                 23695
4988                                                 18037
4989                                                 21607
4990                                                 19124
4991                                                 21523
4992                                                 22617
4993                                                  2526
4994                                                  3063
4995                                                  2862
4996                                                  2250
4997                                                  2393
4998                                                  2239
4999                                                  3208
5000                                                  3840
5001                                                  3399
5002                                                  4817
5003                                                  7788
5004                                                  9772
5005                                                 10627
5006                                                  7879
5007                                                  9254
5008                                                 11293
5009                                                 10837
5010                                                 13522
5011                                                 24855
5012                                                 31009
5013                                                 28988
5014                                                 42846
5015                                                 56350
5016                                                 43043
5017                                                 43916
5018                                                 54358
5019                                                 55056
5020                                                 43427
5021                                                 48922
5022                                                 53447
5023                                                 52674
5024                                                 70754
5025                                                 61090
5026                                                 49425
5027                                                 39101
5028                                                 55668
5029                                                 76967
5030                                                 61242
5031                                                 54167
5032                                                 46243
5033                                                 46190
5034                                                 52459
5035                                                 62392
5036                                                 39538
5037                                                 41240
5038                                                 39859
5039                                                 72546
5040                                                 57835
5041                                                 41235
5042                                                 36600
5043                                                 41094
5044                                                 32340
5045                                                   205
5046                                                   254
5047                                                   401
5048                                                   197
5049                                                   389
5050                                                   271
5051                                                   318
5052                                                   529
5053                                                  1018
5054                                                   483
5055                                                   452
5056                                                  2177
5057                                                  3183
5058                                                  3243
5059                                                  2273
5060                                                  2713
5061                                                  2493
5062                                                  2494
5063                                                  2503
5064                                                  2368
5065                                                  2584
5066                                                  2599
5067                                                  1555
5068                                                  1624
5069                                                  6528
5070                                                 10771
5071                                                 12226
5072                                                 11488
5073                                                 12433
5074                                                 13269
5075                                                 10676
5076                                                 10454
5077                                                 12760
5078                                                 11094
5079                                                 11464
5080                                                 12051
5081                                                 10372
5082                                                  9318
5083                                                  9773
5084                                                 10624
5085                                                  9182
5086                                                 10518
5087                                                  8333
5088                                                  7587
5089                                                  8476
5090                                                  8216
5091                                                  6322
5092                                                  8910
5093                                                  7344
5094                                                  8795
5095                                                  7553
5096                                                 16135
5097                                                  2502
5098                                                  2551
5099                                                  2564
5100                                                  3039
5101                                                  2813
5102                                                  4950
5103                                                  8260
5104                                                  9364
5105                                                  9096
5106                                                  6749
5107                                                  6112
5108                                                  4236
5109                                                  7204
5110                                                  6100
5111                                                  5941
5112                                                  6695
5113                                                  8325
5114                                                  6800
5115                                                  8868
5116                                                 10231
5117                                                 12579
5118                                                 12941
5119                                                 15148
5120                                                 14173
5121                                                 21153
5122                                                 20518
5123                                                 18403
5124                                                 20140
5125                                                 19782
5126                                                 16910
5127                                                 15040
5128                                                  6910
5129                                                  6162
5130                                                  6507
5131                                                  6282
5132                                                  6258
5133                                                  5465
5134                                                  6057
5135                                                  6435
5136                                                  7331
5137                                                  8317
5138                                                  8979
5139                                                  8138
5140                                                  7039
5141                                                  7362
5142                                                  6594
5143                                                 13084
5144                                                  9167
5145                                                  9677
5146                                                  9610
5147                                                  9960
5148                                                 10726
5149                                                 20053
5150                                                 15772
5151                                                 18327
5152                                                 18795
5153                                                 14620
5154                                                 16553
5155                                                 22128
5156                                                 16495
5157                                                 19653
5158                                                 20588
5159                                                 18419
5160                                                 32867
5161                                                 17352
5162                                                 15831
5163                                                 16479
5164                                                 15093
5165                                                 18544
5166                                                 17936
5167                                                 25630
5168                                                 21617
5169                                                 24523
5170                                                 25255
5171                                                 29835
5172                                                 44559
5173                                                189692
5174                                                522837
5175                                                425640
5176                                                346244
5177                                                423779
5178                                                355042
5179                                                347794
5180                                                537748
5181                                                459078
5182                                                697833
5183                                                398632
5184                                                564146
5185                                                617896
5186                                                556972
5187                                                649669
5188                                                660825
5189                                                653142
5190                                                698857
5191                                                390175
5192                                                337160
5193                                                423920
5194                                                718464
5195                                                804558
5196                                                521213
5197                                                245809
5198                                                373210
5199                                                263562
5200                                                361424
5201                                                  5643
5202                                                  8173
5203                                                  4656
5204                                                  5134
5205                                                  4791
5206                                                  8082
5207                                                 13358
5208                                                 14548
5209                                                 14441
5210                                                 11469
5211                                                 10218
5212                                                  7240
5213                                                 10940
5214                                                  9606
5215                                                  9444
5216                                                 10178
5217                                                 12529
5218                                                 10303
5219                                                 13450
5220                                                 15287
5221                                                 18598
5222                                                 18938
5223                                                 21370
5224                                                 20302
5225                                                 29960
5226                                                 30343
5227                                                 26639
5228                                                 30691
5229                                                 30505
5230                                                 26309
5231                                                 23770
5232                                                 11953
5233                                                 10066
5234                                                 10776
5235                                                 10665
5236                                                 10942
5237                                                  8861
5238                                                 10187
5239                                                 12154
5240                                                 13926
5241                                                 15753
5242                                                 17715
5243                                                 14795
5244                                                 13243
5245                                                 13665
5246                                                 12099
5247                                                 22097
5248                                                 15261
5249                                                 16838
5250                                                 16862
5251                                                 17018
5252                                                 17651
5253                                                    43
5254                                                    27
5255                                                    34
5256                                                   313
5257                                                    33
5258                                                    24
5259                                                    35
5260                                                    20
5261                                                   118
5262                                                    19
5263                                                    47
5264                                                    71
5265                                                   152
5266                                                   125
5267                                                   379
5268                                                  1572
5269                                                  1519
5270                                                  1858
5271                                                  2001
5272                                                  2321
5273                                                  1816
5274                                                  1168
5275                                                   211
5276                                                   159
5277                                                  1199
5278                                                  3407
5279                                                  3974
5280                                                  2998
5281                                                  3152
5282                                                  5361
5283                                                  3013
5284                                                  3207
5285                                                  3401
5286                                                  3174
5287                                                  3451
5288                                                  2948
5289                                                  3467
5290                                                  3378
5291                                                  3270
5292                                                  3116
5293                                                  3092
5294                                                  3141
5295                                                  3132
5296                                                  2886
5297                                                  2941
5298                                                  2422
5299                                                  1284
5300                                                  3498
5301                                                  2793
5302                                                  3527
5303                                                  3215
5304                                                  4624
5305                                                    60
5306                                                    50
5307                                                   146
5308                                                    37
5309                                                    16
5310                                                    86
5311                                                    98
5312                                                    98
5313                                                    59
5314                                                    49
5315                                                    47
5316                                                   125
5317                                                    36
5318                                                    25
5319                                                    59
5320                                                    32
5321                                                   132
5322                                                    99
5323                                                   167
5324                                                   255
5325                                                   213
5326                                                   230
5327                                                   440
5328                                                   304
5329                                                   663
5330                                                   467
5331                                                   750
5332                                                    81
5333                                                    89
5334                                                    91
5335                                                   211
5336                                                    16
5337                                                    46
5338                                                    74
5339                                                    43
5340                                                    11
5341                                                    48
5342                                                    82
5343                                                    15
5344                                                    21
5345                                                    27
5346                                                    69
5347                                                    23
5348                                                    64
5349                                                    55
5350                                                    16
5351                                                    33
5352                                                    14
5353                                                     5
5354                                                    25
5355                                                    34
5356                                                    35
5357                                                     2
5358                                                     5
5359                                                    15
5360                                                     4
5361                                                     7
5362                                                     1
5363                                                    34
5364                                                    31
5365                                                    12
5366                                                    41
5367                                                    22
5368                                                    56
5369                                                    37
5370                                                    24
5371                                                    16
5372                                                    10
5373                                                    23
5374                                                    16
5375                                                    19
5376                                                    29
5377                                                     2
5378                                                    10
5379                                                    20
5380                                                     1
5381                                                    14
5382                                                     1
5383                                                    13
5384                                                    16
5385                                                    91
5386                                                   179
5387                                                   436
5388                                                   600
5389                                                   695
5390                                                   411
5391                                                   769
5392                                                   586
5393                                                     3
5394                                                     2
5395                                                     4
5396                                                    15
5397                                                    11
5398                                                    21
5399                                                    38
5400                                                     8
5401                                                    21
5402                                                    41
5403                                                    23
5404                                                    33
5405                                                    32
5406                                                    10
5407                                                     2
5408                                                    25
5409                                                    64
5410                                                    49
5411                                                    28
5412                                                    39
5413                                                    42
5414                                                    88
5415                                                   148
5416                                                   146
5417                                                   150
5418                                                   130
5419                                                   215
5420                                                   120
5421                                                   250
5422                                                   110
5423                                                   103
5424                                                    61
5425                                                    80
5426                                                    63
5427                                                    49
5428                                                    63
5429                                                   107
5430                                                    23
5431                                                    25
5432                                                    46
5433                                                    94
5434                                                    72
5435                                                    37
5436                                                   112
5437                                                    50
5438                                                   106
5439                                                   172
5440                                                   188
5441                                                   113
5442                                                   163
5443                                                    50
5444                                                   155
5445                                                    98
5446                                                    28
5447                                                    29
5448                                                    68
5449                                                    57
5450                                                   264
5451                                                    21
5452                                                    47
5453                                                    76
5454                                                    79
5455                                                   105
5456                                                    92
5457                                                   214
5458                                                   102
5459                                                   132
5460                                                   134
5461                                                541972
5462                                                427872
5463                                                403048
5464                                                428010
5465                                                344476
5466                                                407568
5467                                                477521
5468                                                505349
5469                                                453145
5470                                                452384
5471                                                447291
5472                                                490957
5473                                                490123
5474                                                492604
5475                                                486187
5476                                                512160
5477                                                540681
5478                                                563739
5479                                                609721
5480                                                749247
5481                                                754549
5482                                                783937
5483                                                947964
5484                                                953631
5485                                               1266434
5486                                               1761343
5487                                               1624942
5488                                               1642736
5489                                               1607344
5490                                               1770948
5491                                               1583496
5492                                               1640829
5493                                               1753853
5494                                               1993645
5495                                               1414364
5496                                               1599864
5497                                               1896150
5498                                               1666275
5499                                               1731910
5500                                               1880231
5501                                               1773089
5502                                               1800066
5503                                               1686475
5504                                               1560168
5505                                               1375260
5506                                               1811091
5507                                               2546439
5508                                               1643703
5509                                               1440380
5510                                               1419406
5511                                               1282613
5512                                               1560069
5513                                                114035
5514                                                 89997
5515                                                 86234
5516                                                 81115
5517                                                 86790
5518                                                105452
5519                                                107497
5520                                                119470
5521                                                113343
5522                                                116103
5523                                                102563
5524                                                 98555
5525                                                110878
5526                                                107713
5527                                                103658
5528                                                102420
5529                                                111325
5530                                                 93943
5531                                                 91409
5532                                                122057
5533                                                 94461
5534                                                 95281
5535                                                 96068
5536                                                 95086
5537                                                111309
5538                                                137805
5539                                                135484
5540                                                140268
5541                                                162975
5542                                                147906
5543                                                164102
5544                                                150383
5545                                                155510
5546                                                152314
5547                                                131269
5548                                                130994
5549                                                168335
5550                                                177613
5551                                                159785
5552                                                190076
5553                                                167407
5554                                                179006
5555                                                171164
5556                                                251938
5557                                                123948
5558                                                155261
5559                                                281618
5560                                                186797
5561                                                121729
5562                                                181520
5563                                                175472
5564                                                156195
5565                                                 15999
5566                                                 12379
5567                                                 12633
5568                                                 10869
5569                                                  9805
5570                                                 11623
5571                                                 14196
5572                                                 17719
5573                                                 17670
5574                                                 17488
5575                                                 13560
5576                                                 11748
5577                                                 15372
5578                                                 14664
5579                                                 12900
5580                                                 12244
5581                                                 13319
5582                                                 12234
5583                                                 12142
5584                                                 15309
5585                                                 15436
5586                                                 15443
5587                                                 17101
5588                                                 16431
5589                                                 16968
5590                                                 20212
5591                                                 23127
5592                                                 25373
5593                                                 56434
5594                                                 41083
5595                                                 37522
5596                                                 50440
5597                                                 20625
5598                                                 33224
5599                                                 32608
5600                                                 32786
5601                                                 51745
5602                                                 32941
5603                                                 29033
5604                                                 30073
5605                                                 71017
5606                                                 36476
5607                                                 38919
5608                                                 53843
5609                                                 27800
5610                                                 30289
5611                                                 74916
5612                                                 38529
5613                                                 16034
5614                                                 26636
5615                                                 16274
5616                                                 35241
5617                                                    20
5618                                                    19
5619                                                    79
5620                                                   104
5621                                                   136
5622                                                    62
5623                                                    43
5624                                                   213
5625                                                    34
5626                                                    58
5627                                                    35
5628                                                    62
5629                                                    43
5630                                                    78
5631                                                    75
5632                                                    34
5633                                                   137
5634                                                   122
5635                                                    71
5636                                                   130
5637                                                   187
5638                                                   336
5639                                                   322
5640                                                   941
5641                                                  2546
5642                                                   495
5643                                                   741
5644                                                   130
5645                                                   723
5646                                                   365
5647                                                   100
5648                                                   106
5649                                                   334
5650                                                   196
5651                                                   121
5652                                                    82
5653                                                    84
5654                                                   161
5655                                                    44
5656                                                    97
5657                                                    70
5658                                                   141
5659                                                    89
5660                                                    58
5661                                                    71
5662                                                   125
5663                                                   176
5664                                                  2119
5665                                                   485
5666                                                  2192
5667                                                   607
5668                                                    57
5669                                                   200
5670                                                   961
5671                                                  1113
5672                                                   916
5673                                                  1302
5674                                                  1390
5675                                                   903
5676                                                  1109
5677                                                  1398
5678                                                  1125
5679                                                  1084
5680                                                   894
5681                                                   149
5682                                                    51
5683                                                   367
5684                                                    34
5685                                                    93
5686                                                   111
5687                                                   122
5688                                                   100
5689                                                    28
5690                                                    65
5691                                                    70
5692                                                    87
5693                                                   151
5694                                                   101
5695                                                   442
5696                                                   110
5697                                                   150
5698                                                   145
5699                                                   101
5700                                                   131
5701                                                   354
5702                                                  1651
5703                                                  3491
5704                                                   249
5705                                                   241
5706                                                    96
5707                                                   144
5708                                                   124
5709                                                   140
5710                                                   133
5711                                                   148
5712                                                    98
5713                                                    63
5714                                                    97
5715                                                   133
5716                                                   326
5717                                                   413
5718                                                   220
5719                                                   179
5720                                                   170
5721                                                   319
5722                                                   337
5723                                                  4920
5724                                                  2680
5725                                                  2934
5726                                                  3980
5727                                                  3789
5728                                                  3440
5729                                                  3724
5730                                                  3925
5731                                                  4062
5732                                                  4193
5733                                                  4523
5734                                                  4902
5735                                                  4555
5736                                                  4777
5737                                                  4488
5738                                                  4746
5739                                                  5142
5740                                                  5348
5741                                                  5172
5742                                                  5205
5743                                                  5629
5744                                                  5325
5745                                                  5352
5746                                                  5664
5747                                                  5641
5748                                                  6202
5749                                                  6603
5750                                                  6496
5751                                                  6444
5752                                                  7177
5753                                                  7376
5754                                                  7003
5755                                                  7223
5756                                                  6178
5757                                                 10049
5758                                                  7668
5759                                                  7323
5760                                                  6835
5761                                                  6568
5762                                                  7302
5763                                                  7285
5764                                                  6762
5765                                                  9390
5766                                                 12153
5767                                                  9921
5768                                                  9539
5769                                                  8823
5770                                                 29353
5771                                                 10828
5772                                                 22837
5773                                                 10120
5774                                                  9794
5775                                                 14387
5776                                                  6263
5777                                                  4751
5778                                                  6656
5779                                                  4746
5780                                                  7094
5781                                                  5116
5782                                                  5660
5783                                                  4630
5784                                                  4629
5785                                                  4757
5786                                                  4056
5787                                                  5020
5788                                                  6108
5789                                                  5128
5790                                                  5659
5791                                                  5499
5792                                                  6160
5793                                                  6523
5794                                                  6034
5795                                                  7323
5796                                                  5544
5797                                                  7645
5798                                                  7264
5799                                                  7062
5800                                                  8951
5801                                                  7817
5802                                                  8607
5803                                                  7668
5804                                                  8415
5805                                                  8103
5806                                                  7950
5807                                                 10210
5808                                                 10331
5809                                                  9358
5810                                                  9702
5811                                                  9317
5812                                                  9754
5813                                                  9549
5814                                                 10281
5815                                                  9920
5816                                                  8899
5817                                                  9034
5818                                                  9975
5819                                                 12115
5820                                                 11563
5821                                                  9936
5822                                                  9261
5823                                                 23346
5824                                                  9559
5825                                                  8314
5826                                                 10057
5827                                                 12144
5828                                                 11342
5829                                                  2062
5830                                                  1639
5831                                                  3836
5832                                                  2169
5833                                                  1901
5834                                                  2073
5835                                                  2365
5836                                                  5720
5837                                                  2014
5838                                                  2145
5839                                                  2433
5840                                                  2218
5841                                                  1266
5842                                                  1798
5843                                                  1719
5844                                                  1322
5845                                                  1484
5846                                                  1479
5847                                                  1535
5848                                                  1675
5849                                                  2985
5850                                                  3212
5851                                                  3326
5852                                                  6107
5853                                                  3826
5854                                                  3963
5855                                                  4890
5856                                                  3399
5857                                                  3287
5858                                                  3039
5859                                                  3076
5860                                                  2756
5861                                                  3223
5862                                                  3462
5863                                                  6089
5864                                                  3506
5865                                                  3294
5866                                                  3589
5867                                                  3497
5868                                                  3484
5869                                                  3404
5870                                                  3736
5871                                                  3675
5872                                                  5832
5873                                                  5887
5874                                                  5419
5875                                                 11051
5876                                                  7081
5877                                                  6111
5878                                                 11139
5879                                                  8522
5880                                                  9301
5881                                                  3934
5882                                                    25
5883                                                    27
5884                                                    40
5885                                                    62
5886                                                    42
5887                                                    26
5888                                                    75
5889                                                    48
5890                                                    58
5891                                                    38
5892                                                    61
5893                                                    33
5894                                                    39
5895                                                    37
5896                                                    31
5897                                                    48
5898                                                    31
5899                                                    40
5900                                                    20
5901                                                    11
5902                                                    19
5903                                                    43
5904                                                    40
5905                                                    37
5906                                                    36
5907                                                    56
5908                                                   106
5909                                                    60
5910                                                   101
5911                                                    79
5912                                                    58
5913                                                   109
5914                                                    56
5915                                                   134
5916                                                   210
5917                                                    46
5918                                                    40
5919                                                    36
5920                                                    49
5921                                                    42
5922                                                    53
5923                                                    74
5924                                                    28
5925                                                    46
5926                                                    45
5927                                                    33
5928                                                   111
5929                                                   116
5930                                                   111
5931                                                    56
5932                                                    54
5933                                                    66
5934                                                   103
5935                                                111845
5936                                                116855
5937                                                115250
5938                                                 90168
5939                                                100234
5940                                                121946
5941                                                107055
5942                                                108415
5943                                                108334
5944                                                125817
5945                                                123891
5946                                                137027
5947                                                138380
5948                                                120405
5949                                                119703
5950                                                128019
5951                                                141899
5952                                                168178
5953                                                157338
5954                                                165218
5955                                                190313
5956                                                159763
5957                                                152942
5958                                                151425
5959                                                178446
5960                                                207945
5961                                                224121
5962                                                191069
5963                                                191313
5964                                                188258
5965                                                141320
5966                                                153502
5967                                                137755
5968                                                134826
5969                                                150595
5970                                                157509
5971                                                162007
5972                                                163002
5973                                                161909
5974                                                150682
5975                                                138133
5976                                                143587
5977                                                156630
5978                                                161252
5979                                                155642
5980                                                177817
5981                                                158535
5982                                                214138
5983                                                148336
5984                                                106559
5985                                                 95138
5986                                                109029
5987                                                 90900
5988                                                  6349
5989                                                  3840
5990                                                  3658
5991                                                  4428
5992                                                  4556
5993                                                  3742
5994                                                  3820
5995                                                  4551
5996                                                  4856
5997                                                  4717
5998                                                  4653
5999                                                  5567
6000                                                  4782
6001                                                  4798
6002                                                  5336
6003                                                  5177
6004                                                  5424
6005                                                  6029
6006                                                  5773
6007                                                  5603
6008                                                  6255
6009                                                  6520
6010                                                  6238
6011                                                  5994
6012                                                  6036
6013                                                  6491
6014                                                  6627
6015                                                  5878
6016                                                  6332
6017                                                  6817
6018                                                  7006
6019                                                  8530
6020                                                  7712
6021                                                  6722
6022                                                 11654
6023                                                  7990
6024                                                  7619
6025                                                  7460
6026                                                  6657
6027                                                  7802
6028                                                  7656
6029                                                  7312
6030                                                  8252
6031                                                 11157
6032                                                 13182
6033                                                  9651
6034                                                  8887
6035                                                 21722
6036                                                  9147
6037                                                 20382
6038                                                  9919
6039                                                 10232
6040                                                 15036
6041                                                120869
6042                                                116406
6043                                                 99249
6044                                                 90891
6045                                                 92092
6046                                                 82294
6047                                                 98666
6048                                                 91330
6049                                                 81794
6050                                                 88633
6051                                                 95627
6052                                                 93957
6053                                                 87407
6054                                                 85663
6055                                                 61656
6056                                                100808
6057                                                114859
6058                                                114880
6059                                                115571
6060                                                140354
6061                                                135485
6062                                                136885
6063                                                134637
6064                                                127441
6065                                                129762
6066                                                168507
6067                                                149582
6068                                                139914
6069                                                138494
6070                                                122729
6071                                                132271
6072                                                103859
6073                                                123099
6074                                                147524
6075                                                162708
6076                                                125905
6077                                                 94820
6078                                                104458
6079                                                102228
6080                                                 97671
6081                                                101929
6082                                                103001
6083                                                105821
6084                                                 98165
6085                                                110939
6086                                                133540
6087                                                187794
6088                                                224555
6089                                                135946
6090                                                136329
6091                                                142550
6092                                                151447
6093                                                114647
6094                                                 18071
6095                                                 20560
6096                                                  9956
6097                                                   505
6098                                                  1399
6099                                                   475
6100                                                   793
6101                                                   868
6102                                                   862
6103                                                   505
6104                                                   378
6105                                                   574
6106                                                   588
6107                                                   626
6108                                                   614
6109                                                   711
6110                                                   669
6111                                                   817
6112                                                   646
6113                                                   884
6114                                                  1103
6115                                                  1301
6116                                                   856
6117                                                  1096
6118                                                  1529
6119                                                  1259
6120                                                  1278
6121                                                  1021
6122                                                  2144
6123                                                  1349
6124                                                  1326
6125                                                  1280
6126                                                  1027
6127                                                   932
6128                                                  1302
6129                                                  1158
6130                                                  1022
6131                                                  1301
6132                                                  1214
6133                                                  1092
6134                                                  1186
6135                                                  1251
6136                                                  1153
6137                                                  1108
6138                                                  2024
6139                                                  1011
6140                                                  1680
6141                                                  3017
6142                                                   981
6143                                                  2545
6144                                                   994
6145                                                   991
6146                                                  2531
6147                                                  5225
6148                                                  5024
6149                                                  5345
6150                                                  1248
6151                                                  2801
6152                                                   984
6153                                                   856
6154                                                   866
6155                                                   912
6156                                                   809
6157                                                   751
6158                                                   664
6159                                                   766
6160                                                  1131
6161                                                   905
6162                                                   936
6163                                                   990
6164                                                  1053
6165                                                  1022
6166                                                   989
6167                                                  1136
6168                                                  1149
6169                                                  1145
6170                                                  1070
6171                                                  2046
6172                                                  1949
6173                                                  1475
6174                                                  1160
6175                                                  2236
6176                                                  1338
6177                                                  1781
6178                                                  1809
6179                                                  1876
6180                                                  1392
6181                                                  2806
6182                                                  1850
6183                                                  1525
6184                                                  1563
6185                                                  1697
6186                                                  1683
6187                                                  1511
6188                                                  1373
6189                                                  1275
6190                                                  1538
6191                                                  3874
6192                                                  2015
6193                                                  1989
6194                                                  4270
6195                                                  1335
6196                                                  3812
6197                                                  1594
6198                                                  1761
6199                                                  4324
6200                                                  4818
6201                                                  4651
6202                                                  3861
6203                                                  4750
6204                                                  5217
6205                                                  2920
6206                                                  3568
6207                                                  4615
6208                                                  3677
6209                                                  2640
6210                                                  2275
6211                                                  1813
6212                                                  1218
6213                                                   876
6214                                                   891
6215                                                  1214
6216                                                  1361
6217                                                  1205
6218                                                  1464
6219                                                   819
6220                                                  2582
6221                                                  2723
6222                                                  1708
6223                                                  2163
6224                                                  2758
6225                                                  3155
6226                                                  4001
6227                                                  2114
6228                                                  4291
6229                                                  2333
6230                                                  2256
6231                                                  3946
6232                                                  2962
6233                                                  3364
6234                                                  2529
6235                                                  7033
6236                                                  5109
6237                                                  4244
6238                                                  8443
6239                                                  4976
6240                                                  4320
6241                                                 10580
6242                                                 40165
6243                                                 39375
6244                                                 32790
6245                                                 48081
6246                                                 46941
6247                                                 97316
6248                                                 36048
6249                                                  4457
6250                                                  2776
6251                                                  2551
6252                                                  4255
6253                                                  8951
6254                                                 11714
6255                                                 12155
6256                                                  7680
6257                                                  9270
6258                                                 12038
6259                                                 15425
6260                                                  8942
6261                                                  8618
6262                                                 10872
6263                                                  6360
6264                                                   711
6265                                                   178
6266                                                   198
6267                                                   192
6268                                                  2422
6269                                                 12806
6270                                                 13836
6271                                                 10440
6272                                                 13425
6273                                                 11830
6274                                                 13542
6275                                                 12961
6276                                                 13389
6277                                                 14611
6278                                                 16221
6279                                                 25203
6280                                                 20678
6281                                                 19386
6282                                                 21885
6283                                                 30183
6284                                                 24390
6285                                                 16549
6286                                                 18081
6287                                                 17251
6288                                                 23984
6289                                                 22772
6290                                                 23776
6291                                                 23358
6292                                                 22582
6293                                                 20053
6294                                                 19725
6295                                                 18700
6296                                                 18348
6297                                                 15022
6298                                                 17089
6299                                                 14707
6300                                                 14681
6301                                                 14726
6302                                                 13355
6303                                                 18135
6304                                                 16471
6305                                                 12664
6306                                                 25277
6307                                                 15610
6308                                                 32610
6309                                                 10002
6310                                                 36621
6311                                                  7259
6312                                                  7326
6313                                                  8156
6314                                                  7701
6315                                                  8829
6316                                                 10512
6317                                                 10114
6318                                                 18345
6319                                                 19204
6320                                                 24623
6321                                                 23011
6322                                                 23392
6323                                                 25800
6324                                                 23558
6325                                                 26556
6326                                                 27840
6327                                                 41542
6328                                                 27664
6329                                                 30384
6330                                                 46610
6331                                                 43720
6332                                                 42738
6333                                                 14203
6334                                                 35983
6335                                                 17894
6336                                                 35157
6337                                                 42532
6338                                                 36112
6339                                                 40590
6340                                                 84741
6341                                                 37837
6342                                                 33428
6343                                                 38762
6344                                                 33630
6345                                                 33829
6346                                                 30845
6347                                                 26988
6348                                                 26074
6349                                                 24897
6350                                                 79599
6351                                                 20144
6352                                                  9992
6353                                                 25712
6354                                                  6902
6355                                                 25798
6356                                                  7243
6357                                                  7819
6358                                                 18804
6359                                                 58453
6360                                                 28289
6361                                                 48181
6362                                                 17502
6363                                                 65476
6364                                                 11404
6365                                                 15683
6366                                                 17062
6367                                                 18584
6368                                                 21511
6369                                                 21938
6370                                                 18551
6371                                                 19625
6372                                                 19397
6373                                                 24967
6374                                                 23054
6375                                                 23128
6376                                                 28692
6377                                                 25971
6378                                                 29038
6379                                                 30209
6380                                                 45132
6381                                                 30794
6382                                                 33295
6383                                                 52301
6384                                                 47481
6385                                                 51887
6386                                                 29867
6387                                                 81813
6388                                                 34922
6389                                                 35468
6390                                                 36365
6391                                                 30992
6392                                                 33883
6393                                                 68210
6394                                                 33055
6395                                                 28860
6396                                                 34538
6397                                                 29243
6398                                                 25528
6399                                                 25543
6400                                                 23437
6401                                                 21287
6402                                                 17801
6403                                                 48370
6404                                                 17743
6405                                                  8309
6406                                                  8303
6407                                                  5482
6408                                                 12963
6409                                                  2864
6410                                                  3083
6411                                                  7583
6412                                                364049
6413                                                274898
6414                                                314592
6415                                                158479
6416                                                317891
6417                                                128863
6418                                                155562
6419                                                151409
6420                                                144063
6421                                                159959
6422                                                170360
6423                                                160273
6424                                                166808
6425                                                169347
6426                                                165463
6427                                                199189
6428                                                215802
6429                                                235105
6430                                                225401
6431                                                263856
6432                                                264838
6433                                                327392
6434                                                265495
6435                                                267512
6436                                                342668
6437                                                373472
6438                                                356792
6439                                                253075
6440                                                403401
6441                                                248948
6442                                                287896
6443                                                269625
6444                                                268428
6445                                                302083
6446                                                469333
6447                                                277356
6448                                                224336
6449                                                255440
6450                                                235146
6451                                                224247
6452                                                223459
6453                                                212871
6454                                                211090
6455                                                195550
6456                                                368973
6457                                                224791
6458                                                249249
6459                                                322305
6460                                                181119
6461                                                234650
6462                                                182714
6463                                                195160
6464                                                189357
6465                                                    57
6466                                                    82
6467                                                    72
6468                                                    85
6469                                                    91
6470                                                    97
6471                                                   125
6472                                                    74
6473                                                    76
6474                                                    37
6475                                                    29
6476                                                    74
6477                                                   139
6478                                                   193
6479                                                    71
6480                                                    55
6481                                                    62
6482                                                    50
6483                                                    30
6484                                                    63
6485                                                    58
6486                                                    58
6487                                                    56
6488                                                   100
6489                                                   132
6490                                                   177
6491                                                   155
6492                                                    93
6493                                                    86
6494                                                    94
6495                                                   139
6496                                                   170
6497                                                   179
6498                                                   152
6499                                                   208
6500                                                   124
6501                                                    53
6502                                                    83
6503                                                   125
6504                                                    74
6505                                                   340
6506                                                   245
6507                                                   108
6508                                                   746
6509                                                   101
6510                                                   184
6511                                                   368
6512                                                  4525
6513                                                  1856
6514                                                  3689
6515                                                   792
6516                                                    99
6517                                                   421
6518                                                   179
6519                                                   198
6520                                                   112
6521                                                   162
6522                                                   171
6523                                                    88
6524                                                   131
6525                                                   206
6526                                                   106
6527                                                   174
6528                                                   152
6529                                                    73
6530                                                   174
6531                                                    77
6532                                                    82
6533                                                    73
6534                                                   130
6535                                                    79
6536                                                    67
6537                                                    79
6538                                                   165
6539                                                   223
6540                                                   131
6541                                                    63
6542                                                   130
6543                                                   142
6544                                                   549
6545                                                   135
6546                                                   125
6547                                                   135
6548                                                   149
6549                                                   211
6550                                                   169
6551                                                   269
6552                                                   311
6553                                                   228
6554                                                   203
6555                                                   128
6556                                                   162
6557                                                   345
6558                                                  1525
6559                                                   692
6560                                                   163
6561                                                   265
6562                                                   351
6563                                                   598
6564                                                  2290
6565                                                 23028
6566                                                  3935
6567                                                 13326
6568                                                  7893
6569                                                   306
6570                                                  2696
6571                                                  4194
6572                                                  3021
6573                                                  2606
6574                                                  6828
6575                                                  7694
6576                                                  2692
6577                                                  2776
6578                                                  6534
6579                                                  4359
6580                                                  2106
6581                                                  1835
6582                                                  1866
6583                                                  1449
6584                                                  2170
6585                                                  1812
6586                                                  2265
6587                                                  2452
6588                                                  1861
6589                                                  1868
6590                                                  1576
6591                                                  6723
6592                                                  3739
6593                                                  2676
6594                                                  3007
6595                                                  4546
6596                                                  3020
6597                                                  4721
6598                                                  2929
6599                                                  7010
6600                                                  5452
6601                                                  4926
6602                                                  5550
6603                                                  3706
6604                                                  3249
6605                                                  3365
6606                                                 10441
6607                                                  5646
6608                                                  3383
6609                                                  7691
6610                                                  3907
6611                                                  5897
6612                                                 21365
6613                                                 29782
6614                                                 40612
6615                                                 42394
6616                                                 63758
6617                                                 71472
6618                                                140963
6619                                                 58981
6620                                                  4720
6621                                                  2712
6622                                                  2691
6623                                                  6314
6624                                                 13768
6625                                                 12104
6626                                                  9260
6627                                                  1754
6628                                                  2338
6629                                                   608
6630                                                   613
6631                                                  1037
6632                                                   753
6633                                                   871
6634                                                   603
6635                                                   631
6636                                                   608
6637                                                   972
6638                                                   867
6639                                                   800
6640                                                   787
6641                                                   879
6642                                                  1093
6643                                                  1163
6644                                                   801
6645                                                  1302
6646                                                   807
6647                                                   844
6648                                                  1368
6649                                                  1835
6650                                                  1678
6651                                                  1002
6652                                                  1944
6653                                                  1097
6654                                                  1766
6655                                                  1541
6656                                                  1203
6657                                                  1423
6658                                                  2348
6659                                                  1565
6660                                                  1241
6661                                                  1773
6662                                                  1134
6663                                                  1452
6664                                                  1326
6665                                                  1516
6666                                                  1540
6667                                                  1756
6668                                                  1924
6669                                                  1363
6670                                                  2797
6671                                                  5353
6672                                                  2759
6673                                                  3909
6674                                                  2034
6675                                                  3127
6676                                                  5029
6677                                                   277
6678                                                   314
6679                                                   288
6680                                                   258
6681                                                   273
6682                                                   195
6683                                                   306
6684                                                   237
6685                                                   235
6686                                                   264
6687                                                   261
6688                                                   137
6689                                                    77
6690                                                    50
6691                                                    65
6692                                                    25
6693                                                    28
6694                                                    99
6695                                                    54
6696                                                    12
6697                                                    68
6698                                                    43
6699                                                    74
6700                                                    56
6701                                                   103
6702                                                    46
6703                                                   122
6704                                                    75
6705                                                    90
6706                                                   121
6707                                                    85
6708                                                   115
6709                                                   100
6710                                                   100
6711                                                   224
6712                                                   121
6713                                                    78
6714                                                    71
6715                                                   143
6716                                                   172
6717                                                   125
6718                                                   167
6719                                                    86
6720                                                    83
6721                                                    67
6722                                                    90
6723                                                   348
6724                                                   358
6725                                                   237
6726                                                   377
6727                                                   188
6728                                                   149
6729                                                   303
6730                                                  6018
6731                                                  6233
6732                                                  3955
6733                                                  4760
6734                                                  4488
6735                                                  4316
6736                                                  5388
6737                                                  5043
6738                                                  5037
6739                                                  3515
6740                                                   682
6741                                                    61
6742                                                    76
6743                                                    63
6744                                                    66
6745                                                   109
6746                                                  5997
6747                                                  6209
6748                                                  6548
6749                                                  7342
6750                                                  6825
6751                                                  7126
6752                                                  7351
6753                                                  6656
6754                                                  6343
6755                                                  7592
6756                                                  8472
6757                                                  6653
6758                                                  6723
6759                                                  6563
6760                                                  8227
6761                                                 10115
6762                                                  8123
6763                                                  7460
6764                                                  7877
6765                                                  6704
6766                                                  9127
6767                                                  9912
6768                                                  8785
6769                                                 11318
6770                                                  9405
6771                                                  9357
6772                                                  8807
6773                                                  8077
6774                                                  7365
6775                                                  6859
6776                                                  8137
6777                                                  8149
6778                                                  7716
6779                                                  6955
6780                                                  7692
6781                                                  7984
6782                                                  7737
6783                                                 75510
6784                                                 78272
6785                                                 76600
6786                                                 62001
6787                                                 68958
6788                                                 82683
6789                                                 73389
6790                                                 72562
6791                                                 69039
6792                                                 81785
6793                                                 84635
6794                                                 94135
6795                                                 91288
6796                                                 78098
6797                                                 79407
6798                                                 84556
6799                                                 94971
6800                                                112401
6801                                                105558
6802                                                 99791
6803                                                120592
6804                                                109001
6805                                                100596
6806                                                 99404
6807                                                105463
6808                                                 87693
6809                                                104452
6810                                                 90801
6811                                                 93205
6812                                                 96489
6813                                                 89031
6814                                                102414
6815                                                 91671
6816                                                 88216
6817                                                 97894
6818                                                105296
6819                                                108744
6820                                                109371
6821                                                106826
6822                                                 95594
6823                                                 83245
6824                                                 89297
6825                                                 94533
6826                                                 83307
6827                                                 70873
6828                                                 68554
6829                                                 61332
6830                                                 89679
6831                                                 67608
6832                                                 61799
6833                                                 61162
6834                                                 72814
6835                                                 56809
6836                                                   271
6837                                                   217
6838                                                   327
6839                                                   148
6840                                                   530
6841                                                   107
6842                                                    79
6843                                                    86
6844                                                   120
6845                                                    56
6846                                                    33
6847                                                    68
6848                                                    71
6849                                                    73
6850                                                    83
6851                                                    80
6852                                                    91
6853                                                   133
6854                                                   104
6855                                                   149
6856                                                   121
6857                                                   218
6858                                                   134
6859                                                   134
6860                                                   211
6861                                                   210
6862                                                   340
6863                                                   204
6864                                                   542
6865                                                   159
6866                                                   306
6867                                                   306
6868                                                   225
6869                                                   248
6870                                                   427
6871                                                   204
6872                                                   237
6873                                                   214
6874                                                   209
6875                                                   225
6876                                                   164
6877                                                   213
6878                                                   160
6879                                                   184
6880                                                   578
6881                                                   159
6882                                                   357
6883                                                  1047
6884                                                   218
6885                                                   714
6886                                                   281
6887                                                   398
6888                                                   644
6889                                                  3057
6890                                                  4988
6891                                                  5750
6892                                                  6989
6893                                                  9947
6894                                                  1052
6895                                                  2026
6896                                                  1669
6897                                                   393
6898                                                   224
6899                                                   184
6900                                                    32
6901                                                   105
6902                                                   187
6903                                                   238
6904                                                    50
6905                                                   155
6906                                                   285
6907                                                   290
6908                                                   185
6909                                                   208
6910                                                   324
6911                                                   359
6912                                                   421
6913                                                   302
6914                                                   240
6915                                                   418
6916                                                   128
6917                                                   105
6918                                                   341
6919                                                   239
6920                                                    66
6921                                                   127
6922                                                    93
6923                                                   689
6924                                                   121
6925                                                   143
6926                                                   127
6927                                                   242
6928                                                   286
6929                                                   371
6930                                                   351
6931                                                   281
6932                                                   229
6933                                                    97
6934                                                   254
6935                                                   399
6936                                                   630
6937                                                   520
6938                                                   378
6939                                                   545
6940                                                   293
6941                                                   540
6942                                                 29458
6943                                                 19764
6944                                                 16967
6945                                                 17891
6946                                                 18490
6947                                                 15350
6948                                                 16827
6949                                                 18762
6950                                                 20210
6951                                                 19077
6952                                                 20115
6953                                                 21955
6954                                                 19640
6955                                                 20148
6956                                                 19549
6957                                                 20473
6958                                                 21742
6959                                                 24649
6960                                                 23089
6961                                                 23580
6962                                                 25765
6963                                                 26753
6964                                                 26106
6965                                                 26154
6966                                                 26713
6967                                                 27337
6968                                                 30427
6969                                                 27318
6970                                                 28997
6971                                                 31605
6972                                                 31609
6973                                                 35153
6974                                                 32391
6975                                                 30171
6976                                                 47937
6977                                                 32880
6978                                                 31535
6979                                                 31587
6980                                                 29642
6981                                                 32124
6982                                                 33096
6983                                                 30754
6984                                                 38103
6985                                                 51391
6986                                                 52648
6987                                                 41352
6988                                                 38397
6989                                                108936
6990                                                 43528
6991                                                 94412
6992                                                 43787
6993                                                 45093
6994                                                 64703
6995                                                   178
6996                                                   201
6997                                                   224
6998                                                   200
6999                                                   175
7000                                                   183
7001                                                   262
7002                                                   281
7003                                                   355
7004                                                   185
7005                                                   252
7006                                                   126
7007                                                   106
7008                                                    90
7009                                                    82
7010                                                    70
7011                                                    94
7012                                                    76
7013                                                   106
7014                                                    53
7015                                                    91
7016                                                    49
7017                                                    52
7018                                                   180
7019                                                   207
7020                                                   110
7021                                                    90
7022                                                    60
7023                                                   143
7024                                                   142
7025                                                   120
7026                                                   149
7027                                                    37
7028                                                   100
7029                                                   190
7030                                                    78
7031                                                    75
7032                                                   136
7033                                                   119
7034                                                    87
7035                                                    93
7036                                                   100
7037                                                    71
7038                                                   186
7039                                                    71
7040                                                   123
7041                                                   246
7042                                                   150
7043                                                   123
7044                                                    81
7045                                                   121
7046                                                   183
7047                                                    71
7048                                                  1337
7049                                                  1613
7050                                                  1505
7051                                                  1803
7052                                                  2002
7053                                                  1145
7054                                                  1729
7055                                                  2188
7056                                                  1893
7057                                                  1787
7058                                                  1576
7059                                                   173
7060                                                    31
7061                                                     9
7062                                                    19
7063                                                   108
7064                                                   164
7065                                                   291
7066                                                   189
7067                                                    78
7068                                                    83
7069                                                    44
7070                                                    41
7071                                                    78
7072                                                    39
7073                                                    29
7074                                                    64
7075                                                   105
7076                                                   157
7077                                                   188
7078                                                   298
7079                                                   267
7080                                                   346
7081                                                   348
7082                                                   221
7083                                                   251
7084                                                   301
7085                                                   241
7086                                                   249
7087                                                   192
7088                                                   356
7089                                                   284
7090                                                   271
7091                                                   184
7092                                                   140
7093                                                   289
7094                                                   443
7095                                                   402
7096                                                   316
7097                                                   273
7098                                                   233
7099                                                   316
7100                                                   242
7101                                                   445
7102                                                  1218
7103                                                   602
7104                                                  1562
7105                                                   580
7106                                                   697
7107                                                   710
7108                                                   710
7109                                                   601
7110                                                   779
7111                                                   492
7112                                                   633
7113                                                   872
7114                                                   547
7115                                                   599
7116                                                   408
7117                                                   641
7118                                                   518
7119                                                   703
7120                                                   620
7121                                                  1223
7122                                                  2432
7123                                                  3850
7124                                                  3112
7125                                                  3388
7126                                                  3563
7127                                                  3145
7128                                                  3691
7129                                                  3601
7130                                                  3001
7131                                                  3268
7132                                                  4083
7133                                                  3335
7134                                                  4112
7135                                                  3634
7136                                                  2747
7137                                                  2853
7138                                                  4900
7139                                                  2840
7140                                                  4114
7141                                                 20182
7142                                                 17545
     Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                            8697                         8604
2                            9506                         9408
3                            8145                         8042
4                            5811                         5677
5                            6184                         5986
6                            6684                         6556
7                            8319                         8197
8                            6829                         6267
9                           11388                        11105
10                           8626                         8061
11                           8206                         7878
12                          10124                         9866
13                           8757                         8380
14                           6034                         5889
15                           9267                         8489
16                           9287                         8665
17                           7990                         7763
18                          10307                        10219
19                          10880                        10746
20                          10443                        10298
21                           9226                         9116
22                          11847                        11769
23                          13193                        13062
24                          11287                        11103
25                          24432                        24290
26                          29899                        29663
27                          26662                        26312
28                          21876                        21662
29                          29003                        28343
30                          22775                        22315
31                          23681                        23222
32                          29355                        28762
33                          26657                        26285
34                          16821                        16536
35                          12571                        12202
36                          12778                        12077
37                          14302                        13603
38                          17104                        16438
39                          10729                         9869
40                           7684                         7208
41                           9750                         9253
42                          10371                         9990
43                           9182                         8828
44                           9151                         8986
45                           9380                         9000
46                          10313                         9980
47                          10622                        10113
48                           9323                         9171
49                          10846                        10103
50                          11921                        11651
51                           8425                         8036
52                           9716                         9187
53                          66354                        48606
54                          58798                        46930
55                          61545                        38904
56                          50690                        37033
57                          53795                        33032
58                          56382                        36992
59                          47046                        33656
60                          48629                        35663
61                          65398                        39461
62                          56751                        31827
63                          60339                        36884
64                          86294                        41160
65                          59460                        14876
66                          45662                        20534
67                          86202                        33698
68                          75983                        46290
69                          94436                        49834
70                          61281                        47138
71                          57418                        45534
72                          59217                        45068
73                          67472                        45820
74                          53888                        42126
75                          57211                        45114
76                          61292                        45100
77                          58304                        46024
78                          70560                        50685
79                          65342                        52100
80                          74542                        55485
81                          61261                        48612
82                          72290                        50955
83                          51735                        40505
84                          56540                        33867
85                          45392                        33710
86                          46668                        34108
87                          66182                        32521
88                          41512                        31315
89                          43343                        29662
90                          50884                        25833
91                          45037                        28612
92                          43780                        29314
93                          62275                        40495
94                          46575                        34912
95                          43241                        33847
96                          49457                        32181
97                          43430                        33424
98                          44886                        26728
99                          38940                        18044
100                         51694                        10554
101                         36612                        13176
102                         40040                        16783
103                         47038                        21310
104                         46816                        16707
105                        144911                       142544
106                        144238                       141752
107                        150966                       149070
108                        118665                       117113
109                        105468                       103616
110                        121671                       119008
111                        129760                       125298
112                        144840                       138778
113                        157926                       152716
114                        156129                       149988
115                        151926                       146421
116                        168354                       163669
117                        172234                       167495
118                        151893                       146793
119                        174030                       168890
120                        151500                       145686
121                        168971                       165697
122                        185304                       181969
123                        178377                       175047
124                        155975                       153157
125                        164863                       161565
126                        166729                       163668
127                        178660                       174775
128                        200713                       196838
129                        193887                       189236
130                        206109                       200098
131                        211565                       207378
132                        224623                       220904
133                        249197                       244982
134                        225053                       221166
135                        217786                       211787
136                        234503                       228843
137                        227331                       222163
138                        224519                       215572
139                        209686                       201874
140                        218352                       212065
141                        225627                       219886
142                        201392                       196076
143                        191340                       184109
144                        163769                       158964
145                        176386                       171700
146                        197865                       193131
147                        192522                       188374
148                        171961                       168224
149                        190763                       186977
150                        179990                       174865
151                        180933                       175771
152                        164589                       159917
153                        217351                       209762
154                        173859                       169391
155                        155407                       151331
156                        141137                       137146
157                         23561                        23520
158                         21936                        21900
159                         21868                        21843
160                         43092                        42735
161                         16058                        15861
162                         17548                        17531
163                         25635                        25200
164                         13000                        12778
165                         12363                        12332
166                         13711                        13661
167                          8921                         8918
168                         13770                        13543
169                          5968                         5462
170                          7763                         7597
171                         10894                        10601
172                          7483                         7483
173                          6936                         6934
174                          5441                         5441
175                          7420                         7420
176                          6097                         6091
177                          7582                         7569
178                          6036                         5988
179                          6512                         6358
180                          7171                         6354
181                          9572                         8335
182                          6638                         6557
183                          5621                         5619
184                          7286                         7022
185                          7800                         7800
186                          5613                         5604
187                          7866                         7860
188                          7507                         7470
189                          6354                         6346
190                          9496                         9453
191                          6355                         6350
192                          7179                         7175
193                          7960                         7954
194                          5748                         5748
195                          6514                         6511
196                          4790                         4790
197                          3312                         3312
198                          4446                         4446
199                          4860                         4860
200                          7238                         6479
201                          7467                         7235
202                          5341                         3648
203                          3047                         1373
204                          6645                         4867
205                          4530                         2010
206                          3916                         1119
207                          4924                         3295
208                          7756                         6064
209                         86013                        85914
210                         88902                        88768
211                         89723                        89523
212                         75890                        75666
213                         74126                        73865
214                         78648                        78162
215                         87352                        85604
216                         93343                        88265
217                         98508                        93443
218                         99327                        94582
219                         91050                        86046
220                        101910                        97513
221                        103039                        97207
222                         84727                        82124
223                         95172                        91613
224                         89115                        84844
225                         95173                        94558
226                         83431                        83242
227                         95827                        95585
228                         96109                        95887
229                         94519                        94288
230                         97509                        97214
231                        100695                       100467
232                        109746                       109519
233                        148183                       146947
234                        148861                       145983
235                        143456                       142575
236                        126114                       125821
237                        151442                       151259
238                        137408                       137225
239                        142819                       142515
240                        138158                       137769
241                        149526                       147668
242                        143998                       141309
243                        118714                       115149
244                        109400                       106866
245                        115563                       114562
246                        110639                       108644
247                        115636                       113541
248                        110561                       108838
249                        102664                       102204
250                        102556                       101932
251                        114387                       113811
252                         97863                        97423
253                        100716                       100498
254                        114839                       114284
255                        106217                       105403
256                        110214                       109901
257                        116472                       115538
258                        109037                       108669
259                        111525                       111193
260                         87663                        87407
261                         55237                        55237
262                         51165                        51165
263                         56202                        56202
264                         48356                        48356
265                         42662                        42662
266                         49642                        49642
267                         56335                        55593
268                         60188                        58886
269                         54299                        52956
270                         61283                        59381
271                         63787                        62627
272                         56025                        54830
273                         57426                        56141
274                         28438                        27767
275                         19259                        18438
276                         22867                        22422
277                         25106                        25093
278                         20483                        20483
279                         23840                        23840
280                         22372                        22372
281                         24052                        24052
282                         31623                        31623
283                         43789                        43789
284                         70982                        70982
285                         74223                        73796
286                         75277                        74371
287                         78812                        78750
288                         54130                        54130
289                         95474                        95474
290                         71991                        71991
291                         75473                        75473
292                         65786                        65742
293                         74393                        73415
294                         95286                        94833
295                         85477                        84332
296                         86183                        85503
297                         85577                        85057
298                         71752                        70938
299                         72057                        71409
300                         70027                        69919
301                         71344                        71289
302                         54158                        54046
303                         62577                        62217
304                         69542                        69480
305                         62312                        61765
306                         55357                        55233
307                         64514                        63918
308                         86920                        86848
309                         58650                        57910
310                         43422                        43420
311                         53514                        53514
312                         57183                        57183
313                       1212707                      1090140
314                       1209165                      1061704
315                       1592438                      1404012
316                       1510267                      1376641
317                       1081497                       991569
318                       1069306                       979613
319                       1152919                      1091769
320                        855637                       813006
321                        651916                       626994
322                        618032                       606393
323                        646991                       633894
324                        555042                       533478
325                        472090                       442924
326                        515246                       496868
327                        552210                       529779
328                        584420                       502057
329                        629688                       591630
330                        649476                       640601
331                        545249                       535184
332                        577652                       572197
333                        580769                       570729
334                        566776                       559588
335                        598608                       590750
336                        601234                       577737
337                        622966                       601359
338                        762371                       731692
339                        654819                       630301
340                        662032                       634245
341                        683201                       657421
342                        678869                       651945
343                        580523                       554225
344                        574120                       546421
345                        547244                       525805
346                        634791                       613601
347                        631798                       609389
348                        576600                       548252
349                        598286                       524768
350                        614444                       532714
351                        601125                       539258
352                        669440                       605995
353                        713009                       681404
354                        662527                       632904
355                        671313                       642307
356                        552070                       515386
357                        635319                       596185
358                        594412                       544991
359                        612526                       553683
360                        600149                       556205
361                        570610                       521004
362                        559991                       520299
363                        546048                       510560
364                        528452                       477193
365                         37630                        35130
366                         35055                        33273
367                         39032                        35793
368                         30439                        28182
369                         30791                        27376
370                         25723                        22228
371                         23632                        21132
372                         29723                        28076
373                         37374                        32848
374                         34587                        30219
375                         34535                        31177
376                         39796                        33103
377                         38051                        30389
378                         31621                        27053
379                         47353                        38940
380                         62868                        56910
381                         66042                        59198
382                         65684                        63371
383                         78865                        76846
384                         62986                        60769
385                         61746                        57783
386                         60700                        58628
387                         64127                        62054
388                         65605                        62471
389                         67852                        65681
390                         71243                        67865
391                         69754                        67989
392                         73048                        69426
393                         69824                        67842
394                         72651                        69124
395                         61153                        58991
396                         63677                        59663
397                         59787                        57584
398                         63907                        61760
399                         64215                        58626
400                         59902                        58701
401                         64618                        63182
402                         65184                        61787
403                         58148                        56451
404                         52861                        51856
405                         59412                        56444
406                         52470                        51028
407                         53912                        52538
408                         55726                        52874
409                         46973                        44920
410                         49548                        40420
411                         51284                        41921
412                         49070                        33450
413                         54310                        41623
414                         47055                        33997
415                         49436                        38822
416                         50798                        44329
417                         94741                        83067
418                         94064                        76241
419                         82588                        76829
420                         62911                        62473
421                         62161                        61863
422                         73752                        73457
423                         74985                        74724
424                         66166                        65842
425                         68870                        68448
426                         66124                        65795
427                         63116                        62077
428                         68648                        65145
429                         69930                        66015
430                         70795                        63370
431                         74892                        71196
432                         82914                        78368
433                         86202                        82905
434                         73919                        71627
435                         80272                        77074
436                         83807                        80019
437                         81788                        79510
438                         82176                        79198
439                         88152                        83729
440                         98743                        92363
441                         94328                        90429
442                        129053                       126579
443                        129787                       126836
444                        111022                       107243
445                        119025                       116318
446                        105212                        99942
447                        101425                        99123
448                        104264                       101616
449                         85534                        82690
450                         93316                        88848
451                         93716                        89297
452                         92706                        88342
453                         92161                        89277
454                         94154                        91664
455                         91423                        87170
456                        101459                        97285
457                         90359                        87394
458                         97254                        93313
459                        109455                       107215
460                         90420                        88092
461                         94440                        90447
462                         97651                        92519
463                         82336                        78981
464                         93078                        89517
465                         85221                        75868
466                         98866                        95516
467                         79299                        74716
468                         77539                        72888
469                         50369                        14051
470                         56246                        12118
471                         75465                        15835
472                         59144                        13539
473                         38978                        12785
474                         47140                        13805
475                         56846                        15734
476                         60246                        12990
477                         71626                        14831
478                         59604                        12423
479                         43078                        17415
480                         50536                        16192
481                         64106                        16488
482                         49129                        12344
483                         47095                        12353
484                         56180                        17272
485                         66632                        19499
486                         63319                        17805
487                         58589                        15962
488                         63558                        16807
489                         56137                        19934
490                         51052                        16180
491                         68918                        24770
492                         58338                        21471
493                         61781                        23226
494                         71706                        27500
495                         72824                        34099
496                         65000                        25432
497                         66486                        30258
498                         63390                        23652
499                         63377                        20976
500                         55605                        24487
501                         59492                        18092
502                         73035                        22507
503                         57176                        18316
504                         60584                        21522
505                         60889                        35196
506                         55625                        38219
507                         51050                        36567
508                         70724                        46587
509                         48823                        11317
510                         57836                        19570
511                         64426                        30834
512                         47260                        14964
513                         41141                        18685
514                         39618                        21356
515                         37259                        17774
516                         51829                        15335
517                         46636                        20650
518                         42403                        24024
519                         43476                        17036
520                         55083                        17525
521                         23072                        15032
522                         20266                        11761
523                         20166                        14642
524                         18819                        12452
525                         17371                        12106
526                         18380                        13855
527                         23024                        19595
528                         25670                        14900
529                         21489                        14668
530                         17089                        11461
531                         23460                        18602
532                         23893                        16947
533                         19255                        14952
534                         18440                        10971
535                         21237                        12030
536                         24698                        17100
537                         21787                        16534
538                         24775                        16928
539                         20872                        14962
540                         23949                        15230
541                         29969                        20668
542                         23216                        17997
543                         28990                        23981
544                         26450                        21846
545                         25545                        22606
546                         30289                        24910
547                         35543                        29338
548                         31938                        24969
549                         34656                        27204
550                         33480                        23654
551                         27508                        21434
552                         34793                        22680
553                         21612                        15997
554                         27215                        23689
555                         27236                        16303
556                         28635                        22384
557                         25870                        20819
558                         24862                        23837
559                         18572                        17853
560                         32729                        31416
561                         16321                         9159
562                         22629                        18488
563                         36170                        29553
564                         19375                        13297
565                         21411                        18267
566                         24562                        22104
567                         20394                        17859
568                         23946                        16360
569                         23196                        21117
570                         27418                        24387
571                         18981                        16400
572                         18870                        16518
573                        164495                       136560
574                        139568                       103512
575                        122486                       114978
576                        119464                       108772
577                        110783                        96799
578                        115460                       102318
579                        124104                       109552
580                        103377                        92854
581                        105901                        98097
582                        101823                        96418
583                         94315                        87201
584                        107868                       101828
585                        122785                       107305
586                        114294                       101478
587                        112114                        99273
588                        144444                       119755
589                        129188                       120588
590                        110267                       101094
591                        111144                       102622
592                        109684                       100807
593                        109762                       101619
594                        103103                        91894
595                        116524                        97727
596                        133329                       115942
597                        107362                       102574
598                        145176                       139671
599                        133411                       125900
600                        143731                       134708
601                        134775                       130578
602                        133959                       126850
603                        112892                        99456
604                        101994                        96860
605                         96118                        88480
606                        115965                       107303
607                        111724                       104797
608                        102359                        91506
609                        102270                        89210
610                         94371                        85100
611                        120093                       105522
612                        109584                        95895
613                         98563                        88559
614                        102495                        90708
615                        111143                        97450
616                        107972                        95284
617                        102739                        85322
618                         82586                        67518
619                         80178                        67959
620                         90805                        79314
621                         78188                        60158
622                         74805                        62376
623                         87685                        67858
624                         89330                        54563
625                        266590                        38620
626                        202800                        34993
627                        294367                        34244
628                        340034                        35086
629                        149739                        31920
630                        282806                        31359
631                        378320                        36280
632                        209920                        39636
633                        237105                        41634
634                        223825                        39915
635                        239194                        41688
636                        216495                        40462
637                        184828                        41346
638                        173509                        43108
639                        187899                        40645
640                        149626                        47734
641                        151436                        47834
642                        161467                        43992
643                        123397                        45408
644                        123500                        46711
645                        136452                        46596
646                        134187                        45645
647                        162597                        58753
648                        208462                        68585
649                        169339                        66816
650                        142806                        88350
651                        153136                        93206
652                        128297                        83581
653                        129731                        79509
654                        158078                        70062
655                         88434                        52816
656                         70664                        50060
657                        113999                        50688
658                        115632                        49344
659                         97967                        45164
660                         72695                        44469
661                        116878                        44279
662                         98979                        42716
663                         86003                        53590
664                         90117                        55936
665                         82485                        47368
666                         93527                        50621
667                        102365                        54092
668                         75911                        38247
669                        156113                        62564
670                        100262                        80271
671                        141258                        92800
672                        158603                        90556
673                        127365                        74744
674                        151309                        77528
675                        122524                        85793
676                        115560                        67894
677                         62067                        48936
678                         51806                        40496
679                         57504                        48318
680                         54243                        30612
681                         42283                        31629
682                         55653                        47389
683                         72837                        65345
684                         53703                        30615
685                         56533                        35177
686                         42762                        30132
687                         70323                        63144
688                         73877                        68721
689                         54175                        40779
690                         46420                        33817
691                         60966                        38181
692                         70173                        51457
693                         61933                        49677
694                         68937                        52515
695                         55182                        45741
696                         74576                        53327
697                         67448                        54938
698                         72591                        63454
699                        105548                        98037
700                         73481                        61402
701                         82776                        76701
702                         74583                        66417
703                        115728                       111301
704                         82435                        70155
705                         86445                        80661
706                         76378                        61921
707                         80020                        74758
708                         98619                        94585
709                         65901                        53494
710                         91797                        87986
711                         66858                        60635
712                        100217                        93903
713                         81262                        68265
714                        107069                       101770
715                         69389                        65998
716                        116730                       113016
717                         63171                        44419
718                         67078                        62159
719                        104569                        99704
720                         69073                        50733
721                         70507                        66789
722                         82193                        78474
723                         61773                        57777
724                         70682                        54003
725                         73764                        69312
726                         94985                        92319
727                         56697                        48639
728                         56132                        46680
729                         37857                        30738
730                         35161                        30548
731                         40989                        38257
732                         32058                        26570
733                         30729                        27836
734                         36726                        33607
735                         48756                        47301
736                         36854                        34956
737                         45974                        43393
738                         35156                        30488
739                         45134                        40258
740                         39488                        21799
741                         36661                        29447
742                         34573                        28889
743                         53746                        51686
744                         51809                        43865
745                         48655                        45108
746                         53916                        48562
747                         45548                        40205
748                         65763                        55317
749                         52957                        49560
750                         59731                        55049
751                         74652                        69267
752                         61455                        52697
753                         72570                        66368
754                         55790                        44033
755                         87927                        80549
756                         62515                        53623
757                         71615                        67207
758                         61035                        55433
759                         67039                        64208
760                         73748                        69049
761                         56626                        52456
762                         63494                        59129
763                         48803                        46863
764                         73116                        68759
765                         72778                        68698
766                         72097                        68694
767                         55702                        50463
768                         81049                        75726
769                         59637                        57118
770                         48607                        45348
771                         72556                        69329
772                         54084                        47217
773                         52873                        48858
774                         63862                        57602
775                         52497                        48150
776                         48423                        43900
777                         58723                        54053
778                         64386                        60382
779                         42379                        39193
780                         45922                        43899
781                        577491                       400004
782                        542059                       358219
783                        574072                       409910
784                        500759                       325850
785                        431503                       328369
786                        501609                       391455
787                        580588                       465154
788                        554940                       365002
789                        578565                       399665
790                        496813                       335249
791                        535276                       419559
792                        539609                       384773
793                        504172                       354840
794                        476540                       327300
795                        570423                       406010
796                        634481                       448052
797                        614943                       468148
798                        612822                       457559
799                        568324                       427635
800                        676086                       486210
801                        638020                       497895
802                        627505                       500705
803                        762155                       617212
804                        690083                       535843
805                        715927                       581802
806                        774585                       606613
807                        966269                       803974
808                        780156                       611157
809                        815016                       683335
810                        742128                       584086
811                        725079                       593193
812                        788588                       641757
813                        620548                       481047
814                        737043                       585001
815                        653683                       493009
816                        749590                       615887
817                        717946                       609139
818                        754074                       688966
819                        617473                       552076
820                        845500                       758625
821                        605211                       453830
822                        622038                       498932
823                        824997                       697813
824                        598714                       462539
825                        610249                       512270
826                        650580                       561485
827                        560634                       472576
828                        646532                       479453
829                        617677                       503613
830                        697090                       600156
831                        515263                       412977
832                        537781                       412780
833                         52173                        51397
834                         55159                        53929
835                         52630                        51753
836                         46804                        46345
837                         40270                        39641
838                         49887                        47520
839                         50824                        46940
840                         49315                        47638
841                         50255                        49341
842                         53877                        52570
843                         49802                        48879
844                         55402                        53611
845                         60166                        59228
846                         53388                        51731
847                         54908                        53989
848                         50518                        48538
849                         58804                        57426
850                         59592                        57205
851                         56436                        54581
852                         49303                        48581
853                         57148                        56333
854                         57808                        56786
855                         61945                        60632
856                         66951                        65842
857                         68900                        67026
858                         80549                        78410
859                         73591                        70488
860                         79455                        76908
861                         92381                        87953
862                         85425                        81417
863                         91400                        87881
864                         93391                        89914
865                         86571                        85065
866                         87227                        85161
867                         79068                        76931
868                         70271                        68211
869                         79211                        77245
870                         64579                        62948
871                         68028                        66321
872                         62385                        61036
873                         60235                        57777
874                         74631                        72182
875                         77676                        75825
876                         67380                        65871
877                         74589                        73386
878                         73264                        72146
879                         76543                        75409
880                         70933                        69530
881                         83379                        79721
882                         65730                        64181
883                         64838                        63840
884                         48953                        47584
885                         44521                        43577
886                         46959                        45982
887                         47235                        46493
888                         36088                        35448
889                         37099                        36423
890                         31693                        30800
891                         42157                        40290
892                         43220                        37770
893                         49489                        44831
894                         47536                        43920
895                         45109                        42005
896                         52443                        49064
897                         51469                        46353
898                         46106                        42271
899                         57607                        52877
900                         53422                        47930
901                         54784                        52839
902                         47189                        46616
903                         45255                        44346
904                         52809                        51497
905                         56846                        55626
906                         48824                        47631
907                         55095                        52816
908                         59064                        56769
909                         73611                        71429
910                         71727                        67565
911                         63988                        60623
912                         69298                        67505
913                         72847                        69608
914                         67534                        66053
915                         76734                        74809
916                         80421                        78506
917                         72313                        69888
918                         76808                        73455
919                         69666                        66957
920                         66780                        64009
921                         70678                        66844
922                         64932                        63103
923                         58950                        56551
924                         53020                        50510
925                         56637                        53990
926                         68370                        65306
927                         81264                        77719
928                         59968                        57601
929                         73551                        71331
930                         80582                        79027
931                         68467                        65595
932                         75878                        72235
933                         86592                        79402
934                         64898                        62672
935                         85050                        83320
936                         58062                        55401
937                        140579                        73712
938                        134472                        72198
939                        118250                        69011
940                        123302                        61020
941                         97740                        67880
942                        112776                        70785
943                        131185                        62415
944                        124311                        56574
945                        135091                        56198
946                        101890                        57577
947                         87943                        59836
948                        112925                        62638
949                        128610                        59751
950                        110006                        61099
951                         97094                        55198
952                        128198                        55637
953                        128398                        63725
954                        101801                        72265
955                         97754                        62733
956                        102019                        65764
957                         98491                        62834
958                         93996                        60783
959                        115647                        69845
960                        146607                        73695
961                        129131                        71467
962                        145202                        98661
963                        182794                        87445
964                        165541                        84406
965                        164984                        85200
966                        127683                        72505
967                        119148                        53982
968                         97641                        58143
969                         82512                        47882
970                        119273                        49687
971                        138114                        55875
972                         91746                        58557
973                        112472                        78217
974                        107051                        97144
975                        139400                       132586
976                        128756                       122988
977                        122876                        71978
978                        110522                        62353
979                        135736                        60499
980                        114119                        63264
981                        105623                        73227
982                        120149                        83841
983                        114519                       103508
984                        134421                        86145
985                        120289                        95546
986                        120281                       107320
987                        152919                       126996
988                        115838                        90300
989                         37858                        20645
990                         35340                        18145
991                         39056                        21260
992                         38650                        19366
993                         29256                        17456
994                         32825                        20313
995                         36598                        22295
996                         38397                        19246
997                         40334                        20800
998                         40696                        18548
999                         40806                        24130
1000                        35113                        21300
1001                        35119                        18727
1002                        34775                        19742
1003                        41170                        18046
1004                        49657                        22011
1005                        44016                        25163
1006                        41058                        23305
1007                        40102                        23701
1008                        44629                        23010
1009                        40811                        24884
1010                        40115                        22812
1011                        47942                        27526
1012                        46213                        25201
1013                        48250                        27062
1014                        52873                        30631
1015                        62337                        34863
1016                        58792                        33861
1017                        52339                        33479
1018                        48179                        30542
1019                        42934                        26714
1020                        41465                        26023
1021                        39737                        21261
1022                        46169                        23578
1023                        40171                        21560
1024                        41141                        23193
1025                        50566                        35778
1026                        43746                        33143
1027                        40579                        33762
1028                        50119                        37466
1029                        38735                        19722
1030                        41914                        24141
1031                        45812                        27937
1032                        39567                        22402
1033                        37627                        22829
1034                        35775                        22443
1035                        33519                        18969
1036                        41561                        20670
1037                        36954                        21964
1038                        40469                        22405
1039                        33310                        18467
1040                        36485                        20325
1041                        33309                        15301
1042                        26097                        16151
1043                        30390                        11313
1044                        19876                         8770
1045                        27788                         7638
1046                        29814                        10739
1047                        24916                        12499
1048                        24157                        12761
1049                        39233                        14379
1050                        27219                        19340
1051                        24386                        14116
1052                        35016                        14261
1053                        36207                        14925
1054                        24335                        14588
1055                        37710                        17061
1056                        27745                        18431
1057                        44924                        20610
1058                        31864                        20461
1059                        31183                        20588
1060                        30162                        19620
1061                        43943                        21556
1062                        28553                        19135
1063                        23709                        18523
1064                        37280                        17719
1065                        29325                        19289
1066                        51113                        31922
1067                        37284                        29903
1068                        48407                        26218
1069                        41014                        30969
1070                        43920                        24339
1071                        32956                        22617
1072                        41618                        20782
1073                        30303                        19948
1074                        31431                        22038
1075                        51669                        25089
1076                        30894                        21799
1077                        34237                        24494
1078                        34893                        17504
1079                        29192                        16686
1080                        25226                        17584
1081                        34923                        19581
1082                        23903                        17130
1083                        25444                        19550
1084                        31640                        17060
1085                        29076                        21773
1086                        24428                        15354
1087                        19397                        11016
1088                        42946                        20816
1089                        27926                        16753
1090                        25061                        14684
1091                        24567                        14863
1092                        28687                        13653
1093                        58612                        34676
1094                        54104                        34993
1095                        41644                        33834
1096                        30694                        30201
1097                        30435                        29475
1098                        33242                        31654
1099                        35507                        33636
1100                        37333                        36574
1101                        35399                        34277
1102                        35459                        33684
1103                        38960                        37274
1104                        36895                        33904
1105                        38660                        30932
1106                        35317                        31037
1107                        44254                        35941
1108                        74656                        31703
1109                        52472                        38692
1110                        38267                        37519
1111                        40566                        38542
1112                        60364                        48127
1113                        63010                        41698
1114                        49169                        38915
1115                        50086                        41514
1116                        54738                        44134
1117                        53259                        41822
1118                        77807                        63540
1119                        63660                        52651
1120                        78859                        58695
1121                        78678                        45747
1122                        71065                        47209
1123                        58377                        41385
1124                        51767                        40850
1125                        47743                        34337
1126                        55664                        36501
1127                        66137                        37775
1128                        63436                        39250
1129                        55651                        34413
1130                        50735                        32105
1131                        50950                        38773
1132                        47723                        39099
1133                        38838                        38187
1134                        35287                        34916
1135                        38563                        38264
1136                        36602                        35745
1137                        36265                        36113
1138                        38503                        38197
1139                        43709                        42744
1140                        36449                        35205
1141                        32113                        31834
1142                        33176                        32898
1143                        37144                        36874
1144                        58639                        58127
1145                       808554                       722788
1146                       786664                       681332
1147                      1093869                       962785
1148                      1096638                       997846
1149                       749930                       681435
1150                       747731                       676326
1151                       814312                       763323
1152                       527995                       492714
1153                       396225                       378049
1154                       349302                       341731
1155                       367464                       358999
1156                       297183                       280842
1157                       273330                       251925
1158                       282555                       268104
1159                       302063                       284792
1160                       296957                       226957
1161                       343857                       312764
1162                       363761                       357387
1163                       287109                       279700
1164                       305952                       301831
1165                       311765                       304882
1166                       296687                       291524
1167                       321892                       316323
1168                       306935                       290890
1169                       312826                       298569
1170                       398193                       377664
1171                       353113                       336538
1172                       353495                       334560
1173                       374448                       357012
1174                       385718                       367628
1175                       309928                       292423
1176                       301690                       283662
1177                       294872                       280916
1178                       358536                       345073
1179                       369785                       356360
1180                       297393                       280322
1181                       326248                       279356
1182                       336666                       284383
1183                       284995                       245999
1184                       289111                       250802
1185                       294948                       275797
1186                       332058                       313898
1187                       328752                       311498
1188                       294780                       269525
1189                       337149                       309850
1190                       308755                       271596
1191                       327154                       280561
1192                       342180                       308755
1193                       294096                       255280
1194                       290195                       260858
1195                       251247                       222972
1196                       255504                       215572
1197                        19313                        11290
1198                        21243                        11291
1199                        25724                        11718
1200                        30842                        10619
1201                        21015                        10740
1202                        23120                        12082
1203                        21785                        12911
1204                        25674                        10818
1205                        34335                        11070
1206                        21993                        11226
1207                        22943                        12347
1208                        22661                        11837
1209                        17661                        10608
1210                        14967                         8797
1211                        21940                         9085
1212                        22000                         9469
1213                        27562                        10648
1214                        18916                        10816
1215                        20819                        10968
1216                        20799                        11076
1217                        23661                        12115
1218                        25823                        11523
1219                        31496                        13129
1220                        22016                        13721
1221                        25582                        13951
1222                        27275                        16461
1223                        24664                        15248
1224                        24024                        15669
1225                        25644                        15804
1226                        23778                        12424
1227                        24617                        11608
1228                        19370                        10359
1229                        18295                         8983
1230                        22340                         9534
1231                        24591                         8762
1232                        18699                         9812
1233                        25913                        19573
1234                        23399                        19990
1235                        23334                        15904
1236                        25781                        22499
1237                        22383                         7993
1238                        16983                         9907
1239                        19921                        11944
1240                        17005                         7537
1241                        25788                         9790
1242                        24814                        11567
1243                        19963                        10210
1244                        31117                         8618
1245                        21080                         8876
1246                        19077                        10229
1247                        19278                         7965
1248                        23797                         7769
1249                       112405                        53606
1250                        79786                        50138
1251                        92803                        38464
1252                        58507                        25297
1253                        78304                        27392
1254                        92252                        32763
1255                        67429                        34370
1256                        68261                        36440
1257                        95034                        37980
1258                        58966                        33430
1259                        66949                        40519
1260                        94107                        39788
1261                        95953                        47869
1262                        59931                        35359
1263                       102120                        47692
1264                        68961                        42655
1265                       114243                        49819
1266                        83400                        59816
1267                        83033                        58853
1268                        84829                        62035
1269                       118286                        61528
1270                        85845                        63761
1271                        83755                        63019
1272                        93290                        55330
1273                        86917                        61873
1274                       132961                        72566
1275                       104373                        76411
1276                       128509                        74032
1277                        99433                        72755
1278                       119601                        65839
1279                        86844                        61103
1280                       123093                        62452
1281                        90467                        64400
1282                        82813                        60377
1283                       145921                        68322
1284                        92640                        63701
1285                        88144                        58121
1286                       103947                        47628
1287                        91331                        49707
1288                        75956                        47570
1289                       104472                        51350
1290                        63925                        38985
1291                        69396                        47347
1292                       102049                        45516
1293                        78579                        51870
1294                        74510                        38772
1295                        62445                        36165
1296                       111769                        48097
1297                        66921                        35280
1298                        77092                        41312
1299                        63792                        35070
1300                        86681                        38505
1301                       503211                       464119
1302                       476795                       434534
1303                       503346                       445275
1304                       437811                       377999
1305                       386816                       344831
1306                       407482                       364156
1307                       414550                       373075
1308                       457858                       402489
1309                       513482                       429082
1310                       474081                       417038
1311                       474781                       423534
1312                       525256                       455593
1313                       501339                       438547
1314                       429281                       383854
1315                       560916                       479718
1316                       612906                       548306
1317                       676143                       598816
1318                       660271                       620019
1319                       697779                       654945
1320                       617282                       577210
1321                       647068                       597062
1322                       651663                       604228
1323                       693787                       638982
1324                       729054                       685066
1325                       707754                       662158
1326                       771995                       717655
1327                       760938                       722277
1328                       798952                       750254
1329                       829250                       786795
1330                       776459                       717859
1331                       719676                       661788
1332                       736290                       679538
1333                       713734                       667223
1334                       744169                       679213
1335                       694687                       624534
1336                       683543                       642967
1337                       741163                       701806
1338                       679969                       635124
1339                       651848                       607924
1340                       582784                       547007
1341                       618124                       560370
1342                       614826                       578104
1343                       622979                       588931
1344                       584082                       543841
1345                       583298                       535974
1346                       597683                       515933
1347                       619502                       543232
1348                       592751                       464442
1349                       671880                       572717
1350                       569043                       478771
1351                       551745                       465765
1352                       510469                       429167
1353                        30707                        23563
1354                        28292                        23562
1355                        33007                        23066
1356                        27852                        22957
1357                        27922                        20471
1358                        31136                        23717
1359                        29388                        24127
1360                        30867                        25642
1361                        36387                        24437
1362                        33823                        25000
1363                        33416                        23996
1364                        41597                        23794
1365                        42689                        26268
1366                        34913                        25432
1367                        47365                        27175
1368                        43316                        31984
1369                        42839                        27102
1370                        30401                        24582
1371                        29946                        25634
1372                        28448                        22867
1373                        40116                        30602
1374                        35417                        30724
1375                        34669                        29924
1376                        43915                        34878
1377                        35030                        29736
1378                        44395                        35734
1379                        41366                        36900
1380                        51516                        41015
1381                        44678                        38948
1382                        40283                        31059
1383                        28738                        24244
1384                        30492                        22090
1385                        29553                        25236
1386                        28378                        23620
1387                        33653                        23217
1388                        24977                        21481
1389                        29135                        22423
1390                        24411                        14354
1391                        28395                        21583
1392                        26090                        19541
1393                        29425                        22501
1394                        26383                        21886
1395                        26514                        22959
1396                        27016                        20733
1397                        23322                        20672
1398                        23901                        21186
1399                        28126                        25897
1400                        29613                        23898
1401                        25973                        24183
1402                        25637                        23521
1403                        25245                        22479
1404                        25514                        19681
1405                        63153                        53909
1406                        62784                        57101
1407                        52876                        44565
1408                        45662                        41823
1409                        55299                        49172
1410                        60225                        53792
1411                        60127                        56099
1412                        53203                        49207
1413                        58508                        50414
1414                        55281                        51959
1415                        62424                        58060
1416                        64726                        56426
1417                        67519                        59907
1418                        57247                        53116
1419                        63218                        56902
1420                        59446                        54335
1421                        72867                        64673
1422                        72493                        68104
1423                        66739                        61778
1424                        77863                        72976
1425                        78463                        71332
1426                        71226                        66186
1427                        64500                        61570
1428                        70840                        62702
1429                        67711                        62706
1430                        88003                        81157
1431                        79188                        75120
1432                        95353                        86878
1433                        84989                        80571
1434                        93290                        85388
1435                        71581                        67112
1436                        78698                        71636
1437                        74870                        69920
1438                        71531                        67176
1439                        90613                        81128
1440                        76713                        72728
1441                        77991                        74117
1442                        60210                        53843
1443                        62912                        57555
1444                        66128                        62564
1445                        77004                        68627
1446                        62466                        58352
1447                        72617                        69336
1448                        69213                        62741
1449                        66215                        62874
1450                        62664                        60468
1451                        63558                        61346
1452                        84349                        76463
1453                        69525                        66086
1454                        64198                        61303
1455                        62815                        59594
1456                        60063                        54422
1457                       242667                       208471
1458                       257139                       212615
1459                       261652                       222447
1460                       164641                       136643
1461                       170082                       139509
1462                       190226                       156661
1463                       225328                       196060
1464                       287368                       198024
1465                       238141                       183727
1466                       239306                       192750
1467                       232926                       181855
1468                       291019                       214209
1469                       261493                       208106
1470                       243521                       185973
1471                       262288                       214317
1472                       249522                       181278
1473                       245037                       201210
1474                       248566                       208605
1475                       231864                       197250
1476                       223384                       188594
1477                       249029                       218716
1478                       251358                       216694
1479                       280465                       233875
1480                       304968                       256582
1481                       354359                       306200
1482                       346631                       278911
1483                       346716                       266450
1484                       330913                       287711
1485                       404480                       323081
1486                       356188                       296940
1487                       389228                       322140
1488                       387862                       322563
1489                       360825                       300934
1490                       374369                       316975
1491                       333132                       257688
1492                       340355                       246377
1493                       382750                       278785
1494                       298957                       239070
1495                       312568                       252130
1496                       278150                       216859
1497                       283375                       223370
1498                       323762                       258642
1499                       339800                       271636
1500                       289988                       228539
1501                       309389                       253337
1502                       289359                       240951
1503                       317965                       249204
1504                       323359                       243186
1505                       313450                       249848
1506                       272986                       211934
1507                       285499                       221731
1508                       249496                       178683
1509                       737426                       690117
1510                       771939                       709816
1511                       758446                       706708
1512                       588522                       547612
1513                       555230                       513648
1514                       626738                       581899
1515                       707397                       658543
1516                       781895                       645890
1517                       780894                       697293
1518                       775889                       693913
1519                       742234                       661215
1520                       832068                       721416
1521                       800322                       716568
1522                       682854                       589490
1523                       751988                       672883
1524                       740533                       638404
1525                       754549                       688674
1526                       740291                       678533
1527                       739216                       682204
1528                       733613                       677997
1529                       777022                       722078
1530                       794064                       742930
1531                       883032                       815706
1532                       967206                       900291
1533                      1216977                      1148604
1534                      1312116                      1208641
1535                      1252367                      1129604
1536                      1120373                      1052771
1537                      1406275                      1285656
1538                      1188680                      1099882
1539                      1253507                      1154092
1540                      1328704                      1206950
1541                      1244428                      1156872
1542                      1210170                      1120295
1543                      1088404                       954845
1544                      1035648                       902142
1545                      1115911                       984679
1546                      1001739                       920108
1547                       954230                       869575
1548                       851860                       769079
1549                       869687                       782210
1550                       936644                       843930
1551                      1017429                       909308
1552                       894348                       810061
1553                       940038                       860636
1554                       929791                       864046
1555                       965974                       869917
1556                      1006703                       896750
1557                      1004628                       903841
1558                       868987                       784230
1559                       881104                       796191
1560                       764352                       669971
1561                        39603                        39603
1562                        45912                        45912
1563                        35320                        35320
1564                        38141                        38141
1565                        34726                        34726
1566                        40781                        40777
1567                        47080                        46868
1568                        33771                        33362
1569                        65281                        65081
1570                        43066                        42475
1571                        37551                        36298
1572                        43108                        43001
1573                        40650                        40432
1574                        28024                        27515
1575                        49249                        48165
1576                        52903                        52023
1577                        48439                        48350
1578                        54651                        54651
1579                        58876                        58876
1580                        65209                        65209
1581                        52404                        52401
1582                        66056                        66056
1583                        73523                        73518
1584                        62452                        62435
1585                       148840                       148812
1586                       176819                       176637
1587                       152474                       152425
1588                       108757                       108757
1589                       162094                       162094
1590                       110774                       110774
1591                        97961                        97961
1592                       137205                       137205
1593                       131916                       131905
1594                        71634                        71254
1595                        60372                        60355
1596                        56276                        56259
1597                        59938                        59937
1598                        89722                        89700
1599                        54403                        54289
1600                        37964                        37036
1601                        48050                        47856
1602                        48433                        48391
1603                        50909                        50607
1604                        42880                        42880
1605                        43743                        43736
1606                        53466                        53304
1607                        50853                        50015
1608                        46670                        46577
1609                        53548                        53543
1610                        64771                        64771
1611                        44864                        44864
1612                        52490                        52490
1613                        73781                        40642
1614                        53006                        36258
1615                        67993                        31407
1616                        42163                        24099
1617                        51277                        21537
1618                        60803                        27115
1619                        50391                        27743
1620                        49480                        31370
1621                        72567                        33748
1622                        47882                        29737
1623                        49235                        32916
1624                        66807                        31968
1625                        74081                        37192
1626                        46213                        29150
1627                        76242                        36956
1628                        56838                        37654
1629                        86222                        43015
1630                        63274                        44695
1631                        63317                        47517
1632                        64383                        45260
1633                        81233                        47243
1634                        60260                        43473
1635                        60386                        44879
1636                        79610                        42477
1637                        58395                        41732
1638                        95424                        58523
1639                        80757                        62187
1640                        92609                        55420
1641                        75174                        56502
1642                        86061                        48220
1643                        55906                        38303
1644                        76278                        37158
1645                        54408                        38066
1646                        51717                        35990
1647                        95445                        40398
1648                        56810                        38168
1649                        54828                        35505
1650                        71780                        31887
1651                        63601                        34092
1652                        47399                        29216
1653                        73046                        37453
1654                        49846                        34513
1655                        49331                        33997
1656                        61958                        31708
1657                        53147                        36700
1658                        44375                        20734
1659                        42392                        18229
1660                        80265                        26855
1661                        48865                        22592
1662                        43569                        18915
1663                        43410                        18762
1664                        52719                        19934
1665                        89293                        82776
1666                        98303                        88588
1667                        94650                        87738
1668                        75010                        67406
1669                        67938                        62262
1670                        80593                        74840
1671                        85346                        78170
1672                        92267                        76143
1673                        90087                        78873
1674                        94917                        84289
1675                        92671                        83102
1676                       103676                        83282
1677                       104611                        91636
1678                        97946                        82670
1679                        94858                        84698
1680                        91927                        78977
1681                        97929                        89096
1682                        95910                        86294
1683                        90761                        82479
1684                        86244                        78393
1685                        95410                        88554
1686                        93960                        85345
1687                       103354                        92025
1688                       115528                       103255
1689                       121262                       109196
1690                       136667                       122253
1691                       127827                       111168
1692                       128855                       117745
1693                       150847                       130970
1694                       132949                       116932
1695                       146362                       130734
1696                       146345                       129471
1697                       129556                       116807
1698                       134166                       118816
1699                       124874                       106617
1700                       117694                       100776
1701                       128778                       110321
1702                       108780                        95744
1703                       108167                        94087
1704                       100707                        88306
1705                        98707                        85472
1706                       116220                       102101
1707                       121769                       106814
1708                       107527                        93745
1709                       117032                       105514
1710                       107118                        97737
1711                       113793                       100108
1712                       119326                       104366
1713                       126670                       110991
1714                       105387                        93251
1715                       101558                        88980
1716                        86648                        72830
1717                       100892                        70749
1718                        97475                        72170
1719                       110083                        92028
1720                        60258                        60256
1721                        57663                        57663
1722                        64644                        63089
1723                        63652                        63178
1724                        62686                        62667
1725                        62364                        62364
1726                        64616                        64585
1727                        68191                        68129
1728                        71959                        71956
1729                        82686                        82686
1730                        60035                        59972
1731                        72212                        64530
1732                       184334                        74018
1733                       153645                        93116
1734                        84814                        84715
1735                        77456                        75885
1736                       134722                        95992
1737                       124789                        79670
1738                       124509                        80224
1739                       110773                        77011
1740                       115356                        84065
1741                       120165                        84711
1742                       135007                        98977
1743                       106702                        84854
1744                       122109                        99129
1745                       122310                        94240
1746                       122273                        90030
1747                       111991                        81585
1748                       106093                        84441
1749                       101431                        77703
1750                       108782                        77197
1751                       104422                        80245
1752                        94538                        76637
1753                        97564                        44647
1754                        85778                        39456
1755                        82913                        49272
1756                        67462                        43760
1757                        60884                        60875
1758                        67423                        67423
1759                        68487                        68487
1760                        64436                        64436
1761                        67731                        67727
1762                        71352                        71344
1763                        79619                        79619
1764                        82438                        82438
1765                        75561                        75558
1766                        70789                        70789
1767                        66305                        66305
1768                        92499                        92499
1769                        25061                        17512
1770                        26067                        17094
1771                        24469                        15525
1772                        17594                         8740
1773                        16518                         7947
1774                        18248                        12552
1775                        19392                        13712
1776                        34534                        13430
1777                        17836                        12000
1778                        24617                        13587
1779                        23740                        13949
1780                        21716                        14948
1781                        16593                        13301
1782                        25919                        14361
1783                        28427                        19393
1784                        29623                        21081
1785                        32404                        23119
1786                        28656                        20079
1787                        29055                        18578
1788                        31223                        21335
1789                        41787                        26619
1790                        29516                        23664
1791                        26188                        20546
1792                        26652                        23701
1793                        24020                        21786
1794                        41506                        31489
1795                        43528                        31542
1796                        39030                        29950
1797                        43460                        34042
1798                        37523                        28434
1799                        34582                        24083
1800                        58266                        26280
1801                        31812                        24985
1802                        30451                        23420
1803                        52968                        24324
1804                        32543                        22762
1805                        29235                        29007
1806                        27667                        27528
1807                        23850                        23653
1808                        14147                        14035
1809                        17814                        10044
1810                        23563                        17661
1811                        37704                        19742
1812                        24343                        19986
1813                        24832                        19166
1814                        24337                        19783
1815                        26111                        20250
1816                        31870                        20561
1817                        24417                        17600
1818                        19359                        12322
1819                        18068                        12166
1820                        14925                        11265
1821                       305294                       279127
1822                       273909                       255725
1823                       295915                       266175
1824                       258550                       243962
1825                       263490                       248450
1826                       278063                       260080
1827                       287219                       270313
1828                       284193                       266377
1829                       279410                       264897
1830                       252026                       237399
1831                       272685                       257340
1832                       261635                       248700
1833                       235041                       223135
1834                       233798                       221484
1835                       253448                       237139
1836                       292538                       271845
1837                       294901                       276259
1838                       289455                       270143
1839                       287127                       275003
1840                       292736                       277836
1841                       296215                       281136
1842                       291685                       276865
1843                       315859                       292787
1844                       348617                       332848
1845                       310581                       292683
1846                       413266                       396506
1847                       371995                       358088
1848                       375650                       358605
1849                       386476                       375290
1850                       356482                       353410
1851                       337125                       334424
1852                       342974                       338254
1853                       312541                       308422
1854                       349758                       344546
1855                       321412                       311075
1856                       292763                       278731
1857                       279933                       272779
1858                       253095                       246328
1859                       321150                       305407
1860                       294229                       286268
1861                       304302                       293708
1862                       304905                       300231
1863                       271060                       269499
1864                       292808                       291294
1865                       278266                       276280
1866                       233302                       231591
1867                       214140                       212347
1868                       237853                       235274
1869                       201319                       198193
1870                       208775                       206579
1871                       207261                       205300
1872                       178835                       177360
1873                       182057                       181763
1874                       185649                       185479
1875                       159305                       159009
1876                       369224                       363809
1877                       147729                       147268
1878                       151242                       150475
1879                       268719                       258913
1880                       138778                       136936
1881                       130547                       130164
1882                       180363                       178207
1883                       120077                       119843
1884                       217372                       211701
1885                        99750                        99417
1886                       124637                       124613
1887                       140762                       140535
1888                       116633                       116569
1889                        88635                        88369
1890                        73954                        73781
1891                       102046                       101671
1892                        78921                        78822
1893                        71330                        71232
1894                        69771                        69762
1895                        66375                        66240
1896                        61655                        56419
1897                        99286                        88289
1898                        62996                        59732
1899                        66679                        66557
1900                        91722                        89830
1901                       100409                        99951
1902                        90828                        90347
1903                       106764                       106687
1904                       104967                       104758
1905                        94882                        94743
1906                       121652                       121156
1907                        94925                        94891
1908                        94310                        94185
1909                       115500                       114658
1910                        67404                        67361
1911                        73792                        73229
1912                        57634                        57230
1913                        42332                        42292
1914                        58756                        58756
1915                        52975                        52751
1916                        83724                        79396
1917                        74647                        74573
1918                        53934                        51454
1919                        40125                        39000
1920                        59750                        48200
1921                        58282                        40428
1922                        48187                        34402
1923                        72844                        64832
1924                        76560                        61309
1925                        53100                        52597
1926                        46871                        46617
1927                        45930                        45574
1928                        45323                        45121
1929                        41941                        41607
1930                        33965                        33573
1931                        35806                        34671
1932                        41447                        39552
1933                        48800                        46810
1934                        46227                        44926
1935                        49953                        48620
1936                        50755                        48622
1937                        36511                        34301
1938                        35430                        33594
1939                        55341                        52100
1940                        81906                        80146
1941                        84578                        83519
1942                        97525                        97342
1943                       111928                       111602
1944                        83624                        83231
1945                        81636                        81029
1946                        84548                        84232
1947                        87245                        87050
1948                        91423                        90364
1949                        87823                        86456
1950                        89650                        88239
1951                        86923                        86724
1952                        89724                        89158
1953                        89974                        89685
1954                        83375                        82783
1955                        80819                        80543
1956                        77201                        76580
1957                        81190                        80611
1958                        92390                        91891
1959                        75046                        73839
1960                        82674                        81555
1961                        93048                        92655
1962                        93426                        92113
1963                        86016                        85180
1964                        67329                        66273
1965                        68437                        67696
1966                        68301                        68115
1967                        65638                        65493
1968                        68053                        67744
1969                        54365                        53806
1970                        60997                        49618
1971                        73022                        62051
1972                        61014                        41192
1973                        76676                        63206
1974                        60466                        46299
1975                        66316                        50818
1976                        55664                        44041
1977                        40779                        40770
1978                        33996                        33983
1979                        34366                        34366
1980                        26734                        26728
1981                        23240                        23240
1982                        27742                        27736
1983                        30101                        29467
1984                        30659                        29783
1985                        30561                        29677
1986                        28386                        27568
1987                        27557                        27252
1988                        29386                        28741
1989                        30815                        30425
1990                        23906                        23140
1991                        34710                        34070
1992                        44223                        43508
1993                        48356                        48304
1994                        45767                        45767
1995                        46960                        46960
1996                        44672                        44672
1997                        44376                        44376
1998                        43713                        43713
1999                        50052                        50052
2000                        53882                        53878
2001                        50901                        50741
2002                        59457                        58906
2003                        55432                        55427
2004                        58619                        58619
2005                        62287                        62287
2006                        62583                        61701
2007                        58557                        53588
2008                        59554                        56305
2009                        56076                        52613
2010                        64087                        57580
2011                        53432                        51896
2012                        50109                        49596
2013                        53735                        53008
2014                        46258                        44511
2015                        46780                        45789
2016                        43300                        42423
2017                        48873                        48818
2018                        44199                        44199
2019                        51568                        51568
2020                        47069                        47040
2021                        43387                        43046
2022                        47575                        41738
2023                        49271                        42969
2024                        47142                        40189
2025                        56189                        45878
2026                        47657                        36799
2027                        44915                        36161
2028                        36246                        31778
2029                        33496                        32877
2030                        28671                        27888
2031                        27033                        27030
2032                        22566                        22566
2033                        19308                        19308
2034                        25520                        25520
2035                        23210                        23210
2036                        24947                        24874
2037                        21707                        20935
2038                        19662                        19232
2039                        21570                        21570
2040                        26316                        26313
2041                        24789                        24789
2042                        19581                        19578
2043                        23770                        23770
2044                        28194                        28182
2045                        33050                        33001
2046                        30353                        29963
2047                        29296                        27838
2048                        29038                        29038
2049                        30114                        30114
2050                        28450                        28450
2051                        31073                        31073
2052                        33820                        33820
2053                        34430                        34430
2054                        39017                        39017
2055                        37249                        37249
2056                        36599                        36599
2057                        38424                        38417
2058                        38863                        38373
2059                        34881                        33050
2060                        35973                        34793
2061                        33804                        32382
2062                        36773                        34415
2063                        32581                        32327
2064                        27733                        27733
2065                        31213                        30624
2066                        30037                        28275
2067                        28282                        27849
2068                        24096                        22962
2069                        28189                        28170
2070                        28335                        27986
2071                        31548                        31448
2072                        26995                        26966
2073                        26074                        25883
2074                        28674                        26632
2075                        28555                        25982
2076                        30472                        27118
2077                        33310                        29161
2078                        29457                        25953
2079                        29842                        26556
2080                        23333                        21583
2081                        42090                        42085
2082                        45153                        45138
2083                        43254                        43251
2084                        38644                        38639
2085                        36592                        36575
2086                        39405                        39405
2087                        39707                        39707
2088                        42153                        42153
2089                        38516                        38516
2090                        42041                        42041
2091                        43964                        43964
2092                        45099                        45099
2093                        35122                        35122
2094                        39676                        39676
2095                        41186                        41186
2096                        47535                        47531
2097                        49976                        49967
2098                        48059                        48059
2099                        46984                        46984
2100                        49368                        49356
2101                        49058                        49041
2102                        48751                        48751
2103                        51584                        51550
2104                        54572                        54572
2105                        57129                        56977
2106                        67336                        67336
2107                        56932                        56932
2108                        55749                        55744
2109                        58386                        58386
2110                        53696                        53696
2111                        45785                        45776
2112                        48451                        48451
2113                        43325                        43325
2114                        44760                        44760
2115                        41486                        41282
2116                        46749                        46749
2117                        43418                        43393
2118                        41669                        41626
2119                        54074                        54049
2120                        62924                        62885
2121                        83611                        83611
2122                        48082                        48082
2123                        50003                        50003
2124                        39018                        39018
2125                        39235                        39235
2126                        41745                        41745
2127                        40435                        40435
2128                        39739                        39739
2129                        38819                        38819
2130                        39321                        39321
2131                        43730                        43723
2132                        39600                        39600
2133                       148005                       116383
2134                       145560                       111019
2135                       172045                       128053
2136                       142269                       114044
2137                        80863                        64858
2138                        73351                        59946
2139                        71573                        63091
2140                        65664                        58719
2141                        59472                        53567
2142                        51592                        48470
2143                        51370                        47914
2144                        37541                        35491
2145                        35913                        31952
2146                        36841                        34449
2147                        42657                        39561
2148                        51402                        46655
2149                        46041                        41719
2150                        47145                        45500
2151                        35146                        33583
2152                        39152                        38649
2153                        43037                        41132
2154                        44135                        42995
2155                        37884                        36718
2156                        45181                        41231
2157                        41887                        38418
2158                        52307                        46817
2159                        42519                        37941
2160                        45654                        41076
2161                        47696                        43523
2162                        50436                        46212
2163                        43436                        39195
2164                        34410                        29727
2165                        32986                        29400
2166                        46805                        43191
2167                        54378                        50153
2168                        43743                        37689
2169                        47833                        25454
2170                        50276                        26306
2171                        42526                        25464
2172                        45428                        25799
2173                        44551                        38488
2174                        43196                        37920
2175                        47822                        42720
2176                        38271                        32923
2177                        47811                        42235
2178                        39267                        33643
2179                        42168                        36418
2180                        41626                        36623
2181                        35060                        30091
2182                        32683                        27845
2183                        35484                        31808
2184                        36853                        30884
2185                        59699                        59094
2186                        65864                        65038
2187                        69908                        69023
2188                        55914                        55172
2189                        54694                        53993
2190                        56733                        55909
2191                        64629                        63811
2192                        78128                        77365
2193                        59794                        58929
2194                        69433                        68582
2195                        75526                        74725
2196                        72798                        72031
2197                        47921                        47092
2198                        65438                        64582
2199                        69656                        68665
2200                        76905                        76151
2201                        77769                        76963
2202                        79707                        78843
2203                        73082                        72131
2204                        80219                        79372
2205                        75267                        74158
2206                        77321                        76597
2207                        79428                        78534
2208                        82475                        81674
2209                        89795                        88478
2210                       101029                       100147
2211                        85243                        84459
2212                        86014                        84970
2213                        80432                        79360
2214                        77328                        76253
2215                        76087                        75078
2216                        77390                        76306
2217                        72595                        71643
2218                        74447                        73411
2219                        65328                        64043
2220                        79763                        78504
2221                        74093                        72532
2222                        75081                        73790
2223                        90075                        88604
2224                       110684                       109753
2225                       106219                       105385
2226                        94630                        93761
2227                        96460                        95540
2228                        67758                        66973
2229                        80955                        80089
2230                        78180                        77307
2231                        74765                        74004
2232                        65345                        64393
2233                        83161                        82293
2234                        78810                        78242
2235                        86365                        85707
2236                        82484                        82034
2237                       163283                       162931
2238                       170626                       170458
2239                       173617                       173538
2240                       380464                       380298
2241                       141505                       141430
2242                       149575                       149358
2243                       274024                       273223
2244                       173012                       172749
2245                       143119                       143027
2246                       179826                       179544
2247                       141312                       141267
2248                       236162                       234219
2249                       116491                       115647
2250                       146172                       146143
2251                       178390                       178375
2252                       164191                       164176
2253                       124196                       124129
2254                       112137                       112127
2255                       138531                       138486
2256                       110369                       110361
2257                       120360                       120360
2258                       115293                       115289
2259                        92421                        92386
2260                        90163                        90074
2261                       119004                       117907
2262                       101373                        95899
2263                        84518                        84438
2264                       110589                       110537
2265                       119759                       119724
2266                        78782                        78761
2267                        99890                        99789
2268                       109669                       109172
2269                        87880                        86751
2270                       123760                       111289
2271                        95493                        94996
2272                        89268                        89235
2273                       103707                       103533
2274                        65951                        65784
2275                        69588                        69293
2276                        75187                        74523
2277                        82910                        82899
2278                        79079                        79058
2279                        69966                        69942
2280                       110718                       110637
2281                        82809                        82780
2282                        58247                        57771
2283                        67361                        65240
2284                       143117                       142049
2285                        61449                        61054
2286                        68251                        67520
2287                        86855                        81221
2288                       111555                        96695
2289                        57250                        48182
2290                        49488                        44629
2291                        53690                        43816
2292                        46317                        40092
2293                        42801                        33357
2294                        43346                        34239
2295                        35144                        29409
2296                        39719                        34386
2297                        58741                        44763
2298                        52519                        43925
2299                        49369                        40996
2300                        61148                        43009
2301                        58650                        38750
2302                        51329                        42224
2303                        71477                        49597
2304                        69967                        55240
2305                        86518                        68115
2306                        75881                        70667
2307                        89643                        84625
2308                        84760                        78820
2309                        87081                        75517
2310                        77551                        72041
2311                        85645                        80982
2312                        77507                        67097
2313                        79172                        73162
2314                        89264                        78695
2315                        94248                        89211
2316                        96387                        84822
2317                        88543                        82279
2318                        91281                        80178
2319                        76250                        70488
2320                        81735                        69674
2321                        82454                        76994
2322                        69855                        64229
2323                        86801                        70271
2324                        68331                        63208
2325                        78052                        72169
2326                        70520                        57991
2327                        61467                        53591
2328                        71512                        64967
2329                        83672                        71611
2330                        63962                        58791
2331                        62840                        58373
2332                        68425                        57885
2333                        70004                        64068
2334                        60250                        44927
2335                        59544                        44771
2336                        79707                        51793
2337                        64164                        45690
2338                        56976                        35312
2339                        63368                        44865
2340                        68870                        52556
2341                       852656                       663310
2342                       759069                       555357
2343                       671313                       554564
2344                       639039                       496733
2345                       601012                       505844
2346                       668922                       550979
2347                       767186                       600933
2348                       648983                       485540
2349                       660163                       478366
2350                       583832                       475267
2351                       572923                       489000
2352                       624296                       504922
2353                       691700                       517822
2354                       608982                       480873
2355                       600987                       478669
2356                       728228                       533041
2357                       723134                       571900
2358                       612042                       535065
2359                       599226                       513745
2360                       626262                       536381
2361                       616583                       529408
2362                       586106                       492931
2363                       640741                       511309
2364                       766442                       589127
2365                       668330                       547333
2366                       857319                       754239
2367                       869763                       678138
2368                       857459                       683943
2369                       874885                       716742
2370                       778329                       662253
2371                       678141                       530629
2372                       636647                       545155
2373                       616788                       528432
2374                       685755                       533598
2375                       713924                       546260
2376                       619799                       519975
2377                       638185                       538971
2378                       590480                       536035
2379                       730848                       670638
2380                       696228                       633029
2381                       665688                       540561
2382                       653367                       522678
2383                       713532                       537992
2384                       649550                       518799
2385                       640697                       529675
2386                       642455                       540024
2387                       573512                       518540
2388                       646594                       519848
2389                       569013                       476250
2390                       554739                       497106
2391                       630813                       533599
2392                       570683                       442218
2393                       689386                       425319
2394                       535050                       399344
2395                       598735                       326312
2396                       421482                       275520
2397                       532751                       280569
2398                       569248                       319822
2399                       472051                       313846
2400                       453680                       309653
2401                       664707                       353189
2402                       510769                       329672
2403                       545844                       355763
2404                       755016                       356708
2405                       732123                       340718
2406                       494766                       307494
2407                       804545                       382667
2408                       608183                       397112
2409                       881614                       472040
2410                       625962                       489650
2411                       644139                       520131
2412                       665007                       529014
2413                       795955                       525550
2414                       624082                       502278
2415                       624198                       515494
2416                       710304                       471730
2417                       629756                       501415
2418                       892289                       621426
2419                       780701                       648106
2420                       891883                       619129
2421                       749424                       611441
2422                       819542                       551433
2423                       602974                       473339
2424                       747294                       457339
2425                       599906                       470993
2426                       559134                       437056
2427                       880125                       496137
2428                       596410                       461693
2429                       604810                       455796
2430                       664121                       371569
2431                       603912                       387484
2432                       526377                       379305
2433                       722405                       447949
2434                       499505                       375573
2435                       528578                       413604
2436                       650176                       396513
2437                       564496                       437764
2438                       496957                       295183
2439                       457962                       272767
2440                       776257                       359145
2441                       502397                       281141
2442                       484236                       258542
2443                       475337                       260164
2444                       568731                       287820
2445                        22040                        21900
2446                        24499                        24499
2447                        22274                        22269
2448                        39461                        38947
2449                        15204                        15204
2450                        14000                        14000
2451                        26395                        26395
2452                        16116                        16116
2453                        13659                        13659
2454                        14771                        14721
2455                        11299                        11299
2456                        18479                        18479
2457                        10055                        10055
2458                        12539                        12539
2459                        12115                        12115
2460                        12476                        12476
2461                        12820                        12820
2462                         9430                         9428
2463                        11940                        11869
2464                         9950                         9950
2465                        11762                        11762
2466                        11955                        11955
2467                        12061                        12061
2468                        11475                        11475
2469                        13755                        13595
2470                        11593                        11245
2471                         9945                         9945
2472                        12770                        12770
2473                        12621                        12621
2474                         9183                         9183
2475                        12797                        12797
2476                        14362                        14362
2477                        12711                        12711
2478                        14372                        12193
2479                        12312                        12127
2480                        12544                        12544
2481                        14558                        14558
2482                        10499                        10499
2483                        10175                        10091
2484                         9696                         9376
2485                        10906                        10906
2486                         8879                         8879
2487                         7518                         7514
2488                        13926                        13805
2489                        12095                        12095
2490                         8453                         8320
2491                         5326                         5135
2492                        12313                        12277
2493                         8010                         8010
2494                         8489                         7986
2495                         8595                         6899
2496                        10003                         9556
2497                        76409                        58430
2498                        71186                        59160
2499                        76858                        55878
2500                        61812                        53742
2501                        64704                        57854
2502                        67846                        60331
2503                        68860                        61783
2504                        64198                        59269
2505                        68464                        64373
2506                        61819                        56579
2507                        55607                        51312
2508                        55708                        52275
2509                        49922                        46870
2510                        42643                        40596
2511                        49957                        47580
2512                        57626                        55795
2513                        58384                        58293
2514                        55562                        55153
2515                        56623                        56607
2516                        59346                        59339
2517                        60178                        60174
2518                        61459                        61457
2519                        58136                        58136
2520                        63652                        63652
2521                        56652                        56426
2522                        69956                        69314
2523                        69411                        69372
2524                        74925                        74925
2525                        73636                        73588
2526                        63211                        63207
2527                        61137                        61113
2528                        62241                        62233
2529                        52815                        52815
2530                        59623                        59621
2531                        47810                        47810
2532                        48897                        48895
2533                        45328                        45323
2534                        38323                        38323
2535                        46878                        46762
2536                        46843                        46687
2537                        47591                        47514
2538                        50344                        50191
2539                        41664                        41664
2540                        46026                        46020
2541                        43670                        43661
2542                        47525                        47494
2543                        41883                        41881
2544                        49768                        49768
2545                        46376                        46376
2546                        41019                        41015
2547                        44512                        44510
2548                        38412                        38401
2549                        17941                        17941
2550                        16474                        16474
2551                        16455                        16455
2552                        15306                        15306
2553                        13839                        13839
2554                        15905                        15905
2555                        16556                        16365
2556                        17113                        16691
2557                        17722                        17375
2558                        17569                        16893
2559                        19729                        19365
2560                        16399                        15861
2561                        17417                        16884
2562                        10110                         9981
2563                         8941                         8492
2564                        11436                        10961
2565                        10081                        10081
2566                         9064                         9064
2567                        11661                        11661
2568                        11261                        11261
2569                        10860                        10860
2570                        13396                        13396
2571                        17193                        17193
2572                        23357                        23357
2573                        28610                        28512
2574                        29063                        28846
2575                        29972                        29941
2576                        24061                        24061
2577                        34559                        34559
2578                        27287                        27287
2579                        29065                        29065
2580                        26416                        26416
2581                        26693                        26524
2582                        32893                        32562
2583                        25737                        25406
2584                        24599                        24364
2585                        27146                        27009
2586                        24171                        23945
2587                        24602                        24340
2588                        22498                        22377
2589                        24223                        24223
2590                        19043                        19021
2591                        21556                        21318
2592                        24331                        24278
2593                        20081                        19817
2594                        18241                        18119
2595                        24083                        23658
2596                        25845                        25793
2597                        21145                        20725
2598                        14818                        14818
2599                        19442                        19442
2600                        17715                        17715
2601                        94152                        55851
2602                        68729                        50716
2603                        82354                        42015
2604                        51757                        33252
2605                        75625                        36786
2606                        77722                        46934
2607                        65219                        43524
2608                        59451                        40755
2609                        90340                        44449
2610                        72992                        35990
2611                        90094                        49373
2612                       135835                        47783
2613                       137297                        52595
2614                        82386                        42717
2615                       141686                        50247
2616                        89641                        50111
2617                       136435                        60131
2618                        82700                        64691
2619                        82412                        66986
2620                        93500                        75599
2621                       111094                        75694
2622                        83660                        68312
2623                        83483                        67480
2624                       100747                        64831
2625                        84600                        68163
2626                       128488                        91543
2627                       112201                        94295
2628                       116950                        80513
2629                       100710                        82324
2630                       101727                        65865
2631                        73643                        57880
2632                        97550                        58347
2633                        74649                        58506
2634                        68871                        53036
2635                       118179                        62417
2636                        81182                        60977
2637                        78191                        56279
2638                        89504                        46251
2639                        85296                        51105
2640                        66588                        45156
2641                        96616                        55623
2642                        64027                        46496
2643                        73768                        55748
2644                        87472                        50763
2645                        78737                        62199
2646                        67663                        34123
2647                        59249                        25517
2648                       116945                        50531
2649                        68895                        30325
2650                        63067                        25006
2651                        56919                        19605
2652                        75992                        33448
2653                      6288852                      4850404
2654                      5842744                      4618390
2655                      6364280                      4964462
2656                      6302263                      5005077
2657                      4789009                      3901953
2658                      5347836                      4178583
2659                      6174346                      4854619
2660                      5151514                      4058501
2661                      5268565                      3966597
2662                      4957516                      3918658
2663                      4910239                      3930198
2664                      5447001                      4153478
2665                      4905189                      3664891
2666                      4417407                      3476493
2667                      5188361                      3938275
2668                      5363751                      4072662
2669                      5581833                      4363708
2670                      5054348                      4316352
2671                      4956010                      4318011
2672                      5114912                      4342839
2673                      5310327                      4391462
2674                      5039517                      4322985
2675                      5429599                      4627252
2676                      5821533                      4757799
2677                      5891860                      5067198
2678                      6743615                      5803954
2679                      6557305                      5690216
2680                      6464120                      5517910
2681                      6736304                      5893642
2682                      6293217                      5304563
2683                      5713003                      4967232
2684                      5930474                      5094263
2685                      5444854                      4747545
2686                      5818348                      4991626
2687                      5783174                      4647155
2688                      5303307                      4584203
2689                      5545447                      4696225
2690                      5234561                      4400469
2691                      5162693                      4477300
2692                      5105697                      4487887
2693                      5089974                      4275071
2694                      4916591                      4287622
2695                      5272967                      4583727
2696                      4908091                      4129139
2697                      5016747                      4336247
2698                      4756763                      4096226
2699                      4709853                      4022475
2700                      5384428                      4216452
2701                      4800193                      3978637
2702                      4652070                      3873041
2703                      4517384                      3783261
2704                      4498940                      3585322
2705                      1410682                       838268
2706                      1274757                       843691
2707                      1370014                       851507
2708                      1945832                      1360761
2709                       936711                       688674
2710                      1226468                       730580
2711                      1792438                      1080986
2712                      1114328                       770544
2713                      1139428                       717110
2714                      1246074                       823728
2715                      1119504                       689894
2716                      1354079                       947889
2717                       968402                       630337
2718                       975942                       669129
2719                      1093844                       751408
2720                      1162462                       733844
2721                      1006861                       696240
2722                       864029                       624783
2723                       874951                       709163
2724                       926274                       685993
2725                       958695                       667604
2726                       897636                       643461
2727                       911221                       645013
2728                      1008593                       665158
2729                      1019569                       731844
2730                       959673                       767183
2731                       900453                       719728
2732                       977615                       807806
2733                       991776                       776961
2734                       952728                       683696
2735                       815979                       665542
2736                       775857                       678849
2737                       789666                       608751
2738                       897528                       678317
2739                       799142                       611907
2740                       748955                       614557
2741                       849213                       608287
2742                       676640                       469625
2743                       682108                       544939
2744                       639278                       508577
2745                       591547                       515039
2746                       622778                       535269
2747                       623079                       524273
2748                       686343                       590706
2749                       764384                       587463
2750                       611582                       542973
2751                       705601                       579413
2752                       877588                       705334
2753                       662668                       521878
2754                       709209                       527359
2755                       709812                       598705
2756                       839639                       688813
2757                       167414                       123158
2758                       139645                        90393
2759                        94574                        83053
2760                        69838                        68234
2761                        68483                        67265
2762                        77857                        74953
2763                        80955                        77112
2764                        80411                        79009
2765                        76855                        75700
2766                        73819                        72718
2767                        78483                        77611
2768                        80879                        79842
2769                        74504                        72761
2770                        69858                        68313
2771                        89869                        78780
2772                       131259                        82933
2773                       103086                        91173
2774                        79793                        78731
2775                        91202                        87927
2776                       150890                       125837
2777                       134020                       100912
2778                       113968                        95673
2779                       114021                        97555
2780                       133190                       115238
2781                       123188                       107273
2782                       165010                       146199
2783                       149613                       130392
2784                       175172                       148133
2785                       168707                       126509
2786                       138124                       103719
2787                       110955                        78424
2788                        99448                        82335
2789                        96981                        74460
2790                       102870                        79189
2791                       108047                        80712
2792                       114261                        80697
2793                       101991                        76595
2794                        97223                        71587
2795                        98907                        91531
2796                        94573                        88600
2797                        91134                        89233
2798                        89094                        86399
2799                        88192                        85848
2800                        88902                        86801
2801                        88582                        86051
2802                        76807                        73763
2803                        83459                        81116
2804                        85808                        82066
2805                        66836                        65073
2806                        72437                        71564
2807                        80110                        78503
2808                       168014                       165202
2809                        11432                        11017
2810                         9505                         8877
2811                        12822                        12177
2812                         6704                         6476
2813                         8254                         7974
2814                         9504                         9238
2815                        10213                         9791
2816                        10905                        10474
2817                         9235                         9153
2818                        10274                        10160
2819                        10793                        10434
2820                        10170                         9744
2821                        13771                        13346
2822                         9726                         9587
2823                         9467                         8958
2824                        11660                        10839
2825                        15660                        15340
2826                        15428                        14368
2827                        16918                        15811
2828                        13530                        12435
2829                        15947                        14597
2830                        19352                        18803
2831                        21531                        18639
2832                        15614                        13440
2833                        14032                        10876
2834                        25265                        21873
2835                        18469                        16480
2836                        20647                        18527
2837                        20011                        18368
2838                        19459                        17386
2839                        20251                        19520
2840                        23197                        22571
2841                        20092                        19803
2842                        22930                        22698
2843                         9289                         8919
2844                        13921                        13464
2845                        15467                        14643
2846                        13114                        12671
2847                        10527                        10058
2848                        13538                        13037
2849                        12484                        12286
2850                        11239                        10818
2851                        14912                        14476
2852                        14794                        13740
2853                        14438                        12281
2854                        19222                        17663
2855                        10201                         9350
2856                        20701                        19789
2857                        24673                        23926
2858                        18105                        17981
2859                        11468                        11294
2860                         8230                         8056
2861                       210731                       118884
2862                       190882                       114872
2863                       179311                       112575
2864                       171591                        67807
2865                       154750                        89195
2866                       201556                       128442
2867                       158765                        92309
2868                       161367                        82411
2869                       176421                        94305
2870                       183075                       110435
2871                       188578                        87593
2872                       195267                        95660
2873                       188074                       104368
2874                       183994                       109841
2875                       222837                       139749
2876                       256799                       194086
2877                       202457                       126235
2878                       203169                       132127
2879                       207466                       160465
2880                       242570                       182840
2881                       192927                       131851
2882                       228626                       161932
2883                       187327                       120773
2884                       188319                       108732
2885                       225043                       146618
2886                       328342                       216115
2887                       251715                       199572
2888                       234417                       148946
2889                       232431                       169986
2890                       226206                       112958
2891                       269397                        77155
2892                       267531                        91576
2893                       296862                       126899
2894                       284414                        77088
2895                       282139                        64801
2896                       231030                        71927
2897                       197263                        66462
2898                       189301                        69497
2899                        99269                        62657
2900                       111107                        78825
2901                       110120                        75569
2902                       140294                        73593
2903                        95584                        62105
2904                       122138                        60231
2905                        83445                        55736
2906                       109209                        74366
2907                       171633                        77184
2908                        87653                        54822
2909                       123185                        64717
2910                        89797                        56526
2911                       113323                        54693
2912                        65593                        43675
2913                       146899                       142957
2914                       137281                       133753
2915                       164506                       153477
2916                       159678                       157704
2917                       148713                       146287
2918                       192457                       189673
2919                       155102                       153318
2920                       150653                       149604
2921                       131614                       130683
2922                       163941                       163071
2923                       191620                       190382
2924                       187292                       185599
2925                       192926                       190861
2926                       181742                       180491
2927                       194985                       191239
2928                       168132                       162753
2929                       201546                       198132
2930                       200822                       194473
2931                       223234                       203758
2932                       227904                       219530
2933                       213877                       210316
2934                       201103                       197041
2935                       203162                       194810
2936                       246997                       233727
2937                       232729                       217648
2938                       229202                       214852
2939                       209424                       202616
2940                       211678                       203570
2941                       214115                       207728
2942                       215173                       203788
2943                       206607                       200150
2944                       216402                       211306
2945                       196640                       189850
2946                       207325                       204118
2947                       197920                       194073
2948                       199687                       196063
2949                       189899                       185709
2950                       189334                       186798
2951                       173047                       170235
2952                       182951                       179810
2953                       183581                       180892
2954                       187337                       184423
2955                       194487                       191745
2956                       165166                       162543
2957                       186408                       180042
2958                       175160                       168368
2959                       222601                       217667
2960                       164795                       161204
2961                       239435                       233610
2962                       216531                       213939
2963                       182859                       180461
2964                       151703                       149408
2965                        34131                        33449
2966                        27796                        27464
2967                        53565                        53191
2968                        31509                        31278
2969                        20453                        20442
2970                        24106                        24091
2971                        26056                        25875
2972                        24070                        23559
2973                        23626                        22910
2974                        32028                        30915
2975                        33623                        32414
2976                        37496                        28895
2977                        63440                        55975
2978                        40136                        34566
2979                        33508                        28303
2980                        39834                        38899
2981                        33326                        31600
2982                        33861                        32152
2983                        36296                        34718
2984                        36733                        36021
2985                        35931                        35664
2986                        36950                        36950
2987                        36902                        36365
2988                        39761                        37730
2989                        88320                        87358
2990                        93735                        93645
2991                        88075                        88025
2992                        86206                        86108
2993                        31349                        31095
2994                        59234                        59207
2995                        48278                        47343
2996                        40660                        40607
2997                        54824                        52269
2998                        57805                        57440
2999                        46417                        46258
3000                        39684                        39671
3001                        54540                        53940
3002                        33908                        33663
3003                        40019                        39916
3004                        45033                        44764
3005                        29426                        29352
3006                        43205                        42384
3007                        43027                        42482
3008                        37710                        37217
3009                        42168                        42112
3010                        28107                        28013
3011                        48078                        47556
3012                        34327                        33947
3013                        31509                        29875
3014                        41297                        40338
3015                        40667                        40584
3016                        46530                        46476
3017                        92551                        91482
3018                        77581                        76135
3019                        92391                        90449
3020                        71859                        71378
3021                        66854                        66399
3022                       105976                       105941
3023                        74205                        74205
3024                        73979                        73804
3025                        62709                        62705
3026                        87719                        86923
3027                        97340                        97340
3028                        90214                        90214
3029                        92946                        92946
3030                        97376                        97376
3031                        96394                        96062
3032                       106991                       106091
3033                       126133                       125075
3034                       148438                       146016
3035                       209378                       201034
3036                       220254                       215552
3037                       165788                       165457
3038                       148935                       147430
3039                       141194                       137805
3040                       146586                       142602
3041                       157610                       153175
3042                       148159                       143276
3043                       154263                       151760
3044                       143632                       141651
3045                       154895                       152478
3046                       156775                       155072
3047                       131514                       129466
3048                       148327                       146905
3049                       122877                       122534
3050                       138959                       138863
3051                       136089                       136035
3052                       124238                       123012
3053                       131170                       131036
3054                       117738                       117521
3055                       106393                       106262
3056                       120502                       120389
3057                       114436                       114286
3058                       111590                       111440
3059                       123833                       123551
3060                       103328                       102683
3061                       122278                       120040
3062                       125640                       123660
3063                       136075                       134179
3064                       119047                       118219
3065                       159185                       158806
3066                       141551                       141307
3067                       127360                       127178
3068                        91849                        91580
3069                        37361                        35701
3070                        31888                        29697
3071                        25053                        23316
3072                        16977                        15683
3073                        21661                        21641
3074                        24940                        24940
3075                        28873                        28873
3076                        23613                        23400
3077                        13875                        13875
3078                        58521                        58521
3079                        68051                        68051
3080                        65113                        65113
3081                        68176                        68176
3082                        67737                        67732
3083                        50144                        49338
3084                        41089                        39987
3085                        24524                        24296
3086                        47650                        46025
3087                        47493                        46013
3088                        38774                        37629
3089                        27930                        26110
3090                        41589                        40894
3091                        38987                        34597
3092                        68608                        66178
3093                        94164                        89912
3094                        93373                        88473
3095                        84649                        81949
3096                        87514                        84829
3097                        97870                        95730
3098                        92813                        90283
3099                        63996                        63441
3100                        93614                        92304
3101                        90144                        90144
3102                       101271                       101271
3103                        98639                        98639
3104                        98706                        98706
3105                       100546                       100546
3106                        94989                        94766
3107                        81594                        81543
3108                        83262                        83262
3109                        76855                        76855
3110                        84758                        84758
3111                        79206                        79197
3112                        73642                        72862
3113                        72341                        69018
3114                        75569                        73329
3115                        99215                        97444
3116                        80673                        79715
3117                        92562                        92435
3118                        80938                        80938
3119                        80759                        80759
3120                        71824                        71824
3121                      1543244                      1405420
3122                      1482119                      1313839
3123                      1653880                      1451476
3124                      1610488                      1553052
3125                      1282556                      1202939
3126                      1251188                      1161050
3127                      1040994                       952497
3128                       829275                       763935
3129                       734908                       686375
3130                      1289999                      1201529
3131                      1533380                      1423671
3132                      1481099                      1379624
3133                      1507257                      1420424
3134                      1675327                      1583962
3135                      1535468                      1434870
3136                      1671422                      1576950
3137                      1892992                      1819642
3138                      2001072                      1924480
3139                      1778186                      1679257
3140                      1580995                      1476928
3141                      1741286                      1616257
3142                      1710965                      1581211
3143                      1634174                      1526434
3144                      1688132                      1563979
3145                      1912392                      1771310
3146                      1882796                      1722082
3147                      1778214                      1641401
3148                      1754229                      1622057
3149                      1709717                      1571460
3150                      1938636                      1739148
3151                      1739179                      1546212
3152                      1754547                      1594507
3153                      1499923                      1325206
3154                      2140204                      1606312
3155                      1924049                      1421240
3156                      1744793                      1467255
3157                      1769205                      1659338
3158                      1944064                      1740557
3159                      1673304                      1454479
3160                      2207293                      1926354
3161                      2092118                      1883192
3162                      2094020                      1888086
3163                      2234833                      1981931
3164                      2391861                      2091748
3165                      2256054                      2073467
3166                      2555663                      2207055
3167                      3056113                      2693843
3168                      2024180                      1874982
3169                      2285896                      2122673
3170                      1759854                      1579234
3171                      2131754                      1793640
3172                      2301885                      1950429
3173                        61550                        51248
3174                        54653                        44605
3175                        52402                        46293
3176                        59783                        48017
3177                        49867                        44005
3178                        48743                        42722
3179                        45378                        38437
3180                        52448                        45862
3181                        47316                        40259
3182                        52719                        47060
3183                        59418                        48824
3184                        63301                        54704
3185                        62416                        53333
3186                        63932                        55653
3187                        69105                        57456
3188                        69080                        61215
3189                        70717                        62373
3190                        60974                        58688
3191                        65879                        64096
3192                        65678                        60860
3193                        59438                        55636
3194                        54443                        50678
3195                        64304                        57525
3196                        63385                        58481
3197                        70310                        62604
3198                        75235                        64810
3199                        56512                        52291
3200                        59636                        52831
3201                        45826                        40822
3202                        53254                        45859
3203                        51877                        45121
3204                        49856                        45580
3205                        62552                        51589
3206                        65349                        57142
3207                        64335                        52070
3208                        60616                        48775
3209                        57169                        50674
3210                        60978                        48991
3211                        54550                        47756
3212                        50652                        45385
3213                        51414                        45427
3214                        61900                        50890
3215                        49719                        44120
3216                        53739                        43150
3217                        50507                        45927
3218                        52195                        44808
3219                        60211                        42530
3220                        43085                        35670
3221                        53618                        42137
3222                        43493                        37726
3223                        50533                        42015
3224                        41674                        38144
3225                        87253                        81571
3226                        73208                        65278
3227                        96473                        87752
3228                        67168                        64475
3229                        57320                        56502
3230                        58080                        55015
3231                        64298                        63466
3232                        59042                        57804
3233                        54407                        48140
3234                        65256                        55554
3235                        71400                        61522
3236                        71003                        60216
3237                        69709                        58004
3238                        76580                        65666
3239                        87580                        80619
3240                        99814                        97150
3241                        85223                        82377
3242                       100013                        92534
3243                       105729                       102614
3244                       102416                        99833
3245                       115223                       113970
3246                       105615                       104112
3247                       120607                       113683
3248                       139483                       122026
3249                       127546                       118625
3250                       149295                       143295
3251                       120604                       115881
3252                       103647                        99766
3253                       101084                        98097
3254                       101566                        96845
3255                       133791                       129035
3256                       130127                       121786
3257                       114085                       108571
3258                       145940                       137881
3259                       107823                       101941
3260                       101521                        96824
3261                       108694                       101842
3262                       102559                        91081
3263                        79444                        75467
3264                        99573                        95289
3265                        97128                        93973
3266                        88621                        86429
3267                        87830                        85607
3268                        92680                        90778
3269                       103715                        93142
3270                       125171                       106297
3271                       151636                       129791
3272                        93311                        92124
3273                        90661                        88261
3274                       103379                        87560
3275                       122381                        82671
3276                       113925                        80770
3277                       171022                        26985
3278                       112587                        23083
3279                       163274                        21945
3280                       218536                        24194
3281                       104698                        19930
3282                       153899                        23679
3283                       153091                        23980
3284                       143431                        16151
3285                       149323                        11631
3286                       175195                        18786
3287                       149404                        32353
3288                       171435                        21810
3289                       170316                        22841
3290                       151438                        23813
3291                       168419                        30496
3292                       137723                        29123
3293                       128570                        25361
3294                       126954                        27934
3295                       132132                        28706
3296                       140909                        35322
3297                       127786                        27222
3298                       116618                        27837
3299                       119311                        25437
3300                       132003                        25789
3301                       106448                        23189
3302                       150874                        28096
3303                       104204                        24577
3304                       135925                        25144
3305                        72784                        23417
3306                       107780                        19177
3307                        92179                        20884
3308                        95334                        18281
3309                        73747                        14078
3310                       108920                        17362
3311                        63839                        17965
3312                        63022                        19112
3313                        58377                        16056
3314                        71862                        21424
3315                        66924                        13781
3316                        74730                        18832
3317                        73299                        18929
3318                        73399                        19111
3319                        77343                        17632
3320                        77973                        18382
3321                        63989                        17168
3322                        72930                        18359
3323                        89909                        22077
3324                        53550                        16807
3325                        71394                        19634
3326                        75574                        20728
3327                        57217                        17942
3328                        51551                        12613
3329                        56576                        55084
3330                        41403                        38839
3331                        44058                        41891
3332                        81232                        76008
3333                        55358                        53685
3334                        44676                        43074
3335                        36229                        34146
3336                        33976                        32557
3337                        45753                        43903
3338                        48812                        46731
3339                        45421                        43151
3340                        40027                        36597
3341                        41422                        36953
3342                        42089                        41378
3343                        52966                        51334
3344                        60118                        58343
3345                        56573                        55935
3346                        60632                        57070
3347                        48374                        42941
3348                        57414                        53549
3349                        52168                        38683
3350                        46239                        38378
3351                        59311                        46627
3352                        46572                        38847
3353                        48834                        32849
3354                        71026                        62164
3355                        54316                        45986
3356                        55967                        45124
3357                        58052                        49307
3358                        47750                        35846
3359                        61912                        53230
3360                        59762                        48050
3361                        57075                        33941
3362                        45162                        26508
3363                        56828                        48051
3364                        64362                        54682
3365                        39644                        27199
3366                        42182                        31689
3367                        46722                        22994
3368                        45109                        21568
3369                        42455                        22446
3370                        42293                        26468
3371                        46460                        23754
3372                        36160                        22423
3373                        26864                        19801
3374                        35671                        27387
3375                        42525                        30226
3376                        33040                        21260
3377                        38437                        28562
3378                        31098                        23123
3379                        29742                        21493
3380                        33191                        18463
3381                       379827                       374905
3382                       323552                       315925
3383                       285875                       279258
3384                       340356                       333770
3385                       245077                       242624
3386                       220453                       219494
3387                       210000                       209727
3388                       216301                       215425
3389                       209815                       208940
3390                       330230                       323805
3391                       303387                       296851
3392                       326492                       322926
3393                       310297                       301905
3394                       346198                       319927
3395                       461886                       454624
3396                       361978                       350013
3397                       412176                       401417
3398                       377459                       366510
3399                       353847                       351624
3400                       274880                       270626
3401                       287648                       269822
3402                       275103                       253661
3403                       304680                       281848
3404                       310337                       303926
3405                       288800                       267623
3406                       371801                       324925
3407                       320008                       298365
3408                       291091                       272250
3409                       269435                       251773
3410                       299160                       283260
3411                       320630                       301233
3412                       326877                       300180
3413                       360040                       341083
3414                       354629                       331926
3415                       378394                       356219
3416                       379621                       352619
3417                       348102                       318316
3418                       347478                       316405
3419                       291016                       269775
3420                       289056                       270163
3421                       275149                       254808
3422                       193288                       178757
3423                       230798                       213428
3424                       221148                       202051
3425                       169859                       151329
3426                       166555                       150047
3427                       194691                       155053
3428                       159109                       121051
3429                       152089                       128164
3430                       114875                        99603
3431                       137479                       127169
3432                       148481                       144359
3433                       419604                       267985
3434                       346526                       246935
3435                       422601                       303763
3436                       437161                       141280
3437                       223104                        81706
3438                       287224                       164217
3439                       314723                        84341
3440                       256168                        81361
3441                       221228                        76675
3442                       308471                        67816
3443                       371570                        91677
3444                       354730                        85265
3445                       363284                        76213
3446                       360925                        91075
3447                       408207                        87026
3448                       437111                        93898
3449                       505653                        83144
3450                       523670                       131367
3451                       247804                       119820
3452                       328835                       100510
3453                       324912                       151221
3454                       330973                       200378
3455                       356072                       135291
3456                       403121                       148178
3457                       393893                       137891
3458                       366955                       200147
3459                       360828                       146704
3460                       357270                        96130
3461                       377458                        91439
3462                       411094                        83338
3463                       480758                        79916
3464                       487465                        79603
3465                       501314                        71486
3466                       491570                        73293
3467                       389135                       155355
3468                       292155                        89444
3469                       525470                        59673
3470                       491382                       178430
3471                       441382                        39142
3472                       336914                        47124
3473                       495600                        46784
3474                       371224                        50280
3475                       264162                        47418
3476                       576746                        43137
3477                       453361                        43380
3478                       492510                        43324
3479                       558004                        50218
3480                       427062                        45613
3481                       749722                        43669
3482                       692555                        43027
3483                       544300                        44732
3484                       644701                        33034
3485                       163252                       161041
3486                       119554                       117398
3487                       148271                       145975
3488                       192476                       188723
3489                       123444                       121147
3490                       115621                       114230
3491                       107993                       107106
3492                        98886                        97806
3493                        72005                        70937
3494                        83193                        80684
3495                       114930                       112345
3496                       110890                       104612
3497                       126035                       118414
3498                       126240                       124696
3499                       152569                       147793
3500                       148242                       143847
3501                       138509                       138186
3502                       165115                       164229
3503                       128531                       127062
3504                       170766                       168989
3505                       144426                       124980
3506                       132333                       122543
3507                       140062                       111539
3508                       118071                       100213
3509                       113606                        82670
3510                       129536                       113573
3511                       120188                       101180
3512                       157872                       130698
3513                       175117                       160648
3514                       136769                        94468
3515                       137538                       122657
3516                       109063                        94756
3517                       139233                        86916
3518                       139628                        91310
3519                       115665                        97921
3520                       118010                       102881
3521                       103111                        66169
3522                       111069                        92085
3523                       107222                        65916
3524                       113161                        55446
3525                       113566                        58374
3526                       108880                        66514
3527                       121099                        47041
3528                        86049                        49708
3529                        66465                        47260
3530                        82527                        60254
3531                       114505                        58664
3532                        77229                        49336
3533                        88415                        58403
3534                        85546                        70769
3535                        69451                        57082
3536                        89228                        51669
3537                        52911                        47454
3538                        46309                        42335
3539                        64255                        58704
3540                        64584                        61981
3541                        38159                        34495
3542                        41109                        39611
3543                        51449                        50552
3544                        36487                        34753
3545                        21613                        17160
3546                        31814                        26018
3547                        42895                        38574
3548                        44009                        39396
3549                        48647                        43757
3550                        55079                        47569
3551                        50920                        44436
3552                        51709                        46525
3553                        52174                        47211
3554                        61296                        54347
3555                        45874                        39617
3556                        60321                        49619
3557                        51042                        42210
3558                        49896                        44480
3559                        54299                        40487
3560                        50498                        38583
3561                        39956                        25890
3562                        57234                        42382
3563                        61912                        49679
3564                        64097                        49222
3565                        68455                        62658
3566                        84129                        76848
3567                        71218                        65725
3568                        60368                        50741
3569                        76225                        67998
3570                        63738                        56653
3571                        55848                        49040
3572                        63442                        55324
3573                        65308                        58861
3574                        53825                        47308
3575                        53593                        47055
3576                        63351                        53893
3577                        61818                        55984
3578                        53137                        43482
3579                        57889                        54012
3580                        53802                        49890
3581                        41429                        36166
3582                        39110                        28771
3583                        37747                        23629
3584                        38114                        29860
3585                        46228                        38644
3586                        56134                        52364
3587                        42516                        38447
3588                        51019                        42962
3589                      1105024                       789983
3590                       851394                       629888
3591                      1068900                       767092
3592                      1230819                       854172
3593                       810334                       590905
3594                       869893                       583553
3595                       863463                       598774
3596                       785706                       520297
3597                       774581                       433158
3598                       879979                       508418
3599                       879750                       593425
3600                       912363                       571073
3601                       915775                       591585
3602                       922535                       642866
3603                      1031223                       741802
3604                      1017577                       787725
3605                       981907                       779093
3606                      1072286                       841777
3607                       994337                       756136
3608                      1141139                       875058
3609                      1049284                       767194
3610                       982661                       742995
3611                      1080885                       743699
3612                      1105673                       754051
3613                      1019444                       686497
3614                      1297476                       930190
3615                      1048239                       778316
3616                      1148604                       804836
3617                      1044686                       858071
3618                      1085393                       776264
3619                      1109373                       868963
3620                      1068760                       777740
3621                      1125966                       774859
3622                      1138586                       768004
3623                       979800                       746942
3624                      1000029                       759839
3625                       882638                       603191
3626                       874382                       628086
3627                       793166                       494820
3628                       875802                       541169
3629                       839789                       549845
3630                       788214                       531244
3631                       841671                       522649
3632                       760404                       512998
3633                       635484                       453590
3634                       747005                       499433
3635                       863744                       516542
3636                       650045                       443401
3637                       736658                       513810
3638                       748272                       554459
3639                       700097                       488806
3640                       717093                       438280
3641                        58267                        55674
3642                        51402                        50218
3643                        59574                        57170
3644                        51655                        50780
3645                        48172                        47431
3646                        71344                        70657
3647                        66202                        65223
3648                        52113                        51327
3649                        57337                        56959
3650                        60396                        60146
3651                        66008                        65297
3652                        64374                        63388
3653                        65591                        64689
3654                        64380                        63531
3655                        71325                        69129
3656                        61107                        59029
3657                       120787                       119477
3658                       108101                       102789
3659                        97001                        85856
3660                       107306                        98316
3661                       101242                        96275
3662                        94994                        90148
3663                       101256                        92483
3664                       112738                       100384
3665                       112251                       102165
3666                       115591                       103962
3667                        97172                        91757
3668                        93171                        86477
3669                        92426                        85234
3670                        91455                        84589
3671                        92687                        79282
3672                        91873                        90017
3673                        76010                        73290
3674                        78507                        77855
3675                        78326                        76347
3676                        75438                        74325
3677                        79429                        76854
3678                        78283                        75904
3679                        61383                        59420
3680                        75835                        74485
3681                        74306                        72834
3682                        73032                        71739
3683                        69936                        68305
3684                        60440                        58910
3685                        64998                        62780
3686                        69360                        67078
3687                        80618                        78498
3688                        69046                        67727
3689                        93696                        92435
3690                        86489                        85284
3691                        78850                        77645
3692                        58167                        57476
3693                        48259                        47076
3694                        41941                        41573
3695                        53095                        51965
3696                        43218                        42958
3697                        41418                        41409
3698                        67687                        66363
3699                        52579                        52392
3700                        50726                        50160
3701                        46221                        46141
3702                        56248                        56074
3703                        56120                        56021
3704                        51833                        51618
3705                        52783                        52593
3706                        55991                        55353
3707                        65691                        64310
3708                        53305                        52152
3709                        68241                        67173
3710                        74845                        72125
3711                       105686                       100063
3712                       104087                       100492
3713                        99701                        99392
3714                        80085                        78540
3715                        85590                        82572
3716                        82558                        78534
3717                        96138                        90776
3718                        92579                        88150
3719                        80495                        77812
3720                        76991                        73923
3721                        74443                        71188
3722                        78652                        75889
3723                        66209                        63033
3724                        68408                        66398
3725                        56519                        55425
3726                        66470                        64704
3727                        61878                        59813
3728                        60644                        59633
3729                        67763                        66917
3730                        62063                        61560
3731                        44760                        44065
3732                        56253                        55054
3733                        52331                        51367
3734                        57221                        56231
3735                        65212                        64020
3736                        45845                        43904
3737                        68867                        66445
3738                        65573                        61273
3739                        82127                        78439
3740                        62205                        59996
3741                        80381                        75964
3742                        82432                        81352
3743                        66705                        64793
3744                        42575                        41478
3745                       314088                       144115
3746                       374690                       155394
3747                       322927                        70239
3748                       259393                        64285
3749                       152336                        81853
3750                       153455                        58525
3751                       160654                        61277
3752                       181076                        78828
3753                       178836                        47723
3754                       258734                       197398
3755                       273444                       132407
3756                       237899                       121028
3757                       313380                       129091
3758                       295221                       101364
3759                       217769                       126297
3760                       296612                       216414
3761                       299530                       208801
3762                       191046                       124174
3763                       209488                       132616
3764                       202874                       123194
3765                       181492                       121224
3766                       185544                       117561
3767                       205930                       163970
3768                       226639                       189089
3769                       244423                       201545
3770                       258145                       201099
3771                       270448                       165598
3772                       222760                       139198
3773                       273844                       114672
3774                       274332                        92784
3775                       210964                        91662
3776                       300936                       125724
3777                       297272                       102107
3778                       256952                       107636
3779                       248419                        84090
3780                       248949                       100133
3781                       183797                       119863
3782                       173260                       117793
3783                       126062                        56500
3784                       207270                        75819
3785                       174441                        62893
3786                       118307                        63280
3787                       124114                        77569
3788                       107661                        77330
3789                       109348                        64627
3790                       128993                        67727
3791                       166595                        71539
3792                       137088                        68194
3793                       164744                        83636
3794                       137306                        82818
3795                       137695                        78471
3796                       137335                        87330
3797                        65224                        39632
3798                        54128                        33415
3799                        59281                        38874
3800                        59706                        34658
3801                        50420                        26199
3802                        61252                        29000
3803                        60521                        31532
3804                        59969                        30459
3805                        67163                        26069
3806                        67155                        28374
3807                        65951                        35704
3808                        69111                        36547
3809                        63530                        36081
3810                        62988                        37498
3811                        66150                        40789
3812                        66047                        44188
3813                        64249                        47773
3814                        72729                        49838
3815                        68574                        44090
3816                        69795                        39950
3817                        58771                        36454
3818                        57006                        34005
3819                        71766                        37248
3820                        77052                        39495
3821                        70541                        39858
3822                        83304                        47612
3823                        63686                        41778
3824                        65841                        34458
3825                        58940                        39160
3826                        69363                        39936
3827                        74954                        47279
3828                        80833                        46352
3829                        79487                        46726
3830                        86106                        54973
3831                        72099                        43567
3832                        66499                        32258
3833                        64790                        27683
3834                        56629                        29066
3835                        52832                        23048
3836                        58412                        26547
3837                        48950                        27044
3838                        51701                        28613
3839                        55270                        26421
3840                        53212                        26222
3841                        42490                        23611
3842                        56768                        27240
3843                        53011                        24153
3844                        42036                        20098
3845                        49594                        23375
3846                        48124                        26459
3847                        49076                        25431
3848                        42883                        15994
3849                        85602                        30893
3850                        85182                        26270
3851                        64241                        27971
3852                       106807                        33109
3853                        59971                        19808
3854                        62412                        22359
3855                        66101                        26431
3856                        61905                        16137
3857                        56588                        13461
3858                        54087                        11699
3859                        72380                        11681
3860                        56960                        16657
3861                        75541                        23305
3862                        78666                        29683
3863                        76133                        23455
3864                        56942                        22376
3865                        76449                        29049
3866                        54397                        29304
3867                        62391                        34194
3868                        64486                        22539
3869                        50452                        21944
3870                        53079                        25243
3871                        46546                        21263
3872                        53464                        25221
3873                        51854                        26529
3874                        85215                        37397
3875                        51513                        24644
3876                        68202                        23712
3877                        46197                        20062
3878                        63559                        19483
3879                        63475                        22105
3880                        49847                        20620
3881                        98937                        19410
3882                        76358                        30054
3883                       130393                        37626
3884                       101192                        21102
3885                        64810                        23218
3886                       100369                        19745
3887                        69545                        27121
3888                        59753                        19304
3889                        54046                        19113
3890                        90341                        18011
3891                        57479                        17429
3892                       101697                        23365
3893                        55118                        18439
3894                        52634                        20566
3895                       120190                        53302
3896                        52206                        21692
3897                        56450                        27533
3898                        34621                        21733
3899                        48326                        20678
3900                        36101                        20713
3901                       133812                        54018
3902                       152694                        58264
3903                       193461                        68317
3904                       159255                        49384
3905                       104165                        44173
3906                       107474                        54759
3907                       105689                        51797
3908                       102970                        52183
3909                       105134                        42631
3910                       131224                        47831
3911                       170288                        74347
3912                       109405                        66104
3913                       102109                        58716
3914                        93098                        51565
3915                        98000                        38957
3916                       102083                        46479
3917                       101765                        44440
3918                       101564                        55035
3919                       104577                        60676
3920                       104856                        63416
3921                       102058                        64259
3922                        97038                        59986
3923                       106755                        66233
3924                       104644                        71630
3925                       126619                        78101
3926                       134715                        88177
3927                       135793                        88463
3928                       112153                        64076
3929                       107912                        62278
3930                       131583                        55549
3931                       132626                        46241
3932                        92121                        37170
3933                        77658                        41031
3934                       103538                        46596
3935                       116813                        65346
3936                       105547                        45052
3937                       118436                        44935
3938                       104097                        48047
3939                        70223                        47115
3940                        78949                        41425
3941                        74000                        36410
3942                        97397                        41534
3943                        78474                        51368
3944                        80667                        43897
3945                        85445                        40526
3946                       108880                        47967
3947                        93488                        51889
3948                        66196                        48986
3949                        61275                        44326
3950                        70185                        42601
3951                        73575                        40602
3952                        75613                        36619
3953                      1111990                      1032762
3954                      1040085                       961115
3955                      1186206                      1086151
3956                      1174453                      1135571
3957                       924140                       868269
3958                       874458                       808238
3959                       709660                       639521
3960                       551265                       497726
3961                       522579                       487013
3962                       893144                       840269
3963                      1068749                       996106
3964                       991798                       915276
3965                       994233                       931964
3966                      1146574                      1087086
3967                      1076082                      1008961
3968                      1138473                      1065540
3969                      1351660                      1295162
3970                      1497059                      1436819
3971                      1283110                      1204789
3972                      1149175                      1066852
3973                      1256423                      1158712
3974                      1231945                      1135206
3975                      1156383                      1073915
3976                      1175490                      1079717
3977                      1315138                      1201242
3978                      1278012                      1147087
3979                      1201140                      1091515
3980                      1208191                      1102266
3981                      1173633                      1064384
3982                      1347098                      1196473
3983                      1185191                      1038686
3984                      1178148                      1068850
3985                       993144                       871563
3986                      1487759                      1104179
3987                      1360962                      1011876
3988                      1213749                      1010395
3989                      1195781                      1114859
3990                      1346017                      1196714
3991                      1143034                       980990
3992                      1554658                      1349459
3993                      1454007                      1301235
3994                      1466036                      1318494
3995                      1546848                      1369895
3996                      1673999                      1459897
3997                      1635523                      1501295
3998                      1804698                      1567442
3999                      2173801                      1911609
4000                      1396553                      1288254
4001                      1635492                      1520604
4002                      1209129                      1079975
4003                      1439004                      1228427
4004                      1652276                      1415837
4005                        45082                        16333
4006                        32393                        13134
4007                        59340                        11916
4008                        64625                        11670
4009                        29915                        10326
4010                        28566                        11695
4011                        32830                        11502
4012                        34375                         9518
4013                        32760                         7816
4014                        36235                        10839
4015                        42371                        11941
4016                        39415                        11916
4017                        36013                        12612
4018                        31404                        13833
4019                        35990                        13498
4020                        34359                        13619
4021                        33709                        14895
4022                        31169                        15324
4023                        36614                        16968
4024                        28610                        17081
4025                        22911                        13895
4026                        28861                        13632
4027                        33249                        15345
4028                        37247                        14971
4029                        27509                        15929
4030                        37755                        18048
4031                        35166                        16664
4032                        36192                        13083
4033                        26504                        14528
4034                        30982                        15423
4035                        32892                        14675
4036                        31829                        13628
4037                        34846                        12022
4038                        42225                        12979
4039                        39768                        12606
4040                        30678                        14568
4041                        27960                        12092
4042                        29026                        12371
4043                        32843                         9615
4044                        37475                        12424
4045                        38294                        12951
4046                        27302                        12899
4047                        27495                        12370
4048                        30992                        11801
4049                        34589                        10664
4050                        36286                        12730
4051                        37569                        12782
4052                        24285                        10919
4053                        36340                        14237
4054                        30532                        14860
4055                        32008                        14248
4056                        33520                        11090
4057                       241483                        87168
4058                       263399                        81459
4059                       171099                        67684
4060                       287179                        89646
4061                       155705                        61615
4062                       179091                        70029
4063                       181061                        74065
4064                       152719                        53017
4065                       136321                        41407
4066                       147723                        39215
4067                       188074                        42989
4068                       144772                        50605
4069                       192008                        71779
4070                       199056                        80170
4071                       199650                        83963
4072                       164398                        77111
4073                       195958                        88545
4074                       136304                        86797
4075                       139898                        82057
4076                       151956                        62925
4077                       136949                        80129
4078                       136253                        75629
4079                       137697                        78153
4080                       139061                        79193
4081                       146650                        87650
4082                       204709                        95021
4083                       125822                        78006
4084                       155336                        67085
4085                       123689                        59676
4086                       162385                        56516
4087                       168483                        64611
4088                       120115                        56006
4089                       252981                        64836
4090                       166547                        70857
4091                       291296                        71215
4092                       248999                        61117
4093                       159540                        62016
4094                       248462                        54479
4095                       152429                        54722
4096                       129121                        52474
4097                       135173                        47086
4098                       223725                        49545
4099                       130533                        48945
4100                       222914                        56123
4101                       134163                        48793
4102                       125651                        54765
4103                       289482                        71560
4104                       125727                        59046
4105                       133417                        68931
4106                        91427                        61025
4107                       126497                        58417
4108                       108151                        64404
4109                       811135                       680184
4110                       713836                       611024
4111                       864105                       700661
4112                       838616                       629436
4113                       674356                       589240
4114                       754581                       664869
4115                       662818                       562622
4116                       688287                       588028
4117                       655607                       547423
4118                       729885                       621196
4119                       801922                       673261
4120                       784659                       651749
4121                       834833                       709302
4122                       798961                       698141
4123                       844713                       707259
4124                       882977                       747298
4125                       936382                       832619
4126                       821279                       738432
4127                       879371                       774040
4128                       916190                       825797
4129                       825622                       718728
4130                       799217                       705610
4131                       883412                       738517
4132                       948234                       794533
4133                       917243                       753806
4134                      1003588                       827534
4135                       831800                       740396
4136                       869045                       750465
4137                       792529                       711258
4138                       825558                       724592
4139                       838469                       736869
4140                       868983                       772950
4141                       835985                       708348
4142                       900148                       768301
4143                       876427                       742694
4144                       865638                       760965
4145                       772911                       692333
4146                       817547                       703737
4147                       694973                       593439
4148                       727698                       630763
4149                       767058                       672334
4150                       739255                       637044
4151                       695839                       618398
4152                       652936                       544828
4153                       687168                       586732
4154                       735358                       620881
4155                       879305                       712463
4156                       583560                       496722
4157                       741401                       630109
4158                       685585                       613647
4159                       688133                       601246
4160                       575984                       504611
4161                        85113                        67429
4162                        75236                        57451
4163                        96337                        83236
4164                        85878                        60604
4165                        67090                        55387
4166                        65380                        54104
4167                        68751                        56865
4168                        66459                        54847
4169                        68420                        54539
4170                        68005                        57361
4171                        77169                        56616
4172                        63641                        41727
4173                        80891                        63580
4174                        74261                        59331
4175                        75534                        55278
4176                        92159                        70619
4177                       105218                        89643
4178                        55531                        52256
4179                        66292                        62587
4180                        80923                        67508
4181                        67037                        46061
4182                        68398                        58585
4183                        72462                        59471
4184                        72609                        63133
4185                        71199                        51675
4186                        98482                        74731
4187                        69593                        60659
4188                        76907                        62257
4189                        57417                        46175
4190                        68699                        52920
4191                        72217                        56073
4192                        68959                        56098
4193                        83566                        55829
4194                        70738                        51756
4195                        81674                        49536
4196                        86849                        60107
4197                        57747                        40772
4198                        74271                        43662
4199                        45384                        26413
4200                        46695                        33538
4201                        51076                        35369
4202                        58795                        27726
4203                        45660                        29902
4204                        52480                        27928
4205                        45227                        33528
4206                        48379                        32190
4207                        76708                        39458
4208                        41897                        27523
4209                        49631                        25724
4210                        45817                        32110
4211                        52200                        31953
4212                        35181                        26144
4213                        85018                        59964
4214                        77891                        51001
4215                        68979                        53846
4216                        85153                        62850
4217                        53984                        40902
4218                        57141                        44175
4219                        61623                        45125
4220                        61606                        43572
4221                        69825                        43587
4222                        70023                        50404
4223                        82571                        54473
4224                        77367                        49871
4225                        73214                        51156
4226                        87065                        58016
4227                        85511                        58162
4228                        71334                        58390
4229                        85843                        63879
4230                        88176                        64574
4231                        83457                        61316
4232                        68843                        52183
4233                        80940                        62537
4234                        73193                        58784
4235                        91876                        68533
4236                       102310                        86821
4237                       100854                        79379
4238                       120922                        98982
4239                        91801                        73510
4240                        91292                        70451
4241                        84896                        63204
4242                        87565                        59275
4243                        84823                        65116
4244                        85720                        67298
4245                        96077                        62287
4246                       148487                       128876
4247                       161892                       118422
4248                       107514                        77957
4249                       108864                        89654
4250                       110662                        81778
4251                        99433                        80522
4252                        92150                        79866
4253                        93014                        77773
4254                       104114                        80241
4255                        89576                        74665
4256                       110527                        84691
4257                        88991                        71315
4258                        64492                        51331
4259                       137949                       114076
4260                        85079                        74926
4261                        90623                        77619
4262                        86637                        77817
4263                        79806                        67743
4264                        73730                        65955
4265                       279198                       241336
4266                       256972                       215851
4267                       353465                       247566
4268                       248190                       214068
4269                       256617                       223707
4270                       341058                       303438
4271                       291557                       248573
4272                       293163                       250706
4273                       171467                       148757
4274                       282227                       275968
4275                       316099                       279470
4276                       320261                       272661
4277                       361690                       310800
4278                       371503                       333528
4279                       442631                       390221
4280                       432882                       384184
4281                       410344                       355517
4282                       439766                       378940
4283                       543933                       487248
4284                       529896                       496920
4285                       540160                       496292
4286                       475384                       453444
4287                       492671                       466170
4288                       423109                       365760
4289                       511629                       423617
4290                       469278                       401173
4291                       445056                       385978
4292                       425716                       366851
4293                       469064                       404819
4294                       452690                       387457
4295                       428184                       357119
4296                       395979                       362726
4297                       398066                       343885
4298                       409105                       349590
4299                       401177                       321936
4300                       395388                       331784
4301                       427037                       350600
4302                       378525                       337797
4303                       311194                       269122
4304                       368147                       316529
4305                       448594                       407712
4306                       331342                       287983
4307                       360655                       317977
4308                       291648                       249147
4309                       366968                       323061
4310                       393817                       326949
4311                       544715                       502578
4312                       311044                       269851
4313                       417366                       345620
4314                       393855                       349480
4315                       334219                       278109
4316                       242853                       205536
4317                       797649                       742543
4318                       713343                       651338
4319                       868587                       733966
4320                       652636                       606209
4321                       649833                       608290
4322                       885423                       839621
4323                       768461                       716108
4324                       753561                       699084
4325                       616979                       587560
4326                       832023                       817362
4327                       939127                       892219
4328                       924384                       866463
4329                       983841                       922619
4330                      1000249                       950223
4331                      1076533                      1009927
4332                      1095669                      1028147
4333                      1176091                      1109685
4334                      1254912                      1164225
4335                      1502402                      1384985
4336                      1514438                      1435534
4337                      1414742                      1335097
4338                      1317882                      1265795
4339                      1377239                      1287855
4340                      1341622                      1208292
4341                      1481861                      1316229
4342                      1483444                      1330833
4343                      1343841                      1233605
4344                      1269406                      1164066
4345                      1357738                      1246080
4346                      1347828                      1235470
4347                      1231916                      1104420
4348                      1267810                      1193559
4349                      1168859                      1062591
4350                      1305784                      1213743
4351                      1179491                      1064780
4352                      1180446                      1087631
4353                      1225629                      1115346
4354                      1138029                      1070179
4355                       936433                       869387
4356                      1102724                      1021992
4357                      1231619                      1171614
4358                      1019763                       958453
4359                      1081791                      1022901
4360                       930067                       867106
4361                      1061988                       984378
4362                      1155024                      1047180
4363                      1443234                      1369646
4364                      1044961                       981186
4365                      1329664                      1234678
4366                      1220766                      1153105
4367                      1061752                       976499
4368                       785375                       731458
4369                        52627                        52623
4370                        44990                        44559
4371                        50921                        50026
4372                        35219                        35219
4373                        38832                        38832
4374                        49526                        49526
4375                        42414                        42414
4376                        50130                        50130
4377                        55043                        55043
4378                        46935                        46935
4379                        48369                        48369
4380                        48161                        48161
4381                        47211                        47207
4382                        52030                        52018
4383                        53063                        52434
4384                        63782                        63234
4385                        75842                        75402
4386                        69122                        67070
4387                       115881                       114416
4388                       116220                       114465
4389                        97134                        96889
4390                       108943                       107009
4391                       127318                       122745
4392                       101501                        94130
4393                        85486                        77486
4394                       111731                       102069
4395                        89862                        85807
4396                        82803                        80128
4397                        85645                        82840
4398                        88873                        86448
4399                        85309                        83275
4400                        85282                        82260
4401                        77844                        77841
4402                       118312                       118297
4403                        50414                        50354
4404                        62527                        62471
4405                        63600                        63502
4406                        64572                        64557
4407                        45256                        45256
4408                        64586                        64586
4409                        60675                        60671
4410                        53874                        53860
4411                        71523                        71472
4412                        67879                        67323
4413                        72001                        70057
4414                        94225                        91689
4415                        53686                        51858
4416                       105380                       104228
4417                       111646                       111163
4418                        92438                        92438
4419                        59840                        59837
4420                        39852                        39852
4421                       145905                        65956
4422                       142744                        63529
4423                       114740                        61198
4424                       173717                        65179
4425                        95834                        44616
4426                       105313                        49248
4427                       102797                        48420
4428                        89681                        34250
4429                        87706                        30133
4430                        83839                        28495
4431                       118893                        24825
4432                        94677                        39055
4433                       117482                        50463
4434                       125142                        61487
4435                       126800                        57821
4436                       106104                        50283
4437                       125864                        59357
4438                        82367                        58695
4439                        89672                        60961
4440                       113598                        53991
4441                        98631                        52785
4442                       101708                        59131
4443                        98244                        53517
4444                       115691                        72463
4445                       113292                        71803
4446                       157431                        87341
4447                       114110                        68454
4448                       116439                        52417
4449                        85537                        44015
4450                       114155                        45383
4451                       114780                        48638
4452                        93344                        44789
4453                       172193                        46051
4454                       137893                        60411
4455                       223890                        70815
4456                       178124                        46441
4457                       106185                        44830
4458                       173887                        43958
4459                       115053                        49626
4460                       102112                        45394
4461                        98884                        39886
4462                       165528                        42926
4463                        97386                        46059
4464                       170048                        51303
4465                       100818                        42825
4466                        93142                        42330
4467                       206007                        50079
4468                       104963                        45442
4469                       110390                        54037
4470                        70702                        50178
4471                       102239                        49855
4472                        74829                        46089
4473                        96731                        91017
4474                        91111                        84391
4475                       112308                        92567
4476                        92535                        86813
4477                        87240                        82184
4478                       106624                       101913
4479                       100205                        94328
4480                        90998                        83528
4481                        89982                        86875
4482                        99595                        97636
4483                       126259                       119366
4484                       135381                       127432
4485                       151574                       143702
4486                       156622                       151162
4487                       187196                       177935
4488                       206798                       197316
4489                       196319                       186793
4490                       183483                       171926
4491                       176104                       156784
4492                       186834                       176029
4493                       185976                       174614
4494                       167023                       161292
4495                       177170                       167882
4496                       169878                       152289
4497                       172837                       154560
4498                       168792                       151091
4499                       163241                       150878
4500                       143903                       132626
4501                       159042                       143582
4502                       152826                       137883
4503                       150802                       129416
4504                       151541                       143072
4505                       136902                       121275
4506                       149863                       137318
4507                       145983                       130518
4508                       145553                       132114
4509                       144993                       129030
4510                       136692                       128214
4511                       121464                       112323
4512                       145368                       135646
4513                       238305                       230450
4514                       124417                       115167
4515                       122383                       112637
4516                       110392                       100247
4517                       124387                       114098
4518                       144769                       132177
4519                       272380                       261473
4520                       106670                        97223
4521                       147358                       134139
4522                       134523                       124209
4523                       127142                       115949
4524                        96939                        89684
4525                       280957                       115070
4526                       284141                       135029
4527                       307364                       154963
4528                       233511                       117121
4529                       219244                        95631
4530                       274679                       110585
4531                       269424                       106369
4532                       229176                       103302
4533                       231441                       108153
4534                       243448                       127647
4535                       320040                       147692
4536                       283173                       153973
4537                       252364                       130376
4538                       237216                       120712
4539                       230764                        93338
4540                       229356                       123900
4541                       233361                        91284
4542                       216084                       103197
4543                       256158                       122311
4544                       290192                       136244
4545                       265162                       132055
4546                       244176                       118231
4547                       284765                       144446
4548                       254022                       145311
4549                       285152                       149013
4550                       266160                       148736
4551                       265101                       151848
4552                       247277                       128069
4553                       274236                       151226
4554                       263366                       131405
4555                       250219                       105242
4556                       190678                        59068
4557                       160844                        60966
4558                       192225                        80065
4559                       181703                       109464
4560                       188933                       104062
4561                       202046                        93837
4562                       179821                       102611
4563                       139511                        83416
4564                       183008                       102042
4565                       156193                        91822
4566                       159508                        90791
4567                       130860                        76814
4568                       139459                        69825
4569                       175546                        79745
4570                       155493                        77573
4571                       171809                        88259
4572                       135043                        83060
4573                       170198                        88067
4574                       145282                        96088
4575                       142511                        91808
4576                       128597                        79897
4577                        34340                        30455
4578                        36160                        27858
4579                        37911                        33382
4580                        34637                        30146
4581                        29583                        25668
4582                        38074                        33342
4583                        35706                        31048
4584                        39194                        34250
4585                        38986                        33736
4586                        37712                        32230
4587                        39030                        34192
4588                        36718                        32322
4589                        32179                        27627
4590                        31956                        23314
4591                        21567                        20132
4592                        26126                        24206
4593                        35982                        34860
4594                        33941                        30513
4595                        35433                        26056
4596                        38758                        29043
4597                        41839                        27914
4598                        39386                        27720
4599                        46330                        31288
4600                        56180                        39075
4601                        51533                        37858
4602                        57169                        40469
4603                        48494                        32965
4604                        41639                        27767
4605                        41625                        28751
4606                        46229                        30730
4607                        46162                        29243
4608                        42279                        21962
4609                        48280                        16501
4610                        42788                        24483
4611                        50119                        35865
4612                        54526                        42500
4613                        39258                        27639
4614                        42022                        28214
4615                        26980                        15061
4616                        37349                        20111
4617                        34383                        23273
4618                        35419                        26767
4619                        38327                        33427
4620                        35122                        29727
4621                        24128                        18779
4622                        30579                        19080
4623                        28583                        21917
4624                        23217                        17454
4625                        30985                        24103
4626                        35600                        23178
4627                        38988                        23259
4628                        26578                        16737
4629                       417267                       384955
4630                       413110                       377227
4631                       410912                       382367
4632                       377208                       325851
4633                       335299                       305277
4634                       297414                       273036
4635                       310621                       279362
4636                       331202                       300861
4637                       286598                       221348
4638                       302618                       254209
4639                       312060                       276634
4640                       349901                       312195
4641                       369155                       314559
4642                       379439                       333274
4643                       370355                       326207
4644                       423287                       392942
4645                       454242                       409643
4646                       402766                       358451
4647                       493974                       461318
4648                       549173                       525125
4649                       578560                       535419
4650                       523808                       471474
4651                       583925                       527520
4652                       654853                       590323
4653                       686630                       614585
4654                       803363                       717323
4655                       560803                       510423
4656                       529154                       475718
4657                       571867                       518051
4658                       558750                       505801
4659                       534810                       502400
4660                       556266                       502964
4661                       583718                       532965
4662                       586277                       500461
4663                       504325                       471542
4664                       538378                       474086
4665                       495637                       433890
4666                       459058                       402410
4667                       373894                       325592
4668                       403955                       371050
4669                       419622                       367140
4670                       394529                       348346
4671                       409924                       375200
4672                       396745                       357648
4673                       364852                       325917
4674                       374625                       340809
4675                       437234                       373119
4676                       391446                       340741
4677                       365488                       315429
4678                       334853                       301752
4679                       373198                       310260
4680                       312460                       291735
4681                       272954                       272607
4682                       271730                       270658
4683                       557393                       554443
4684                       328916                       325918
4685                       215202                       214541
4686                       247527                       246808
4687                       262248                       261272
4688                       253455                       252413
4689                       211840                       207420
4690                       350858                       349205
4691                       335233                       329875
4692                       350305                       284346
4693                       657895                       481756
4694                       431765                       324255
4695                       317623                       302546
4696                       343793                       343446
4697                       301471                       300935
4698                       315526                       315111
4699                       364293                       362522
4700                       333645                       331448
4701                       336710                       335811
4702                       326971                       324791
4703                       307371                       305238
4704                       317254                       316117
4705                       343174                       342069
4706                       356463                       355096
4707                       343858                       340794
4708                       339389                       337167
4709                       279475                       277038
4710                       530470                       524889
4711                       463083                       459278
4712                       373566                       367615
4713                       506449                       491057
4714                       549125                       544998
4715                       465220                       461966
4716                       353690                       349815
4717                       531787                       518252
4718                       311060                       309163
4719                       444405                       442760
4720                       458296                       455582
4721                       271119                       269468
4722                       418534                       415277
4723                       435355                       434180
4724                       414298                       411117
4725                       466077                       439612
4726                       283710                       283183
4727                       500442                       498461
4728                       349297                       346063
4729                       311482                       307475
4730                       373586                       366756
4731                       368736                       363944
4732                       415128                       402710
4733                        79424                        76469
4734                        68362                        66189
4735                        76899                        75276
4736                        75670                        71739
4737                        63015                        61453
4738                        65420                        63280
4739                        60738                        58852
4740                        68181                        66193
4741                        60953                        59019
4742                        76184                        74211
4743                        73804                        70169
4744                        81016                        77169
4745                        83777                        79781
4746                        80444                        77829
4747                        87334                        82483
4748                        92603                        88122
4749                        86627                        84862
4750                        79531                        77896
4751                        87848                        87549
4752                        88375                        86928
4753                        76045                        71564
4754                        72767                        68455
4755                        85865                        77643
4756                        93002                        82748
4757                        93250                        80208
4758                        90573                        79394
4759                        80183                        77776
4760                        79905                        78077
4761                        78017                        75398
4762                        80823                        78797
4763                        78353                        77273
4764                        86438                        85456
4765                        89117                        86769
4766                        89696                        86965
4767                        88162                        86752
4768                        88200                        87009
4769                        81492                        80749
4770                        82848                        81149
4771                        74453                        73697
4772                        71146                        70533
4773                        74103                        73377
4774                        74891                        73420
4775                        69215                        68589
4776                        65581                        63934
4777                        70299                        69867
4778                        75907                        73208
4779                        72030                        66876
4780                        57080                        52157
4781                        60249                        59122
4782                        56778                        56177
4783                        65875                        64396
4784                        57313                        56646
4785                        58143                        57397
4786                        52758                        51587
4787                        64562                        63970
4788                        49514                        49474
4789                        56104                        56074
4790                        63058                        63058
4791                        43970                        43970
4792                        46649                        46649
4793                        44142                        44106
4794                        47348                        46851
4795                        54680                        53623
4796                        52120                        51541
4797                        60398                        59496
4798                        51229                        51224
4799                        56728                        54657
4800                        66602                        63213
4801                        70028                        69755
4802                        72114                        70265
4803                        58156                        57801
4804                        69613                        69445
4805                        66523                        60015
4806                        63643                        60285
4807                        75488                        64455
4808                        79540                        69396
4809                        79485                        69249
4810                        85090                        77055
4811                        66404                        61487
4812                        72522                        67694
4813                        72460                        69331
4814                        69692                        66487
4815                        71705                        68403
4816                        80724                        78267
4817                        59475                        59228
4818                        80728                        78934
4819                        77192                        77132
4820                        74663                        74660
4821                        67279                        67277
4822                        70679                        70655
4823                        52394                        52394
4824                        57722                        57703
4825                        65345                        65341
4826                        59732                        59722
4827                        61340                        61330
4828                        48198                        47965
4829                        49967                        46940
4830                        61736                        58228
4831                        69173                        65403
4832                        46214                        43577
4833                        51507                        50993
4834                        46789                        46789
4835                        55907                        55900
4836                        45676                        45411
4837                        48053                        47523
4838                        36927                        35874
4839                        48704                        47918
4840                        36290                        35681
4841                        35236                        34949
4842                        42294                        41990
4843                        35547                        35307
4844                        41053                        40763
4845                        40285                        39530
4846                        37323                        35716
4847                        46384                        43936
4848                        38336                        35483
4849                        48867                        45782
4850                        51876                        51504
4851                        47742                        43287
4852                        59178                        52831
4853                        67329                        64634
4854                        63165                        59305
4855                        56341                        52711
4856                        61326                        57870
4857                        52137                        42152
4858                        54801                        49804
4859                        63018                        49240
4860                        56957                        49605
4861                        58067                        47150
4862                        66741                        59667
4863                        51531                        48167
4864                        60996                        57154
4865                        57728                        54131
4866                        55477                        53294
4867                        58554                        56109
4868                        65683                        62687
4869                        44612                        42433
4870                        60828                        56454
4871                        63564                        61577
4872                        63800                        60645
4873                        53361                        51084
4874                        59993                        58125
4875                        42867                        41615
4876                        44374                        43176
4877                        48303                        48249
4878                        45208                        44872
4879                        41230                        39868
4880                        34858                        33709
4881                        36940                        33667
4882                        56138                        52052
4883                        57377                        53859
4884                        36491                        34167
4885                        39559                        39027
4886                        40838                        40765
4887                        44683                        44595
4888                        38686                        37522
4889                        44357                        39137
4890                        40030                        32583
4891                        50467                        43426
4892                        47268                        45560
4893                        38364                        35373
4894                        41970                        41823
4895                        38280                        38274
4896                        33681                        33675
4897                        20977                        20196
4898                        41563                        36824
4899                        43895                        41539
4900                        41998                        41780
4901                        50023                        48792
4902                        51125                        46656
4903                        44390                        40849
4904                        58196                        57596
4905                        66591                        66372
4906                        39726                        39590
4907                        47026                        46759
4908                        44453                        44453
4909                        51045                        51032
4910                        53948                        53548
4911                        55395                        55395
4912                        67078                        67069
4913                        73209                        72950
4914                        74050                        74050
4915                        67436                        66812
4916                        55316                        54341
4917                        57050                        56671
4918                        56940                        56921
4919                        51362                        51287
4920                        57722                        55548
4921                        48459                        48443
4922                        70586                        69358
4923                        55339                        54907
4924                        56259                        55978
4925                        57606                        57218
4926                        57719                        57377
4927                        53344                        53306
4928                        60518                        60510
4929                        53521                        53492
4930                        56330                        56309
4931                        71112                        71097
4932                        70657                        70657
4933                        58029                        58023
4934                        79230                        79169
4935                        83862                        83768
4936                        60574                        60565
4937                        57767                        57735
4938                        60048                        60045
4939                        66502                        66490
4940                        53730                        53730
4941                       149507                       125661
4942                       155921                       115859
4943                       145577                        91917
4944                       136681                       128682
4945                       110313                        98751
4946                        99840                        85262
4947                        88686                        74993
4948                        56008                        46336
4949                        48145                        41712
4950                       106129                        91095
4951                       156643                       137002
4952                       171300                       150538
4953                       176525                       159927
4954                       196586                       182693
4955                       157526                       144314
4956                       177027                       161785
4957                       188319                       177176
4958                       215379                       204056
4959                       209016                       194537
4960                       165576                       149734
4961                       183883                       163647
4962                       180027                       156663
4963                       166466                       147604
4964                       165570                       144224
4965                       192336                       171945
4966                       214719                       192454
4967                       207714                       189496
4968                       202555                       183995
4969                       209345                       189262
4970                       215096                       175832
4971                       193052                       160356
4972                       185822                       154279
4973                       168647                       133555
4974                       219908                        82058
4975                       213182                        57335
4976                       197300                       128656
4977                       223821                       199325
4978                       219402                       175065
4979                       187201                       136890
4980                       246578                       180501
4981                       279427                       228122
4982                       253426                       203379
4983                       288428                       218488
4984                       272698                       201893
4985                       247635                       206856
4986                       259056                       161728
4987                       378746                       292229
4988                       258822                       219632
4989                       280302                       238111
4990                       187563                       141952
4991                       248520                       144796
4992                       236295                       138815
4993                        60033                        52278
4994                        65083                        52370
4995                        70207                        58674
4996                        70183                        67735
4997                        69915                        67676
4998                        78967                        74502
4999                        75836                        74569
5000                        74658                        74025
5001                        59465                        57223
5002                        94584                        89533
5003                        78667                        74349
5004                        90738                        89663
5005                       103860                       101545
5006                        92687                        89785
5007                        80964                        75830
5008                        95174                        94339
5009                        83748                        82334
5010                        70977                        68675
5011                        73286                        70853
5012                        60463                        58400
5013                        71348                        70182
5014                        72790                        71154
5015                        75266                        72854
5016                        78990                        77461
5017                        90813                        88916
5018                        88886                        86921
5019                        88588                        86438
5020                        87199                        85053
5021                        74262                        72937
5022                        86231                        85119
5023                        72034                        70155
5024                        82869                        80975
5025                        71279                        69781
5026                        83304                        80879
5027                        72798                        71485
5028                        77849                        76195
5029                        85226                        83707
5030                        88013                        85683
5031                        83168                        82300
5032                        92754                        91907
5033                        82820                        81984
5034                        85983                        85203
5035                        95689                        94789
5036                       100727                        99966
5037                        70947                        70255
5038                        99111                        98394
5039                        90911                        90251
5040                        79923                        79401
5041                        66149                        65971
5042                        79708                        79193
5043                        92624                        92023
5044                        88528                        88155
5045                       266347                       265938
5046                       259214                       258720
5047                       531875                       529840
5048                       325189                       324726
5049                       217732                       217343
5050                       261588                       260780
5051                       259106                       257996
5052                       257584                       256978
5053                       205985                       205196
5054                       337359                       335968
5055                       377004                       369371
5056                       341733                       309380
5057                       650319                       361895
5058                       420580                       304494
5059                       311748                       264786
5060                       319507                       319299
5061                       287239                       286871
5062                       301259                       300809
5063                       351048                       350689
5064                       326550                       326096
5065                       322988                       322390
5066                       342112                       341835
5067                       330251                       329976
5068                       378295                       378187
5069                       354406                       354206
5070                       371434                       371093
5071                       360183                       359261
5072                       370666                       369496
5073                       366657                       365830
5074                       493244                       478960
5075                       457635                       443122
5076                       410248                       324711
5077                       525545                       523712
5078                       573690                       552847
5079                       484433                       458041
5080                       430280                       429117
5081                       523147                       511072
5082                       365092                       363375
5083                       481104                       480649
5084                       487393                       486972
5085                       317663                       317318
5086                       441270                       440777
5087                       469299                       468419
5088                       452164                       451747
5089                       475337                       474543
5090                       327319                       326841
5091                       576262                       573867
5092                       391445                       390709
5093                       365173                       363400
5094                       421309                       418855
5095                       374734                       374205
5096                       328559                       327228
5097                       122109                        72547
5098                       106677                        62582
5099                        92310                        60970
5100                       113652                        56900
5101                        95607                        65375
5102                        99116                        65248
5103                        78419                        42377
5104                        73312                        39594
5105                        74431                        40258
5106                        72308                        42485
5107                        93142                        49718
5108                        92883                        57335
5109                        98802                        63692
5110                       104071                        73929
5111                       109274                        75354
5112                       119176                        94007
5113                       122568                        89224
5114                        99973                        82906
5115                       120710                       104376
5116                       113756                        86862
5117                       107476                        83536
5118                       107589                        83700
5119                        96487                        71699
5120                        99752                        75310
5121                       112683                        89946
5122                       155485                       116583
5123                       108884                        90997
5124                       119394                        85875
5125                        96170                        73086
5126                       109441                        66829
5127                       117621                        63638
5128                       103064                        59372
5129                       125916                        69081
5130                       148369                        95501
5131                       171184                       100786
5132                       115672                        61890
5133                       102024                        67728
5134                       106944                        57961
5135                        86169                        63628
5136                        79310                        61407
5137                        78942                        60251
5138                       103419                        65809
5139                        70646                        52685
5140                        89546                        53433
5141                        66932                        49805
5142                        74656                        50158
5143                       122355                        61004
5144                        55459                        38452
5145                        68768                        43452
5146                        54062                        42971
5147                        64902                        42726
5148                        48231                        39156
5149                      1613702                      1288632
5150                      1561258                      1144739
5151                      1392007                       939912
5152                      1395566                      1039670
5153                       960172                       817185
5154                       911093                       735264
5155                       892446                       710489
5156                       964604                       771794
5157                       993408                       733102
5158                      1397085                      1228548
5159                      1376595                      1088287
5160                      1356472                      1118453
5161                      1447623                      1091904
5162                      1525510                      1094937
5163                      1652432                      1446564
5164                      1564658                      1379670
5165                      1713211                      1488491
5166                      1447132                      1259358
5167                      1413025                      1245189
5168                      1198246                      1034295
5169                      1197855                      1035008
5170                      1153490                       969971
5171                      1329077                      1169825
5172                      1402395                      1297883
5173                      1374242                      1233355
5174                      1630640                      1398829
5175                      1477093                      1226902
5176                      1268950                      1062854
5177                      1335078                       964900
5178                      1363234                       976198
5179                      1299214                      1034533
5180                      1474559                      1071647
5181                      1544629                      1146035
5182                      1550045                      1225103
5183                      1594861                      1215673
5184                      1515562                      1161264
5185                      1328964                      1124257
5186                      1320919                      1124850
5187                      1099219                       896073
5188                      1247605                       951744
5189                      1147083                       882135
5190                       883739                       731907
5191                       957869                       822317
5192                       902750                       791893
5193                       791466                       658990
5194                       832091                       662650
5195                      1048473                       756323
5196                       862689                       623664
5197                       928933                       705849
5198                       769871                       621920
5199                       800065                       656702
5200                       795564                       682312
5201                      1505735                       736767
5202                      1439566                       670843
5203                      1124601                       630164
5204                      1603343                       644607
5205                      1000540                       509394
5206                      1127325                       592607
5207                      1080426                       543744
5208                       980840                       432321
5209                       964608                       416179
5210                       981836                       435848
5211                      1211778                       420581
5212                      1098336                       516483
5213                      1206077                       602428
5214                      1269316                       691449
5215                      1326953                       706832
5216                      1250665                       791920
5217                      1350426                       771445
5218                      1039496                       738944
5219                      1131257                       827155
5220                      1235785                       745879
5221                      1085092                       710560
5222                      1096810                       724984
5223                      1029574                       657021
5224                      1108146                       705841
5225                      1168263                       785437
5226                      1677681                      1031656
5227                      1184385                       850212
5228                      1257241                       699685
5229                      1013490                       641109
5230                      1209213                       563931
5231                      1271965                       531132
5232                      1103370                       536817
5233                      1658275                       610051
5234                      1510896                       712577
5235                      2057091                       738083
5236                      1620237                       542496
5237                      1180206                       556255
5238                      1539555                       519721
5239                      1045919                       551758
5240                       951934                       530183
5241                       945670                       506482
5242                      1417828                       527241
5243                       912052                       493727
5244                      1407174                       528218
5245                       878493                       459450
5246                       871290                       499341
5247                      1846428                       740217
5248                       903533                       485346
5249                      1122442                       570261
5250                       750058                       507151
5251                      1020576                       489927
5252                       715314                       482359
5253                        32988                        32947
5254                        42556                        42186
5255                        51512                        50879
5256                        28902                        28878
5257                        23871                        23853
5258                        46097                        45969
5259                        55965                        55562
5260                        28679                        28639
5261                        27286                        27170
5262                        35996                        35886
5263                        36058                        34881
5264                        43226                        33043
5265                        89795                        45597
5266                        49375                        39037
5267                        36230                        32497
5268                        41643                        41634
5269                        39238                        39194
5270                        39321                        39316
5271                        44049                        44034
5272                        40762                        40759
5273                        38403                        38394
5274                        41986                        41986
5275                        41881                        41881
5276                        51223                        51218
5277                        44657                        44566
5278                        45212                        44836
5279                        44036                        44033
5280                        41122                        41041
5281                        42267                        37812
5282                        61474                        60082
5283                        55339                        55214
5284                        45151                        36361
5285                        60947                        60820
5286                        56830                        55178
5287                        53407                        53362
5288                        44928                        44270
5289                        75319                        75099
5290                        42944                        42825
5291                        49667                        48727
5292                        63256                        63172
5293                        36653                        36639
5294                        51134                        51070
5295                        52556                        52480
5296                        47818                        47751
5297                        64822                        64779
5298                        35122                        35053
5299                        72326                        72053
5300                        45913                        45821
5301                        42693                        42637
5302                        52474                        52342
5303                        49770                        49569
5304                        45295                        43671
5305                        64328                        47504
5306                        71669                        52786
5307                        71684                        57071
5308                        70735                        40392
5309                        59769                        40665
5310                        50121                        35285
5311                        57078                        40602
5312                        64456                        45157
5313                        71015                        45592
5314                        85450                        61304
5315                        57696                        42853
5316                        55724                        39013
5317                        73795                        41062
5318                        64184                        38326
5319                        77402                        50959
5320                        64128                        50775
5321                        82460                        59982
5322                        67224                        43548
5323                       115305                        98023
5324                       153767                       137801
5325                       177047                       154944
5326                       131076                       109459
5327                       156047                       132587
5328                       182001                       152990
5329                       229916                       204560
5330                       260501                       225967
5331                       155221                       126592
5332                       171480                       139118
5333                       177314                       139480
5334                       204436                       170178
5335                       164256                       150823
5336                       184967                       156415
5337                       210259                       179610
5338                       182064                       127496
5339                       145835                       126406
5340                       156818                       123839
5341                       131088                        96910
5342                       127397                        98906
5343                       114504                        82978
5344                        96952                        76483
5345                       110433                        73562
5346                        96265                        65087
5347                       107604                        84302
5348                       108603                        81857
5349                       101066                        74252
5350                        87450                        69047
5351                       113765                        71787
5352                       106869                        68748
5353                       101107                        67008
5354                        79049                        63934
5355                       112747                        89122
5356                        79080                        67243
5357                        15833                        14866
5358                        13185                        12270
5359                         9747                         8824
5360                         7088                         6842
5361                         8270                         8270
5362                         9906                         9906
5363                        10591                        10591
5364                        11213                        11213
5365                         6794                         6792
5366                        18222                        18222
5367                        22126                        22126
5368                        22179                        22179
5369                        20560                        20560
5370                        19376                        19359
5371                        17327                        17071
5372                        19415                        18637
5373                        12286                        12129
5374                        20407                        19307
5375                        18383                        17428
5376                        15972                        15337
5377                        16213                        15518
5378                        18721                        18176
5379                        19499                        16609
5380                        25559                        24464
5381                        31728                        28755
5382                        35696                        32831
5383                        29858                        28353
5384                        30179                        28499
5385                        32429                        31259
5386                        31245                        29640
5387                        28185                        27875
5388                        30412                        29287
5389                        28098                        28098
5390                        32834                        32834
5391                        26696                        26696
5392                        27272                        27269
5393                        30486                        30486
5394                        29291                        29291
5395                        26380                        26380
5396                        28359                        28359
5397                        25509                        25509
5398                        27715                        27711
5399                        25257                        25158
5400                        24248                        23556
5401                        24038                        22192
5402                        26951                        25835
5403                        28742                        28033
5404                        27787                        27245
5405                        29308                        29215
5406                        27814                        27814
5407                        25129                        25129
5408                        20920                        20920
5409                       183681                        87877
5410                       177572                        77777
5411                       129655                        72901
5412                       214105                        91216
5413                       111270                        52268
5414                       120219                        58517
5415                       130004                        63859
5416                       105650                        43845
5417                       104008                        42732
5418                        97801                        35310
5419                       136938                        36246
5420                       121816                        53843
5421                       126706                        63737
5422                       142174                        78486
5423                       145475                        73698
5424                       121354                        65129
5425                       156524                        85778
5426                       101678                        78855
5427                       113884                        80158
5428                       127939                        65541
5429                       120286                        75446
5430                       108156                        68166
5431                       113201                        71809
5432                       131038                        87459
5433                       125572                        87918
5434                       182481                       116196
5435                       129450                        88533
5436                       135374                        68956
5437                        97288                        57317
5438                       123575                        61524
5439                       126419                        63312
5440                        96827                        54513
5441                       168903                        58114
5442                       158069                        81108
5443                       235292                        85158
5444                       184380                        60995
5445                       124388                        63443
5446                       182667                        58748
5447                       132566                        68923
5448                       113114                        58017
5449                       108809                        52244
5450                       175373                        56867
5451                       114878                        62840
5452                       186636                        67867
5453                       107623                        55695
5454                        92990                        56731
5455                       247470                        98976
5456                       140399                        66287
5457                       196648                        80147
5458                       115800                        70537
5459                       180321                        70164
5460                       102561                        69224
5461                     10207830                      7709584
5462                      9422776                      6970320
5463                     10713277                      8149439
5464                     10240878                      7187023
5465                      7349757                      5691267
5466                      8017464                      6207080
5467                      7602862                      5602594
5468                      7098160                      5245067
5469                      6604080                      4655046
5470                      8616979                      6508667
5471                      9594018                      6934369
5472                      9234784                      6849127
5473                     10466072                      7408766
5474                     10008534                      7440445
5475                     10040762                      7649502
5476                     10271370                      8199581
5477                     10863029                      8555284
5478                     10448164                      8503871
5479                     10350629                      8749239
5480                     10404656                      8479507
5481                     10136876                      8386276
5482                      9824723                      8193011
5483                     10264348                      8315739
5484                     10753156                      8737861
5485                     11166526                      8984514
5486                     12407004                      9967538
5487                     10773128                      8834970
5488                     10515651                      8223281
5489                     10147819                      8039866
5490                     11254801                      8492744
5491                     10923377                      8085657
5492                     10623982                      7835766
5493                     11276356                      7987029
5494                     12211188                      8747757
5495                     11804441                      8376124
5496                     10711949                      7835836
5497                     10720882                      8128710
5498                     10499801                      7808771
5499                      9102948                      6830380
5500                     10055499                      7745105
5501                      9700550                      7248858
5502                      9807875                      7231163
5503                      9357289                      7502570
5504                     10123401                      7251667
5505                      9409896                      7213493
5506                      9564300                      7102422
5507                     12698112                      9083373
5508                      8701405                      6684515
5509                     10271872                      7438490
5510                      9138082                      6846324
5511                      9314348                      6735384
5512                      8911429                      6464896
5513                      2414074                      1681101
5514                      2248150                      1571422
5515                      3330284                      2543801
5516                      2532203                      1534025
5517                      1636667                      1068035
5518                      1920547                      1357081
5519                      1983632                      1238998
5520                      1764684                      1168747
5521                      1577393                      1029900
5522                      2203553                      1441557
5523                      2539406                      1566290
5524                      2327571                      1433086
5525                      3201512                      1755945
5526                      2437197                      1445593
5527                      2203085                      1276041
5528                      2365115                      1494929
5529                      2357779                      1344666
5530                      2409223                      1478205
5531                      2158078                      1621160
5532                      2268691                      1560891
5533                      2244434                      1668013
5534                      2239891                      1730973
5535                      2346061                      1664868
5536                      2504101                      1822960
5537                      2606451                      1823295
5538                      2628017                      2009090
5539                      2548753                      1853715
5540                      2419021                      1643599
5541                      2322716                      1528937
5542                      2926188                      1971340
5543                      2898451                      1761130
5544                      2529688                      1385581
5545                      2859002                      1826974
5546                      3079248                      1953255
5547                      2688398                      1975170
5548                      2246865                      1582301
5549                      3065692                      1944101
5550                      2406247                      1619231
5551                      2486040                      1644832
5552                      2538488                      1771851
5553                      2257593                      1216115
5554                      2470528                      1608842
5555                      2223310                      1665447
5556                      2681463                      1557228
5557                      2734390                      1670969
5558                      2293244                      1225073
5559                      3123582                      1921220
5560                      2240990                      1438474
5561                      2761390                      1345680
5562                      2868823                      1515056
5563                      2538772                      1418302
5564                      2707753                      1383713
5565                       297873                       130112
5566                       323315                       142224
5567                       386799                       167338
5568                       268576                       105843
5569                       203322                       104487
5570                       210703                       109832
5571                       207108                       114356
5572                       189492                       106572
5573                       170583                        77113
5574                       208644                        92147
5575                       326050                       204703
5576                       227171                       153534
5577                       201432                       131472
5578                       188233                       117477
5579                       179628                       104714
5580                       193032                       111107
5581                       192349                       112529
5582                       211027                       134565
5583                       223752                       142739
5584                       244143                       159059
5585                       219758                       152301
5586                       212715                       144484
5587                       262557                       169488
5588                       251112                       178907
5589                       287874                       187139
5590                       318422                       212682
5591                       346014                       243994
5592                       278539                       167775
5593                       213895                       110853
5594                       238201                       106610
5595                       257285                       107016
5596                       198590                        97204
5597                       162737                        97314
5598                       212841                       124984
5599                       255700                       173262
5600                       195911                        97308
5601                       199617                        92473
5602                       168152                        97396
5603                       114281                        82970
5604                       155583                        99134
5605                       140577                        86993
5606                       149760                        88060
5607                       118579                        89574
5608                       125241                        84429
5609                       140173                        88187
5610                       159513                        89654
5611                       170068                       100404
5612                       149053                        94019
5613                       135481                        94434
5614                       125527                        89811
5615                       124938                        82660
5616                       128929                        94219
5617                         9736                         5557
5618                        15616                         6863
5619                        17208                         8914
5620                        13854                         7268
5621                         9511                         7061
5622                        11426                         5059
5623                        13940                         7536
5624                        12115                         8006
5625                        13050                         9877
5626                         8829                         5051
5627                         8570                         5102
5628                         6774                         3882
5629                         5802                         2148
5630                         9300                         5070
5631                         9933                         5391
5632                         9155                         5290
5633                         8985                         4559
5634                        10139                         4615
5635                        13412                         9396
5636                        13908                         8599
5637                        12331                         8302
5638                        13636                         5918
5639                         8075                         5553
5640                         9037                         3250
5641                        10739                         4950
5642                        16008                         8213
5643                        14764                         6549
5644                        12666                         4686
5645                        11748                         3875
5646                        12858                         2704
5647                        10247                         2834
5648                        12728                         6142
5649                        10798                         5339
5650                        13280                         5728
5651                        36807                         9601
5652                        22820                        10547
5653                        23292                         8236
5654                        14005                         7180
5655                        13908                         7122
5656                        19978                         6332
5657                        18843                         7253
5658                        18268                         8302
5659                        26415                        10990
5660                        13389                        13277
5661                        11150                        10910
5662                        10955                        10784
5663                        12161                        11651
5664                        10233                        10047
5665                        12780                        12394
5666                        11195                        11060
5667                        12635                        12575
5668                        12675                        12607
5669                         7875                         7867
5670                       265512                       173990
5671                       200421                       130079
5672                       218795                       153468
5673                       229538                       158483
5674                       207280                       137581
5675                       172460                       113141
5676                       181617                       118386
5677                       233196                       154898
5678                       258204                       189678
5679                       199514                       131656
5680                       149984                        95710
5681                       173759                       110653
5682                       166006                       100702
5683                       153118                       101913
5684                       136223                        88241
5685                       141332                        90750
5686                       178201                       116857
5687                       150195                        92866
5688                       179772                       116587
5689                       196442                       132375
5690                       220635                       148972
5691                       205049                       137139
5692                       164738                       105248
5693                       167769                       115065
5694                       216598                       154627
5695                       215484                       138657
5696                       223817                       136028
5697                       205576                       102983
5698                       174184                        94082
5699                       203016                       117301
5700                       293014                       174068
5701                       199865                       131064
5702                       222049                       142077
5703                       250754                       171472
5704                       277195                       148164
5705                       215669                       131645
5706                       225570                       138921
5707                       256639                       170946
5708                       193143                       107369
5709                       206734                       150547
5710                       170193                       108832
5711                       195711                       120154
5712                       203386                       126155
5713                       221981                       143651
5714                       275008                       222151
5715                       230747                       171819
5716                       233733                       176286
5717                       278348                       180392
5718                       256178                       177033
5719                       298994                       177899
5720                       221084                       145333
5721                       244203                       172511
5722                       204228                       111600
5723                       258478                       245666
5724                       191657                       184571
5725                       188865                       177981
5726                       286729                       263946
5727                       177809                       173143
5728                       189136                       157579
5729                       210972                       167489
5730                       189263                       178913
5731                       180419                       173552
5732                       181207                       179693
5733                       189246                       184656
5734                       179168                       166892
5735                       155034                       147300
5736                       181228                       167896
5737                       161333                       158073
5738                       160297                       158757
5739                       177515                       169534
5740                       171218                       168301
5741                       194141                       192628
5742                       210388                       198851
5743                       199211                       186158
5744                       188752                       182988
5745                       192553                       187555
5746                       186024                       181105
5747                       185101                       177112
5748                       182813                       170310
5749                       210713                       182309
5750                       183159                       167327
5751                       181315                       169246
5752                       196220                       184501
5753                       205927                       201472
5754                       228252                       221419
5755                       205002                       202535
5756                       263404                       259582
5757                       290272                       282860
5758                       207964                       202999
5759                       213890                       197171
5760                       203368                       182834
5761                       221513                       218334
5762                       216975                       213697
5763                       199144                       196644
5764                       198718                       179561
5765                       205302                       202870
5766                       192143                       190685
5767                       190774                       185955
5768                       180992                       169659
5769                       187780                       166227
5770                       196303                       187363
5771                       199803                       193911
5772                       194071                       187903
5773                       190555                       188395
5774                       186202                       183395
5775                       153891                       151346
5776                        33481                        28765
5777                        24789                        18067
5778                        24713                        18837
5779                        25648                        19630
5780                        39372                        35079
5781                        19551                        14540
5782                        21681                        14002
5783                        37274                        32441
5784                        33975                        29561
5785                        27859                        22077
5786                        26913                        23454
5787                        19239                        13508
5788                        18346                        13229
5789                        17961                        12676
5790                        19321                        13554
5791                        22053                        15258
5792                        21061                        13679
5793                        24531                        18158
5794                        39856                        35503
5795                        35581                        29076
5796                        24874                        16648
5797                        25010                        16530
5798                        24556                        15602
5799                        24303                        15904
5800                        24002                        15219
5801                        67061                        66748
5802                        44265                        44185
5803                        42489                        42360
5804                        40757                        40688
5805                        41195                        41168
5806                        44450                        44427
5807                        46020                        45988
5808                        37460                        37443
5809                        43342                        41044
5810                        47946                        45880
5811                        56280                        56264
5812                        39398                        39291
5813                        43304                        43271
5814                        41820                        41795
5815                        40326                        40187
5816                        38686                        38139
5817                        39914                        39041
5818                        60323                        58420
5819                        47208                        32639
5820                        56560                        38257
5821                        57149                        45027
5822                        42822                        41657
5823                        64602                        61439
5824                        53363                        36294
5825                        40125                        34932
5826                        43241                        38975
5827                        48885                        40257
5828                        55914                        53093
5829                        82614                        65868
5830                        88922                        75107
5831                        89311                        74553
5832                       114437                        93126
5833                        88460                        66539
5834                       106195                        65656
5835                       120892                        77117
5836                        84655                        74568
5837                        91080                        74160
5838                        87565                        74278
5839                        84463                        81134
5840                        64454                        57500
5841                       110789                        76161
5842                        99462                        71620
5843                       101081                        67635
5844                       126119                        89623
5845                       117589                        97862
5846                       112257                        83324
5847                       127401                        89674
5848                       137738                        90348
5849                       122063                        78321
5850                       122695                        85619
5851                       126528                        96107
5852                       116370                        77918
5853                       117221                        76877
5854                        82653                        75760
5855                        96597                        88408
5856                       102279                        94362
5857                       120491                       112280
5858                       117600                       109052
5859                       121711                       115907
5860                       133481                       127581
5861                       122285                       117071
5862                       153291                       146852
5863                       170610                       148967
5864                       126935                       114535
5865                       125473                       104839
5866                       143658                       124789
5867                       170299                       149095
5868                       132972                       115541
5869                       127844                       115696
5870                       105821                        87773
5871                        95963                        75285
5872                        75551                        75015
5873                        92378                        88862
5874                        96599                        88030
5875                       103106                        97916
5876                       119617                       119075
5877                       127374                       126000
5878                       120962                       118685
5879                       106575                       106092
5880                       107889                       107796
5881                        79554                        79340
5882                        46927                        37398
5883                        47400                        43236
5884                        43423                        38801
5885                        55893                        51673
5886                        57974                        54677
5887                        45769                        40451
5888                        47700                        36898
5889                        52678                        45324
5890                        51746                        19895
5891                        56499                        15585
5892                        26419                        21740
5893                        20178                        14837
5894                        45633                        25279
5895                        30601                        16986
5896                        57123                        50015
5897                        74184                        60985
5898                        72325                        63253
5899                        64736                        56628
5900                        71550                        71041
5901                        67578                        64906
5902                        81549                        79458
5903                        74744                        73066
5904                        78808                        76952
5905                        78536                        76394
5906                        70606                        68147
5907                        84698                        78261
5908                        61839                        55196
5909                        36633                        32338
5910                        44636                        40583
5911                        36714                        30261
5912                        63179                        59569
5913                        83633                        81517
5914                        65929                        63240
5915                        83714                        82649
5916                        85504                        84213
5917                        93620                        91173
5918                        74454                        72229
5919                        92947                        87097
5920                        90311                        38344
5921                        90414                        64654
5922                        87549                        86728
5923                        76846                        73724
5924                        78812                        56757
5925                        63718                        63653
5926                        49724                        49518
5927                        45965                        44232
5928                        62352                        58032
5929                        89738                        89665
5930                        89483                        87724
5931                        88840                        86198
5932                        97843                        96320
5933                        72788                        72703
5934                        45429                        45155
5935                      1538195                      1461095
5936                      1360608                      1277612
5937                      1310921                      1229947
5938                      1378241                      1291299
5939                      1449838                      1365781
5940                      1181616                      1093008
5941                      1434759                      1328429
5942                      1337035                      1248089
5943                      1181948                      1105520
5944                      1222284                      1165131
5945                       912892                       856749
5946                       881912                       822315
5947                       806432                       747128
5948                       853098                       794746
5949                       858056                       801573
5950                       911326                       860705
5951                       961878                       904618
5952                       902975                       839520
5953                       892415                       830646
5954                      1071307                       986593
5955                      1245968                      1160556
5956                      1290309                      1201487
5957                      1032288                       948516
5958                      1097188                      1018813
5959                      1085561                      1007608
5960                      1838138                      1767977
5961                      1913364                      1844798
5962                      2123362                      2061235
5963                      2066074                      1989159
5964                      2168105                      2095827
5965                      2407209                      2348868
5966                      1905813                      1829396
5967                      1756380                      1685047
5968                      2289867                      2216400
5969                      2399302                      2314634
5970                      1845111                      1770414
5971                      1925543                      1849563
5972                      1658970                      1585488
5973                      2032219                      1957059
5974                      2132149                      2059479
5975                      1698370                      1629800
5976                      1772455                      1709046
5977                      1603341                      1528140
5978                      1791637                      1727385
5979                      1954663                      1870563
5980                      1918345                      1728825
5981                      2403372                      2247565
5982                      3462626                      3403581
5983                      2601999                      2504422
5984                      2297516                      2207075
5985                      2036110                      1910596
5986                      1985818                      1807927
5987                      1940375                      1762034
5988                       170310                       162934
5989                        66648                        63207
5990                        71289                        66708
5991                       153859                       146050
5992                        63193                        59298
5993                        64544                        61925
5994                        68336                        65221
5995                        66556                        62017
5996                        70611                        66782
5997                        62685                        56998
5998                        54001                        50705
5999                        56369                        49195
6000                        58116                        52744
6001                        57761                        52514
6002                        62461                        57930
6003                        66660                        62157
6004                        67525                        63281
6005                        76109                        67996
6006                        76174                        69563
6007                        80510                        71102
6008                        77338                        67363
6009                        78414                        71208
6010                        69740                        63813
6011                        83187                        75924
6012                        85804                        77573
6013                        82485                        73227
6014                        80928                        71120
6015                        79815                        72142
6016                        71205                        62169
6017                        80493                        69740
6018                        73288                        65629
6019                        84116                        80490
6020                        76179                        71311
6021                        88147                        83152
6022                       108825                        98860
6023                        83079                        73582
6024                        86865                        81394
6025                        69885                        66437
6026                        68824                        64339
6027                        90394                        85958
6028                        74294                        69701
6029                        67822                        63180
6030                        63105                        58991
6031                        60320                        56437
6032                        59434                        54951
6033                        63901                        59663
6034                        64825                        59465
6035                        70493                        56412
6036                        69454                        58829
6037                        68630                        54563
6038                        62954                        52627
6039                        72166                        63539
6040                        59678                        45920
6041                        71779                        63314
6042                        90196                        78807
6043                       130858                        77381
6044                       510679                        87490
6045                        84522                        48070
6046                        74100                        68552
6047                        84575                        81798
6048                        82312                        79021
6049                        76848                        73426
6050                        76777                        74127
6051                        64007                        59543
6052                        74882                        69716
6053                        69781                        66070
6054                        85292                        77980
6055                        89060                        79456
6056                        77432                        69985
6057                        92390                        82437
6058                        90767                        79319
6059                        85041                        74671
6060                        93275                        79635
6061                        85103                        72282
6062                        85140                        71189
6063                        76625                        66466
6064                        85948                        73112
6065                        94852                        84928
6066                       124673                       122062
6067                       130528                       128739
6068                       122863                       119020
6069                       106152                       103151
6070                        82404                        76118
6071                        70414                        61829
6072                        76176                        69118
6073                        77064                        67000
6074                        75075                        68907
6075                        87544                        75729
6076                        81022                        72855
6077                        72873                        66654
6078                        82832                        75156
6079                        72633                        63363
6080                        61143                        56001
6081                        62037                        56905
6082                        65007                        61719
6083                        53435                        47528
6084                        68875                        62918
6085                        68809                        62915
6086                        71644                        64795
6087                        87882                        81976
6088                       105221                        94444
6089                        96974                        85616
6090                        91408                        83228
6091                        75362                        67302
6092                        91609                        81468
6093                        69718                        63551
6094                       130414                       120023
6095                        62632                        48089
6096                        83965                        57656
6097                       139814                        38355
6098                       163245                        20306
6099                        98908                        15934
6100                       152289                        19201
6101                       198609                        16033
6102                       193381                        19496
6103                       147745                        28319
6104                       116850                        31735
6105                       115871                        21562
6106                       112444                        19544
6107                       116625                        22882
6108                       109312                        22412
6109                       110332                        25990
6110                       130384                        28410
6111                       133358                        28780
6112                       160334                        21251
6113                       194755                        21955
6114                       163128                        21883
6115                       142600                        23000
6116                       126532                        16005
6117                       124578                        14923
6118                       120977                        16211
6119                       155718                        38543
6120                       229892                        35260
6121                       230991                        28718
6122                       164488                        33465
6123                       270674                        24202
6124                       241315                        32810
6125                       214935                        34310
6126                       178059                        27840
6127                       216923                        25076
6128                       397270                        33659
6129                       140817                        30878
6130                       128696                        29244
6131                       175191                        36250
6132                       129691                        30134
6133                       209329                        33461
6134                       142153                        30291
6135                       189313                        33908
6136                       203327                        28992
6137                       186513                        20143
6138                       168623                        28279
6139                       206009                        23086
6140                       183442                        30174
6141                       223654                        35158
6142                       203170                        30235
6143                       232673                        34562
6144                       216858                        29095
6145                       152922                        33746
6146                       193851                        30669
6147                        81710                        68828
6148                        67052                        61296
6149                        69696                        58822
6150                        67132                        59595
6151                        71746                        56452
6152                        48949                        38018
6153                        75591                        69169
6154                        82556                        69587
6155                        97756                        91641
6156                        73161                        68104
6157                        48303                        42964
6158                        45124                        38815
6159                        47263                        40288
6160                        50248                        42738
6161                        50046                        44515
6162                        51527                        44155
6163                        60566                        52388
6164                        51065                        44365
6165                        69185                        62542
6166                        96078                        88137
6167                        71343                        62534
6168                        86891                        78410
6169                        61694                        52484
6170                        53909                        48160
6171                        58486                        49409
6172                       115493                        92651
6173                       135796                       119449
6174                       115732                        98172
6175                       150871                       135611
6176                        75283                        71041
6177                        91098                        85697
6178                        78751                        56750
6179                        71333                        62963
6180                       102078                        94035
6181                       112857                       104277
6182                        83333                        75470
6183                        75309                        72832
6184                       121098                       118412
6185                        93908                        91577
6186                        73248                        70290
6187                        60339                        57573
6188                        45907                        43921
6189                        44082                        40702
6190                        59882                        54734
6191                        69402                        66798
6192                        64535                        62128
6193                        81002                        76106
6194                       118216                       114404
6195                        62604                        54599
6196                        69396                        65667
6197                        75099                        65836
6198                        84768                        81563
6199                        76630                        73433
6200                       323046                       161255
6201                       287235                       204607
6202                       322293                       262364
6203                       425919                       358595
6204                       360040                       278475
6205                       211630                       130864
6206                       226238                       137522
6207                       269169                       120695
6208                       293086                       104980
6209                       306158                       180681
6210                       323694                       252684
6211                       227064                       147725
6212                       234958                       149961
6213                       228952                       147484
6214                       253846                       175956
6215                       237414                       161740
6216                       259060                       179461
6217                       266531                       188278
6218                       272014                       192595
6219                       309309                       154837
6220                       323784                       157632
6221                       279678                       187977
6222                       256708                       169790
6223                       279535                       181152
6224                       317217                       174976
6225                       548399                       542369
6226                       449314                       445093
6227                       414839                       410536
6228                       394882                       391343
6229                       393750                       390320
6230                       382898                       379395
6231                       366096                       363231
6232                       337512                       334653
6233                       376331                       372604
6234                       377986                       373862
6235                       409483                       405190
6236                       478559                       474436
6237                       467254                       463182
6238                       343176                       338910
6239                       351806                       347585
6240                       354163                       350222
6241                       314531                       311549
6242                       312997                       310580
6243                       298477                       296356
6244                       319531                       292306
6245                       354552                       317474
6246                       475224                       464057
6247                       430203                       352920
6248                       308162                       264359
6249                       305307                       302263
6250                       323455                       319826
6251                       344998                       341681
6252                       367515                       364446
6253                       447156                        62602
6254                       350633                       104300
6255                       322595                        98285
6256                       397779                       131382
6257                       365682                        98904
6258                       233907                        93132
6259                       356693                        97734
6260                       431105                       102535
6261                       482924                        89817
6262                       415934                        92309
6263                       268155                        96160
6264                       251336                        98272
6265                       264170                       102205
6266                       241372                        68912
6267                       212814                        75919
6268                       247154                       113823
6269                       290599                       130758
6270                       286938                       108571
6271                       383746                        99070
6272                       426661                        88857
6273                       277065                       109341
6274                       268074                       101541
6275                       314570                        80822
6276                       455022                        86886
6277                       312011                       114963
6278                       503389                       192191
6279                       480713                       167077
6280                       482129                       130071
6281                       487713                       129619
6282                       446178                       115181
6283                       486886                       200815
6284                       463747                       125062
6285                       382891                        90426
6286                       373293                       215216
6287                       382469                       272024
6288                       371750                       176258
6289                       418129                        88929
6290                       446787                       103005
6291                       380509                       117825
6292                       348704                       156262
6293                       301355                       144528
6294                       348988                       142550
6295                       359291                       134715
6296                       316422                       148831
6297                       390731                       214059
6298                       374405                       150958
6299                       310309                       109878
6300                       502651                       249330
6301                       485812                       315628
6302                       476140                       326362
6303                       430361                       255415
6304                       409948                       247424
6305                       471873                       310280
6306                       204946                       161600
6307                       174366                       156973
6308                       177833                       149638
6309                       167857                       148544
6310                       194253                       120011
6311                       110088                        82401
6312                       193752                       175882
6313                       218572                       185753
6314                       221898                       204822
6315                       175216                       163759
6316                       123012                       106302
6317                       104445                        89626
6318                       117240                        98662
6319                       116390                        99540
6320                       116034                       100643
6321                       122269                       101941
6322                       134246                       113844
6323                       115633                        98011
6324                       150869                       133119
6325                       213257                       191985
6326                       160945                       137134
6327                       212512                       185661
6328                       158180                       133047
6329                       129995                       113416
6330                       183787                       155523
6331                       283406                       232206
6332                       220760                       183724
6333                       234481                       200995
6334                       375816                       349597
6335                       164275                       159994
6336                       191150                       174009
6337                       187643                       126219
6338                       156042                       123294
6339                       249876                       225833
6340                       297887                       259511
6341                       172423                       150695
6342                       159465                       144673
6343                       183706                       165253
6344                       137997                       123526
6345                       143399                       131640
6346                       144058                       125425
6347                       118784                       101931
6348                        98532                        80640
6349                       198654                       184675
6350                       221494                       186675
6351                       162535                       147195
6352                       228724                       212979
6353                       328254                       321791
6354                       178320                       174386
6355                       258555                       254297
6356                       193117                       181789
6357                       229144                       225725
6358                       196385                       194306
6359                        38298                        17392
6360                        40786                        29812
6361                        38514                        21582
6362                        34838                        25029
6363                        51277                        14813
6364                        33102                        22505
6365                        52667                        42924
6366                        41935                        31462
6367                        35898                        26099
6368                        48602                        40971
6369                        35000                        27100
6370                        33990                        27064
6371                        33872                        25625
6372                        38937                        30262
6373                        37652                        26290
6374                        35352                        25044
6375                        40019                        29054
6376                        43184                        30196
6377                        38971                        26953
6378                        45490                        30577
6379                        42146                        29467
6380                        50333                        31735
6381                        45228                        30869
6382                        43980                        29975
6383                        44639                        25054
6384                        57100                        38785
6385                        66921                        45887
6386                        56364                        42162
6387                        65284                        38841
6388                        57395                        40421
6389                        50161                        34931
6390                        56782                        41978
6391                        51165                        35806
6392                        47715                        35586
6393                        50332                        30913
6394                        49986                        36779
6395                        47828                        32757
6396                        58794                        39419
6397                        43014                        30184
6398                        44999                        31735
6399                        50130                        32426
6400                        46315                        30574
6401                        42831                        26704
6402                        49806                        28414
6403                        47601                        25307
6404                        42589                        28013
6405                        59040                        49076
6406                        82539                        78260
6407                        60697                        53182
6408                        81248                        72436
6409                        55011                        49537
6410                        67636                        60762
6411                        72555                        68737
6412                      1202219                       927628
6413                      1001739                       812839
6414                      1066101                       773430
6415                      1562690                       776311
6416                      1183450                       577048
6417                       804532                       475224
6418                      1255362                       810002
6419                      1383179                       791377
6420                      1340878                       823844
6421                      1107450                       775312
6422                       826663                       555285
6423                       813224                       525271
6424                       819118                       531466
6425                       895149                       599057
6426                       896406                       603851
6427                       885608                       597801
6428                      1018823                       687077
6429                       982826                       641936
6430                      1122182                       706995
6431                      1358388                       890686
6432                      1149901                       733843
6433                      1256272                       832555
6434                      1073692                       685116
6435                      1009397                       647896
6436                      1078419                       686342
6437                      1649727                      1093508
6438                      1729174                      1157601
6439                      1696764                      1090180
6440                      1872007                      1345931
6441                      1530739                       867501
6442                      1465604                       858903
6443                      1347372                       776305
6444                      1239244                       750032
6445                      1659702                       944331
6446                      1983926                      1072505
6447                      1241566                       797304
6448                      1203386                       762725
6449                      1388676                       937395
6450                      1074273                       758453
6451                      1139852                       723375
6452                      1075401                       694807
6453                      1074281                       650674
6454                       952800                       549146
6455                      1124589                       720629
6456                      1221965                       756490
6457                      1171348                       721289
6458                      1419929                       978489
6459                      1796713                      1334038
6460                      1392665                       891430
6461                      1540187                      1068557
6462                      1337523                       878110
6463                      1391152                      1010323
6464                      1242361                       885769
6465                        53704                        41330
6466                        65478                        61171
6467                        59146                        54104
6468                        68036                        62283
6469                        64773                        57036
6470                        71341                        55196
6471                        88355                        59742
6472                        70518                        54249
6473                        61018                        58486
6474                        55278                        54996
6475                        63875                        62344
6476                        60177                        48527
6477                        50829                        46035
6478                        60552                        56522
6479                        51542                        50220
6480                        48476                        47546
6481                        50338                        44252
6482                        55767                        52253
6483                        61187                        60212
6484                        68259                        60759
6485                        68273                        55944
6486                        64720                        59348
6487                        65768                        64199
6488                        62894                        58581
6489                        60992                        53142
6490                        66737                        49615
6491                        73563                        61050
6492                        61189                        52906
6493                        62058                        55130
6494                        65908                        58869
6495                        77984                        75849
6496                        84708                        80202
6497                        72121                        70371
6498                        91634                        90107
6499                       107020                       101119
6500                        78362                        76016
6501                        68478                        61431
6502                        87450                        74663
6503                        82363                        78471
6504                        75089                        73919
6505                        69656                        68119
6506                        65314                        58499
6507                        67961                        64447
6508                        67241                        66400
6509                        68720                        66311
6510                        63634                        61718
6511                        64668                        57944
6512                        72537                        67100
6513                        72004                        70448
6514                        77543                        74174
6515                        77124                        75331
6516                        69624                        67891
6517                        57099                        52817
6518                        56274                        48825
6519                        58219                        53041
6520                        61778                        56645
6521                        69543                        58863
6522                        58495                        47328
6523                        70294                        42139
6524                        90071                        61128
6525                        57781                        55528
6526                        73652                        62769
6527                        53790                        51182
6528                        57391                        55718
6529                        51819                        49692
6530                        51062                        50140
6531                        53222                        51546
6532                        42532                        41354
6533                        52302                        50194
6534                        55759                        52069
6535                        54862                        52916
6536                        56091                        55271
6537                        64553                        59504
6538                        66101                        49439
6539                        57016                        52869
6540                        61918                        59707
6541                        54518                        49947
6542                        49710                        46746
6543                        63102                        56481
6544                        58577                        46887
6545                        46271                        42686
6546                        55404                        52478
6547                        66009                        62895
6548                        60533                        59150
6549                        67704                        67320
6550                        60124                        59725
6551                        87497                        85672
6552                       110584                       109325
6553                        58758                        56542
6554                        57702                        51719
6555                        61181                        56049
6556                        77042                        76174
6557                        54303                        53650
6558                        57349                        56284
6559                        52458                        46606
6560                        57368                        56748
6561                        48436                        46651
6562                        54463                        51394
6563                        50458                        45723
6564                        58058                        54677
6565                        54655                        49804
6566                        63874                        62168
6567                        67812                        65059
6568                        48150                        46456
6569                        48584                        47415
6570                        39088                        38035
6571                       613924                       527744
6572                       423209                       327463
6573                       312487                       218018
6574                       506091                       416839
6575                       560213                       479680
6576                       353079                       264827
6577                       384513                       298259
6578                       485264                       416893
6579                       568587                       428439
6580                       453173                       264530
6581                       386326                       298350
6582                       401068                       310037
6583                       402723                       320850
6584                       375823                       291965
6585                       331638                       262287
6586                       330377                       229436
6587                       364252                       259297
6588                       252687                       172564
6589                       402461                       293697
6590                       420043                       230160
6591                       523705                       224811
6592                       384500                       246147
6593                       374783                       247454
6594                       361492                       240331
6595                       411291                       279520
6596                       722268                       334967
6597                       544011                       276152
6598                       494063                       188282
6599                       752366                       201968
6600                       405712                       200221
6601                       577392                       357448
6602                       413741                       187987
6603                       459543                       190862
6604                       583615                       262815
6605                       703049                       232259
6606                       794485                       164674
6607                       752218                       224693
6608                       371325                       312771
6609                       280484                       204288
6610                       476292                       316602
6611                       222861                       203296
6612                       158515                       157513
6613                       102947                       101885
6614                       211272                       209810
6615                       321032                       292107
6616                       419061                       291927
6617                       419749                       278125
6618                       404190                       316098
6619                       194545                        74838
6620                       145505                        79247
6621                       291152                       242010
6622                       282900                       190479
6623                       193803                        62497
6624                        66135                        59517
6625                        55579                        47671
6626                        58298                        48938
6627                        73725                        37305
6628                        68510                        23489
6629                        56024                        25102
6630                        93605                        42396
6631                       100042                        36175
6632                        98141                        35478
6633                        77407                        36905
6634                        58968                        28364
6635                        58463                        27096
6636                        57300                        27891
6637                        64991                        33550
6638                        63551                        31442
6639                        61792                        31782
6640                        69274                        35803
6641                        75306                        39687
6642                        86904                        32946
6643                        82427                        35016
6644                        78244                        36183
6645                        82871                        39049
6646                        76668                        35579
6647                        76418                        37124
6648                        73121                        34009
6649                       113180                        51238
6650                       105792                        54878
6651                       116043                        49445
6652                       113131                        53307
6653                       140149                        46236
6654                       125075                        40297
6655                        97316                        45526
6656                        99360                        44715
6657                       155634                        44373
6658                       148454                        50839
6659                       109826                        47390
6660                       126435                        42540
6661                       111566                        46322
6662                        77579                        41689
6663                        92248                        45777
6664                        99700                        42285
6665                        93504                        41713
6666                        71519                        35130
6667                        69428                        40647
6668                        91847                        38589
6669                        91066                        42819
6670                       100653                        51398
6671                       105217                        53663
6672                       115110                        53542
6673                        94228                        47552
6674                        91022                        45738
6675                        89599                        41839
6676                        67289                        39170
6677                        76262                        29167
6678                        51710                        25722
6679                        66638                        27359
6680                        73668                        33266
6681                        55628                        41484
6682                        47379                        26125
6683                        60179                        25039
6684                        59003                        48421
6685                        48395                        33226
6686                        71276                        39626
6687                        51430                        21041
6688                        51315                        23963
6689                        51765                        22345
6690                        45840                        19481
6691                        35881                        18592
6692                        46140                         8861
6693                        43533                        22005
6694                        50425                        20452
6695                        41827                        19493
6696                        51162                        22007
6697                        67284                        40501
6698                        53639                        22134
6699                        55446                        32147
6700                        56451                        23711
6701                        57145                        24773
6702                        48928                        28914
6703                        56470                        31306
6704                        63837                        33088
6705                        43351                        23346
6706                        57336                        29032
6707                        42394                        24682
6708                        69115                        35449
6709                        54460                        25647
6710                        55359                        24531
6711                        86402                        33910
6712                        64146                        26376
6713                        53961                        25195
6714                        51941                        25863
6715                        52407                        22044
6716                        48749                        20350
6717                        51980                        20445
6718                        50413                        24402
6719                        50664                        23970
6720                        46978                        19071
6721                        61513                        31646
6722                        48542                        19864
6723                        75274                        28074
6724                       141031                        64166
6725                        88795                        37567
6726                       119566                        28446
6727                        80417                        27774
6728                        70680                        29268
6729                       121607                        35501
6730                       116801                        49191
6731                        97857                        60970
6732                        98958                        63480
6733                       124468                        62945
6734                       116140                        47447
6735                        72969                        45659
6736                        91022                        47255
6737                       118895                        42648
6738                       137627                        41686
6739                        88997                        41860
6740                        67506                        46482
6741                        68205                        44184
6742                        72049                        47488
6743                        63357                        43606
6744                        70275                        42658
6745                        72796                        45362
6746                        66526                        43188
6747                        72880                        45087
6748                        63892                        39816
6749                       100425                        34087
6750                       148287                        42423
6751                       108608                        49026
6752                       121688                        58516
6753                       113058                        46713
6754                       107720                        36179
6755                       199351                        75040
6756                       189740                        70019
6757                       175934                        53411
6758                       161887                        55968
6759                       158063                        60840
6760                       177544                        63050
6761                       173650                        62414
6762                       168349                        48462
6763                       191197                        47411
6764                       223945                        50094
6765                       174176                        43598
6766                       230634                        41132
6767                       223203                        56490
6768                       139762                        50812
6769                       158457                        63727
6770                       155331                        64616
6771                       153949                        51704
6772                       153566                        72720
6773                       168363                        53110
6774                       164133                        55240
6775                       135902                        65648
6776                       210639                        53529
6777                       264250                        56406
6778                       135097                        59096
6779                       178184                        44375
6780                       212873                        59471
6781                       212524                        71141
6782                       185749                        62604
6783                      1012389                       959747
6784                       884082                       831557
6785                       840433                       790546
6786                       920916                       868362
6787                       972151                       913002
6788                       755782                       702784
6789                       966392                       893064
6790                       914474                       851550
6791                       799762                       748134
6792                       840115                       794198
6793                       598616                       551748
6794                       558535                       509468
6795                       522541                       475272
6796                       557461                       510569
6797                       574907                       529354
6798                       586009                       543637
6799                       615520                       568315
6800                       572808                       521219
6801                       570846                       523454
6802                       677650                       618120
6803                       846737                       784482
6804                       860005                       793164
6805                       661785                       603467
6806                       711322                       652958
6807                       715949                       658086
6808                      1337481                      1285980
6809                      1384274                      1337891
6810                      1541331                      1496630
6811                      1476810                      1424124
6812                      1598855                      1550404
6813                      1799757                      1761072
6814                      1378948                      1324067
6815                      1231946                      1178399
6816                      1656491                      1602635
6817                      1787982                      1727340
6818                      1345962                      1286252
6819                      1417998                      1358190
6820                      1179887                      1117996
6821                      1520465                      1460395
6822                      1601320                      1542668
6823                      1219914                      1168719
6824                      1260178                      1209898
6825                      1125685                      1067166
6826                      1269943                      1214991
6827                      1406605                      1341305
6828                      1442193                      1277346
6829                      1790490                      1664507
6830                      2701610                      2656630
6831                      1982018                      1923043
6832                      1775687                      1710186
6833                      1522820                      1442446
6834                      1385480                      1288525
6835                      1441332                      1332601
6836                        57333                        37618
6837                        44886                        23838
6838                        44841                        29455
6839                        56811                        26608
6840                        53643                         9238
6841                        29023                        10221
6842                        43155                        12675
6843                        54034                        11788
6844                        45794                        13436
6845                        54992                        13041
6846                        33521                        13492
6847                        32139                        12700
6848                        31510                        11688
6849                        33337                        14044
6850                        31626                        12529
6851                        35311                        14322
6852                        41623                        15816
6853                        42457                        16063
6854                        43650                        17157
6855                        50049                        24106
6856                        53281                        27904
6857                        54996                        29611
6858                        54513                        29280
6859                        52478                        24730
6860                        42770                        15204
6861                        76179                        22207
6862                        62728                        23992
6863                        68242                        20546
6864                        51626                        21822
6865                        63451                        17357
6866                        70111                        16752
6867                        60274                        16202
6868                        50482                        14519
6869                        42501                        16236
6870                        74600                        21513
6871                        42529                        18452
6872                        48335                        16781
6873                        50128                        18407
6874                        44161                        17619
6875                        51394                        18336
6876                        50458                        18245
6877                        28158                        17375
6878                        40621                        14085
6879                        49622                        12671
6880                        43410                        15169
6881                        50788                        13810
6882                        71260                        16002
6883                        48887                        19517
6884                        58306                        17307
6885                        57605                        18678
6886                        43327                        17645
6887                        60172                        17860
6888                        47918                        12574
6889                       152323                        72699
6890                       120690                        88551
6891                       142324                        69456
6892                       150858                        75190
6893                       131661                        75459
6894                       116959                        70352
6895                       155975                        80040
6896                       123105                        72870
6897                       101261                        66124
6898                       152103                        75334
6899                       118763                        61151
6900                        98117                        72028
6901                       109102                        80224
6902                        96658                        54423
6903                        75257                        33218
6904                        77835                        16643
6905                        61778                        34614
6906                        90373                        40451
6907                        97570                        37813
6908                        94303                        34143
6909                       114203                        31618
6910                        94854                        38651
6911                        95997                        34817
6912                       104764                        35386
6913                        90205                        38435
6914                       111333                        44356
6915                       131428                        49955
6916                       123210                        51069
6917                       127089                        51804
6918                       160585                        73486
6919                       152040                        84993
6920                       167809                       102592
6921                       146579                        86441
6922                       149836                        87202
6923                       209631                        96700
6924                       193154                        79252
6925                       145077                        81699
6926                       129146                        73084
6927                       106611                        66359
6928                       119204                        63253
6929                       121257                        59606
6930                       143484                        80526
6931                       106551                        58637
6932                       112654                        56961
6933                       135508                        76060
6934                       116357                        58635
6935                       170281                        67653
6936                       282357                       102844
6937                       208309                        99039
6938                       253417                        71856
6939                       210805                        82723
6940                       190953                        85739
6941                       277538                        84253
6942                      1411792                      1246594
6943                       945549                       824335
6944                       961484                       853140
6945                      1404338                      1229379
6946                       953110                       762953
6947                       793694                       663097
6948                       939370                       751485
6949                       919162                       735347
6950                       982039                       821114
6951                       927954                       774153
6952                       796520                       698823
6953                       778033                       654675
6954                       745721                       630329
6955                       808832                       688480
6956                       801386                       704199
6957                       817470                       716654
6958                       865623                       732278
6959                       889303                       747801
6960                       944712                       804265
6961                      1087069                       904139
6962                      1013908                       836576
6963                      1006738                       856452
6964                       977682                       833165
6965                      1005806                       861275
6966                      1016825                       860214
6967                      1214992                       969122
6968                      1267464                      1026993
6969                      1127352                       903265
6970                      1054980                       909823
6971                      1112756                       900867
6972                      1123278                       916402
6973                      1241825                      1002084
6974                      1151651                       953596
6975                      1259277                      1104012
6976                      1698911                      1456001
6977                      1185502                      1038439
6978                      1185824                      1044589
6979                      1092118                       962600
6980                      1088253                       990216
6981                      1322626                      1192231
6982                      1127463                       988524
6983                       970056                       867587
6984                       995740                       868710
6985                      1176993                      1044381
6986                       950191                       823880
6987                      1007621                       857235
6988                      1054822                       860149
6989                      1116991                       950346
6990                      1003194                       845213
6991                      1042788                       859649
6992                      1003637                       876947
6993                      1007511                       873053
6994                       875004                       719380
6995                        89386                        70278
6996                        78726                        65116
6997                        92613                        79114
6998                       109265                        94522
6999                        98063                        78202
7000                        70172                        58959
7001                        77107                        65958
7002                        73436                        63381
7003                        75735                        63827
7004                        82107                        68555
7005                        59465                        49861
7006                        63457                        53310
7007                        59729                        49424
7008                        59782                        52292
7009                        61965                        54502
7010                        66685                        56309
7011                        66122                        56903
7012                        68909                        57883
7013                        61856                        48845
7014                       109665                        90141
7015                       105463                        87901
7016                       100571                        86175
7017                        81491                        65556
7018                        83116                        71645
7019                        86618                        71974
7020                       130340                       105531
7021                       128485                       110433
7022                       125573                       105149
7023                       118640                       105965
7024                        87799                        74772
7025                       123456                       106244
7026                       125467                        85800
7027                       112547                        86638
7028                        92767                        72042
7029                       186645                       163451
7030                       127369                       105192
7031                       108081                        97879
7032                       109216                       102366
7033                       130683                       122343
7034                       147714                       139193
7035                       130851                       122644
7036                       107141                        99605
7037                        97261                        89586
7038                       193382                       186396
7039                        81143                        72020
7040                        99281                        90304
7041                       101336                        80701
7042                       152057                       131345
7043                       107675                        92859
7044                       107806                        82914
7045                       122107                       106434
7046                       111083                        98009
7047                       109586                        87099
7048                        73558                        61080
7049                        81602                        72271
7050                        79982                        68850
7051                        83640                        71291
7052                        81753                        77355
7053                        67390                        57613
7054                        73013                        63649
7055                        88890                        83664
7056                        72660                        65167
7057                        84659                        72753
7058                        83684                        73112
7059                        73875                        65363
7060                        96188                        82449
7061                        74229                        61436
7062                        54024                        44408
7063                        57080                        46789
7064                        69840                        59452
7065                        70285                        56268
7066                        68207                        58891
7067                        73538                        61052
7068                        75429                        60971
7069                        76797                        56842
7070                        73330                        55779
7071                        68790                        49217
7072                        82836                        64602
7073                        87743                        80325
7074                       100813                        93221
7075                       104346                        94389
7076                        83711                        76256
7077                        93556                        76638
7078                        72381                        53363
7079                        80031                        55455
7080                        69239                        46751
7081                        76464                        49414
7082                       109149                        86741
7083                        79491                        60608
7084                        70788                        52284
7085                        78643                        59164
7086                        74226                        55995
7087                        71764                        53764
7088                        73915                        53280
7089                        67422                        51297
7090                        67854                        51342
7091                        70143                        55427
7092                        86758                        69742
7093                        71703                        54549
7094                        85323                        59560
7095                       152144                       119085
7096                        99062                        77868
7097                        93631                        56029
7098                        83867                        60509
7099                        75164                        52404
7100                       100206                        68818
7101                       347832                       269325
7102                       404470                       379574
7103                       484078                       465886
7104                       434203                       411052
7105                       496308                       466132
7106                       473316                       373479
7107                       633460                       448431
7108                       402660                       369347
7109                       624918                       563910
7110                       354342                       330959
7111                       392401                       368385
7112                       352630                       319603
7113                       359171                       340114
7114                       410154                       377569
7115                       384583                       362091
7116                       389955                       355131
7117                       392890                       356287
7118                       374558                       360306
7119                       387007                       358844
7120                       402064                       377884
7121                       515651                       462812
7122                       393958                       358319
7123                       382864                       362405
7124                       409514                       380874
7125                       393553                       368996
7126                       555725                       494674
7127                       511546                       270379
7128                       403511                       260424
7129                       417710                       290383
7130                       563461                       322838
7131                       445573                       345141
7132                       569756                       372164
7133                       423673                       352351
7134                       534266                       445866
7135                       766062                       451173
7136                       369051                       314751
7137                       360815                       312758
7138                       403705                       339954
7139                       461406                       407168
7140                       389659                       340915
7141                       389225                       330935
7142                       384028                       336742
     Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)
1                              93                              0.00
2                              97                              0.00
3                             103                              0.00
4                             134                              0.00
5                             198                              0.00
6                             127                              0.00
7                             122                              0.00
8                             562                              0.00
9                             284                              0.00
10                            564                              0.00
11                            328                              0.00
12                            258                              0.00
13                            377                              0.00
14                            146                              0.00
15                            778                              0.00
16                            621                              0.00
17                            227                              0.00
18                             88                              0.00
19                            135                              0.00
20                            146                              0.00
21                            110                              0.00
22                             79                              0.00
23                            131                              0.00
24                            184                              0.00
25                            108                             33.33
26                            236                              0.00
27                            350                              0.00
28                            214                              0.00
29                            659                              0.00
30                            460                              0.00
31                            459                              0.00
32                            593                              0.00
33                            372                              0.00
34                            286                              0.00
35                            369                              0.00
36                            702                              0.00
37                            699                              0.00
38                            666                              0.00
39                            756                            104.17
40                            476                              0.00
41                            497                              0.00
42                            381                              0.00
43                            354                              0.00
44                            165                              0.00
45                            379                              0.00
46                            333                              0.00
47                            508                              0.00
48                            152                              0.00
49                            742                              0.00
50                            270                              0.00
51                            389                              0.00
52                            530                              0.00
53                          17748                              0.00
54                          11868                              0.00
55                          22628                             13.53
56                          13655                              2.71
57                          20739                             24.41
58                          19390                              0.00
59                          13390                              0.00
60                          12941                             24.60
61                          25929                              8.22
62                          24925                              0.00
63                          23455                              0.00
64                          45134                              0.00
65                          44585                              0.00
66                          25126                              2.78
67                          52442                             61.28
68                          29679                             13.94
69                          44550                             52.97
70                          14113                             30.67
71                          11884                              0.00
72                          14149                              0.00
73                          21568                             83.27
74                          11720                             41.55
75                          12096                              0.00
76                          16193                              0.00
77                          12280                              0.00
78                          19851                             24.75
79                          13108                            134.40
80                          19011                             46.54
81                          12578                             71.03
82                          21330                              5.45
83                          11200                             29.91
84                          22651                             21.72
85                          11682                              0.00
86                          12560                              0.00
87                          33661                              0.00
88                          10197                              0.00
89                          13681                              0.00
90                          25051                              0.00
91                          16290                            134.72
92                          14466                              0.00
93                          21767                             13.44
94                          11626                             37.59
95                           9394                              0.00
96                          17273                              2.68
97                          10006                              0.00
98                          18158                              0.00
99                          20896                              0.00
100                         41141                              0.00
101                         23436                              0.00
102                         23258                              0.00
103                         25728                              0.00
104                         30109                              0.00
105                          2367                              0.00
106                          2486                              0.00
107                          1896                              0.00
108                          1552                              0.00
109                          1852                              0.00
110                          2663                              0.00
111                          4463                              0.00
112                          6063                              0.00
113                          5209                              0.00
114                          6141                              0.00
115                          5505                              0.00
116                          4685                              0.00
117                          4739                              0.00
118                          5100                              0.00
119                          5140                              0.00
120                          5814                              0.00
121                          3269                              5.54
122                          3159                            176.55
123                          3060                            269.18
124                          2797                             21.90
125                          3298                              0.00
126                          3061                              0.00
127                          3880                              5.41
128                          3862                             13.47
129                          4406                            244.80
130                          5891                            120.33
131                          4023                            164.03
132                          3488                            230.01
133                          3668                            546.62
134                          3626                            260.58
135                          5730                            268.04
136                          5549                            111.28
137                          5152                             15.88
138                          8947                              0.00
139                          7767                             44.44
140                          6184                            102.78
141                          5741                              0.00
142                          5316                              0.00
143                          6357                            873.61
144                          4805                              0.00
145                          4686                              0.00
146                          4734                              0.00
147                          4148                              0.00
148                          3737                              0.00
149                          3786                              0.00
150                          5125                              0.00
151                          5162                              0.00
152                          4672                              0.00
153                          7589                              0.00
154                          4468                              0.00
155                          4076                              0.00
156                          3991                              0.00
157                             6                             35.22
158                            11                             24.12
159                             4                             20.96
160                             0                            357.07
161                             0                            197.36
162                             4                             12.96
163                             9                            426.51
164                           120                            102.29
165                             0                             30.91
166                             0                             50.50
167                             0                              3.26
168                           185                             40.71
169                           505                              1.62
170                           160                              6.47
171                           273                             19.37
172                             0                              0.00
173                             0                              1.61
174                             0                              0.00
175                             0                              0.00
176                             0                              6.40
177                            13                              0.00
178                            49                              0.00
179                           154                              0.00
180                           817                              0.00
181                          1237                              0.00
182                            81                              0.00
183                             0                              1.63
184                             0                            264.71
185                             0                              0.00
186                             9                              0.00
187                             6                              0.00
188                             0                             37.75
189                             0                              8.19
190                             0                             42.47
191                             0                              4.88
192                             0                              4.85
193                             0                              6.42
194                             0                              0.00
195                             0                              3.17
196                             0                              0.00
197                             0                              0.00
198                             0                              0.00
199                             0                              0.00
200                           759                              0.00
201                           232                              0.00
202                          1693                              0.00
203                          1674                              0.00
204                          1778                              0.00
205                          2521                              0.00
206                          2797                              0.00
207                          1629                              0.00
208                          1691                              0.00
209                            99                              0.00
210                           133                              0.00
211                           200                              0.00
212                           224                              0.00
213                           261                              0.00
214                           486                              0.00
215                          1748                              0.00
216                          5078                              0.00
217                          5065                              0.00
218                          4745                              0.00
219                          5003                              0.00
220                          4397                              0.00
221                          5831                              0.00
222                          2603                              0.00
223                          3559                              0.00
224                          4271                              0.00
225                           614                              0.00
226                           189                              0.00
227                           241                              0.00
228                           222                              0.00
229                           231                              0.00
230                           294                              0.00
231                           228                              0.00
232                           227                              0.00
233                          1236                              0.00
234                          2878                              0.00
235                           881                              0.00
236                           293                              0.00
237                           183                              0.00
238                           183                              0.00
239                           303                              0.00
240                           388                              0.00
241                          1858                              0.00
242                          2688                              0.00
243                          3565                              0.00
244                          2534                              0.00
245                          1001                              0.00
246                          1995                              0.00
247                          1949                            145.83
248                          1723                              0.00
249                           460                              0.00
250                           624                              0.00
251                           576                              0.00
252                           440                              0.00
253                           218                              0.00
254                           556                              0.00
255                           813                              0.00
256                           313                              0.00
257                           934                              0.00
258                           368                              0.00
259                           332                              0.00
260                           256                              0.00
261                             0                              0.00
262                             0                              0.00
263                             0                              0.00
264                             0                              0.00
265                             0                              0.00
266                             0                              0.00
267                           742                              0.00
268                          1302                              0.00
269                          1342                              0.00
270                          1902                              0.00
271                          1160                              0.00
272                          1196                              0.00
273                          1284                              0.00
274                           671                              0.00
275                           821                              0.00
276                           446                              0.00
277                            13                              0.00
278                             0                              0.00
279                             0                              0.00
280                             0                              0.00
281                             0                              0.00
282                             0                              0.00
283                             0                              0.00
284                             0                              0.00
285                           427                              0.00
286                           907                              0.00
287                            62                              0.00
288                             0                              0.00
289                             0                              0.00
290                             0                              0.00
291                             0                              0.00
292                            44                              0.00
293                           978                              0.00
294                           453                              0.00
295                          1102                             43.06
296                           640                             40.28
297                           520                              0.00
298                           814                              0.00
299                           598                             50.00
300                           108                              0.00
301                            56                              0.00
302                           111                              0.00
303                           360                              0.00
304                            62                              0.00
305                           547                              0.00
306                           124                              0.00
307                           596                              0.00
308                            71                              0.00
309                           740                              0.00
310                             2                              0.00
311                             0                              0.00
312                             0                              0.00
313                        110737                          11829.59
314                        136747                          10714.52
315                        180150                           8275.96
316                        126664                           6962.06
317                         82338                           7590.24
318                         82444                           7249.07
319                         53798                           7352.34
320                         36306                           6324.22
321                         19805                           5117.73
322                          7596                           4042.59
323                         10780                           2316.59
324                         18373                           3190.67
325                         25572                           3594.34
326                         13336                           5041.79
327                         17304                           5126.49
328                         76298                           6065.20
329                         33545                           4513.07
330                          5989                           2885.76
331                          6574                           3491.36
332                          2082                           3372.38
333                          7357                           2683.59
334                          4954                           2234.75
335                          5181                           2676.28
336                         20674                           2822.80
337                         18032                           3574.73
338                         27317                           3362.15
339                         21862                           2656.02
340                         24278                           3510.13
341                         22961                           2818.56
342                         23422                           3501.78
343                         23083                           3215.29
344                         24486                           3213.40
345                         18497                           2941.83
346                         18366                           2823.53
347                         19736                           2673.97
348                         26484                           1863.18
349                         71989                           1529.08
350                         79865                           1864.19
351                         59212                           2654.56
352                         61959                           1486.34
353                         30059                           1546.29
354                         27625                           1998.56
355                         27241                           1764.61
356                         34846                           1838.10
357                         36941                           2193.32
358                         47018                           2403.05
359                         56311                           2532.59
360                         41203                           2740.84
361                         46809                           2796.24
362                         36501                           3190.49
363                         31874                           3613.09
364                         47883                           3375.80
365                          2500                              0.00
366                          1782                              0.00
367                          3239                              0.00
368                          2257                              0.00
369                          3415                              0.00
370                          3495                              0.00
371                          2500                              0.00
372                          1647                              0.00
373                          4526                              0.00
374                          4368                              0.00
375                          3358                              0.00
376                          6693                              0.00
377                          7662                              0.00
378                          4567                              0.00
379                          8413                              0.00
380                          5958                              0.00
381                          6844                              0.00
382                          2313                              0.00
383                          2018                              0.00
384                          2216                              0.00
385                          3963                              0.00
386                          2072                              0.00
387                          2073                              0.00
388                          3135                              0.00
389                          2170                              0.00
390                          3378                              0.00
391                          1765                              0.00
392                          3622                              0.00
393                          1982                              0.00
394                          3527                              0.00
395                          2162                              0.00
396                          4014                              0.00
397                          2203                              0.00
398                          2147                              0.00
399                          5589                              0.00
400                          1201                              0.00
401                          1436                              0.00
402                          3396                              0.00
403                          1599                             98.61
404                          1005                              0.00
405                          2968                              0.00
406                          1442                              0.00
407                          1374                              0.00
408                          2852                              0.00
409                          2053                              0.00
410                          9128                              0.00
411                          9363                              0.00
412                         15620                              0.00
413                         12686                              0.00
414                         13058                              0.00
415                         10614                              0.00
416                          6469                              0.00
417                          1618                          10056.67
418                          9593                           8230.00
419                          5694                             65.29
420                           421                             16.76
421                           299                              0.00
422                           294                              0.00
423                           261                              0.00
424                           324                              0.00
425                           422                              0.00
426                           323                              5.61
427                           286                            753.79
428                           529                           2974.56
429                          2240                           1674.84
430                          2923                           4501.47
431                          3317                            379.19
432                          3810                            736.09
433                          3290                              7.39
434                          2205                             86.59
435                          2760                            438.87
436                          3448                            340.71
437                          1905                            372.90
438                          2476                            501.53
439                          3516                            907.04
440                          3531                           2849.46
441                          2536                           1363.39
442                          2236                            237.24
443                          1896                           1054.56
444                          1659                           2120.09
445                          2619                             87.48
446                          4693                            576.94
447                          2299                              3.62
448                          2639                              9.04
449                          2813                             30.80
450                          4468                              0.00
451                          4415                              3.61
452                          3574                            790.11
453                          2780                            103.94
454                          2475                             14.30
455                          3423                            829.75
456                          4163                             10.68
457                          2925                             39.05
458                          3915                             26.59
459                          2235                              5.31
460                          2289                             38.97
461                          3977                             15.94
462                          5113                             19.58
463                          3273                             81.93
464                          3449                            112.35
465                          9266                             87.51
466                          3312                             37.57
467                          4539                             42.96
468                          4651                              0.00
469                         30968                           5350.60
470                         39680                           4447.65
471                         58784                            846.12
472                         42886                           2718.94
473                         24850                           1342.37
474                         31447                           1888.97
475                         40083                           1028.74
476                         42510                           4746.69
477                         53585                           3210.41
478                         45209                           1971.64
479                         24553                           1110.04
480                         31743                           2601.48
481                         45980                           1637.21
482                         34342                           2442.79
483                         29601                           5140.45
484                         34690                           4218.02
485                         45313                           1819.79
486                         42734                           2780.36
487                         41548                           1079.14
488                         41443                           5308.09
489                         34194                           2008.90
490                         33164                           1708.49
491                         43021                           1127.31
492                         33783                           3084.23
493                         37926                            629.27
494                         43027                           1179.38
495                         38098                            626.93
496                         37441                           2126.84
497                         34920                           1307.21
498                         36952                           2785.53
499                         41426                            975.21
500                         30171                            947.11
501                         38536                           2863.62
502                         50265                            262.55
503                         37361                           1499.19
504                         37783                           1278.49
505                         23102                           2591.34
506                         17270                            135.28
507                         14361                            121.79
508                         23746                            391.47
509                         31773                           5732.14
510                         37402                            863.75
511                         32786                            805.18
512                         28230                           4065.90
513                         21704                            752.55
514                         17557                            705.21
515                         18571                            913.86
516                         31756                           4737.81
517                         25970                             16.03
518                         18265                            114.12
519                         26345                             94.50
520                         37445                            112.67
521                          3875                           4164.71
522                          4248                           4257.36
523                          4307                           1216.09
524                          3867                           2500.65
525                          4116                           1149.67
526                          2827                           1698.16
527                          2618                            810.30
528                          6935                           3834.39
529                          3691                           3129.54
530                          3926                           1702.18
531                          4384                            473.54
532                          4766                           2179.90
533                          2203                           2099.60
534                          5538                           1931.33
535                          4672                           4535.79
536                          4202                           3397.00
537                          3612                           1641.68
538                          4937                           2909.73
539                          5011                            899.55
540                          4315                           4404.09
541                          7461                           1840.33
542                          3282                           1936.76
543                          3986                           1023.11
544                          2443                           2161.32
545                          2366                            572.64
546                          4244                           1134.74
547                          5684                            521.66
548                          4739                           2229.60
549                          6030                           1421.71
550                          5889                           3937.60
551                          4733                           1340.27
552                         10832                           1280.32
553                          2464                           3150.27
554                          2797                            729.47
555                          9726                           1206.47
556                          4960                           1291.55
557                          1862                           3189.34
558                           840                            184.34
559                           643                             75.93
560                           937                            375.40
561                          2692                           4470.47
562                          3462                            679.76
563                          5483                           1134.58
564                          1838                           4240.19
565                          2275                            869.61
566                          1860                            597.63
567                          1971                            563.46
568                          3423                           4163.25
569                          2057                             21.43
570                          2962                             68.46
571                          2459                            122.29
572                          2132                            219.20
573                         12278                          15657.53
574                         10331                          25724.53
575                          7473                             34.62
576                         10525                            166.48
577                         13967                             16.53
578                         13139                              3.69
579                         14528                             24.09
580                         10365                            158.19
581                          7645                            158.76
582                          5279                            125.71
583                          7044                             69.47
584                          5967                             72.28
585                         15397                             82.35
586                         12776                             39.50
587                         12833                              7.52
588                         24666                             22.55
589                          8582                             18.72
590                          9171                              1.87
591                          8502                             20.53
592                          8864                             13.03
593                          8139                              3.71
594                         11209                              0.00
595                         18793                              3.69
596                         17379                              7.35
597                          4009                            779.61
598                          5498                              7.28
599                          7500                             10.85
600                          9014                              8.99
601                          4188                              8.95
602                          7102                              7.12
603                         13421                             14.16
604                          5118                             15.97
605                          7629                              8.85
606                          8644                             17.67
607                          6149                            778.00
608                         10464                            389.63
609                         13055                              5.26
610                          9262                              8.81
611                         13749                            822.15
612                         13670                             19.35
613                          9992                             11.93
614                         11780                              7.08
615                         13678                             14.36
616                         12676                             12.27
617                         17417                              0.00
618                         15061                              6.84
619                         12176                             42.77
620                         11475                             16.21
621                         18030                              0.00
622                         12417                             12.83
623                         19802                             25.10
624                         34760                              6.80
625                        227884                             85.85
626                        167807                              0.00
627                        260041                             81.18
628                        304844                            103.50
629                        117819                              0.00
630                        251447                              0.00
631                        342041                              0.00
632                        170280                              5.00
633                        195472                              0.00
634                        183910                              0.00
635                        197488                             17.63
636                        176033                              0.00
637                        143475                              7.59
638                        130401                              0.00
639                        147254                              0.00
640                        101892                              0.00
641                        103602                              0.00
642                        117476                              0.00
643                         77990                              0.00
644                         76789                              0.00
645                         89856                              0.00
646                         88542                              0.00
647                        103844                              0.00
648                        139859                             17.96
649                        101612                            910.68
650                         54456                              0.00
651                         59917                             12.75
652                         44715                              0.00
653                         50223                              0.00
654                         88016                              0.00
655                         35618                              0.00
656                         20604                              0.00
657                         63311                              0.00
658                         66286                              2.46
659                         52804                              0.00
660                         27221                           1004.17
661                         72599                              0.00
662                         56263                              0.00
663                         31484                            929.17
664                         34181                              0.00
665                         35116                              0.00
666                         42906                              0.00
667                         48273                              0.00
668                         37664                              0.00
669                         93534                             14.21
670                         19966                             25.26
671                         48427                             30.18
672                         68007                             40.39
673                         52612                              9.42
674                         73765                             16.16
675                         36704                             26.96
676                         47662                              4.05
677                           762                          12368.92
678                          2932                           8377.98
679                          2843                           6342.66
680                           886                          22744.87
681                           920                           9733.86
682                          1257                           7007.34
683                          1141                           6350.37
684                           735                          22353.33
685                          1107                          20249.06
686                           728                          11902.48
687                           824                           6354.81
688                          1223                           3933.22
689                          1039                          12357.09
690                          1082                          11521.22
691                           839                          21946.09
692                          1330                          17386.67
693                          1238                          11018.56
694                          1067                          15355.40
695                          2155                           7286.03
696                          1573                          19675.58
697                          1472                          11038.05
698                          1676                           7460.89
699                          2518                           4992.64
700                          2038                          10040.61
701                          1977                           4098.08
702                          1850                           6316.80
703                          2126                           2300.95
704                          2832                           9447.43
705                          1786                           3997.50
706                          1181                          13275.87
707                           798                           4464.22
708                           716                           3318.11
709                           591                          11815.49
710                          1880                           1930.85
711                           786                           5438.20
712                          1476                           4838.01
713                          4058                           8939.25
714                          2452                           2846.99
715                          1999                           1392.56
716                          2416                           1298.13
717                           754                          17997.24
718                          1376                           3543.84
719                           474                           4391.02
720                          1144                          17195.99
721                           268                           3449.69
722                           676                           3042.91
723                          1024                           2972.04
724                           688                          15989.95
725                          1280                           3172.70
726                          1066                           1599.83
727                           621                           7436.68
728                          1061                           8391.76
729                          2919                           4199.31
730                          2288                           2324.75
731                          2231                            500.67
732                          1561                           3926.79
733                          2816                             76.44
734                          2327                            791.69
735                          1427                             27.74
736                          1819                             77.96
737                          1757                            823.94
738                          3036                           1631.66
739                          1831                           3046.08
740                          2155                          15532.97
741                          2199                           5014.92
742                          1913                           3770.61
743                          1816                            243.99
744                          2852                           5091.98
745                          3487                             59.46
746                          2309                           3044.72
747                          4716                            626.81
748                          6674                           3771.80
749                          3294                            102.41
750                          4030                            652.26
751                          4085                           1300.15
752                          3806                           4951.32
753                          4902                           1299.83
754                          5692                           6064.59
755                          5044                           2334.14
756                          4943                           3948.61
757                          4402                              5.40
758                          4067                           1535.36
759                          2794                             35.93
760                          4664                             35.82
761                          3991                            178.47
762                          4336                             28.44
763                          1898                             42.42
764                          4305                             52.72
765                          3762                            317.77
766                          3377                             26.04
767                          5166                             73.53
768                          5299                             24.04
769                          2106                            412.43
770                          3244                             15.36
771                          3170                             57.90
772                          3519                           3347.67
773                          3767                            247.21
774                          6203                             56.32
775                          4209                            136.83
776                          4377                            145.80
777                          4553                            116.95
778                          3728                            276.14
779                          2897                            288.89
780                          1098                            924.43
781                         98401                          79085.61
782                        122999                          60840.92
783                        148005                          16157.38
784                        124306                          50602.55
785                         83149                          19984.20
786                         89472                          20682.52
787                         99696                          15737.69
788                        138161                          51776.16
789                        133072                          45827.83
790                        130934                          30629.92
791                         92629                          23087.45
792                         93016                          61820.11
793                        106128                          43203.62
794                        103092                          46148.29
795                        109269                          55144.49
796                        132686                          53743.95
797                        121209                          25584.93
798                        111789                          43474.78
799                        122226                          18463.00
800                        129684                          60192.72
801                        115528                          24597.33
802                        104571                          22229.01
803                        127530                          17412.55
804                        110898                          43341.41
805                        120335                          13789.59
806                        140254                          27719.35
807                        148652                          13642.58
808                        132173                          36826.73
809                        119900                          11782.03
810                        122233                          35809.23
811                        119920                          11966.13
812                        134309                          12522.28
813                        110126                          29374.73
814                        147023                           5019.86
815                        146837                          13835.91
816                        116500                          17202.07
817                         84880                          23926.61
818                         60642                           4465.52
819                         61643                           3754.42
820                         82422                           4453.27
821                        105804                          45576.80
822                        114147                           8958.58
823                        114520                          12664.89
824                         88542                          47632.78
825                         88537                           9441.36
826                         81172                           7922.80
827                         78545                           9512.88
828                        126926                          40152.66
829                        109501                           4563.70
830                         93435                           3499.95
831                         91215                          11071.74
832                        111073                          13928.01
833                           776                              0.00
834                          1230                              0.00
835                           877                              0.00
836                           458                              0.00
837                           629                              0.00
838                          2367                              0.00
839                          3884                              0.00
840                          1678                              0.00
841                           915                              0.00
842                          1307                              0.00
843                           923                              0.00
844                          1792                              0.00
845                           939                              0.00
846                          1656                              0.00
847                           920                              0.00
848                          1981                              0.00
849                          1345                             32.93
850                          1780                            606.82
851                          1140                            715.10
852                           715                              6.51
853                           815                              0.00
854                          1019                              3.22
855                          1272                             41.74
856                          1052                             57.53
857                          1705                            168.73
858                          1623                            516.29
859                          2376                            726.39
860                          1625                            922.99
861                          2821                           1606.66
862                          3220                            787.80
863                          2342                           1177.44
864                          2642                            834.98
865                          1401                            105.12
866                          2065                              0.00
867                          2137                              0.00
868                          2023                             37.50
869                          1966                              0.00
870                          1631                              0.00
871                          1643                             63.89
872                          1349                              0.00
873                          2458                              0.00
874                          2449                              0.00
875                          1850                              0.00
876                          1509                              0.00
877                          1203                              0.00
878                          1118                              0.00
879                          1134                              0.00
880                          1403                              0.00
881                          3658                              0.00
882                          1549                              0.00
883                           998                              0.00
884                          1369                              0.00
885                           944                              0.00
886                           977                              0.00
887                           742                              0.00
888                           640                              0.00
889                           676                              0.00
890                           893                              0.00
891                          1866                              0.00
892                          5450                              0.00
893                          4658                              0.00
894                          3615                              0.00
895                          3104                              0.00
896                          3378                              0.00
897                          5116                              0.00
898                          3835                              0.00
899                          4730                              0.00
900                          5493                              0.00
901                          1945                              0.00
902                           572                              0.00
903                           909                              0.00
904                          1312                              0.00
905                          1220                              0.00
906                          1193                              0.00
907                          2279                              0.00
908                          2294                              0.00
909                          2182                              0.00
910                          4162                              0.00
911                          3366                              0.00
912                          1792                              0.00
913                          3239                              0.00
914                          1481                              0.00
915                          1925                              0.00
916                          1915                              0.00
917                          2425                              0.00
918                          3352                              0.00
919                          2709                              0.00
920                          2694                             77.78
921                          3833                              0.00
922                          1829                              0.00
923                          2399                              0.00
924                          2510                              0.00
925                          2647                              0.00
926                          3064                              0.00
927                          3545                              0.00
928                          2367                              0.00
929                          2220                              0.00
930                          1555                              0.00
931                          2872                              0.00
932                          3643                              0.00
933                          7189                              0.00
934                          2227                              0.00
935                          1730                              0.00
936                          2660                              0.00
937                         36494                          30373.33
938                         31521                          30753.33
939                         48622                            616.67
940                         62281                              0.00
941                         29860                              0.00
942                         41991                              0.00
943                         68771                              0.00
944                         67738                              0.00
945                         78893                              0.00
946                         44261                             51.78
947                         28107                              0.00
948                         50287                              0.00
949                         68859                              0.00
950                         48907                              0.00
951                         41895                              0.00
952                         72561                              0.00
953                         64673                              0.00
954                         29536                              0.00
955                         35020                              0.00
956                         36255                              0.00
957                         35656                              0.00
958                         33213                              0.00
959                         45802                              0.00
960                         72912                              0.00
961                         57475                            188.89
962                         46541                              0.00
963                         95349                              0.00
964                         81135                              0.00
965                         79784                              0.00
966                         55178                              0.00
967                         65166                              0.00
968                         39499                              0.00
969                         34630                              0.00
970                         69587                              0.00
971                         82238                              0.00
972                         33189                              0.00
973                         34255                              0.00
974                          9907                              0.00
975                          6814                              0.00
976                          5767                              0.00
977                         50898                              0.00
978                         48169                              0.00
979                         75237                              0.00
980                         50854                              0.00
981                         32395                              0.00
982                         36308                              0.00
983                         11012                              0.00
984                         48276                              0.00
985                         24743                              0.00
986                         12960                              0.00
987                         25923                              0.00
988                         25538                              0.00
989                         11524                           5688.98
990                         12134                           5061.53
991                         15580                           2215.72
992                         17734                           1550.73
993                          9975                           1825.35
994                         11042                           1470.45
995                         11753                           2550.11
996                         15190                           3961.27
997                         16206                           3327.66
998                         19395                           2752.83
999                         15546                           1129.73
1000                        11566                           2246.61
1001                        14547                           1844.92
1002                        12078                           2954.19
1003                        18135                           4988.79
1004                        24285                           3361.58
1005                        15846                           3006.74
1006                        15001                           2752.49
1007                        14786                           1614.53
1008                        17605                           4014.41
1009                        14290                           1637.35
1010                        14978                           2324.42
1011                        19119                           1296.56
1012                        18742                           2270.07
1013                        20240                            948.34
1014                        21038                           1204.07
1015                        26115                           1358.45
1016                        23155                           1776.29
1017                        17581                           1279.21
1018                        15866                           1770.93
1019                        15126                           1092.81
1020                        12630                           2811.25
1021                        16314                           2162.17
1022                        22228                            361.84
1023                        17453                           1158.54
1024                        14397                           3551.32
1025                        13534                           1253.60
1026                        10414                            187.93
1027                         6721                             96.31
1028                        11727                            925.76
1029                        16305                           2708.25
1030                        16954                            818.68
1031                        15552                           2322.80
1032                        14729                           2436.75
1033                        13885                            913.07
1034                        12428                            903.98
1035                        12562                           1988.20
1036                        18131                           2760.80
1037                        14953                             38.16
1038                        17914                            149.98
1039                        14766                             78.05
1040                        16160                              0.00
1041                        18008                              0.00
1042                         9941                              5.24
1043                        19064                             13.01
1044                        11106                              0.00
1045                        20149                              0.00
1046                        19075                              0.00
1047                        12407                             10.22
1048                        11396                              0.00
1049                        24853                              0.00
1050                         7879                              0.00
1051                        10269                              0.00
1052                        20755                              0.00
1053                        21282                              0.00
1054                         9747                              0.00
1055                        20649                              0.00
1056                         9315                              0.00
1057                        24314                              0.00
1058                        11403                              0.00
1059                        10595                              0.00
1060                        10515                             27.97
1061                        22386                              0.00
1062                         9418                              0.00
1063                         5186                              0.00
1064                        19562                              0.00
1065                        10035                              0.00
1066                        19191                              0.00
1067                         7380                              0.00
1068                        22189                              0.00
1069                        10045                              0.00
1070                        19582                              0.00
1071                        10339                              0.00
1072                        20836                              0.00
1073                        10355                              0.00
1074                         9392                              0.00
1075                        26430                            150.00
1076                         9095                              0.00
1077                         9743                              0.00
1078                        17389                              0.00
1079                        12506                              0.00
1080                         7643                              0.00
1081                        15342                              0.00
1082                         6773                              0.00
1083                         5894                              0.00
1084                        14580                              0.00
1085                         7303                              0.00
1086                         9073                              0.00
1087                         8381                              0.00
1088                        22129                              0.00
1089                        11172                              0.00
1090                        10376                              0.00
1091                         9704                              0.00
1092                        15033                              0.00
1093                        23936                              0.00
1094                        19111                              0.00
1095                         7809                              0.00
1096                          493                              0.00
1097                          960                              0.00
1098                         1588                              0.00
1099                         1871                              0.00
1100                          760                              0.00
1101                         1121                              0.00
1102                         1774                              0.00
1103                         1686                              0.00
1104                         2991                              0.00
1105                         7728                              0.00
1106                         4280                              0.00
1107                         8313                              0.00
1108                        42953                              0.00
1109                        13780                              0.00
1110                          748                              0.00
1111                         2024                              0.00
1112                        12237                              0.00
1113                        21313                              0.00
1114                        10254                              0.00
1115                         8572                              0.00
1116                        10604                              0.00
1117                        11436                              0.00
1118                        14267                              0.00
1119                        11009                              0.00
1120                        20164                              0.00
1121                        32931                              0.00
1122                        23856                              0.00
1123                        16991                              0.00
1124                        10917                              0.00
1125                        13406                              0.00
1126                        19163                              0.00
1127                        28362                              0.00
1128                        24171                             15.28
1129                        21237                              0.00
1130                        18630                              0.00
1131                        12176                              0.00
1132                         8624                              0.00
1133                          651                              0.00
1134                          371                              0.00
1135                          299                              0.00
1136                          857                              0.00
1137                          152                              0.00
1138                          307                              0.00
1139                          965                              0.00
1140                         1244                              0.00
1141                          280                              0.00
1142                          278                              0.00
1143                          270                              0.00
1144                          512                              0.00
1145                        74359                          11407.39
1146                        94922                          10409.70
1147                       123270                           7813.94
1148                        92325                           6467.24
1149                        61343                           7151.37
1150                        64490                           6914.91
1151                        44152                           6837.17
1152                        29335                           5946.28
1153                        13372                           4805.39
1154                         3775                           3796.27
1155                         6303                           2162.27
1156                        13203                           3137.80
1157                        17899                           3505.86
1158                         9643                           4807.50
1159                        12275                           4996.20
1160                        64067                           5933.08
1161                        26702                           4391.32
1162                         3504                           2870.30
1163                         3995                           3414.61
1164                          760                           3361.00
1165                         4251                           2631.39
1166                         2991                           2172.01
1167                         2937                           2632.26
1168                        13264                           2780.79
1169                        11398                           2858.47
1170                        17235                           3294.46
1171                        13954                           2621.48
1172                        15484                           3450.33
1173                        14619                           2816.82
1174                        14652                           3438.21
1175                        14481                           3024.08
1176                        14886                           3142.13
1177                        11067                           2888.60
1178                        10676                           2786.97
1179                        11566                           1857.91
1180                        15427                           1644.63
1181                        45364                           1527.87
1182                        50473                           1809.99
1183                        36929                           2067.44
1184                        36845                           1464.84
1185                        17691                           1459.53
1186                        16220                           1939.47
1187                        15650                           1604.43
1188                        23570                           1684.64
1189                        25218                           2081.15
1190                        35034                           2124.32
1191                        44327                           2266.22
1192                        31108                           2317.12
1193                        36398                           2418.11
1194                        26671                           2666.02
1195                        25112                           3163.23
1196                        36982                           2950.53
1197                         7289                            734.63
1198                         9360                            591.88
1199                        13677                            328.35
1200                        19216                           1006.92
1201                         9711                            564.00
1202                        10219                            818.59
1203                         8473                            401.48
1204                        12978                           1877.79
1205                        21945                           1319.37
1206                         9879                            887.29
1207                        10101                            494.82
1208                        10132                            692.20
1209                         6299                            753.76
1210                         5225                            943.98
1211                        10943                           1911.96
1212                        11295                           1235.94
1213                        16180                            733.32
1214                         6585                           1515.05
1215                         9442                            408.08
1216                         7719                           2004.91
1217                        10836                            711.05
1218                        13605                            695.48
1219                        17841                            525.40
1220                         7347                            948.25
1221                        11356                            275.06
1222                        10377                            437.36
1223                         9197                            219.02
1224                         7105                           1249.61
1225                         9423                            418.14
1226                        10432                            922.12
1227                        12647                            361.43
1228                         8635                            376.53
1229                         8236                           1075.85
1230                        12740                             65.89
1231                        15349                            480.20
1232                         8286                            600.74
1233                         5205                           1134.33
1234                         3352                             57.48
1235                         7424                              6.02
1236                         3113                            169.26
1237                        12577                           1813.78
1238                         6777                            299.27
1239                         7667                            309.45
1240                         7840                           1628.56
1241                        15763                            235.17
1242                        12927                            319.96
1243                         9464                            288.64
1244                        21297                           1202.06
1245                        12189                             14.88
1246                         8805                             43.17
1247                        11300                             13.46
1248                        16028                              0.00
1249                        58799                              0.00
1250                        29624                             23.09
1251                        54339                              0.00
1252                        33210                              0.00
1253                        50912                              0.00
1254                        59483                              5.83
1255                        33059                              0.00
1256                        31818                              2.92
1257                        57051                              2.93
1258                        25528                              8.80
1259                        26422                              8.83
1260                        54316                              2.95
1261                        48084                              0.00
1262                        24573                              0.00
1263                        54428                              0.00
1264                        26305                              0.00
1265                        64424                              0.00
1266                        23581                              2.91
1267                        24166                             14.48
1268                        22794                              0.00
1269                        56759                              0.00
1270                        22084                              0.00
1271                        20736                              0.00
1272                        37960                              0.00
1273                        24837                            206.94
1274                        60394                              0.00
1275                        27962                              0.00
1276                        54477                              0.00
1277                        26678                              0.00
1278                        53762                              0.00
1279                        25741                              0.00
1280                        60642                              0.00
1281                        26066                              0.00
1282                        22437                              0.00
1283                        77202                            397.22
1284                        28443                            495.83
1285                        30023                              0.00
1286                        56319                              0.00
1287                        41286                            337.50
1288                        28386                              0.00
1289                        53122                              0.00
1290                        24940                              0.00
1291                        22050                              0.00
1292                        56533                              0.00
1293                        26708                              0.00
1294                        35738                              0.00
1295                        26280                              0.00
1296                        63672                              0.00
1297                        31641                              0.00
1298                        35780                              0.00
1299                        28723                              0.00
1300                        48176                              0.00
1301                        35717                           3374.92
1302                        38523                           3737.71
1303                        57240                            831.54
1304                        57794                           2018.02
1305                        40739                           1245.92
1306                        41724                           1601.45
1307                        40843                            631.36
1308                        52181                           3188.00
1309                        81904                           2495.31
1310                        55816                           1227.15
1311                        50778                            469.43
1312                        68092                           1570.72
1313                        61455                           1337.17
1314                        43807                           1619.72
1315                        76794                           4403.81
1316                        61850                           2749.18
1317                        75570                           1757.18
1318                        36845                           3407.44
1319                        41707                           1126.33
1320                        36597                           3474.23
1321                        48070                           1936.74
1322                        46005                           1430.60
1323                        53809                            995.66
1324                        41647                           2341.46
1325                        44653                            943.19
1326                        53155                           1185.95
1327                        37287                           1373.46
1328                        45537                           3161.37
1329                        40770                           1685.32
1330                        56141                           2458.45
1331                        56794                           1093.50
1332                        55107                           1645.20
1333                        44437                           2073.80
1334                        64322                            633.85
1335                        68905                           1248.14
1336                        39078                           1497.45
1337                        37168                           2189.89
1338                        44746                             99.14
1339                        42910                           1013.81
1340                        35421                            355.95
1341                        53741                           4013.11
1342                        34642                           2080.36
1343                        33275                            772.74
1344                        37012                           3228.94
1345                        46784                            541.29
1346                        81139                            611.03
1347                        75649                            620.61
1348                       125798                           2510.08
1349                        99143                             20.35
1350                        90214                             57.84
1351                        85966                             14.07
1352                        80987                            314.80
1353                         7140                              3.33
1354                         4722                              7.60
1355                         9807                            134.55
1356                         4797                             98.00
1357                         7441                             10.34
1358                         7157                            261.71
1359                         5261                              0.00
1360                         5225                              0.00
1361                        11950                              0.00
1362                         8823                              0.00
1363                         9420                              0.00
1364                        17803                              0.00
1365                        16376                             45.13
1366                         9436                             45.21
1367                        19540                            649.63
1368                        11023                            309.25
1369                        15494                            242.92
1370                         5820                              0.00
1371                         4312                              0.00
1372                         5354                            226.75
1373                         8883                            631.08
1374                         4552                            140.85
1375                         4703                             42.44
1376                         8680                            357.27
1377                         5172                            121.33
1378                         8482                            179.35
1379                         3663                            803.37
1380                         9726                            775.84
1381                         5730                              0.00
1382                         8944                            278.90
1383                         4413                             80.91
1384                         7942                            459.17
1385                         4310                              7.56
1386                         4407                            350.54
1387                        10437                              0.00
1388                         3496                              0.00
1389                         6713                              0.00
1390                        10058                              0.00
1391                         6812                              0.00
1392                         6549                              0.00
1393                         6834                             89.88
1394                         3382                           1114.76
1395                         3556                              0.00
1396                         6154                            129.78
1397                         2645                              4.99
1398                         2715                              0.00
1399                         2229                              0.00
1400                         5715                              0.00
1401                         1790                              0.00
1402                         2116                              0.00
1403                         2766                              0.00
1404                         5612                            221.67
1405                         9225                             19.50
1406                         5619                             64.48
1407                         8311                              0.00
1408                         3840                              0.00
1409                         6127                              0.00
1410                         6427                              6.28
1411                         4028                              0.00
1412                         3996                              0.00
1413                         8082                             12.36
1414                         3322                              0.00
1415                         4364                              0.00
1416                         8294                              6.16
1417                         7612                              0.00
1418                         4132                              0.00
1419                         6310                              6.11
1420                         5111                              0.00
1421                         8194                              0.00
1422                         4377                             12.09
1423                         4943                             18.13
1424                         4844                             42.31
1425                         7130                              0.00
1426                         5016                             24.17
1427                         2930                              0.00
1428                         8132                              6.04
1429                         5000                              6.05
1430                         6840                              6.06
1431                         4043                             24.29
1432                         8475                              0.00
1433                         4418                              0.00
1434                         7902                              0.00
1435                         4469                              0.00
1436                         7062                              0.00
1437                         4950                              0.00
1438                         4354                              0.00
1439                         9485                              0.00
1440                         3985                              0.00
1441                         3873                              0.00
1442                         6367                              0.00
1443                         5168                            188.89
1444                         3564                              0.00
1445                         8377                              0.00
1446                         4114                              0.00
1447                         3281                              0.00
1448                         6473                              0.00
1449                         3341                              0.00
1450                         2195                              0.00
1451                         2213                              0.00
1452                         7886                              0.00
1453                         3439                              0.00
1454                         2895                              0.00
1455                         3221                              0.00
1456                         5641                              0.00
1457                        34191                              4.44
1458                        44524                              0.00
1459                        39206                              0.00
1460                        27998                              0.00
1461                        30573                              0.00
1462                        33559                              7.07
1463                        29268                              0.00
1464                        89344                              0.00
1465                        54399                             15.15
1466                        46555                              0.00
1467                        51069                              2.08
1468                        76810                              0.00
1469                        53387                              0.00
1470                        57548                              0.00
1471                        47971                              0.00
1472                        68237                              7.16
1473                        43820                              7.13
1474                        39873                             88.86
1475                        34604                             10.63
1476                        34788                              1.99
1477                        30314                              0.00
1478                        34665                              0.00
1479                        46590                              0.00
1480                        48382                              3.50
1481                        47542                            616.72
1482                        67626                             93.80
1483                        80224                             41.57
1484                        43148                             55.28
1485                        81281                            117.60
1486                        59172                             76.01
1487                        67078                             10.36
1488                        65288                             10.35
1489                        59891                              0.00
1490                        57394                              0.00
1491                        74835                            608.33
1492                        93488                            490.28
1493                       103965                              0.00
1494                        59887                              0.00
1495                        59757                            680.56
1496                        61291                              0.00
1497                        60006                              0.00
1498                        65119                              0.00
1499                        68164                              0.00
1500                        61449                              0.00
1501                        56052                              0.00
1502                        48409                              0.00
1503                        68760                              0.00
1504                        80172                              0.00
1505                        63602                              0.00
1506                        61052                              0.00
1507                        63767                              0.00
1508                        70813                              0.00
1509                        46305                           1003.66
1510                        60823                           1300.00
1511                        51735                              3.51
1512                        40901                              8.81
1513                        41582                              0.00
1514                        44834                              5.36
1515                        48854                              0.00
1516                       136005                              0.00
1517                        83581                             19.25
1518                        81976                              0.00
1519                        81018                              1.74
1520                       110651                              1.73
1521                        83754                              0.00
1522                        93364                              0.00
1523                        79105                              0.00
1524                       102123                              6.14
1525                        65777                             98.06
1526                        60808                            949.51
1527                        55968                           1043.79
1528                        55602                             13.96
1529                        54944                              0.00
1530                        51132                              3.06
1531                        67280                             45.79
1532                        66844                             70.11
1533                        67208                           1164.83
1534                       102680                            794.73
1535                       121974                            788.82
1536                        66494                           1108.37
1537                       118367                           2252.42
1538                        87701                           1097.84
1539                        97865                           1550.71
1540                       120720                           1033.42
1541                        87403                            152.99
1542                        89875                              0.00
1543                       132616                            943.06
1544                       132856                            650.73
1545                       131233                              0.00
1546                        81630                              0.00
1547                        83524                           1130.68
1548                        82778                              2.90
1549                        87477                              0.00
1550                        92714                              0.00
1551                       108119                              1.63
1552                        84288                              0.00
1553                        79402                              0.00
1554                        65745                              0.00
1555                        96055                              1.64
1556                       109953                              0.00
1557                       100787                              0.00
1558                        84757                              0.00
1559                        84913                              0.00
1560                        94381                              0.00
1561                            0                              0.00
1562                            0                              0.00
1563                            0                              0.00
1564                            0                              0.00
1565                            0                              0.00
1566                            3                              0.00
1567                          212                              0.00
1568                          409                              0.00
1569                          200                              0.00
1570                          591                              0.00
1571                         1253                              0.00
1572                          107                              0.00
1573                          218                              0.00
1574                          509                              0.00
1575                         1084                              0.00
1576                          880                              0.00
1577                           89                              0.00
1578                            0                              0.00
1579                            0                              0.00
1580                            0                              0.00
1581                            3                              0.00
1582                            0                              0.00
1583                            4                              0.00
1584                           17                              0.00
1585                           29                              0.00
1586                          182                              0.00
1587                           49                              0.00
1588                            0                              0.00
1589                            0                              0.00
1590                            0                              0.00
1591                            0                              0.00
1592                            0                              0.00
1593                           11                              0.00
1594                          380                              0.00
1595                           18                              0.00
1596                           17                              0.00
1597                            1                              0.00
1598                           22                              0.00
1599                          114                              0.00
1600                          928                              0.00
1601                          194                              0.00
1602                           42                              0.00
1603                          302                              0.00
1604                            0                              0.00
1605                            7                              0.00
1606                          162                              0.00
1607                          838                              0.00
1608                           93                              0.00
1609                            4                              0.00
1610                            0                              0.00
1611                            0                              0.00
1612                            0                              0.00
1613                        33140                              0.00
1614                        16748                              0.00
1615                        36586                              0.00
1616                        18065                              0.00
1617                        29740                              0.00
1618                        33688                              0.00
1619                        22648                              0.00
1620                        18110                              0.00
1621                        38819                              0.00
1622                        18128                             16.82
1623                        16319                              0.00
1624                        34838                              0.00
1625                        36886                              2.81
1626                        17063                              0.00
1627                        39285                              0.00
1628                        19184                              0.00
1629                        43207                              0.00
1630                        18579                              0.00
1631                        15801                              0.00
1632                        19123                              0.00
1633                        33990                              0.00
1634                        16787                              0.00
1635                        15508                              0.00
1636                        37132                              0.00
1637                        16663                              0.00
1638                        36901                              0.00
1639                        18570                              0.00
1640                        37189                              0.00
1641                        18664                              8.01
1642                        37841                              0.00
1643                        17603                              0.00
1644                        39120                              0.00
1645                        16342                              0.00
1646                        15727                              0.00
1647                        54823                            223.61
1648                        18295                            347.22
1649                        19323                              0.00
1650                        39894                              0.00
1651                        29144                            365.28
1652                        18183                              0.00
1653                        35593                              0.00
1654                        15333                              0.00
1655                        15335                              0.00
1656                        30250                              0.00
1657                        16447                              0.00
1658                        23642                              0.00
1659                        24163                              0.00
1660                        53410                              0.00
1661                        26273                              0.00
1662                        24654                              0.00
1663                        24648                              0.00
1664                        32786                              0.00
1665                         6513                              3.18
1666                         9715                              0.00
1667                         6908                              3.24
1668                         7596                              8.27
1669                         5676                              0.00
1670                         5752                              0.00
1671                         7177                              0.00
1672                        16124                              0.00
1673                        11207                              6.75
1674                        10628                              0.00
1675                         9569                              0.00
1676                        20392                              1.69
1677                        12975                              0.00
1678                        15276                              0.00
1679                        10160                              0.00
1680                        12950                              0.00
1681                         8827                              5.78
1682                         9571                             45.96
1683                         8194                             88.42
1684                         7851                              0.00
1685                         6856                              0.00
1686                         8615                              0.00
1687                        11329                              0.00
1688                        12273                              0.00
1689                        11757                            308.13
1690                        14370                             43.66
1691                        16658                              0.00
1692                        11041                             70.18
1693                        19780                             97.24
1694                        15941                             75.32
1695                        15496                            131.14
1696                        16871                              2.67
1697                        12725                             23.94
1698                        15350                              0.00
1699                        18019                            238.89
1700                        16918                              0.00
1701                        18457                              0.00
1702                        13037                              0.00
1703                        14029                             51.39
1704                        12400                              0.00
1705                        13235                              0.00
1706                        14119                              0.00
1707                        14953                              1.50
1708                        13782                              0.00
1709                        11518                              0.00
1710                         9380                              0.00
1711                        13684                              1.51
1712                        14960                              0.00
1713                        15679                              0.00
1714                        12136                              0.00
1715                        12578                              0.00
1716                        13818                              0.00
1717                        30143                              0.00
1718                        25305                              0.00
1719                        18055                              0.00
1720                            3                              0.00
1721                            0                              0.00
1722                         1555                              0.00
1723                          474                              0.00
1724                           19                              0.00
1725                            0                              0.00
1726                           31                              0.00
1727                           62                              0.00
1728                            3                              0.00
1729                            0                              0.00
1730                           63                              0.00
1731                         7681                              0.00
1732                       110316                              0.00
1733                        60529                              0.00
1734                          100                              0.00
1735                         1570                              0.00
1736                        38729                              0.00
1737                        45119                              0.00
1738                        44285                              0.00
1739                        33762                              0.00
1740                        31291                              0.00
1741                        35135                            319.44
1742                        36030                              0.00
1743                        21848                              0.00
1744                        22980                              0.00
1745                        28070                              0.00
1746                        32242                              0.00
1747                        30406                              0.00
1748                        21652                              0.00
1749                        23728                              0.00
1750                        31585                              0.00
1751                        23882                            294.44
1752                        17901                              0.00
1753                        52918                              0.00
1754                        46322                              0.00
1755                        33641                              0.00
1756                        23702                              0.00
1757                            9                              0.00
1758                            0                              0.00
1759                            0                              0.00
1760                            0                              0.00
1761                            4                              0.00
1762                            8                              0.00
1763                            0                              0.00
1764                            0                              0.00
1765                            3                              0.00
1766                            0                              0.00
1767                            0                              0.00
1768                            0                              0.00
1769                         7392                            156.67
1770                         8749                            223.33
1771                         8943                              0.00
1772                         8854                              0.00
1773                         8571                              0.00
1774                         5696                              0.00
1775                         5680                              0.00
1776                        21104                              0.00
1777                         5836                              0.00
1778                        11029                              0.00
1779                         9791                              0.00
1780                         6767                              0.00
1781                         3292                              0.00
1782                        11558                              0.00
1783                         9034                              0.00
1784                         8543                              0.00
1785                         9285                              0.00
1786                         8573                              3.80
1787                        10477                              0.00
1788                         9888                              0.00
1789                        15169                              0.00
1790                         5852                              0.00
1791                         5642                              0.00
1792                         2951                              0.00
1793                         2222                             11.37
1794                        10017                              0.00
1795                        11982                              3.79
1796                         9080                              0.00
1797                         9419                              0.00
1798                         9081                              7.46
1799                        10499                              0.00
1800                        31985                              0.00
1801                         6827                              0.00
1802                         7031                              0.00
1803                        28644                              0.00
1804                         9781                              0.00
1805                          228                              0.00
1806                          139                              0.00
1807                          162                             35.47
1808                          108                              3.51
1809                         7770                              0.00
1810                         5902                              0.00
1811                        17962                              0.00
1812                         4357                              0.00
1813                         5666                              0.00
1814                         4553                              0.00
1815                         5861                              0.00
1816                        11309                              0.00
1817                         6817                              0.00
1818                         7038                              0.00
1819                         5902                              0.00
1820                         3660                              0.00
1821                        24839                           1328.45
1822                        16936                           1247.26
1823                        28517                           1223.26
1824                        13539                           1049.02
1825                        14158                            882.53
1826                        16838                           1144.75
1827                        16013                            892.66
1828                        16399                           1417.41
1829                        13225                           1288.26
1830                        13346                           1281.45
1831                        13759                           1586.12
1832                        11297                           1639.08
1833                        10383                           1523.98
1834                        10780                           1533.15
1835                        15090                           1218.28
1836                        19121                           1572.14
1837                        17590                           1052.34
1838                        18057                           1254.97
1839                        10773                           1351.12
1840                        13619                           1280.45
1841                        13951                           1127.74
1842                        13478                           1342.34
1843                        21670                           1402.58
1844                        14512                           1257.39
1845                        12905                           4993.08
1846                        15522                           1238.11
1847                        12451                           1456.13
1848                        15768                           1276.42
1849                         9694                           1492.11
1850                         1331                           1741.46
1851                          903                           1797.91
1852                         2829                           1891.19
1853                         2567                           1551.77
1854                         3875                           1337.36
1855                         6745                           3591.89
1856                         6240                           7792.13
1857                         5725                           1428.09
1858                         5726                           1040.53
1859                         9584                           6159.18
1860                         6846                           1114.49
1861                         9412                           1181.59
1862                         3730                            943.89
1863                          734                            826.82
1864                          541                            972.96
1865                          860                           1125.49
1866                          844                            866.56
1867                          691                           1102.43
1868                         1246                           1332.72
1869                         1929                           1196.57
1870                         1074                           1121.44
1871                          955                           1006.50
1872                          441                           1034.22
1873                           45                            249.10
1874                           30                            140.22
1875                          110                            186.14
1876                         4532                            883.83
1877                           89                            371.31
1878                            7                            759.73
1879                         2157                           7648.30
1880                          236                           1605.95
1881                          123                            258.99
1882                         1323                            833.23
1883                           92                            141.73
1884                         3997                           1673.24
1885                          165                            167.53
1886                            2                             22.72
1887                           59                            167.19
1888                           22                             41.28
1889                          231                             35.09
1890                          139                             34.87
1891                          332                             43.10
1892                           95                              4.11
1893                           90                              8.23
1894                            7                              2.06
1895                          136                              0.00
1896                         5228                              8.27
1897                        10901                             96.40
1898                         3256                              8.33
1899                           98                             22.98
1900                           15                           1876.68
1901                          393                             64.71
1902                          473                              8.35
1903                           52                             25.03
1904                          137                             72.85
1905                            0                            139.15
1906                          339                            157.46
1907                            7                             26.86
1908                           85                             38.93
1909                          690                            150.85
1910                           43                              0.00
1911                          144                            418.79
1912                          403                              1.96
1913                           38                              1.94
1914                            0                              0.00
1915                          220                              3.88
1916                         4311                             17.45
1917                           74                              0.00
1918                         2473                              7.76
1919                         1126                              0.00
1920                        11548                              1.95
1921                        17854                              0.00
1922                        13785                              0.00
1923                         8013                              0.00
1924                        15251                              0.00
1925                          503                              0.00
1926                          253                              0.00
1927                          356                              0.00
1928                          202                              0.00
1929                          335                              0.00
1930                          392                              0.00
1931                         1135                              0.00
1932                         1895                              0.00
1933                         1990                              0.00
1934                         1301                              0.00
1935                         1334                              0.00
1936                         2134                              0.00
1937                         2210                              0.00
1938                         1836                              0.00
1939                         3241                              0.00
1940                         1760                              0.00
1941                         1059                              0.00
1942                          182                              0.00
1943                          326                              0.00
1944                          393                              0.00
1945                          608                              0.00
1946                          316                              0.00
1947                          195                              0.00
1948                         1059                              0.00
1949                         1368                              0.00
1950                         1411                              0.00
1951                          199                              0.00
1952                          566                              0.00
1953                          288                              0.00
1954                          592                              0.00
1955                          276                              0.00
1956                          621                              0.00
1957                          579                              0.00
1958                          499                              0.00
1959                         1147                             59.72
1960                          979                            140.28
1961                          394                              0.00
1962                         1313                              0.00
1963                          836                              0.00
1964                         1056                              0.00
1965                          742                              0.00
1966                          187                              0.00
1967                          145                              0.00
1968                          309                              0.00
1969                          559                              0.00
1970                        11378                              0.00
1971                        10971                              0.00
1972                        19822                              0.00
1973                        13470                              0.00
1974                        14168                              0.00
1975                        15498                              0.00
1976                        11623                              0.00
1977                            3                              5.25
1978                            5                              7.88
1979                            0                              0.00
1980                            6                              0.00
1981                            0                              0.00
1982                            3                              2.64
1983                          635                              0.00
1984                          876                              0.00
1985                          884                              0.00
1986                          818                              0.00
1987                          280                             24.34
1988                          618                             27.07
1989                          389                              0.00
1990                          766                              0.00
1991                          640                              0.00
1992                          715                              0.00
1993                           49                              2.70
1994                            0                              0.00
1995                            0                              0.00
1996                            0                              0.00
1997                            0                              0.00
1998                            0                              0.00
1999                            0                              0.00
2000                            4                              0.00
2001                          160                              0.00
2002                          551                              0.00
2003                            4                              0.00
2004                            0                              0.00
2005                            0                              0.00
2006                          882                              0.00
2007                         4969                              0.00
2008                         3246                              2.61
2009                         3459                              5.23
2010                         6507                              0.00
2011                         1238                            298.61
2012                          391                            122.22
2013                          727                              0.00
2014                         1747                              0.00
2015                          991                              0.00
2016                          877                              0.00
2017                           56                              0.00
2018                            0                              0.00
2019                            0                              0.00
2020                           29                              0.00
2021                          340                              0.00
2022                         5837                              0.00
2023                         6302                              0.00
2024                         6953                              0.00
2025                        10311                              0.00
2026                        10858                              0.00
2027                         8755                              0.00
2028                         4467                              0.00
2029                            0                            619.24
2030                            9                            773.33
2031                            3                              0.00
2032                            0                              0.00
2033                            0                              0.00
2034                            0                              0.00
2035                            0                              0.00
2036                           73                              0.00
2037                          772                              0.00
2038                          431                              0.00
2039                            0                              0.00
2040                            3                              0.00
2041                            0                              0.00
2042                            0                              3.06
2043                            0                              0.00
2044                           12                              0.00
2045                           43                              6.10
2046                          389                              0.00
2047                         1458                              0.00
2048                            0                              0.00
2049                            0                              0.00
2050                            0                              0.00
2051                            0                              0.00
2052                            0                              0.00
2053                            0                              0.00
2054                            0                              0.00
2055                            0                              0.00
2056                            0                              0.00
2057                            7                              0.00
2058                          490                              0.00
2059                         1831                              0.00
2060                         1180                              0.00
2061                         1422                              0.00
2062                         2358                              0.00
2063                          253                              0.00
2064                            0                              0.00
2065                          590                              0.00
2066                         1762                              0.00
2067                          432                              0.00
2068                         1134                              0.00
2069                           16                              3.00
2070                          349                              0.00
2071                          100                              0.00
2072                           29                              0.00
2073                          192                              0.00
2074                         2042                              0.00
2075                         2573                              0.00
2076                         3354                              0.00
2077                         4149                              0.00
2078                         3505                              0.00
2079                         3286                              0.00
2080                         1750                              0.00
2081                            6                              0.00
2082                            9                              5.78
2083                            3                              0.00
2084                            0                              5.76
2085                            0                             17.24
2086                            0                              0.00
2087                            0                              0.00
2088                            0                              0.00
2089                            0                              0.00
2090                            0                              0.00
2091                            0                              0.00
2092                            0                              0.00
2093                            0                              0.00
2094                            0                              0.00
2095                            0                              0.00
2096                            4                              0.00
2097                            9                              0.00
2098                            0                              0.00
2099                            0                              0.00
2100                           12                              0.00
2101                           17                              0.00
2102                            0                              0.00
2103                           34                              0.00
2104                            0                              0.00
2105                            0                            152.78
2106                            0                              0.00
2107                            0                              0.00
2108                            4                              0.00
2109                            0                              0.00
2110                            0                              0.00
2111                            9                              0.00
2112                            0                              0.00
2113                            0                              0.00
2114                            0                              0.00
2115                            0                            204.17
2116                            0                              0.00
2117                           26                              0.00
2118                           43                              0.00
2119                           25                              0.00
2120                           39                              0.00
2121                            0                              0.00
2122                            0                              0.00
2123                            0                              0.00
2124                            0                              0.00
2125                            0                              0.00
2126                            0                              0.00
2127                            0                              0.00
2128                            0                              0.00
2129                            0                              0.00
2130                            0                              0.00
2131                            7                              0.00
2132                            0                              0.00
2133                        31622                              0.00
2134                        34540                              0.00
2135                        43992                              0.00
2136                        28225                              0.00
2137                        16005                              0.00
2138                        13405                              0.00
2139                         8482                              0.00
2140                         6945                              0.00
2141                         5897                              8.18
2142                         3118                              4.10
2143                         3457                              0.00
2144                         2051                              0.00
2145                         3960                              0.00
2146                         2393                              0.00
2147                         3096                              0.00
2148                         4747                              0.00
2149                         4322                              0.00
2150                         1645                              0.00
2151                         1563                              0.00
2152                          502                              0.00
2153                         1905                              0.00
2154                         1140                              0.00
2155                         1166                              0.00
2156                         3950                              0.00
2157                         3470                              0.00
2158                         5490                              0.00
2159                         4578                              0.00
2160                         4578                              0.00
2161                         4173                              0.00
2162                         4224                              0.00
2163                         4240                              0.00
2164                         4683                              0.00
2165                         3586                              0.00
2166                         3614                              0.00
2167                         4225                              0.00
2168                         6053                              0.00
2169                        22380                              0.00
2170                        23949                             21.15
2171                        16967                             95.90
2172                        19629                              0.00
2173                         6063                              0.00
2174                         5269                              7.39
2175                         5102                              0.00
2176                         5316                             32.84
2177                         5544                             32.63
2178                         5426                            199.07
2179                         5526                            223.98
2180                         4738                            265.09
2181                         4708                            261.29
2182                         4411                            426.61
2183                         3272                            404.59
2184                         5595                            373.70
2185                          583                             21.81
2186                          766                             59.32
2187                          782                            103.31
2188                          639                            103.62
2189                          648                             53.54
2190                          773                             50.58
2191                          780                             38.07
2192                          693                             70.03
2193                          846                             19.16
2194                          812                             38.35
2195                          757                             44.79
2196                          736                             32.00
2197                          797                             31.99
2198                          786                             70.33
2199                          947                             44.71
2200                          734                             19.14
2201                          805                              0.00
2202                          864                              0.00
2203                          951                              0.00
2204                          847                              0.00
2205                         1109                              0.00
2206                          724                              0.00
2207                          894                              0.00
2208                          801                              0.00
2209                          894                            423.61
2210                          883                              0.00
2211                          783                              0.00
2212                         1044                              0.00
2213                         1071                              0.00
2214                         1076                              0.00
2215                         1010                              0.00
2216                         1084                              0.00
2217                          952                              0.00
2218                         1036                              0.00
2219                          972                            313.89
2220                         1052                            206.94
2221                         1561                              0.00
2222                         1291                              0.00
2223                         1025                            445.83
2224                          930                              0.00
2225                          819                             15.44
2226                          862                              6.16
2227                          803                            116.92
2228                          727                             58.37
2229                          823                             42.97
2230                          824                             49.06
2231                          733                             27.50
2232                          832                            118.86
2233                          797                             70.57
2234                          516                             52.18
2235                          659                              0.00
2236                          444                              6.16
2237                           27                            325.48
2238                           12                            155.26
2239                           36                             43.39
2240                            0                            165.19
2241                            0                             75.05
2242                            0                            216.59
2243                            0                            800.63
2244                            0                            262.94
2245                            0                             91.94
2246                            0                            281.60
2247                            0                             44.77
2248                            0                           1943.12
2249                            0                            844.14
2250                           13                             14.94
2251                            9                              6.64
2252                            0                             14.94
2253                           62                              4.98
2254                            1                              8.31
2255                           26                             18.20
2256                            3                              4.97
2257                            0                              0.00
2258                            3                              1.66
2259                           35                              0.00
2260                           89                              0.00
2261                          981                            116.39
2262                         5462                             11.69
2263                           58                             21.77
2264                           31                             20.14
2265                           18                             16.77
2266                            9                             11.68
2267                           97                              3.32
2268                          460                             36.47
2269                         1074                             54.62
2270                        12416                             54.54
2271                          478                             19.66
2272                           22                             11.43
2273                          161                             13.02
2274                          145                             22.70
2275                          211                             84.24
2276                          658                              4.83
2277                            0                             11.25
2278                            8                             12.64
2279                            8                             16.32
2280                           63                             18.35
2281                            0                             29.06
2282                          431                             44.75
2283                         2117                              4.58
2284                         1034                             33.58
2285                          371                             24.44
2286                          721                             10.71
2287                         5633                              1.53
2288                        14860                              0.00
2289                         9060                              7.83
2290                         4851                              7.81
2291                         9864                             10.37
2292                         6204                             20.68
2293                         9434                             10.40
2294                         9106                              0.00
2295                         5735                              0.00
2296                         5325                              7.78
2297                        13978                              0.00
2298                         8594                              0.00
2299                         8373                              0.00
2300                        18138                              0.00
2301                        19899                              0.00
2302                         9106                              0.00
2303                        21851                             28.83
2304                        14708                             18.38
2305                        18329                             73.73
2306                         5198                             15.84
2307                         5017                              0.00
2308                         5940                              0.00
2309                        11498                             66.42
2310                         5489                             21.28
2311                         4662                              0.00
2312                        10410                              0.00
2313                         5916                             94.44
2314                        10568                              0.00
2315                         4984                             53.35
2316                        11533                             32.04
2317                         6256                              8.02
2318                        11103                              0.00
2319                         5757                              5.35
2320                        12060                              0.00
2321                         5460                              0.00
2322                         5626                              0.00
2323                        16530                              0.00
2324                         5123                              0.00
2325                         5883                              0.00
2326                        12529                              0.00
2327                         7875                              0.00
2328                         6545                              0.00
2329                        12061                              0.00
2330                         5171                              0.00
2331                         4467                              0.00
2332                        10541                              0.00
2333                         5936                              0.00
2334                        15323                              0.00
2335                        14773                              0.00
2336                        27913                              0.00
2337                        18474                              0.00
2338                        21664                              0.00
2339                        18503                              0.00
2340                        16314                              0.00
2341                       105318                          84028.58
2342                        95640                         108072.79
2343                       115546                           1203.17
2344                       141970                            336.81
2345                        95137                             31.67
2346                       117936                              7.05
2347                       166200                             52.45
2348                       163126                            316.84
2349                       181456                            341.24
2350                       108231                            333.82
2351                        83783                            140.01
2352                       119235                            138.43
2353                       173688                            190.09
2354                       128033                             75.76
2355                       122303                             14.42
2356                       195144                             43.22
2357                       151197                             35.92
2358                        76948                             29.11
2359                        85422                             58.47
2360                        89808                             73.02
2361                        87160                             14.24
2362                        93163                             12.63
2363                       129426                              7.08
2364                       177295                             20.41
2365                       119640                           1357.03
2366                       103047                             32.94
2367                       191573                             52.33
2368                       173498                             17.56
2369                       158100                             42.53
2370                       116062                             14.03
2371                       147483                             28.04
2372                        91460                             31.62
2373                        88338                             17.58
2374                       152122                             35.22
2375                       166651                           1012.94
2376                        99430                            393.17
2377                        99203                             10.59
2378                        54424                             21.16
2379                        58682                           1528.97
2380                        63160                             38.60
2381                       125103                             23.75
2382                       130675                             14.02
2383                       175512                             28.37
2384                       130727                             24.34
2385                       111022                              0.00
2386                       102418                             13.72
2387                        54887                             85.88
2388                       126683                             63.26
2389                        92763                              0.00
2390                        57607                             25.69
2391                        97164                             50.21
2392                       128451                             13.59
2393                       264040                             27.11
2394                       135634                             72.30
2395                       272311                            111.54
2396                       145935                             27.12
2397                       252140                             42.30
2398                       249396                             30.26
2399                       158187                             18.17
2400                       143979                             48.52
2401                       311503                             15.18
2402                       181063                             33.46
2403                       190038                             42.72
2404                       398281                             27.49
2405                       391377                             27.48
2406                       187253                             18.31
2407                       421701                            176.91
2408                       211034                             36.53
2409                       409431                            142.85
2410                       136184                            127.38
2411                       123969                             39.29
2412                       135888                            105.41
2413                       270162                            242.84
2414                       121708                             95.46
2415                       108704                              0.00
2416                       238574                              0.00
2417                       127743                            598.61
2418                       270807                             55.70
2419                       132335                            259.93
2420                       272640                            113.58
2421                       137879                            104.62
2422                       268101                              8.71
2423                       129597                             37.67
2424                       289932                             23.22
2425                       128913                              0.00
2426                       122078                              0.00
2427                       382606                           1381.94
2428                       133264                           1454.17
2429                       149014                              0.00
2430                       292551                              0.00
2431                       215545                            883.33
2432                       147071                              0.00
2433                       274435                             20.76
2434                       123876                             56.45
2435                       114974                              0.00
2436                       253660                              2.98
2437                       126732                              0.00
2438                       201773                              0.00
2439                       185195                              0.00
2440                       417112                              0.00
2441                       221256                              0.00
2442                       225695                              0.00
2443                       215173                              0.00
2444                       280911                              0.00
2445                            0                            139.72
2446                            0                              0.00
2447                            4                              0.00
2448                          514                              0.00
2449                            0                              0.00
2450                            0                              0.00
2451                            0                              0.00
2452                            0                              0.00
2453                            0                              0.00
2454                           51                              0.00
2455                            0                              0.00
2456                            0                              0.00
2457                            0                              0.00
2458                            0                              0.00
2459                            0                              0.00
2460                            0                              0.00
2461                            0                              0.00
2462                            2                              0.00
2463                           71                              0.00
2464                            0                              0.00
2465                            0                              0.00
2466                            0                              0.00
2467                            0                              0.00
2468                            0                              0.00
2469                          160                              0.00
2470                          348                              0.00
2471                            0                              0.00
2472                            0                              0.00
2473                            0                              0.00
2474                            0                              0.00
2475                            0                              0.00
2476                            0                              0.00
2477                            0                              0.00
2478                         2180                              0.00
2479                          185                              0.00
2480                            0                              0.00
2481                            0                              0.00
2482                            0                              0.00
2483                           84                              0.00
2484                          320                              0.00
2485                            0                              0.00
2486                            0                              0.00
2487                            4                              0.00
2488                          121                              0.00
2489                            0                              0.00
2490                          134                              0.00
2491                          191                              0.00
2492                           37                              0.00
2493                            0                              0.00
2494                          503                              0.00
2495                         1696                              0.00
2496                          446                              0.00
2497                        17978                              0.00
2498                        12026                              0.00
2499                        20979                              0.00
2500                         8070                              0.00
2501                         6841                              8.88
2502                         7515                              0.00
2503                         7075                              2.23
2504                         4929                              0.00
2505                         4084                              6.71
2506                         5240                              0.00
2507                         4288                              6.74
2508                         3422                             11.26
2509                         3052                              0.00
2510                         2047                              0.00
2511                         2357                             20.28
2512                         1695                            136.20
2513                           88                              2.25
2514                          404                              4.50
2515                           12                              4.50
2516                            0                              6.74
2517                            0                              4.48
2518                            0                              2.24
2519                            0                              0.00
2520                            0                              0.00
2521                            4                            222.22
2522                          643                              0.00
2523                           39                              0.00
2524                            0                              0.00
2525                            0                             48.17
2526                            0                              4.36
2527                           23                              0.00
2528                            8                              0.00
2529                            0                              0.00
2530                            0                              2.14
2531                            0                              0.00
2532                            0                              2.11
2533                            5                              0.00
2534                            0                              0.00
2535                          116                              0.00
2536                          156                              0.00
2537                           78                              0.00
2538                          153                              0.00
2539                            0                              0.00
2540                            7                              0.00
2541                            9                              0.00
2542                           31                              0.00
2543                            2                              0.00
2544                            0                              0.00
2545                            0                              0.00
2546                            4                              0.00
2547                            2                              0.00
2548                           11                              0.00
2549                            0                              0.00
2550                            0                              0.00
2551                            0                              0.00
2552                            0                              0.00
2553                            0                              0.00
2554                            0                              0.00
2555                          191                              0.00
2556                          422                              0.00
2557                          347                              0.00
2558                          676                              0.00
2559                          364                              0.00
2560                          538                              0.00
2561                          533                              0.00
2562                          129                              0.00
2563                          449                              0.00
2564                          476                              0.00
2565                            0                              0.00
2566                            0                              0.00
2567                            0                              0.00
2568                            0                              0.00
2569                            0                              0.00
2570                            0                              0.00
2571                            0                              0.00
2572                            0                              0.00
2573                           98                              0.00
2574                          218                              0.00
2575                           31                              0.00
2576                            0                              0.00
2577                            0                              0.00
2578                            0                              0.00
2579                            0                              0.00
2580                            0                              0.00
2581                          169                              0.00
2582                          332                              0.00
2583                          331                              0.00
2584                          236                              0.00
2585                          136                              0.00
2586                          226                              0.00
2587                          262                              0.00
2588                          120                              0.00
2589                            0                              0.00
2590                           22                              0.00
2591                          238                              0.00
2592                           53                              0.00
2593                          264                              0.00
2594                          122                              0.00
2595                          424                              0.00
2596                           51                              0.00
2597                          420                              0.00
2598                            0                              0.00
2599                            0                              0.00
2600                            0                              0.00
2601                        38302                              0.00
2602                        18014                              0.00
2603                        40339                              0.00
2604                        18506                              0.00
2605                        38840                              0.00
2606                        30788                              0.00
2607                        21691                              2.82
2608                        18697                              0.00
2609                        45891                              0.00
2610                        36998                              2.84
2611                        40703                             17.08
2612                        88049                              2.85
2613                        84699                              2.85
2614                        39668                              0.00
2615                        91438                              0.00
2616                        39530                              0.00
2617                        76304                              0.00
2618                        17980                             28.07
2619                        15426                              0.00
2620                        17901                              0.00
2621                        35397                              2.75
2622                        15348                              0.00
2623                        16003                              0.00
2624                        35916                              0.00
2625                        16139                            297.22
2626                        36939                              5.31
2627                        17906                              0.00
2628                        36437                              0.00
2629                        18386                              0.00
2630                        35862                              0.00
2631                        15763                              0.00
2632                        39203                              0.00
2633                        16143                              0.00
2634                        15835                              0.00
2635                        55151                            611.11
2636                        19916                            288.89
2637                        21912                              0.00
2638                        43253                              0.00
2639                        34191                              0.00
2640                        21432                              0.00
2641                        40993                              0.00
2642                        17531                              0.00
2643                        18020                              0.00
2644                        36709                              0.00
2645                        16538                              0.00
2646                        33540                              0.00
2647                        33732                              0.00
2648                        66415                              0.00
2649                        38570                              0.00
2650                        38060                              0.00
2651                        37314                              0.00
2652                        42544                              0.00
2653                      1252626                         185822.04
2654                      1025049                         199305.12
2655                      1371440                          28377.23
2656                      1233956                          63229.39
2657                       856560                          30495.62
2658                      1137230                          32022.60
2659                      1283547                          36180.18
2660                      1027702                          65310.73
2661                      1246220                          55747.80
2662                       999728                          39129.89
2663                       952191                          27849.06
2664                      1221305                          72218.55
2665                      1189350                          50947.69
2666                       886424                          54490.73
2667                      1183732                          66354.72
2668                      1226810                          64278.56
2669                      1184889                          33236.49
2670                       685816                          52179.41
2671                       612362                          25637.35
2672                       703542                          68530.71
2673                       888238                          30627.73
2674                       689176                          27356.26
2675                       779808                          22539.94
2676                      1013834                          49899.96
2677                       796786                          27875.85
2678                       905205                          34456.08
2679                       846752                          20336.50
2680                       898027                          48182.84
2681                       822400                          20262.54
2682                       943996                          44658.04
2683                       726046                          19725.51
2684                       815629                          20582.31
2685                       660984                          36325.52
2686                       816629                          10092.51
2687                      1110987                          25031.21
2688                       687179                          31924.40
2689                       819935                          29286.95
2690                       826567                           7524.51
2691                       666515                          18878.91
2692                       610349                           7461.20
2693                       762528                          52375.15
2694                       614905                          14064.72
2695                       673149                          16090.51
2696                       725218                          53733.65
2697                       667149                          13350.50
2698                       648632                          11904.06
2699                       673454                          13924.23
2700                      1121076                          46899.12
2701                       812925                           8631.31
2702                       771093                           7935.35
2703                       718334                          15789.15
2704                       894946                          18672.81
2705                       567270                           5144.13
2706                       417746                          13319.61
2707                       517936                            570.88
2708                       582846                           2224.99
2709                       247318                            718.76
2710                       494585                           1302.15
2711                       699957                          11495.52
2712                       341545                           2239.59
2713                       421675                            643.00
2714                       420765                           1581.50
2715                       429405                            205.00
2716                       402360                           3830.31
2717                       336994                           1071.02
2718                       306759                             53.71
2719                       342166                            270.32
2720                       428556                             62.20
2721                       310569                             52.15
2722                       239196                             50.47
2723                       165724                             63.97
2724                       240262                             18.52
2725                       291065                             25.26
2726                       254166                              8.42
2727                       266208                              0.00
2728                       343390                             46.37
2729                       286271                           1454.78
2730                       192423                             67.17
2731                       180618                            107.23
2732                       167641                           2168.70
2733                       214730                             84.95
2734                       269005                             26.53
2735                       150401                             36.24
2736                        96786                            221.98
2737                       180702                            212.82
2738                       218969                            242.69
2739                       186892                            343.37
2740                       133326                           1071.49
2741                       240723                            202.69
2742                       206981                             33.97
2743                       135415                           1753.95
2744                       130691                              9.65
2745                        76496                             12.86
2746                        87496                             12.87
2747                        98775                             31.45
2748                        95603                             33.55
2749                       176872                             49.05
2750                        68522                             86.91
2751                       126121                             68.20
2752                       172155                             99.56
2753                       140736                             54.44
2754                       181810                             39.96
2755                       111074                             33.54
2756                       150820                              6.39
2757                        33065                          11190.00
2758                        23536                          25716.67
2759                        10948                            573.33
2760                         1605                              0.00
2761                         1218                              0.00
2762                         2904                              0.00
2763                         3843                              0.00
2764                         1402                              0.00
2765                         1155                              0.00
2766                         1101                              0.00
2767                          871                              0.00
2768                         1037                              0.00
2769                         1742                              0.00
2770                         1545                              0.00
2771                        11089                              0.00
2772                        48326                              0.00
2773                        11913                              0.00
2774                         1062                              0.00
2775                         3275                              0.00
2776                        25053                              0.00
2777                        33108                              0.00
2778                        18295                              0.00
2779                        16465                              0.00
2780                        17953                              0.00
2781                        15914                              0.00
2782                        18811                              0.00
2783                        19220                              0.00
2784                        27039                              0.00
2785                        42199                              0.00
2786                        34404                              0.00
2787                        32531                              0.00
2788                        17112                              0.00
2789                        22521                              0.00
2790                        23680                              0.00
2791                        27335                              0.00
2792                        33563                              0.00
2793                        25396                              0.00
2794                        25636                              0.00
2795                         7377                              0.00
2796                         5974                              0.00
2797                         1901                              0.00
2798                         2695                              0.00
2799                         2344                              0.00
2800                         2101                              0.00
2801                         2531                              0.00
2802                         3043                              0.00
2803                         2343                              0.00
2804                         3743                              0.00
2805                         1763                              0.00
2806                          873                              0.00
2807                         1606                              0.00
2808                         2812                              0.00
2809                          412                              2.94
2810                          588                             40.28
2811                          645                              0.00
2812                          228                              0.00
2813                          280                              0.00
2814                          209                             56.94
2815                          422                              0.00
2816                          431                              0.00
2817                           82                              0.00
2818                          114                              0.00
2819                          359                              0.00
2820                          425                              0.00
2821                          426                              0.00
2822                          139                              0.00
2823                          509                              0.00
2824                          816                              5.00
2825                          220                            100.00
2826                          270                            790.00
2827                          287                            820.00
2828                          350                            745.56
2829                          178                           1171.67
2830                           79                            470.00
2831                          242                           2650.00
2832                          689                           1485.00
2833                          471                           2685.00
2834                          492                           2900.00
2835                          420                           1570.00
2836                          390                           1730.00
2837                          282                           1360.00
2838                          398                           1675.00
2839                          181                            550.00
2840                           21                            605.00
2841                          289                              0.00
2842                          232                              0.00
2843                          322                             48.61
2844                          338                            119.44
2845                          712                            112.50
2846                          443                              0.00
2847                          469                              0.00
2848                          500                              0.00
2849                          198                              0.00
2850                          422                              0.00
2851                          436                              0.00
2852                         1054                              0.00
2853                         2158                              0.00
2854                         1559                              0.00
2855                          851                              0.00
2856                          912                              0.00
2857                          746                              0.00
2858                          125                              0.00
2859                          174                              0.00
2860                          174                              0.00
2861                        91847                              0.00
2862                        76010                              0.00
2863                        66737                              0.00
2864                       103784                              0.00
2865                        65519                             36.39
2866                        72236                            877.78
2867                        66233                            223.33
2868                        78956                              0.00
2869                        82115                              0.00
2870                        72640                              0.00
2871                       100985                              0.00
2872                        99114                            493.06
2873                        83706                              0.00
2874                        73830                            322.22
2875                        82907                            180.56
2876                        62713                              0.00
2877                        75979                            243.06
2878                        70394                            647.22
2879                        47001                              0.00
2880                        59730                              0.00
2881                        61075                              0.00
2882                        66694                              0.00
2883                        66554                              0.00
2884                        78959                            627.78
2885                        78214                            211.11
2886                       110545                           1681.94
2887                        52123                             20.00
2888                        84046                           1425.00
2889                        55753                           6691.94
2890                       105975                           7273.06
2891                       186792                           5450.28
2892                       171021                           4934.99
2893                       169317                            646.59
2894                       206445                            881.40
2895                       217338                              0.00
2896                       158920                            183.33
2897                       130218                            583.26
2898                       119038                            766.50
2899                        36611                              0.00
2900                        32268                             13.61
2901                        34551                              0.00
2902                        66700                              0.00
2903                        33479                              0.00
2904                        61907                              0.00
2905                        27709                              0.00
2906                        34842                              0.00
2907                        94449                              0.00
2908                        32831                              0.00
2909                        58468                              0.00
2910                        33271                              0.00
2911                        58630                              0.00
2912                        21907                             10.80
2913                         2630                           1312.32
2914                         2846                            682.12
2915                        11029                              0.00
2916                         1738                            236.11
2917                         1716                            709.72
2918                         1883                            901.39
2919                         1348                            436.11
2920                         1049                              0.00
2921                          566                            365.28
2922                          383                            487.50
2923                         1238                              0.00
2924                         1332                            361.11
2925                         1423                            641.67
2926                         1252                              0.00
2927                         3747                              0.00
2928                         4043                           1335.28
2929                         2898                            515.74
2930                         3979                           2370.89
2931                        15197                           4278.33
2932                         6984                           1390.00
2933                         2286                           1275.00
2934                          707                           3355.56
2935                         1006                           7346.67
2936                         2258                          11012.27
2937                         2448                          12632.65
2938                         2969                          11381.14
2939                         3059                           3748.07
2940                         3085                           5022.92
2941                         3452                           2935.00
2942                         8329                           3056.11
2943                         3716                           2741.11
2944                         2951                           2145.00
2945                         6195                            594.44
2946                         2691                            515.28
2947                         3244                            602.78
2948                         3132                            491.67
2949                         3034                           1155.56
2950                         2537                              0.00
2951                         2812                              0.00
2952                         3141                              0.00
2953                         2689                              0.00
2954                         2913                              0.00
2955                         2743                              0.00
2956                         2622                              0.00
2957                         6367                              0.00
2958                         6791                              0.00
2959                         4934                              0.00
2960                         3591                              0.00
2961                         5825                              0.00
2962                         2592                              0.00
2963                         2398                              0.00
2964                         2295                              0.00
2965                          662                             19.25
2966                          327                              4.82
2967                          320                             54.68
2968                          218                             12.88
2969                            0                             11.27
2970                            3                             11.27
2971                          140                             40.30
2972                          408                            103.26
2973                          622                             93.61
2974                         1098                             14.52
2975                         1198                             11.29
2976                         8576                             24.17
2977                         7431                             33.80
2978                         5565                              4.81
2979                         5199                              6.39
2980                          927                              7.98
2981                         1719                              7.96
2982                         1694                             15.88
2983                         1578                              0.00
2984                          671                             41.15
2985                          247                             20.55
2986                            0                              0.00
2987                           17                            520.00
2988                          800                           1231.57
2989                           20                            941.47
2990                           21                             69.26
2991                           34                             15.50
2992                           83                             15.57
2993                          246                              8.23
2994                            9                             18.16
2995                          926                              8.27
2996                           35                             18.20
2997                         2490                             64.50
2998                          330                             34.70
2999                          141                             18.15
3000                            6                              6.58
3001                           15                            585.83
3002                          156                             89.43
3003                           95                              8.08
3004                          242                             27.26
3005                           63                             11.15
3006                          784                             36.49
3007                          528                             17.40
3008                          472                             20.53
3009                           50                              6.31
3010                           85                              9.47
3011                          453                             69.46
3012                           47                            332.83
3013                         1615                             18.96
3014                          951                              7.92
3015                           17                             65.13
3016                           17                             36.67
3017                         1070                              0.00
3018                         1446                              0.00
3019                         1634                            306.94
3020                          308                            173.61
3021                           31                            423.61
3022                           36                              0.00
3023                            0                              0.00
3024                            0                            175.00
3025                            4                              0.00
3026                            0                            795.83
3027                            0                              0.00
3028                            0                              0.00
3029                            0                              0.00
3030                            0                              0.00
3031                          333                              0.00
3032                          900                              0.00
3033                          665                            393.61
3034                         1188                           1235.00
3035                         7400                            944.17
3036                         3642                           1060.00
3037                          176                            155.00
3038                            6                           1499.72
3039                           11                           3377.78
3040                            9                           3975.00
3041                           49                           4385.00
3042                          138                           4745.00
3043                          143                           2360.00
3044                          141                           1840.00
3045                           87                           2330.00
3046                          121                           1581.67
3047                          142                           1906.11
3048                          137                           1285.00
3049                          199                            144.44
3050                           97                              0.00
3051                           54                              0.00
3052                          152                           1073.61
3053                          110                             25.00
3054                           88                            129.17
3055                          131                              0.00
3056                          113                              0.00
3057                          150                              0.00
3058                          150                              0.00
3059                          282                              0.00
3060                          644                              0.00
3061                         2238                              0.00
3062                         1980                              0.00
3063                         1896                              0.00
3064                          828                              0.00
3065                          379                              0.00
3066                          244                              0.00
3067                          182                              0.00
3068                          269                              0.00
3069                         1660                              0.00
3070                         2191                              0.00
3071                         1737                              0.00
3072                         1256                             37.50
3073                            0                             19.44
3074                            0                              0.00
3075                            0                              0.00
3076                            0                            212.50
3077                            0                              0.00
3078                            0                              0.00
3079                            0                              0.00
3080                            0                              0.00
3081                            0                              0.00
3082                            4                              0.00
3083                          807                              0.00
3084                         1102                              0.00
3085                           53                            175.00
3086                            0                           1625.00
3087                            0                           1480.00
3088                            0                           1145.00
3089                            0                           1820.00
3090                            0                            695.00
3091                            0                           4390.00
3092                            0                           2430.00
3093                            0                           4252.50
3094                            0                           4900.00
3095                            0                           2700.00
3096                            0                           2685.00
3097                            0                           2140.00
3098                            0                           2530.00
3099                            0                            555.00
3100                            0                           1310.00
3101                            0                              0.00
3102                            0                              0.00
3103                            0                              0.00
3104                            0                              0.00
3105                            0                              0.00
3106                          113                            109.72
3107                           51                              0.00
3108                            0                              0.00
3109                            0                              0.00
3110                            0                              0.00
3111                            9                              0.00
3112                          780                              0.00
3113                         3322                              0.00
3114                         2240                              0.00
3115                         1771                              0.00
3116                          958                              0.00
3117                          127                              0.00
3118                            0                              0.00
3119                            0                              0.00
3120                            0                              0.00
3121                        99070                          38754.60
3122                       135368                          32911.64
3123                       177400                          25004.38
3124                        27830                          29605.75
3125                        49697                          29919.69
3126                        61429                          28709.03
3127                        60542                          27954.84
3128                        35998                          29342.75
3129                        25242                          23290.74
3130                        55800                          32670.58
3131                        73118                          36591.19
3132                        74895                          26579.43
3133                        58294                          28538.34
3134                        53653                          37712.62
3135                        59481                          41117.01
3136                        66072                          28399.83
3137                        47477                          25873.30
3138                        46602                          29990.19
3139                        61140                          37788.55
3140                        73033                          31034.45
3141                        89290                          35738.22
3142                        95426                          34328.61
3143                        82026                          25714.93
3144                        97435                          26718.84
3145                       107540                          33541.91
3146                       119871                          40842.24
3147                       107904                          28909.54
3148                       101883                          30289.93
3149                       110755                          27501.39
3150                       171242                          28247.08
3151                       160781                          32186.13
3152                       129666                          30374.15
3153                       155366                          19350.79
3154                       508756                          25136.12
3155                       485685                          17124.03
3156                       257015                          20523.37
3157                        88791                          21076.61
3158                       183826                          19681.74
3159                       201547                          17277.53
3160                       259875                          21064.41
3161                       189928                          18996.98
3162                       186808                          19126.71
3163                       230049                          22853.11
3164                       282243                          17870.86
3165                       167309                          15277.68
3166                       333030                          15578.37
3167                       344775                          17495.30
3168                       134693                          14505.17
3169                       147882                          15340.52
3170                       162290                          18330.90
3171                       321614                          16499.43
3172                       340852                          10604.73
3173                        10233                             69.44
3174                        10048                              0.00
3175                         6109                              0.00
3176                        11766                              0.00
3177                         5861                              0.00
3178                         6021                              0.00
3179                         6941                              0.00
3180                         6586                              0.00
3181                         6817                            240.28
3182                         5659                              0.00
3183                        10355                            240.28
3184                         8597                              0.00
3185                         8258                            825.00
3186                         8278                              0.00
3187                        11648                              0.00
3188                         7860                              5.00
3189                         7806                            537.50
3190                         1906                            380.00
3191                         1628                            155.00
3192                         4818                              0.00
3193                         3787                             15.00
3194                         3330                            435.00
3195                         3346                           3432.22
3196                         3224                           1680.00
3197                         4549                           3157.78
3198                         8290                           2135.00
3199                         3211                           1010.00
3200                         4842                           1964.17
3201                         3826                           1178.33
3202                         6333                           1061.39
3203                         6511                            245.00
3204                         3941                            335.00
3205                        10963                              0.00
3206                         7275                            931.94
3207                        12265                              0.00
3208                        10957                            883.33
3209                         5887                            608.33
3210                        11987                              0.00
3211                         6794                              0.00
3212                         5267                              0.00
3213                         5988                              0.00
3214                        11010                              0.00
3215                         5598                              0.00
3216                        10589                              0.00
3217                         4580                              0.00
3218                         7387                              0.00
3219                        17682                              0.00
3220                         7415                              0.00
3221                        11482                              0.00
3222                         5767                              0.00
3223                         8518                              0.00
3224                         3529                              0.00
3225                          955                           4727.27
3226                         1066                           6864.11
3227                         1102                           7619.38
3228                          621                           2071.42
3229                          798                             20.45
3230                          998                           2066.77
3231                          594                            238.09
3232                         1096                            143.16
3233                         1587                           4679.64
3234                          790                           8911.29
3235                         1048                           8830.00
3236                          969                           9817.92
3237                          531                          11173.61
3238                          744                          10170.01
3239                          802                           6158.34
3240                         2085                            578.74
3241                         2320                            526.69
3242                         4244                           3235.08
3243                         1582                           1532.98
3244                         2139                            443.73
3245                          262                            991.15
3246                          318                           1185.39
3247                         1820                           5103.64
3248                        12736                           4721.07
3249                         1894                           7027.59
3250                          379                           5620.33
3251                          457                           4265.84
3252                         1867                           2013.51
3253                         2213                            773.95
3254                         3216                           1503.98
3255                         3360                           1396.15
3256                         6545                           1797.15
3257                         4798                            715.83
3258                         4998                           3061.55
3259                         4167                           1715.92
3260                         4685                             13.01
3261                         4807                           2044.47
3262                         9927                           1550.94
3263                         3947                             29.58
3264                         4222                             62.71
3265                         3147                              7.36
3266                         2192                              0.00
3267                         2223                              0.00
3268                         1903                              0.00
3269                        10559                             14.64
3270                        18323                            551.65
3271                        21749                             95.71
3272                         1186                              0.00
3273                         2400                              0.00
3274                        15802                             16.67
3275                        39333                            376.67
3276                        21615                          11540.00
3277                       144037                              0.00
3278                        89486                             18.44
3279                       141291                             38.54
3280                       194319                             23.18
3281                        84702                             65.28
3282                       130220                              0.00
3283                       129104                              6.21
3284                       127194                             86.61
3285                       137692                              0.00
3286                       156408                              1.56
3287                       117051                              0.00
3288                       149625                              0.00
3289                       147472                              3.13
3290                       127625                              0.00
3291                       137924                              0.00
3292                       108520                             80.00
3293                       102794                            415.00
3294                        97230                           1790.87
3295                       102390                           1035.00
3296                       105549                             38.13
3297                       100554                             11.27
3298                        88091                            690.35
3299                        89696                           4178.21
3300                       101973                           4240.83
3301                        78560                           4698.86
3302                       118273                           4504.90
3303                        75549                           4077.42
3304                       105248                           5532.69
3305                        46348                           3019.39
3306                        81916                           6686.68
3307                        69163                           2131.99
3308                        74252                           2800.95
3309                        53944                           5725.69
3310                        87870                           3688.91
3311                        44324                           1549.52
3312                        41935                           1974.89
3313                        36551                           5770.54
3314                        49094                           1344.55
3315                        50469                           2674.77
3316                        52164                           3734.14
3317                        50473                           3897.20
3318                        52396                           1892.16
3319                        54219                           5491.30
3320                        56152                           3438.18
3321                        45674                           1147.04
3322                        53192                           1378.43
3323                        61181                           6651.48
3324                        33496                           3246.36
3325                        47199                           4561.48
3326                        53233                           1613.41
3327                        37685                           1590.02
3328                        29550                           9387.59
3329                         1459                             33.01
3330                         2461                            102.72
3331                         2155                             11.57
3332                         5159                             65.21
3333                         1671                              1.45
3334                         1602                              0.00
3335                         2082                              0.00
3336                         1420                              0.00
3337                         1850                              0.00
3338                         2081                              0.00
3339                         2271                              0.00
3340                         3430                              0.00
3341                         4470                              0.00
3342                          712                              0.00
3343                         1632                              0.00
3344                         1755                             20.00
3345                          466                            171.44
3346                         1842                           1720.00
3347                         4123                           1310.00
3348                         3865                              0.00
3349                        13475                             10.00
3350                         7260                            600.95
3351                         8564                           4119.67
3352                         2931                           4793.45
3353                        11537                           4447.88
3354                         4656                           4206.19
3355                         4848                           3482.96
3356                         6081                           4761.49
3357                         6082                           2663.46
3358                         6408                           5495.88
3359                         6886                           1795.84
3360                         9992                           1720.96
3361                        18533                           4600.51
3362                        15138                           3516.22
3363                         7486                           1290.97
3364                         8239                           1441.24
3365                         7591                           4854.19
3366                         9454                           1038.71
3367                        21164                           2564.53
3368                        20099                           3442.88
3369                        16153                           3855.21
3370                        14098                           1727.12
3371                        17567                           5138.93
3372                        10262                           3474.47
3373                         6111                            951.80
3374                         7182                           1102.03
3375                         6961                           5337.74
3376                         9259                           2521.34
3377                         4436                           5439.08
3378                         6493                           1482.44
3379                         6989                           1260.37
3380                         6208                           8519.43
3381                         2661                           2259.97
3382                         2246                           5381.61
3383                         2393                           4223.58
3384                         2665                           3921.15
3385                         2391                             62.60
3386                          747                            212.46
3387                          161                            113.13
3388                          274                            601.87
3389                          806                             68.82
3390                         4851                           1574.92
3391                         3146                           3390.53
3392                         2677                            889.40
3393                         4186                           4207.01
3394                        25698                            572.79
3395                         5993                           1269.22
3396                         9088                           2876.37
3397                         5723                           5035.04
3398                         2462                           8486.35
3399                          903                           1319.94
3400                         3256                            997.14
3401                        14712                           3114.75
3402                        19285                           2156.91
3403                        14107                           8724.65
3404                         2985                           3426.36
3405                         8349                          12828.11
3406                        16195                          30681.22
3407                         7081                          14562.13
3408                        12777                           6064.11
3409                        12924                           4738.19
3410                         8707                           7192.66
3411                        10985                           8411.55
3412                        21095                           5602.38
3413                        16388                           2569.45
3414                        19972                           2731.55
3415                        21756                            419.10
3416                        26935                             66.67
3417                        28701                           1084.32
3418                        27733                           3339.88
3419                        20797                            443.14
3420                        18872                             21.57
3421                        20318                             23.32
3422                        14527                              3.58
3423                        17359                             10.72
3424                        19079                             17.82
3425                        18486                             43.56
3426                        14229                           2278.65
3427                        20895                          18743.48
3428                        19753                          18304.40
3429                        12680                          11245.20
3430                        15227                             45.39
3431                        10291                             19.81
3432                         3765                            357.51
3433                       151603                             15.74
3434                        99582                              8.60
3435                       118838                              0.00
3436                       295881                              0.00
3437                       141398                              0.00
3438                       123007                              0.00
3439                       230381                              0.00
3440                       174689                            117.12
3441                       144256                            297.69
3442                       240556                             98.61
3443                       279893                              0.00
3444                       269465                              0.00
3445                       287071                              0.00
3446                       269662                            188.89
3447                       320842                            338.89
3448                       342086                           1127.78
3449                       422509                              0.00
3450                       390977                           1325.00
3451                       127269                            715.28
3452                       228325                              0.00
3453                       172079                           1612.50
3454                       129902                            693.06
3455                       217563                           3218.06
3456                       254838                            105.56
3457                       252847                           3155.56
3458                       162792                           4015.28
3459                       213091                           1033.33
3460                       260599                            541.71
3461                       284377                           1642.70
3462                       327756                              0.00
3463                       400602                            240.28
3464                       407239                            623.01
3465                       427649                           2179.17
3466                       416966                           1310.34
3467                       231176                           2604.17
3468                       200704                           2006.94
3469                       461184                           4612.42
3470                       311446                           1505.56
3471                       402240                              0.00
3472                       289789                              0.00
3473                       448816                              0.00
3474                       320943                              1.38
3475                       216743                              0.00
3476                       533592                             17.16
3477                       409969                             12.40
3478                       449186                              0.00
3479                       507786                              0.00
3480                       381449                              0.00
3481                       706053                              0.00
3482                       649528                              0.00
3483                       499568                              0.00
3484                       611655                             12.25
3485                         2192                             19.22
3486                         2072                             84.23
3487                         2039                            257.13
3488                         3635                            118.38
3489                         2290                              7.08
3490                         1382                              8.91
3491                          873                             14.26
3492                         1074                              7.14
3493                         1059                              8.93
3494                         2492                             16.05
3495                         2582                              3.56
3496                         6147                            130.95
3497                         7605                             16.05
3498                         1542                              1.77
3499                         4601                            174.10
3500                         4395                              0.00
3501                          287                             35.10
3502                          533                            352.77
3503                          109                           1360.44
3504                         1081                            696.21
3505                        18669                            776.71
3506                         5808                           3981.87
3507                        10056                          18467.33
3508                          907                          16951.41
3509                        14996                          15939.80
3510                         2084                          13879.00
3511                          243                          18764.51
3512                         1731                          25442.59
3513                         1916                          12553.53
3514                         3849                          38452.62
3515                         4440                          10441.83
3516                         4350                           9956.71
3517                        16445                          35871.87
3518                        21053                          27264.12
3519                         6528                          11216.54
3520                         6973                           8156.12
3521                         6263                          30679.67
3522                        10173                           8811.29
3523                        27480                          13825.64
3524                        37647                          20067.70
3525                        35829                          19362.13
3526                        32804                           9562.24
3527                        43570                          30487.31
3528                        19350                          16989.77
3529                        10248                           8957.44
3530                        12168                          10104.87
3531                        17270                          38570.18
3532                        12767                          15125.89
3533                         4514                          25498.27
3534                         4505                          10270.89
3535                         2454                           9915.15
3536                         2096                          35462.53
3537                         5228                            230.04
3538                         3947                             26.33
3539                         5539                             12.27
3540                         2547                             55.95
3541                         3626                             37.57
3542                         1472                             25.65
3543                          892                              5.20
3544                         1713                             20.74
3545                         4411                             41.35
3546                         5758                             37.88
3547                         4301                             20.65
3548                         4581                             32.67
3549                         4869                             20.63
3550                         7491                             18.91
3551                         6479                              5.16
3552                         5160                             24.08
3553                         4235                            728.13
3554                         4939                           2009.67
3555                         1742                           4514.23
3556                         3263                           7438.80
3557                         3446                           5385.76
3558                         3059                           2356.73
3559                         3843                           9970.21
3560                         3582                           8332.82
3561                         4005                          10061.07
3562                         4598                          10253.64
3563                         4817                           7415.42
3564                         4611                          10264.17
3565                         4766                           1030.83
3566                         6583                            698.73
3567                         5039                            453.76
3568                         7308                           2318.11
3569                         7824                            402.47
3570                         6646                            439.02
3571                         6737                             70.34
3572                         8087                             30.46
3573                         6230                            217.05
3574                         5850                            667.26
3575                         6428                            110.45
3576                         9317                            141.15
3577                         5768                             65.91
3578                         9622                             32.84
3579                         3634                            243.10
3580                         3809                            103.31
3581                         5151                            112.00
3582                         6755                           3583.75
3583                         2406                          11711.85
3584                         3445                           4808.74
3585                         2468                           5117.37
3586                         2470                           1300.43
3587                         3622                            447.23
3588                         2685                           5372.83
3589                       306952                           8088.35
3590                       211183                          10323.11
3591                       290597                          11210.70
3592                       371804                           4843.16
3593                       219153                            275.71
3594                       283782                           2558.39
3595                       264201                            488.11
3596                       264747                            661.15
3597                       335026                           6397.10
3598                       358809                          12752.14
3599                       274655                          11669.31
3600                       325870                          15419.83
3601                       307678                          16511.69
3602                       263775                          15893.52
3603                       280262                           9159.67
3604                       228409                           1442.84
3605                       197493                           5321.61
3606                       207893                          22615.89
3607                       215617                          22584.07
3608                       239773                          26306.88
3609                       255073                          27017.13
3610                       212638                          27028.45
3611                       242488                          94696.80
3612                       256759                          94863.13
3613                       228291                         104656.22
3614                       261536                         105750.27
3615                       180042                          89881.02
3616                       242410                         101357.90
3617                       135926                          50689.13
3618                       220019                          89109.83
3619                       210973                          29436.24
3620                       252030                          38989.85
3621                       273930                          77176.68
3622                       312684                          57897.47
3623                       208596                          24262.22
3624                       217343                          22847.76
3625                       210718                          68728.73
3626                       225792                          20503.70
3627                       265657                          32688.74
3628                       286624                          48009.23
3629                       245563                          44381.53
3630                       232255                          24714.09
3631                       250138                          68883.46
3632                       207221                          40184.81
3633                       163400                          18492.84
3634                       216563                          31009.63
3635                       238503                         108699.18
3636                       158608                          48035.59
3637                       150810                          72037.88
3638                       167786                          26026.74
3639                       185907                          25383.34
3640                       147921                         130892.80
3641                         2561                             31.84
3642                         1185                              0.00
3643                         2403                              0.00
3644                          801                             73.61
3645                          741                              0.00
3646                          687                              0.00
3647                          973                              6.67
3648                          756                             30.00
3649                          378                              0.00
3650                          187                             62.50
3651                          712                              0.00
3652                          986                              0.00
3653                          902                              0.00
3654                          772                             77.78
3655                         2196                              0.00
3656                         2062                             16.11
3657                         1160                            150.00
3658                         2349                           2963.16
3659                         7905                           3240.00
3660                         6770                           2220.00
3661                         1282                           3685.00
3662                          592                           4255.00
3663                          553                           8220.00
3664                         1259                          11095.48
3665                         1668                           8418.33
3666                          868                          10761.81
3667                          985                           4430.39
3668                         1092                           5600.72
3669                         1542                           5650.00
3670                         5237                           1630.00
3671                        12975                            430.00
3672                          775                           1080.00
3673                         2720                              0.00
3674                          652                              0.00
3675                         1979                              0.00
3676                         1113                              0.00
3677                         2575                              0.00
3678                         2380                              0.00
3679                         1963                              0.00
3680                         1350                              0.00
3681                         1472                              0.00
3682                         1293                              0.00
3683                         1631                              0.00
3684                         1531                              0.00
3685                         2218                              0.00
3686                         2282                              0.00
3687                         2121                              0.00
3688                         1318                              0.00
3689                         1261                              0.00
3690                         1205                              0.00
3691                         1205                              0.00
3692                          692                              0.00
3693                          866                            317.28
3694                          225                            142.29
3695                          840                            290.28
3696                          125                            135.70
3697                            9                              0.00
3698                         1324                              0.00
3699                          187                              0.00
3700                          566                              0.00
3701                           80                              0.00
3702                          104                             69.44
3703                           99                              0.00
3704                           40                            175.00
3705                          190                              0.00
3706                          628                             10.00
3707                         1376                              5.00
3708                         1137                             15.00
3709                          734                            334.00
3710                         1647                           1073.42
3711                         4268                           1355.00
3712                         2319                           1275.56
3713                          119                            190.00
3714                          340                           1205.00
3715                          738                           2280.00
3716                          347                           3676.99
3717                         1638                           3723.82
3718                          548                           3881.61
3719                          318                           2365.00
3720                          883                           2185.00
3721                          585                           2670.00
3722                          578                           2185.00
3723                         1486                           1690.33
3724                          940                           1070.00
3725                         1053                             40.05
3726                         1766                              0.00
3727                         2065                              0.00
3728                          983                             28.30
3729                          802                             43.30
3730                          283                            220.07
3731                          567                            128.54
3732                         1200                              0.00
3733                          964                              0.00
3734                          990                              0.00
3735                         1189                              3.35
3736                         1942                              0.00
3737                         2422                              0.00
3738                         4299                              0.00
3739                         3685                              3.37
3740                         2209                              0.00
3741                         4411                              5.07
3742                         1079                              0.00
3743                         1912                              0.00
3744                         1097                              0.00
3745                       169973                              0.00
3746                       219296                              0.00
3747                       252688                              0.00
3748                       195108                              0.00
3749                        70483                              0.00
3750                        94916                             13.33
3751                        99275                            102.78
3752                       102248                              0.00
3753                       131113                              0.00
3754                        61336                              0.00
3755                       141037                              0.00
3756                       116836                             34.72
3757                       184289                              0.00
3758                       193857                              0.00
3759                        91452                             20.00
3760                        79968                            230.00
3761                        88824                           1905.00
3762                        58653                           8220.00
3763                        76539                            333.33
3764                        79430                            250.00
3765                        60269                              0.00
3766                        64240                           3743.33
3767                        39623                           2337.22
3768                        37550                              0.00
3769                        39453                           3425.28
3770                        39117                          17928.06
3771                        86483                          18366.67
3772                        70961                          12600.00
3773                       149148                          10023.33
3774                       170944                          10603.33
3775                       110662                           8640.00
3776                       165911                           9301.67
3777                       192425                           2739.44
3778                       146298                           3018.05
3779                       159462                           4866.66
3780                       144364                           4451.67
3781                        57278                           6655.00
3782                        50450                           5018.06
3783                        66016                           3546.67
3784                       124377                           7073.33
3785                       103045                           8503.33
3786                        48441                           6586.67
3787                        39419                           7126.67
3788                        24044                           6286.67
3789                        38634                           6086.67
3790                        55041                           6225.56
3791                        75750                          19306.67
3792                        46086                          22807.77
3793                        63963                          17144.44
3794                        50111                           4376.67
3795                        58067                           1156.67
3796                        49678                            326.67
3797                        25547                             44.80
3798                        20669                             43.91
3799                        20250                            156.88
3800                        24180                            867.20
3801                        24221                              0.00
3802                        32252                              0.00
3803                        28947                             41.67
3804                        29181                            329.39
3805                        41094                              0.00
3806                        38780                              1.49
3807                        30248                              0.00
3808                        32111                            452.98
3809                        27446                              3.01
3810                        25490                              0.00
3811                        25361                              0.00
3812                        21860                              0.00
3813                        16371                            105.00
3814                        21877                           1013.40
3815                        24245                            240.00
3816                        28560                           1285.00
3817                        21522                            795.28
3818                        22329                            671.85
3819                        29878                           4640.20
3820                        32642                           4914.98
3821                        25083                           5599.84
3822                        29634                           6058.05
3823                        16249                           5659.25
3824                        25320                           6063.43
3825                        13631                           6148.79
3826                        23087                           6339.77
3827                        24844                           2830.34
3828                        29563                           4917.90
3829                        27196                           5564.24
3830                        27767                           3365.91
3831                        26782                           1749.44
3832                        30148                           4092.74
3833                        33415                           3691.73
3834                        26375                           1188.64
3835                        26829                           2955.32
3836                        27197                           4667.85
3837                        18685                           3221.12
3838                        19278                           3809.85
3839                        23929                           4920.17
3840                        23948                           3042.27
3841                        17285                           1594.11
3842                        27220                           2307.08
3843                        25269                           3588.69
3844                        17063                           4874.75
3845                        21451                           4769.31
3846                        19618                           2046.21
3847                        20247                           3397.73
3848                        19313                           7575.88
3849                        54709                              0.00
3850                        58844                             68.06
3851                        36270                              0.00
3852                        73698                              0.00
3853                        40163                              0.00
3854                        40052                              0.00
3855                        39670                              0.00
3856                        45768                              0.00
3857                        43127                              0.00
3858                        42388                              0.00
3859                        60621                             77.78
3860                        40304                              0.00
3861                        52236                              0.00
3862                        48983                              0.00
3863                        52678                              0.00
3864                        34566                              0.00
3865                        47400                              0.00
3866                        24543                            550.00
3867                        26027                           2170.00
3868                        39348                           2600.00
3869                        24593                           3915.00
3870                        23055                           4781.39
3871                        21141                           4141.94
3872                        23918                           4324.72
3873                        19443                           5881.94
3874                        41823                           5995.00
3875                        23013                           3855.83
3876                        39990                           4500.00
3877                        22606                           3530.00
3878                        40947                           3129.44
3879                        40394                            976.67
3880                        27240                           1986.67
3881                        77620                           1906.67
3882                        46304                              0.00
3883                        92767                              0.00
3884                        79513                            576.39
3885                        41248                            344.44
3886                        79967                            656.94
3887                        42424                              0.00
3888                        40449                              0.00
3889                        34933                              0.00
3890                        72330                              0.00
3891                        40050                              0.00
3892                        78332                              0.00
3893                        36679                              0.00
3894                        32067                              0.00
3895                        66879                              8.12
3896                        30514                              0.00
3897                        28917                              0.00
3898                        12888                              0.00
3899                        27648                              0.00
3900                        15388                              0.00
3901                        79795                              0.00
3902                        94431                              0.00
3903                       125144                              0.00
3904                       109473                            398.61
3905                        59992                              0.00
3906                        52715                              0.00
3907                        53892                              0.00
3908                        50534                            252.78
3909                        62503                              0.00
3910                        83393                              0.00
3911                        95941                              0.00
3912                        43301                              0.00
3913                        43393                              0.00
3914                        41533                              0.00
3915                        59043                              0.00
3916                        55605                              0.00
3917                        57325                              0.00
3918                        46529                              0.00
3919                        43901                              0.00
3920                        41439                              0.00
3921                        37605                            194.44
3922                        37052                              0.00
3923                        40005                            516.67
3924                        31541                           1473.33
3925                        47343                           1175.28
3926                        46538                              0.00
3927                        47330                              0.00
3928                        47967                            109.72
3929                        45519                            115.28
3930                        76034                              0.00
3931                        86166                            219.44
3932                        54952                              0.00
3933                        36627                              0.00
3934                        56942                              0.00
3935                        51258                            208.33
3936                        60496                              0.00
3937                        73502                              0.00
3938                        56050                              0.00
3939                        23108                              0.00
3940                        37524                              0.00
3941                        37590                              0.00
3942                        55862                              0.00
3943                        27106                              0.00
3944                        36770                              0.00
3945                        44919                              0.00
3946                        60912                              0.00
3947                        41599                              0.00
3948                        17210                              0.00
3949                        16948                              0.00
3950                        27584                              0.00
3951                        32973                              0.00
3952                        38994                              0.00
3953                        49937                          29290.48
3954                        55112                          23857.54
3955                        80412                          19643.50
3956                        17965                          20918.26
3957                        34138                          21732.46
3958                        43042                          23178.06
3959                        44271                          25867.81
3960                        26543                          26995.86
3961                        16419                          19146.28
3962                        32387                          20487.37
3963                        43825                          28817.78
3964                        51156                          25365.52
3965                        40145                          22123.39
3966                        34497                          24991.63
3967                        36400                          30720.86
3968                        46333                          26600.65
3969                        32720                          23777.27
3970                        32450                          27789.66
3971                        43208                          35113.14
3972                        53238                          29085.06
3973                        63575                          34136.92
3974                        64812                          31927.10
3975                        60001                          22467.47
3976                        73174                          22599.25
3977                        85232                          28664.03
3978                        96718                          34207.59
3979                        84463                          25161.56
3980                        80776                          25149.39
3981                        84760                          24489.04
3982                       124721                          25903.36
3983                       119447                          27057.56
3984                        87973                          21324.00
3985                       104146                          17435.17
3986                       362932                          20647.48
3987                       334016                          15070.09
3988                       185289                          18064.33
3989                        61746                          19176.16
3990                       132342                          16961.34
3991                       145602                          16441.67
3992                       185190                          20008.82
3993                       134711                          18060.88
3994                       129444                          18097.26
3995                       155334                          21619.28
3996                       196813                          17288.48
3997                       119573                          14654.54
3998                       222150                          15105.65
3999                       245385                          16806.91
4000                        94240                          14059.30
4001                        99947                          14941.52
4002                       111406                          17747.26
4003                       194493                          16084.46
4004                       226122                          10317.41
4005                        28748                              0.00
4006                        19259                              0.00
4007                        47412                             12.66
4008                        52955                              0.00
4009                        19589                              0.00
4010                        16871                              0.00
4011                        21328                              0.00
4012                        24858                              0.00
4013                        24943                              0.00
4014                        25396                              0.00
4015                        30429                              0.00
4016                        27499                              0.00
4017                        23402                              0.00
4018                        17571                              0.00
4019                        22492                              0.00
4020                        20735                              5.00
4021                        18599                            215.00
4022                        14585                           1260.00
4023                        19306                            340.00
4024                        11519                             10.00
4025                         8740                            276.67
4026                        13604                           1625.20
4027                        15464                           2439.96
4028                        19864                           2412.10
4029                         8354                           3226.10
4030                        15819                           3888.33
4031                        15457                           3045.36
4032                        19034                           4074.69
4033                         9636                           2340.37
4034                        12559                           2999.73
4035                        17510                            706.82
4036                        17376                            823.91
4037                        20894                           1929.71
4038                        27789                           1457.82
4039                        26367                            795.13
4040                        15363                            746.43
4041                        13959                           1908.99
4042                        16275                            379.83
4043                        22101                           1127.39
4044                        23483                           1568.10
4045                        23672                           1672.03
4046                        13596                            806.94
4047                        12597                           2528.16
4048                        17869                           1321.37
4049                        23456                            469.30
4050                        22781                            774.82
4051                        22423                           2364.40
4052                        12100                           1265.87
4053                        20198                           1905.45
4054                        14857                            815.07
4055                        17271                            488.76
4056                        20809                           1620.80
4057                       154236                             79.17
4058                       181797                            143.06
4059                       103275                            140.28
4060                       197097                            435.84
4061                        93847                            243.61
4062                       109062                              0.00
4063                       106744                            251.39
4064                        99150                            551.39
4065                        94573                            341.67
4066                       108324                            183.33
4067                       144764                            320.83
4068                        94167                              0.00
4069                       120229                              0.00
4070                       118397                            488.89
4071                       114378                           1308.33
4072                        85586                           1701.39
4073                       106502                            911.11
4074                        48344                           1163.06
4075                        51086                           6755.00
4076                        83816                           5214.17
4077                        46178                          10641.67
4078                        46683                          13940.28
4079                        46752                          12791.94
4080                        43114                          16755.00
4081                        46987                          12012.50
4082                        92318                          17369.72
4083                        32132                          15683.89
4084                        74180                          14070.56
4085                        49303                          14710.83
4086                        98747                           7122.50
4087                        93591                          10280.83
4088                        54738                           9370.00
4089                       185705                           2440.00
4090                        94280                           1409.72
4091                       220081                              0.00
4092                       186259                           1623.61
4093                        97105                            419.44
4094                       193377                            605.56
4095                        97707                              0.00
4096                        76648                              0.00
4097                        88087                              0.00
4098                       174180                              0.00
4099                        81588                              0.00
4100                       166791                              0.00
4101                        85370                              0.00
4102                        70886                              0.00
4103                       217922                              0.00
4104                        66681                              0.00
4105                        64486                              0.00
4106                        30401                              0.00
4107                        68080                              0.00
4108                        43747                              0.00
4109                       126819                           4132.56
4110                        98744                           4068.37
4111                       158716                           4727.70
4112                       206026                           3153.45
4113                        82534                           2581.67
4114                        87750                           1962.77
4115                        97915                           2281.08
4116                        99509                            750.00
4117                       104591                           3592.23
4118                       104911                           3778.06
4119                       128076                            585.28
4120                       131811                           1098.61
4121                       123117                           2413.89
4122                       100820                              0.00
4123                       137296                            157.78
4124                       133301                           2378.33
4125                       100199                           3563.65
4126                        65178                          17668.62
4127                        94491                          10840.09
4128                        87262                           3130.00
4129                        96534                          10360.26
4130                        74748                          18858.84
4131                        97933                          46962.62
4132                        82513                          71187.79
4133                        84303                          79133.56
4134                        98647                          77406.70
4135                        58982                          32421.42
4136                        81188                          37392.62
4137                        50028                          31242.94
4138                        78844                          22122.28
4139                        87306                          14295.21
4140                        78542                          17490.96
4141                       121070                           6567.43
4142                       126429                           5417.33
4143                       131751                           1981.64
4144                       101988                           2685.57
4145                        75800                           4778.40
4146                       112614                           1195.15
4147                        99453                           2080.93
4148                        94070                           2865.19
4149                        91601                           3123.16
4150                       100801                           1410.17
4151                        73642                           3800.07
4152                       105806                           2302.00
4153                        99760                            675.43
4154                       113432                           1045.00
4155                       162492                           4349.53
4156                        84566                           2272.44
4157                       107123                           4168.99
4158                        70548                           1390.46
4159                        85473                           1413.99
4160                        64630                           6743.15
4161                        16684                           1000.00
4162                        16375                           1410.00
4163                        10921                           2180.00
4164                        23949                           1325.00
4165                        11099                            604.44
4166                        10861                            415.00
4167                        10716                           1170.00
4168                        11172                            440.00
4169                        12436                           1445.00
4170                         9384                           1260.00
4171                        20373                            180.00
4172                        21913                              0.00
4173                        17311                              0.00
4174                        14930                              0.00
4175                        20256                              0.00
4176                        21540                              0.00
4177                        15575                              0.00
4178                         3275                              0.00
4179                         3705                              0.00
4180                        13415                              0.00
4181                        20976                              0.00
4182                         9716                             97.22
4183                        12991                              0.00
4184                         9476                              0.00
4185                        19524                              0.00
4186                        23751                              0.00
4187                         8683                            251.39
4188                        13377                           1273.33
4189                         9199                           2043.33
4190                        14360                           1420.00
4191                        15057                           1086.67
4192                        11397                           1465.12
4193                        27611                            125.70
4194                        18956                             25.41
4195                        32138                              0.00
4196                        26635                            106.94
4197                        16973                              2.52
4198                        30602                              7.54
4199                        18971                              0.00
4200                        13157                              0.00
4201                        15704                              2.52
4202                        31069                              0.00
4203                        15758                              0.00
4204                        24552                              0.00
4205                        11699                              0.00
4206                        16189                              0.00
4207                        37250                              0.00
4208                        14373                              0.00
4209                        23908                              0.00
4210                        13707                              0.00
4211                        20247                              0.00
4212                         9037                              0.00
4213                        19595                           5458.33
4214                        17160                           9730.00
4215                        11188                           3945.28
4216                        19438                           2865.00
4217                        12685                            396.11
4218                        12727                            240.00
4219                        15815                            683.06
4220                        17499                            534.72
4221                        16790                           9448.33
4222                        15594                           4025.00
4223                        16753                          11345.00
4224                        16720                          10775.00
4225                        14452                           7605.00
4226                        14214                          14835.00
4227                        16384                          10965.00
4228                         9139                           3805.00
4229                        12704                           9260.00
4230                        16042                           7560.00
4231                        12616                           9525.00
4232                        14285                           2375.00
4233                         9694                           8709.44
4234                        13784                            625.00
4235                        10508                          12835.00
4236                        13214                           2275.00
4237                        10060                          11414.72
4238                        15078                           6861.67
4239                         9281                           9010.00
4240                        16417                           4425.00
4241                         9380                          12312.22
4242                        15485                          12804.72
4243                        14413                           5295.00
4244                        13430                           4992.22
4245                        33790                              0.00
4246                        19611                              0.00
4247                        43470                              0.00
4248                        29557                              0.00
4249                        19211                              0.00
4250                        28883                              0.00
4251                        18911                              0.00
4252                        12284                              0.00
4253                        15241                              0.00
4254                        23873                              0.00
4255                        14912                              0.00
4256                        25835                              0.00
4257                        17676                              0.00
4258                        13162                              0.00
4259                        23873                              0.00
4260                        10153                              0.00
4261                        13004                              0.00
4262                         8819                              0.00
4263                        12063                              0.00
4264                         7775                              0.00
4265                        36655                           1207.92
4266                        39175                           1946.20
4267                       104392                           1506.23
4268                        33668                            453.64
4269                        32611                            298.94
4270                        35803                           1816.67
4271                        42984                              0.00
4272                        42458                              0.00
4273                        21485                           1225.00
4274                         5010                           1250.00
4275                        35806                            823.61
4276                        47381                            218.44
4277                        50152                            737.50
4278                        37137                            838.89
4279                        52277                            133.33
4280                        48240                            457.81
4281                        53778                           1048.64
4282                        57957                           2868.76
4283                        52653                           4033.04
4284                        31781                           1194.65
4285                        40992                           2876.06
4286                        19393                           2547.22
4287                        21057                           5442.94
4288                        50851                           6497.84
4289                        84323                           3688.92
4290                        62448                           5657.69
4291                        56320                           2758.35
4292                        55747                           3118.03
4293                        60442                           3803.68
4294                        63464                           1769.10
4295                        70667                            398.33
4296                        32848                            405.44
4297                        52451                           1730.03
4298                        59096                            419.44
4299                        79106                            134.71
4300                        62792                            811.11
4301                        74702                           1734.62
4302                        38411                           2316.75
4303                        42071                              0.00
4304                        51618                              0.00
4305                        40881                              0.00
4306                        43359                              0.00
4307                        42678                              0.00
4308                        42500                              0.00
4309                        43907                              0.00
4310                        66869                              0.00
4311                        42137                              0.00
4312                        41190                              2.17
4313                        71746                              0.00
4314                        44375                              0.00
4315                        56110                              0.00
4316                        37309                              8.83
4317                        53298                           1808.95
4318                        59783                           2222.01
4319                       132518                           2103.01
4320                        45128                           1299.63
4321                        40587                            955.83
4322                        43849                           1952.78
4323                        52344                             10.00
4324                        53808                            669.44
4325                        28142                           1276.39
4326                        12135                           2525.00
4327                        46085                            823.61
4328                        57528                            392.49
4329                        60123                           1099.26
4330                        49099                            926.67
4331                        66388                            218.89
4332                        67008                            513.46
4333                        62682                           3723.91
4334                        71527                          19159.67
4335                        97633                          19784.27
4336                        63918                          14985.41
4337                        58406                          21239.68
4338                        33487                          18600.09
4339                        36044                          53340.60
4340                        68637                          64692.73
4341                       107324                          58307.57
4342                        82816                          69794.85
4343                        78614                          31622.03
4344                        74864                          30476.12
4345                        80946                          30712.05
4346                        92633                          19724.42
4347                       117667                           9829.62
4348                        60110                          14141.13
4349                       103624                           2643.35
4350                        91516                            525.00
4351                       114354                            356.74
4352                        90193                           2621.85
4353                       108151                           2131.07
4354                        64700                           3150.31
4355                        66911                            135.85
4356                        80732                              0.00
4357                        60004                              0.00
4358                        61310                              0.00
4359                        58883                              7.01
4360                        62961                              0.00
4361                        77611                              0.00
4362                       107842                              1.74
4363                        73585                              3.48
4364                        63773                              1.74
4365                        94980                              5.22
4366                        67661                              0.00
4367                        85149                            103.33
4368                        52073                           1843.64
4369                            4                              0.00
4370                          397                             33.33
4371                          895                              0.00
4372                            0                              0.00
4373                            0                              0.00
4374                            0                              0.00
4375                            0                              0.00
4376                            0                              0.00
4377                            0                              0.00
4378                            0                              0.00
4379                            0                              0.00
4380                            0                              0.00
4381                            4                              0.00
4382                           12                              0.00
4383                          549                             80.56
4384                          538                             10.00
4385                            0                            440.00
4386                           22                           2030.00
4387                           30                           1435.00
4388                            0                           1755.00
4389                            0                            245.00
4390                            4                           1930.00
4391                            4                           4570.00
4392                            0                           7371.11
4393                            4                           7995.00
4394                            8                           9655.00
4395                            0                           4055.00
4396                            0                           2675.00
4397                            0                           2805.00
4398                            0                           2425.00
4399                            4                           2030.00
4400                            7                           3015.00
4401                            4                              0.00
4402                           15                              0.00
4403                            0                             59.72
4404                           56                              0.00
4405                           33                             65.28
4406                           15                              0.00
4407                            0                              0.00
4408                            0                              0.00
4409                            4                              0.00
4410                           15                              0.00
4411                           52                              0.00
4412                          556                              0.00
4413                         1944                              0.00
4414                         2536                              0.00
4415                         1828                              0.00
4416                         1152                              0.00
4417                          483                              0.00
4418                            0                              0.00
4419                            4                              0.00
4420                            0                              0.00
4421                        79805                            144.44
4422                        79120                             94.44
4423                        53442                            100.00
4424                       108539                              0.00
4425                        51218                              0.00
4426                        56066                              0.00
4427                        54378                              0.00
4428                        55431                              0.00
4429                        57104                            469.44
4430                        54609                            734.72
4431                        94068                              0.00
4432                        55622                              0.00
4433                        66632                            387.50
4434                        62515                           1140.28
4435                        68979                              0.00
4436                        55821                              0.00
4437                        66507                              0.00
4438                        21861                           1811.39
4439                        23781                           4930.00
4440                        54647                           4960.00
4441                        35584                          10262.78
4442                        33277                           9300.00
4443                        34307                          10420.00
4444                        31198                          12030.00
4445                        29184                          12305.00
4446                        50693                          19396.39
4447                        35166                          10490.00
4448                        52962                          11060.56
4449                        32645                           8876.67
4450                        58693                          10079.16
4451                        62354                           3788.34
4452                        40285                           8269.73
4453                       121151                           4991.11
4454                        77481                              0.00
4455                       152707                            368.06
4456                       130991                            691.67
4457                        61355                              0.00
4458                       129928                              0.00
4459                        65427                              0.00
4460                        56718                              0.00
4461                        58998                              0.00
4462                       122602                              0.00
4463                        51328                              0.00
4464                       118744                              0.00
4465                        57993                              0.00
4466                        50811                              0.00
4467                       155928                              0.00
4468                        59521                              0.00
4469                        56342                             11.40
4470                        20509                             14.20
4471                        52385                              0.00
4472                        28740                              0.00
4473                         5380                            333.30
4474                         6638                             82.22
4475                        19741                              0.00
4476                         5540                            182.50
4477                         5056                              0.00
4478                         4632                             79.17
4479                         5877                              0.00
4480                         7238                            231.94
4481                         3108                              0.00
4482                         1958                              0.00
4483                         6893                              0.00
4484                         7949                              0.00
4485                         7790                             82.09
4486                         5460                              0.00
4487                         9261                              0.00
4488                         9482                              0.00
4489                         9074                            452.53
4490                        10098                           1459.18
4491                        17278                           2042.25
4492                         9698                           1107.46
4493                         8526                           2836.15
4494                         3766                           1965.00
4495                         4319                           4968.06
4496                         9333                           8255.40
4497                        14058                           4218.50
4498                        10880                           6821.41
4499                         9866                           2496.35
4500                         8901                           2376.03
4501                        12724                           2735.00
4502                        14692                            250.83
4503                        21386                              0.00
4504                         8469                              0.00
4505                        15195                            431.94
4506                        12439                            105.56
4507                        15350                            115.28
4508                        13166                            272.22
4509                        15823                            140.28
4510                         8407                             70.83
4511                         9141                              0.00
4512                         9722                              0.00
4513                         7855                              0.00
4514                         9250                              0.00
4515                         9743                              3.09
4516                        10145                              0.00
4517                        10289                              0.00
4518                        12592                              0.00
4519                        10906                              0.00
4520                         9447                              0.00
4521                        13219                              0.00
4522                        10314                              0.00
4523                        11193                              0.00
4524                         7255                              0.00
4525                       165814                             73.61
4526                       148668                            444.44
4527                       152350                             51.39
4528                       115108                           1281.94
4529                       123303                            309.72
4530                       164014                             80.56
4531                       163055                              0.00
4532                       125874                              0.00
4533                       123200                             87.50
4534                       115801                              0.00
4535                       171740                            608.33
4536                       128733                            466.67
4537                       121767                            220.83
4538                       115508                            995.83
4539                       137427                              0.00
4540                       105452                              3.33
4541                       142076                              0.00
4542                       112887                              0.00
4543                       133222                            625.00
4544                       153948                              0.00
4545                       132129                            977.78
4546                       125777                            166.67
4547                       139837                            481.94
4548                       108637                             75.00
4549                       135677                            462.50
4550                       117119                            304.17
4551                       113195                             58.33
4552                       119122                             86.11
4553                       123010                              0.00
4554                       131927                             34.72
4555                       143895                           1081.94
4556                       131561                             48.61
4557                        99188                            690.28
4558                       109498                           2662.50
4559                        72201                             38.89
4560                        83420                           1450.00
4561                       108208                              0.00
4562                        75964                           1245.83
4563                        56080                             15.17
4564                        80965                              0.00
4565                        64370                              0.00
4566                        68717                              0.00
4567                        54046                              0.00
4568                        69634                              0.00
4569                        95801                              0.00
4570                        77921                              0.00
4571                        83550                              0.00
4572                        51983                              0.00
4573                        82131                              0.00
4574                        49194                              0.00
4575                        50704                              0.00
4576                        48700                              0.00
4577                         3885                              0.00
4578                         8301                              0.00
4579                         4529                              0.00
4580                         4345                            145.83
4581                         3915                              0.00
4582                         4732                              0.00
4583                         4658                              0.00
4584                         4944                              0.00
4585                         5199                             51.39
4586                         5482                              0.00
4587                         4838                              0.00
4588                         4395                              0.00
4589                         4552                              0.00
4590                         8643                              0.00
4591                         1435                              0.00
4592                         1920                              0.00
4593                          902                            219.17
4594                         2363                           1065.00
4595                         8896                            480.00
4596                         8460                           1255.00
4597                        10405                           3520.00
4598                        10802                            863.72
4599                        10655                           4387.78
4600                        10590                           6515.00
4601                        10065                           3610.00
4602                        11865                           4835.00
4603                        13454                           2075.00
4604                        12371                           1500.00
4605                        11099                           1775.00
4606                        15179                            320.00
4607                        16522                            396.67
4608                        19067                           1250.56
4609                        31691                             88.89
4610                        18304                              0.00
4611                        14253                              0.00
4612                        12026                              0.00
4613                        11619                              0.00
4614                        13808                              0.00
4615                        11920                              0.00
4616                        17238                              0.00
4617                        11110                              0.00
4618                         8651                              0.00
4619                         4900                              0.00
4620                         5396                              0.00
4621                         5349                              0.00
4622                        11499                              0.00
4623                         6666                              0.00
4624                         5763                              0.00
4625                         6882                              0.00
4626                        12422                              0.00
4627                        15712                             16.67
4628                         9621                            220.00
4629                        30653                           1659.21
4630                        30112                           5771.22
4631                        24589                           3956.96
4632                        43202                           8155.01
4633                        28167                           1855.32
4634                        20625                           3753.05
4635                        23575                           7683.60
4636                        26242                           4100.00
4637                        56090                           9159.41
4638                        42104                           6305.41
4639                        28257                           7168.66
4640                        30408                           7297.29
4641                        49039                           5556.51
4642                        39398                           6767.03
4643                        38375                           5772.22
4644                        25530                           4814.38
4645                        30741                          13858.27
4646                        31891                          12423.51
4647                        12247                          20408.60
4648                        16834                           7213.67
4649                        19901                          23239.48
4650                        17634                          34700.91
4651                        18858                          37547.10
4652                        30455                          34075.12
4653                        22163                          49882.07
4654                        34036                          52003.87
4655                        25087                          25293.09
4656                        41103                          12332.46
4657                        28877                          24938.14
4658                        28530                          24418.48
4659                        22584                           9826.67
4660                        43241                          10059.85
4661                        44850                           5903.34
4662                        74091                          11724.60
4663                        32053                            730.08
4664                        56591                           7701.08
4665                        52872                           8875.06
4666                        45354                          11293.99
4667                        46537                           1765.07
4668                        31033                           1872.48
4669                        50899                           1582.27
4670                        43787                           2395.56
4671                        31752                           2970.95
4672                        37148                           1948.33
4673                        37206                           1730.00
4674                        32440                           1376.25
4675                        62701                           1413.45
4676                        49336                           1369.72
4677                        47910                           2148.41
4678                        28187                           4914.77
4679                        59405                           3532.62
4680                        19418                           1307.57
4681                           44                            302.65
4682                          907                            164.80
4683                         1653                           1297.17
4684                         2558                            440.11
4685                          502                            158.67
4686                          501                            217.97
4687                          377                            599.21
4688                          665                            377.22
4689                         4076                            344.21
4690                         1376                            277.03
4691                         5212                            145.54
4692                        65756                            203.34
4693                       175642                            496.85
4694                       107461                             49.53
4695                        14941                            135.85
4696                          104                            242.25
4697                          312                            223.10
4698                          336                             78.15
4699                         1692                             80.15
4700                         1898                            299.15
4701                          831                             67.68
4702                         1778                            402.30
4703                         2006                            127.21
4704                          946                            190.72
4705                         1007                             98.84
4706                         1173                            194.18
4707                         1498                           1565.92
4708                         1626                            596.57
4709                         2380                             56.66
4710                         5117                            463.72
4711                         3484                            320.90
4712                         5624                            327.25
4713                        14195                           1197.22
4714                         3539                            588.05
4715                         2894                            359.68
4716                         3823                             51.94
4717                        12156                           1379.51
4718                          151                           1746.75
4719                         1405                            239.44
4720                         2382                            333.37
4721                         1435                            215.70
4722                         2895                            361.46
4723                          842                            332.87
4724                         2953                            228.48
4725                        26246                            218.90
4726                          392                            134.61
4727                         1358                            622.77
4728                         1781                           1452.49
4729                         3801                            206.39
4730                         6678                            152.50
4731                         4248                            543.52
4732                        11448                            970.54
4733                         2793                            161.11
4734                         2173                              0.00
4735                         1623                              0.00
4736                         3931                              0.00
4737                         1562                              0.00
4738                         1847                            293.06
4739                         1886                              0.00
4740                         1988                              0.00
4741                         1933                              0.00
4742                         1668                            305.56
4743                         3635                              0.00
4744                         3278                            568.06
4745                         3060                            936.11
4746                         2614                              0.00
4747                         4723                            127.78
4748                         4475                              5.00
4749                         1765                              0.00
4750                          434                           1201.39
4751                          299                              0.00
4752                         1447                              0.00
4753                         3510                            970.28
4754                         1259                           3052.78
4755                         3641                           4580.83
4756                          686                           9568.33
4757                         2108                          10935.00
4758                         1461                           9717.78
4759                          657                           1750.00
4760                          958                            870.00
4761                          408                           2211.11
4762                          800                           1225.83
4763                          835                            245.00
4764                          307                            675.00
4765                         1194                           1154.17
4766                         1554                           1177.78
4767                         1407                              2.47
4768                         1191                              0.00
4769                          734                              9.88
4770                         1689                              9.89
4771                          755                              0.00
4772                          613                              0.00
4773                          726                              0.00
4774                         1471                              0.00
4775                          626                              0.00
4776                         1647                              0.00
4777                          431                              0.00
4778                         2699                              0.00
4779                         5152                              2.46
4780                         4923                              0.00
4781                         1127                              0.00
4782                          601                              0.00
4783                         1479                              0.00
4784                          667                              0.00
4785                          746                              0.00
4786                         1171                              0.00
4787                          591                              0.00
4788                           40                              0.00
4789                           29                              0.00
4790                            0                              0.00
4791                            0                              0.00
4792                            0                              0.00
4793                           33                              3.33
4794                          497                              0.00
4795                         1057                              0.00
4796                          578                              0.00
4797                          901                              0.00
4798                            4                              0.00
4799                         2071                              0.00
4800                         3389                              0.00
4801                          114                            160.00
4802                          179                           1670.00
4803                           80                            275.00
4804                          108                             60.00
4805                         4302                           2205.00
4806                         2603                            755.00
4807                         6623                           4410.00
4808                          683                           9460.83
4809                         2122                           8115.00
4810                            0                           8035.00
4811                           27                           4890.00
4812                           83                           4745.00
4813                          158                           2970.00
4814                          784                           2420.83
4815                          747                           2555.00
4816                            6                           2450.00
4817                          152                             94.34
4818                         1725                             69.23
4819                            3                             56.50
4820                            3                              0.00
4821                            1                              0.00
4822                            0                             24.01
4823                            0                              0.00
4824                            5                             13.35
4825                            4                              0.00
4826                            9                              0.00
4827                           10                              0.00
4828                          233                              0.00
4829                         3027                              0.00
4830                         3508                              0.00
4831                         3770                              0.00
4832                         2637                              0.00
4833                          513                              0.00
4834                            0                              0.00
4835                            7                              0.00
4836                          265                              0.00
4837                          530                              0.00
4838                         1052                              0.00
4839                          787                              0.00
4840                          487                            122.77
4841                          287                              0.00
4842                          304                              0.00
4843                          240                              0.00
4844                          291                              0.00
4845                          754                              0.00
4846                         1607                              0.00
4847                         2449                              0.00
4848                         2854                              0.00
4849                         3085                              0.00
4850                          372                              0.00
4851                         4445                             10.00
4852                         6322                             25.00
4853                         2360                            335.00
4854                         2000                           1860.00
4855                         2760                            870.00
4856                         3331                            125.00
4857                         9020                            965.00
4858                         4397                            600.00
4859                         9663                           4115.00
4860                         1762                           5590.00
4861                         5154                           5763.33
4862                         1709                           5365.00
4863                            5                           3360.00
4864                           32                           3810.00
4865                          277                           3319.44
4866                          748                           1435.00
4867                         1205                           1239.44
4868                         1308                           1687.78
4869                         2074                            106.06
4870                         4374                              0.00
4871                         1987                              0.00
4872                         3146                              9.09
4873                         2273                              3.03
4874                         1835                             33.23
4875                         1252                              0.00
4876                         1198                              0.00
4877                           54                              0.00
4878                          336                              0.00
4879                         1362                              0.00
4880                         1149                              0.00
4881                         3273                              0.00
4882                         4086                              0.00
4883                         3517                              0.00
4884                         2324                              0.00
4885                          162                            370.00
4886                            0                             73.33
4887                           18                             70.00
4888                           31                           1133.33
4889                         2869                           2352.22
4890                         5207                           2240.00
4891                         5504                           1537.22
4892                          382                           1325.00
4893                          716                           2275.00
4894                          142                              5.00
4895                            6                              0.00
4896                            6                              0.00
4897                          436                            345.00
4898                         2029                           2710.00
4899                         1036                           1320.28
4900                          206                             10.90
4901                            0                           1231.67
4902                          705                           3763.89
4903                         1177                           2363.34
4904                            0                            600.00
4905                            3                            215.28
4906                            6                            130.56
4907                            9                            258.33
4908                            0                              0.00
4909                           13                              0.00
4910                           10                            390.28
4911                            0                              0.00
4912                            9                              0.00
4913                            9                            250.00
4914                            0                              0.00
4915                            0                            623.61
4916                            0                            975.00
4917                           13                            365.42
4918                           19                              0.00
4919                            4                             70.85
4920                            0                           2173.89
4921                            7                              8.77
4922                            6                           1222.66
4923                          107                            325.00
4924                            0                            280.56
4925                           61                            326.39
4926                           20                            322.22
4927                           38                              0.00
4928                            9                              0.00
4929                           26                              2.91
4930                            0                             20.31
4931                            6                              8.71
4932                            0                              0.00
4933                            6                              0.00
4934                           17                             43.67
4935                           55                             37.88
4936                            6                              2.91
4937                           32                              0.00
4938                            0                              2.90
4939                           12                              0.00
4940                            0                              0.00
4941                        22081                           1765.56
4942                        38952                           1110.28
4943                        53238                            421.67
4944                         6275                           1723.97
4945                        10626                            935.54
4946                        14193                            385.00
4947                        13258                            435.00
4948                         8804                            868.06
4949                         6337                             95.27
4950                        13110                           1924.11
4951                        16988                           2653.34
4952                        20262                            500.00
4953                        15812                            785.00
4954                        12821                           1071.94
4955                        11857                           1354.17
4956                        15188                             55.00
4957                        10942                            201.39
4958                        10855                            468.06
4959                        14380                             98.61
4960                        15842                              0.00
4961                        20237                              0.00
4962                        23324                             40.00
4963                        18132                            730.00
4964                        20475                            871.41
4965                        19130                           1261.67
4966                        20163                           2101.87
4967                        17484                            733.76
4968                        17443                           1116.39
4969                        19728                            355.00
4970                        39014                            250.00
4971                        31716                            980.28
4972                        30338                           1205.00
4973                        35092                              0.00
4974                       137623                            226.39
4975                       155615                            233.33
4976                        68644                              0.00
4977                        24495                              0.00
4978                        44338                              0.00
4979                        50311                              0.00
4980                        66078                              0.00
4981                        51305                              0.00
4982                        50048                              0.00
4983                        69940                              0.00
4984                        70805                              0.00
4985                        40780                              0.00
4986                        97328                              0.00
4987                        86518                              0.00
4988                        39190                              0.00
4989                        42191                              0.00
4990                        45611                              0.00
4991                       103723                              0.00
4992                        97480                              0.00
4993                         7460                            295.00
4994                        11824                            889.17
4995                        10579                            954.72
4996                         1144                           1304.72
4997                         1584                            655.00
4998                         1193                           3271.94
4999                          977                            290.28
5000                          103                            529.17
5001                          269                           1972.50
5002                         2967                           2084.17
5003                         3260                           1058.61
5004                         1055                             19.59
5005                         1167                           1148.06
5006                         1572                           1330.28
5007                         3098                           2035.56
5008                          692                            143.06
5009                          962                            451.39
5010                          990                           1311.11
5011                          857                           1576.39
5012                          900                           1162.50
5013                          869                            297.22
5014                          948                            687.50
5015                         1014                           1398.61
5016                          106                           1422.22
5017                          689                           1206.94
5018                          946                           1019.44
5019                         1044                           1105.56
5020                         1080                           1065.28
5021                         1022                            302.52
5022                          698                            413.95
5023                          677                           1202.75
5024                          945                            948.89
5025                         1042                            455.56
5026                          886                           1538.61
5027                          899                            413.89
5028                          884                            769.44
5029                          901                            618.06
5030                          894                           1435.26
5031                          843                             25.21
5032                          831                             15.76
5033                          820                             15.74
5034                          726                             53.41
5035                          797                            103.45
5036                          746                             15.64
5037                          664                             28.07
5038                          688                             28.00
5039                          619                             40.38
5040                          382                            139.54
5041                          166                             12.41
5042                          509                              6.21
5043                          601                              0.00
5044                          372                              0.00
5045                          156                            252.62
5046                          216                            278.60
5047                          416                           1619.17
5048                          192                            271.42
5049                          183                            205.65
5050                          648                            160.22
5051                          284                            825.64
5052                          242                            365.15
5053                          334                            454.81
5054                          320                           1071.19
5055                         7513                            120.97
5056                        31923                            429.29
5057                       287932                            492.01
5058                       115511                            575.04
5059                        46367                            593.80
5060                          135                             72.78
5061                          129                            238.84
5062                          141                            308.75
5063                          135                            223.53
5064                           89                            364.77
5065                          143                            454.62
5066                          242                             35.42
5067                          115                            159.88
5068                           78                             29.27
5069                          146                             53.77
5070                          225                            115.18
5071                          314                            608.55
5072                          306                            864.87
5073                          512                            314.47
5074                        13578                            706.80
5075                        14345                            167.89
5076                        85149                            388.09
5077                         1383                            449.35
5078                        19203                           1640.17
5079                        25901                            490.71
5080                          198                            965.31
5081                        11420                            655.99
5082                          150                           1566.84
5083                          107                            347.72
5084                           87                            333.31
5085                           61                            283.16
5086                          139                            353.02
5087                          516                            363.99
5088                          117                            300.05
5089                          391                            402.30
5090                          285                            193.18
5091                         1573                            821.92
5092                          174                            561.83
5093                         1683                             89.91
5094                         2394                             60.99
5095                          174                            355.73
5096                          420                            911.66
5097                        49563                              0.00
5098                        44095                              0.00
5099                        31340                              0.00
5100                        56729                             23.33
5101                        30153                             78.33
5102                        33444                            423.33
5103                        35957                             85.00
5104                        33718                              0.00
5105                        34173                              0.00
5106                        29823                              0.00
5107                        43424                              0.00
5108                        35548                              0.00
5109                        34973                            137.50
5110                        30142                              0.00
5111                        33919                              0.00
5112                        25095                             73.61
5113                        33339                              5.00
5114                        17067                              0.00
5115                        16333                              0.00
5116                        26894                              0.00
5117                        23895                             45.00
5118                        23134                            755.00
5119                        22357                           2431.11
5120                        24437                              5.00
5121                        22732                              5.00
5122                        38901                              0.00
5123                        17791                             96.67
5124                        31653                           1866.67
5125                        17293                           5791.67
5126                        37355                           5256.67
5127                        50673                           3310.00
5128                        40068                           3624.42
5129                        56332                            502.18
5130                        52833                             35.88
5131                        70399                              0.00
5132                        53782                              0.00
5133                        34296                              0.00
5134                        48983                              0.00
5135                        22540                              0.00
5136                        17903                              0.00
5137                        18691                              0.00
5138                        37605                              5.52
5139                        17962                              0.00
5140                        36114                              0.00
5141                        17127                              0.00
5142                        24498                              0.00
5143                        61341                             10.77
5144                        17007                              0.00
5145                        25315                              0.00
5146                        11091                              0.00
5147                        22176                              0.00
5148                         9075                              0.00
5149                       301809                          23261.07
5150                       383504                          33014.83
5151                       435549                          16546.02
5152                       344664                          11232.63
5153                       133945                           9042.64
5154                       173418                           2411.32
5155                       180469                           1488.18
5156                       191201                           1609.68
5157                       242673                          17632.80
5158                       140925                          27611.87
5159                       263848                          24459.21
5160                       222547                          15472.65
5161                       338402                          17316.42
5162                       409425                          21148.04
5163                       189482                          16386.27
5164                       173093                          11894.76
5165                       188923                          35796.61
5166                       142471                          45303.54
5167                       153644                          14191.33
5168                       157810                           6141.73
5169                       149412                          13434.76
5170                       169617                          13901.83
5171                       105003                          54249.87
5172                        87850                          16661.28
5173                        92636                          48251.04
5174                       124716                         107095.23
5175                       190503                          59687.99
5176                       167591                          38504.73
5177                       307837                          62341.23
5178                       325422                          61614.73
5179                       229576                          35104.69
5180                       348148                          54763.01
5181                       389114                           9479.10
5182                       315129                           9812.59
5183                       368205                          10983.61
5184                       346495                           7803.99
5185                       195845                           8861.55
5186                       183289                          12781.04
5187                       198722                           4424.15
5188                       288346                           7515.80
5189                       256004                           8942.99
5190                       144962                           6870.35
5191                       128135                           7417.69
5192                       104430                           6426.37
5193                       124052                           8424.37
5194                       147944                          21495.98
5195                       197395                          94756.02
5196                       133279                         105746.33
5197                       159610                          63474.77
5198                       136802                          11148.21
5199                       140938                           2424.94
5200                       109448                           3804.23
5201                       767156                           1811.94
5202                       766286                           2436.67
5203                       492522                           1915.56
5204                       957516                           1219.17
5205                       490243                            903.05
5206                       532646                           2071.67
5207                       535603                           1079.72
5208                       547444                           1074.72
5209                       545707                           2721.39
5210                       543597                           2391.94
5211                       790114                           1083.61
5212                       580236                           1616.39
5213                       602150                           1500.00
5214                       573139                           4728.06
5215                       617002                           3118.33
5216                       455459                           3286.94
5217                       574733                           4247.78
5218                       290856                           9696.95
5219                       276588                          27515.28
5220                       467642                          22264.17
5221                       328992                          45540.28
5222                       322569                          49256.67
5223                       314633                          57919.44
5224                       335919                          66386.94
5225                       322740                          60086.67
5226                       559976                          86048.34
5227                       280635                          53537.78
5228                       498429                          59126.67
5229                       295048                          77332.50
5230                       574578                          70704.16
5231                       696043                          44790.27
5232                       512210                          54343.36
5233                      1029088                          19136.03
5234                       795541                           2777.48
5235                      1318520                            487.50
5236                      1072748                           4993.67
5237                       622049                           1901.81
5238                      1017680                           2153.65
5239                       494161                              0.00
5240                       421736                             15.05
5241                       439188                              0.00
5242                       890581                              6.03
5243                       418325                              0.00
5244                       878956                              0.00
5245                       419044                              0.00
5246                       371949                              0.00
5247                      1106150                             60.43
5248                       418187                              0.00
5249                       552166                             15.09
5250                       242856                             51.31
5251                       530649                              0.00
5252                       232943                             12.04
5253                           13                             28.01
5254                          362                              7.63
5255                          425                            208.54
5256                            9                             15.24
5257                           13                              5.08
5258                            5                            124.15
5259                           81                            321.56
5260                            5                             35.41
5261                            0                            116.19
5262                           45                             65.28
5263                         1171                              4.99
5264                        10182                              0.00
5265                        43887                            310.90
5266                        10338                              0.00
5267                         3721                             12.20
5268                            0                              9.71
5269                           17                             26.56
5270                            0                              4.81
5271                            9                              7.18
5272                            0                              2.38
5273                            0                              9.48
5274                            0                              0.00
5275                            0                              0.00
5276                            0                              4.77
5277                           34                             57.54
5278                          350                             26.54
5279                            0                              2.43
5280                           56                             24.36
5281                         4447                              7.47
5282                         1384                              7.46
5283                          110                             14.89
5284                         8782                              7.42
5285                           32                             95.66
5286                         1553                             98.44
5287                            0                             44.17
5288                          631                             26.92
5289                           69                            151.07
5290                            0                            118.78
5291                          930                              9.64
5292                            0                             83.99
5293                            4                              9.57
5294                            0                             64.43
5295                           59                             16.68
5296                           30                             38.12
5297                           13                             31.01
5298                           53                             16.73
5299                           91                            181.90
5300                           77                             14.38
5301                           17                             38.42
5302                          133                              0.00
5303                           51                            148.98
5304                         1486                            138.07
5305                        16824                              0.00
5306                        18883                              0.00
5307                        14613                              0.00
5308                        30344                              0.00
5309                        19104                              0.00
5310                        14836                              0.00
5311                        16477                              0.00
5312                        19079                            219.44
5313                        25423                              0.00
5314                        24147                              0.00
5315                        14843                              0.00
5316                        16710                              0.00
5317                        32733                              0.00
5318                        25858                              0.00
5319                        26367                             76.39
5320                        13353                              0.00
5321                        17076                           5401.55
5322                        19095                           4579.85
5323                         6778                          10504.15
5324                        10454                           5511.34
5325                         9250                          12852.77
5326                         6537                          15079.49
5327                        11498                          11961.34
5328                        20179                           8831.82
5329                        13138                          12217.52
5330                        21421                          13113.27
5331                        14354                          14274.75
5332                        27584                           4778.36
5333                        19316                          18517.91
5334                        19377                          14881.15
5335                        13402                             31.32
5336                        28505                             46.86
5337                        30236                            413.16
5338                        54427                            142.09
5339                        19398                             30.55
5340                        32941                             37.03
5341                        34109                             69.60
5342                        28469                             21.71
5343                        31523                              2.17
5344                        20433                             36.88
5345                        36866                              4.34
5346                        31078                             99.98
5347                        23259                             43.51
5348                        26526                            220.03
5349                        26792                             21.82
5350                        18403                              0.00
5351                        41934                             43.78
5352                        38112                              8.77
5353                        34086                             13.17
5354                        15068                             46.16
5355                        23596                             28.62
5356                        11815                             22.04
5357                          967                              0.00
5358                          908                              6.67
5359                          923                              0.00
5360                          149                             97.22
5361                            0                              0.00
5362                            0                              0.00
5363                            0                              0.00
5364                            0                              0.00
5365                            2                              0.00
5366                            0                              0.00
5367                            0                              0.00
5368                            0                              0.00
5369                            0                              0.00
5370                           18                              0.00
5371                          256                              0.00
5372                          778                              0.00
5373                            7                            150.00
5374                            0                           1100.00
5375                            0                            955.00
5376                            0                            635.00
5377                            0                            695.00
5378                            0                            545.00
5379                            0                           2890.00
5380                            0                           1095.00
5381                            3                           2970.00
5382                            0                           2865.00
5383                            0                           1505.00
5384                            0                           1680.00
5385                            0                           1170.00
5386                            0                           1605.00
5387                            0                            310.00
5388                            0                           1125.00
5389                            0                              0.00
5390                            0                              0.00
5391                            0                              0.00
5392                            4                              0.00
5393                            0                              0.00
5394                            0                              0.00
5395                            0                              0.00
5396                            0                              0.00
5397                            0                              0.00
5398                            4                              0.00
5399                          100                              0.00
5400                          692                              0.00
5401                         1846                              0.00
5402                         1116                              0.00
5403                          709                              0.00
5404                          541                              0.00
5405                           93                              0.00
5406                            0                              0.00
5407                            0                              0.00
5408                            0                              0.00
5409                        95803                              0.00
5410                        99658                            136.11
5411                        56754                              0.00
5412                       122889                              0.00
5413                        59002                              0.00
5414                        61703                              0.00
5415                        66145                              0.00
5416                        61805                              0.00
5417                        61276                              0.00
5418                        62491                              0.00
5419                       100692                              0.00
5420                        67973                              0.00
5421                        62969                              0.00
5422                        63688                              0.00
5423                        71774                              3.33
5424                        55457                            768.06
5425                        68958                           1788.61
5426                        20240                           2583.61
5427                        27827                           5900.00
5428                        57508                           4890.00
5429                        35140                           9700.00
5430                        30100                           9890.00
5431                        29198                          12195.00
5432                        31340                          12239.44
5433                        26863                          10791.11
5434                        50308                          15976.67
5435                        31127                           9790.00
5436                        55518                          10900.00
5437                        29525                          10445.28
5438                        53634                           8416.67
5439                        57550                           5556.66
5440                        33377                           8936.67
5441                       106151                           4638.06
5442                        76960                              0.00
5443                       150133                              0.00
5444                       122379                           1005.56
5445                        60944                              0.00
5446                       123796                            123.61
5447                        63643                              0.00
5448                        55097                              0.00
5449                        56565                              0.00
5450                       118507                              0.00
5451                        52038                              0.00
5452                       118769                              0.00
5453                        51929                              0.00
5454                        36259                              0.00
5455                       148493                              0.00
5456                        74112                              0.00
5457                       116498                              2.74
5458                        45235                             27.52
5459                       110156                              0.00
5460                        33337                              0.00
5461                      2417145                          81101.22
5462                      2358444                          94011.78
5463                      2490495                          73342.82
5464                      2988505                          65350.63
5465                      1609867                          48623.28
5466                      1765674                          44709.40
5467                      1957164                          43104.31
5468                      1812174                          40918.74
5469                      1882751                          66283.51
5470                      2016513                          91798.83
5471                      2575096                          84553.37
5472                      2316378                          69278.75
5473                      2981276                          76030.52
5474                      2476401                          91688.30
5475                      2311263                          79996.50
5476                      2016485                          55304.06
5477                      2214419                          93326.07
5478                      1785022                         159271.47
5479                      1446381                         155008.66
5480                      1813211                         111938.56
5481                      1569550                         181048.76
5482                      1431745                         199967.39
5483                      1561209                         387400.22
5484                      1624816                         390478.73
5485                      1727669                         454343.65
5486                      1887772                         551693.65
5487                      1609569                         328589.09
5488                      1975351                         317018.94
5489                      1796514                         311439.99
5490                      2441023                         321033.23
5491                      2657599                         180120.85
5492                      2563224                         224991.99
5493                      3143280                         146047.01
5494                      3342781                         120650.09
5495                      3365582                          62734.87
5496                      2801103                          75010.64
5497                      2467002                         125169.40
5498                      2613293                          77737.02
5499                      2213379                          59188.81
5500                      2228008                          82386.14
5501                      2374054                          77638.79
5502                      2521124                          55589.00
5503                      1747904                         106815.12
5504                      2802239                          69494.92
5505                      2150749                          45654.02
5506                      2387456                          74421.62
5507                      3373078                         241661.48
5508                      1823890                         192999.80
5509                      2668368                         165014.74
5510                      2228421                          63337.40
5511                      2528089                          50874.09
5512                      2287450                         159083.80
5513                       731388                           1584.51
5514                       673464                           3263.94
5515                       778605                           7878.49
5516                       992336                           5841.80
5517                       565542                           3089.37
5518                       562176                           1290.39
5519                       742515                           2118.79
5520                       593226                           2710.98
5521                       545280                           2213.45
5522                       758232                           3763.84
5523                       970944                           2172.50
5524                       893083                           1402.06
5525                      1442472                           3094.42
5526                       987092                           4512.36
5527                       922978                           4066.32
5528                       867613                           2573.50
5529                      1012172                            940.95
5530                       928605                           2413.11
5531                       535022                           1896.45
5532                       706937                            862.27
5533                       571941                           4478.95
5534                       505626                           3292.00
5535                       664225                          16968.88
5536                       665248                          15892.89
5537                       762671                          20484.61
5538                       606174                          12752.17
5539                       687802                           7236.25
5540                       767884                           7538.50
5541                       787096                           6682.59
5542                       949755                           5092.25
5543                      1132669                           4652.04
5544                      1139277                           4829.67
5545                      1026238                           5790.26
5546                      1118634                           7359.49
5547                       706418                           6809.06
5548                       658731                           5833.32
5549                      1112775                           8816.17
5550                       780039                           6977.44
5551                       840392                            816.53
5552                       765593                           1043.96
5553                      1040866                            611.85
5554                       860619                           1066.09
5555                       556980                            882.83
5556                      1123473                            762.56
5557                      1062368                           1053.71
5558                      1064256                           3914.67
5559                      1187478                          14884.08
5560                       781447                          21068.82
5561                      1407886                           7823.85
5562                      1352291                           1475.01
5563                      1118954                           1516.44
5564                      1320164                           3875.64
5565                       167620                            140.00
5566                       180678                            413.33
5567                       219187                            273.33
5568                       162658                             75.56
5569                        98717                            118.06
5570                       100871                              0.00
5571                        92753                              0.00
5572                        82920                              0.00
5573                        93471                              0.00
5574                       115578                            918.06
5575                       121347                              0.00
5576                        73637                              0.00
5577                        69961                              0.00
5578                        70581                            175.00
5579                        74913                              0.00
5580                        81825                            100.00
5581                        79500                            320.00
5582                        76392                             70.00
5583                        81013                              0.00
5584                        85083                              0.00
5585                        67457                              0.00
5586                        65765                           2466.67
5587                        81989                          11080.00
5588                        68997                           3208.05
5589                        87776                          12958.05
5590                        91215                          14526.11
5591                        95171                           6849.44
5592                        94639                          16124.16
5593                        87749                          15293.33
5594                       121451                          10140.00
5595                       144258                           6011.11
5596                        93103                           8283.33
5597                        61553                           3870.00
5598                        83560                           4296.67
5599                        75381                           7056.67
5600                        96326                           2276.67
5601                       107004                            140.00
5602                        70757                              0.00
5603                        31311                              0.00
5604                        56449                              0.00
5605                        53585                              0.00
5606                        61700                              0.00
5607                        29005                              0.00
5608                        40795                             16.67
5609                        50490                           1496.67
5610                        56745                          13113.34
5611                        41472                          28192.23
5612                        16914                          38120.00
5613                        24812                          16234.44
5614                        28508                           7208.89
5615                        40944                           1333.33
5616                        32477                           2233.33
5617                         4179                              0.00
5618                         8753                              0.00
5619                         8294                              0.00
5620                         6585                              0.00
5621                         2450                              0.00
5622                         6368                              0.00
5623                         6404                              0.00
5624                         4109                              0.00
5625                         3173                              0.00
5626                         3778                              0.00
5627                         3468                              0.00
5628                         2892                              0.00
5629                         3654                              0.00
5630                         4230                              0.00
5631                         4542                              0.00
5632                         3852                             13.33
5633                         3673                            753.33
5634                         3647                           1876.67
5635                         3709                            306.67
5636                         4156                           1153.33
5637                         3133                            896.66
5638                         6845                            873.33
5639                         1932                            590.00
5640                         4897                            890.00
5641                         4789                           1000.00
5642                         5210                           2585.00
5643                         6585                           1630.00
5644                         6875                           1105.00
5645                         6698                           1175.00
5646                         8235                           1918.33
5647                         6343                           1070.00
5648                         6029                            556.67
5649                         5203                            256.67
5650                         7552                              0.00
5651                        27206                              0.00
5652                        12273                              0.00
5653                        15056                              0.00
5654                         6825                              0.00
5655                         6786                              0.00
5656                        13645                              0.00
5657                        11590                              0.00
5658                         9966                              0.00
5659                        15424                              0.00
5660                          111                              0.00
5661                          239                              0.00
5662                          171                              0.00
5663                          511                              0.00
5664                          186                              0.00
5665                          382                              4.36
5666                          126                              8.82
5667                           60                              0.00
5668                           68                              0.00
5669                            8                              0.00
5670                        88882                           2639.39
5671                        66147                           4194.44
5672                        62336                           2991.22
5673                        67568                           3486.54
5674                        66640                           3058.00
5675                        55576                           3743.00
5676                        61447                           1784.00
5677                        75134                           3164.00
5678                        66802                           1723.73
5679                        66216                           1641.67
5680                        54265                              8.13
5681                        63067                             39.27
5682                        65198                            106.12
5683                        51197                              8.47
5684                        47954                             26.89
5685                        50426                            156.07
5686                        58868                           2475.18
5687                        54225                           3103.33
5688                        56680                           6505.16
5689                        62510                           1557.01
5690                        66092                           5570.00
5691                        60271                           7638.89
5692                        53475                           6014.61
5693                        45904                           6799.98
5694                        55795                           6175.62
5695                        69372                           7455.00
5696                        77103                          10685.68
5697                        95431                           7162.04
5698                        69713                          10390.00
5699                        78151                           7565.00
5700                       113271                           5675.00
5701                        57828                          10972.77
5702                        70754                           9218.50
5703                        69708                           9573.51
5704                       121007                           8024.25
5705                        75877                           8147.11
5706                        84101                           2547.96
5707                        80088                           5605.00
5708                        78979                           6795.00
5709                        52857                           3330.00
5710                        56386                           4975.00
5711                        72092                           3465.56
5712                        75894                           1336.39
5713                        77625                            705.00
5714                        50372                           2485.00
5715                        55460                           3468.06
5716                        56911                            536.11
5717                        97837                            118.06
5718                        79144                              0.00
5719                       121095                              0.00
5720                        75751                              0.00
5721                        71692                              0.00
5722                        92629                              0.00
5723                        12812                              0.00
5724                         7086                              0.00
5725                        10883                              0.00
5726                        22783                              0.00
5727                         4666                              0.00
5728                        31556                              0.00
5729                        43483                              0.00
5730                        10350                              0.00
5731                         6867                              0.00
5732                         1510                              3.33
5733                         4545                             44.44
5734                        12272                              3.33
5735                         7733                              0.00
5736                        13332                              0.00
5737                         3261                              0.00
5738                         1466                             73.33
5739                         3198                           4783.33
5740                          548                           2370.00
5741                          800                            713.33
5742                         1722                           9815.56
5743                         8885                           4168.89
5744                         1831                           3933.34
5745                         1284                           3714.44
5746                         1047                           3872.22
5747                          886                           7102.22
5748                         3725                           8778.06
5749                        14660                          13745.00
5750                         7352                           8481.11
5751                         2475                           9595.00
5752                         4299                           7420.83
5753                         2167                           2288.33
5754                         2459                           4373.61
5755                         2203                            263.05
5756                         2476                           1345.83
5757                         6801                            611.11
5758                         4607                            358.48
5759                        16073                            645.83
5760                        20215                            318.06
5761                         2511                            668.06
5762                         1724                           1553.33
5763                         1950                            550.00
5764                        18502                            655.56
5765                         2051                            379.72
5766                         1458                              0.00
5767                         4350                            469.44
5768                        10734                            598.61
5769                        19425                           2127.39
5770                         6286                           2654.19
5771                         2724                           3167.74
5772                         5694                            473.57
5773                         2152                              7.78
5774                         2282                            525.55
5775                         2542                              3.12
5776                         4677                             39.80
5777                         6639                             83.26
5778                         5849                             26.99
5779                         5945                             72.39
5780                         4261                             32.00
5781                         4914                             96.00
5782                         7421                            258.00
5783                         4811                             21.00
5784                         4360                             54.54
5785                         5729                             53.17
5786                         3437                             21.29
5787                         5695                             34.92
5788                         4987                            129.94
5789                         5243                             42.10
5790                         5756                             10.54
5791                         6771                             23.97
5792                         7242                            139.90
5793                         6319                             53.73
5794                         4336                             17.72
5795                         6495                             10.35
5796                         8222                              2.92
5797                         8381                             98.96
5798                         8947                              7.37
5799                         8360                             39.18
5800                         8708                             75.27
5801                          309                              4.92
5802                           24                             55.56
5803                           52                             76.52
5804                           27                             42.18
5805                           19                              8.07
5806                           11                             11.29
5807                           20                             11.49
5808                            9                              8.25
5809                         2293                              4.96
5810                         2055                              9.97
5811                            3                             13.29
5812                           85                             21.55
5813                           29                              3.30
5814                           16                              9.87
5815                          116                             22.95
5816                          518                             29.21
5817                          834                             38.51
5818                         1777                            126.14
5819                        14551                             18.82
5820                        18258                             44.99
5821                        11989                            133.17
5822                         1142                             23.75
5823                         3116                             46.95
5824                        17043                             25.33
5825                         5155                             38.08
5826                         4040                            225.99
5827                         8607                             20.76
5828                         2794                             27.20
5829                        16746                              0.00
5830                        13815                              0.00
5831                        14758                              0.00
5832                        21311                              0.00
5833                        21921                              0.00
5834                        40538                              0.00
5835                        43775                              0.00
5836                        10086                              0.00
5837                        16920                              0.00
5838                        13286                              0.00
5839                         3329                              0.00
5840                         6954                              0.00
5841                        34628                              0.00
5842                        27841                              0.00
5843                        33423                             23.33
5844                        36417                             80.00
5845                        18127                           1600.00
5846                        27044                           1890.00
5847                        36986                            740.00
5848                        44268                           3122.22
5849                        40848                           2893.34
5850                        35183                           1893.34
5851                        29391                           1030.00
5852                        35936                           2516.67
5853                        38373                           1971.11
5854                         4052                           2840.00
5855                         5364                           2825.00
5856                         5241                           2675.83
5857                         5416                           2794.17
5858                         5651                           2897.22
5859                         5367                            436.67
5860                         4927                            973.33
5861                         5155                             60.00
5862                         6281                            158.33
5863                        20451                           1193.06
5864                        11769                            631.94
5865                        20634                              0.00
5866                        17116                           1752.78
5867                        21205                              0.00
5868                        17431                              0.00
5869                        11462                            686.11
5870                        18048                              0.00
5871                        20014                            663.89
5872                          536                              0.00
5873                         3516                              0.00
5874                         8569                              0.00
5875                         5190                              0.00
5876                          542                              0.00
5877                         1373                              0.00
5878                         2277                              0.00
5879                          484                              0.00
5880                           93                              0.00
5881                          214                              0.00
5882                         9529                              0.00
5883                         4164                              0.00
5884                         4622                              0.00
5885                         4221                              0.00
5886                         3297                              0.00
5887                         5319                              0.00
5888                        10802                              0.00
5889                         7354                              0.00
5890                        31805                             46.67
5891                        40914                              0.00
5892                         4680                              0.00
5893                         5341                              0.00
5894                        20354                              0.00
5895                        13616                              0.00
5896                         7108                              0.00
5897                        12842                            356.67
5898                         6368                           2703.33
5899                         6699                           1408.89
5900                           19                            490.00
5901                          102                           2570.00
5902                          108                           1983.33
5903                           84                           1593.33
5904                          592                           1263.33
5905                          331                           1810.00
5906                           48                           2411.11
5907                          641                           5795.00
5908                         3168                           3475.00
5909                          946                           3350.00
5910                          700                           3352.50
5911                         1938                           4515.00
5912                         1657                           1953.33
5913                         1153                            963.33
5914                         2271                            418.05
5915                         1065                              0.00
5916                         1291                              0.00
5917                         2447                              0.00
5918                         2226                              0.00
5919                         5850                              0.00
5920                        51967                              0.00
5921                        25760                              0.00
5922                          821                              0.00
5923                         3121                              0.00
5924                        22055                              0.00
5925                           65                              0.00
5926                          206                              0.00
5927                         1733                              0.00
5928                         4320                              0.00
5929                           73                              0.00
5930                         1254                            505.56
5931                         2642                              0.00
5932                         1523                              0.00
5933                           85                              0.00
5934                          256                             18.06
5935                        20554                          56546.16
5936                        21328                          61667.46
5937                        21221                          59752.84
5938                        27354                          59588.87
5939                        30856                          53201.00
5940                        27254                          61354.00
5941                        47615                          58715.00
5942                        30662                          58284.00
5943                        20488                          55940.33
5944                        22762                          34390.82
5945                        21482                          34660.62
5946                        22734                          36862.63
5947                        25532                          33772.40
5948                        25612                          32739.56
5949                        24212                          32271.85
5950                        18473                          32148.41
5951                        19580                          37680.03
5952                        21358                          42096.79
5953                        19482                          42286.86
5954                        33842                          50872.74
5955                        32819                          52592.72
5956                        30453                          58369.11
5957                        28337                          55434.68
5958                        20424                          57950.82
5959                        22434                          55518.85
5960                         5215                          64946.25
5961                         4337                          64228.75
5962                         5203                          56923.82
5963                         5913                          71002.81
5964                         5599                          66679.22
5965                         4428                          53913.50
5966                         3224                          73193.24
5967                         3943                          67390.65
5968                         4799                          68667.52
5969                         3602                          81066.26
5970                         2533                          72163.82
5971                         6323                          69657.83
5972                         1756                          71725.09
5973                        13133                          62027.18
5974                        16199                          56470.26
5975                         1992                          66577.51
5976                         5147                          58261.10
5977                         7224                          67977.20
5978                         9179                          55073.37
5979                        42309                          41791.54
5980                       145455                          44065.49
5981                       101368                          54438.63
5982                         7839                          51205.38
5983                        48343                          49233.88
5984                        61563                          28878.04
5985                        99913                          25601.06
5986                       144376                          33515.09
5987                       151334                          27007.76
5988                         7370                              6.67
5989                         3442                              0.00
5990                         4581                              0.00
5991                         7808                              0.00
5992                         3895                              0.00
5993                         2619                              0.00
5994                         3115                              0.00
5995                         4539                              0.00
5996                         3829                              0.00
5997                         5687                              0.00
5998                         3296                              0.00
5999                         7173                              2.22
6000                         5372                              0.00
6001                         5247                              0.00
6002                         4531                              0.00
6003                         4503                              0.00
6004                         3375                            870.00
6005                         4699                           3413.33
6006                         5068                           1543.33
6007                         5397                           4011.11
6008                         6830                           3144.44
6009                         5683                           1523.34
6010                         4829                           1097.78
6011                         4233                           3030.00
6012                         4561                           3669.99
6013                         4767                           4490.00
6014                         5359                           4450.00
6015                         4877                           2795.00
6016                         3516                           5520.00
6017                         5812                           4940.00
6018                         6092                           1566.67
6019                         3626                              0.00
6020                         4869                              0.00
6021                         4995                              0.00
6022                         9964                              0.00
6023                         9497                              0.00
6024                         5472                              0.00
6025                         3448                              0.00
6026                         4485                              0.00
6027                         4259                            177.78
6028                         4593                              0.00
6029                         4642                              0.00
6030                         4114                              0.00
6031                         3883                              0.00
6032                         4484                              0.00
6033                         4224                             13.33
6034                         5142                            217.78
6035                        13628                            452.78
6036                         9630                            994.44
6037                        14067                              0.00
6038                        10327                              0.00
6039                         8627                              0.00
6040                        13711                             46.67
6041                         8410                             55.34
6042                        11311                             77.94
6043                        53446                             31.45
6044                       423186                              3.48
6045                        36440                             12.00
6046                         5532                             15.00
6047                         2775                              2.00
6048                         3280                             12.00
6049                         3407                             15.24
6050                         2648                              2.22
6051                         4442                             22.22
6052                         5165                              1.11
6053                         3699                             11.73
6054                         7213                             98.07
6055                         9520                             85.15
6056                         7393                             54.44
6057                         7822                           2131.11
6058                         7989                           3460.22
6059                         8187                           2183.34
6060                         9073                           4566.66
6061                         8347                           4473.38
6062                         8973                           4976.66
6063                         7716                           2443.40
6064                         7949                           4886.66
6065                         5910                           4014.44
6066                          658                           1952.22
6067                          327                           1462.12
6068                          764                           3078.75
6069                          528                           2471.91
6070                         1456                           4830.11
6071                         2441                           6144.10
6072                         1928                           5130.69
6073                         2740                           7323.22
6074                         2127                           4041.31
6075                         2304                           9510.72
6076                         2421                           5745.83
6077                         1912                           4307.21
6078                         2308                           5369.08
6079                         2626                           6644.53
6080                          935                           4207.37
6081                         1563                           3568.48
6082                          814                           2473.36
6083                         1347                           4560.47
6084                         1104                           4853.06
6085                         1403                           4489.84
6086                         1514                           5333.77
6087                         2104                           3801.39
6088                         1937                           8839.76
6089                         1691                           9667.48
6090                         1680                           6499.63
6091                         1595                           6465.07
6092                         1420                           8721.25
6093                         1078                           5089.37
6094                        10142                            248.99
6095                        14511                             32.61
6096                        26217                             91.87
6097                       101403                             55.20
6098                       142867                             73.00
6099                        82960                             14.00
6100                       132886                            203.00
6101                       182385                            190.00
6102                       173703                            182.45
6103                       119250                            176.14
6104                        85072                             43.04
6105                        94258                             51.32
6106                        92861                             39.19
6107                        93645                             98.33
6108                        86694                            206.87
6109                        84078                            263.58
6110                       101681                            292.94
6111                       104144                            433.00
6112                       138455                            627.86
6113                       172119                            679.94
6114                       140668                            576.87
6115                       119014                            585.80
6116                       109832                            695.03
6117                       109213                            442.76
6118                       104181                            584.92
6119                       116564                            611.53
6120                       193552                           1079.26
6121                       201501                            772.34
6122                       130292                            730.86
6123                       245216                           1256.01
6124                       208326                            178.88
6125                       180476                            148.67
6126                       150105                            114.85
6127                       191736                            110.81
6128                       363469                            142.32
6129                       109897                             42.66
6130                        99417                             35.06
6131                       138925                             15.70
6132                        99468                             89.49
6133                       175820                             46.99
6134                       111860                              1.54
6135                       155347                             58.36
6136                       174289                             46.09
6137                       166331                             39.11
6138                       140287                             56.64
6139                       182919                              4.50
6140                       153260                              7.48
6141                       188488                              7.42
6142                       172935                              0.00
6143                       198095                             16.53
6144                       187760                              3.02
6145                       118613                            562.95
6146                       163180                              1.52
6147                        12797                             84.50
6148                         5712                             43.98
6149                        10799                             75.43
6150                         7391                            146.56
6151                        15193                            101.00
6152                        10872                             59.00
6153                         6354                             69.00
6154                        12778                            191.00
6155                         5899                            216.05
6156                         4975                             82.24
6157                         5308                             29.93
6158                         6308                              1.30
6159                         6951                             23.34
6160                         7359                            150.73
6161                         5349                            181.35
6162                         7206                            166.84
6163                         7867                            311.85
6164                         6307                            393.59
6165                         6049                            593.37
6166                         7448                            492.80
6167                         8290                            519.51
6168                         7852                            628.47
6169                         8794                            416.67
6170                         5228                            521.11
6171                         7883                           1194.55
6172                        22634                            207.65
6173                        15486                            859.94
6174                        17016                            543.21
6175                        14772                            488.57
6176                         3179                           1062.70
6177                         5342                             59.23
6178                        21930                             70.37
6179                         8171                            198.49
6180                         7985                             57.91
6181                         8432                            147.96
6182                         7759                            103.88
6183                         2452                             24.58
6184                         2680                              6.18
6185                         2306                             24.48
6186                         2942                             15.20
6187                         2766                              0.00
6188                         1946                             39.63
6189                         3272                            108.71
6190                         5135                             12.90
6191                         2588                             15.59
6192                         2407                              0.00
6193                         4894                              1.41
6194                         3809                              2.78
6195                         8001                              4.22
6196                         3727                              1.41
6197                         9154                            108.33
6198                         3206                              0.00
6199                         3197                              0.00
6200                       161616                            174.97
6201                        82552                             75.81
6202                        59824                            105.07
6203                        67257                             66.45
6204                        81498                             67.00
6205                        80717                             49.00
6206                        88658                             57.00
6207                       148352                            121.00
6208                       187841                            264.92
6209                       125267                            209.10
6210                        70932                             77.27
6211                        79245                             93.96
6212                        84717                            280.38
6213                        81359                            108.98
6214                        77807                             82.92
6215                        75614                             59.78
6216                        79463                            136.25
6217                        76730                           1522.52
6218                        78352                           1067.23
6219                       153344                           1126.97
6220                       164728                           1423.49
6221                        90233                           1467.77
6222                        86836                             82.54
6223                        92258                           6125.56
6224                       140535                           1706.27
6225                         3089                           2942.04
6226                         2978                           1242.51
6227                         4154                            148.05
6228                         3444                             95.46
6229                         3338                             92.57
6230                         3347                            155.37
6231                         2841                             23.61
6232                         2828                             30.43
6233                         3656                             71.28
6234                         4074                             49.65
6235                         4155                            137.33
6236                         3843                            280.35
6237                         3860                            212.18
6238                         4079                            186.69
6239                         3931                            289.05
6240                         3864                             77.33
6241                         2866                            116.05
6242                         2338                             79.40
6243                         2051                             70.55
6244                        27130                             94.87
6245                        37019                             59.07
6246                        10489                            678.49
6247                        76780                            503.05
6248                        43743                             59.07
6249                         2962                             81.03
6250                         3521                            107.44
6251                         3248                             69.32
6252                         2153                            916.40
6253                       384554                              0.00
6254                       246332                              1.11
6255                       224310                              0.00
6256                       266397                              0.00
6257                       266779                              0.00
6258                       140775                              0.00
6259                       258959                              0.00
6260                       328570                              0.00
6261                       393106                              1.11
6262                       323624                              0.00
6263                       171993                              1.11
6264                       153064                              0.00
6265                       161966                              0.00
6266                       172460                              0.00
6267                       136895                              0.00
6268                       133331                              0.00
6269                       159841                              0.00
6270                       176544                           1823.33
6271                       281791                           2885.56
6272                       337803                              1.26
6273                       165515                           2208.89
6274                       163808                           2725.56
6275                       233748                              0.00
6276                       368136                              0.00
6277                       196568                            480.00
6278                       309208                           1989.76
6279                       313376                            259.72
6280                       352058                              0.00
6281                       358058                             35.34
6282                       330977                             20.17
6283                       286071                              0.00
6284                       338685                              0.00
6285                       292465                              0.00
6286                       158077                              0.00
6287                       110312                            133.33
6288                       195491                              0.00
6289                       329200                              0.00
6290                       343778                              5.00
6291                       262684                              0.00
6292                       192442                              0.00
6293                       156827                              0.00
6294                       206301                            136.11
6295                       224576                              0.00
6296                       167574                             16.67
6297                       176672                              0.00
6298                       223448                              0.00
6299                       200109                            322.22
6300                       253123                            198.61
6301                       169960                            224.06
6302                       149644                            134.68
6303                       174946                              0.00
6304                       162524                              0.00
6305                       161495                             97.22
6306                        41059                           2286.98
6307                        16351                           1041.50
6308                        20548                           7646.15
6309                        16978                           2334.71
6310                        73013                           1228.00
6311                        27604                             83.00
6312                        17533                            338.00
6313                        32216                            602.00
6314                        16602                            473.88
6315                        10729                            728.21
6316                        15915                            794.49
6317                        13124                           1694.58
6318                        10866                           7711.80
6319                         8544                           8306.47
6320                         4399                          10990.75
6321                         8906                          11422.21
6322                         9150                          11251.45
6323                         5329                          12294.13
6324                         5877                          11871.85
6325                         8147                          13125.26
6326                        10426                          13385.03
6327                         7331                          19519.62
6328                        12487                          12645.82
6329                         2545                          14033.98
6330                         4803                          23461.16
6331                        28983                          22217.02
6332                        16728                          20307.95
6333                        31938                           1548.32
6334                        22971                           3248.24
6335                         2790                           1491.29
6336                        12148                           4992.53
6337                        47266                          14157.78
6338                        16847                          15901.32
6339                        13583                          10459.52
6340                        12355                          26022.01
6341                        11327                          10400.92
6342                         4015                          10777.00
6343                         3614                          14839.33
6344                         3833                          10638.44
6345                         3178                           8581.19
6346                         3130                          15502.44
6347                         3248                          13604.37
6348                         5789                          12103.00
6349                         2917                          11061.69
6350                         3010                          31809.10
6351                         3390                          11950.39
6352                        14029                           1715.86
6353                         6375                             88.68
6354                         3783                            151.52
6355                         3811                            448.17
6356                        11326                              1.72
6357                         3415                              3.46
6358                         2054                             24.33
6359                         4053                          16852.55
6360                         4901                           6073.20
6361                         3918                          13013.84
6362                         5916                           3892.47
6363                        26632                           9831.00
6364                        10417                            180.00
6365                         7407                           2335.00
6366                         8517                           1957.00
6367                         7767                           2033.37
6368                         2846                           4784.90
6369                         2690                           5208.78
6370                         1682                           5244.45
6371                         2276                           5970.66
6372                         2715                           5960.56
6373                         3741                           7620.67
6374                         2911                           7397.71
6375                         3726                           7238.72
6376                         4063                           8925.59
6377                         3479                           8538.66
6378                         5002                           9910.99
6379                         3460                           9219.69
6380                         4281                          14317.57
6381                         5477                           8882.09
6382                         4229                           9776.25
6383                         4107                          15478.82
6384                         3404                          14910.99
6385                         4128                          16905.28
6386                         4631                           9570.82
6387                         2446                          23997.24
6388                         6311                          10663.36
6389                         7483                           7745.90
6390                         6301                           8503.67
6391                         6312                           9047.02
6392                         6716                           5413.64
6393                         6940                          12479.93
6394                         7109                           6097.93
6395                         6399                           8671.88
6396                         6580                          12794.87
6397                         6762                           6068.03
6398                         5315                           7948.51
6399                         6542                          11161.92
6400                         6156                           9585.09
6401                         7110                           9016.41
6402                        14185                           7206.72
6403                         4248                          18045.76
6404                         4266                          10309.53
6405                         6315                           3648.91
6406                         3911                            367.59
6407                         6878                            637.10
6408                         6021                           2790.79
6409                         5423                             50.86
6410                         6852                             22.80
6411                         3714                            103.51
6412                       231173                          43417.83
6413                       172058                          16842.78
6414                       248878                          43793.27
6415                       772668                          13711.20
6416                       579235                          27167.00
6417                       328481                            827.00
6418                       438664                           6697.00
6419                       585936                           5866.00
6420                       510855                           6179.77
6421                       319205                          12932.84
6422                       257992                          13387.12
6423                       272861                          15092.21
6424                       263131                          24520.43
6425                       269972                          26120.15
6426                       258960                          33595.17
6427                       252502                          35304.69
6428                       288380                          43365.32
6429                       287510                          53380.00
6430                       364885                          50302.01
6431                       410470                          57231.83
6432                       352853                          63204.59
6433                       340049                          83668.14
6434                       335734                          52842.18
6435                       296531                          64969.50
6436                       302795                          89281.91
6437                       476445                          79774.96
6438                       485376                          86197.03
6439                       563108                          43476.86
6440                       448086                          77989.16
6441                       619112                          44126.01
6442                       564982                          41719.66
6443                       523114                          47953.14
6444                       434988                          54223.94
6445                       681254                          34116.16
6446                       832297                          79124.05
6447                       407221                          37040.72
6448                       400843                          39818.95
6449                       394792                          56488.79
6450                       276698                          39122.28
6451                       380655                          35822.74
6452                       327862                          52732.39
6453                       377140                          46466.70
6454                       358275                          45378.98
6455                       364409                          39550.39
6456                       369885                          95590.06
6457                       401354                          48705.60
6458                       422558                          18882.26
6459                       449567                          13108.27
6460                       485162                          16073.54
6461                       455206                          16424.28
6462                       449341                          10071.96
6463                       367741                          13088.80
6464                       349033                           7559.14
6465                        12374                              0.00
6466                         4307                              0.00
6467                         5041                              0.00
6468                         5753                              0.00
6469                         7738                              0.00
6470                        16146                              0.00
6471                        28613                              0.00
6472                        16269                              0.00
6473                         2505                             26.67
6474                          283                              0.00
6475                         1532                              0.00
6476                        11650                              0.00
6477                         4794                              0.00
6478                         4030                              0.00
6479                         1319                              3.33
6480                          764                            166.67
6481                         1742                           4343.33
6482                          600                           2913.33
6483                          245                            730.00
6484                         3437                           4062.23
6485                         9002                           3326.67
6486                         2125                           3246.67
6487                          286                           1283.33
6488                         1087                           3226.67
6489                         3621                           4228.89
6490                         8988                           8135.00
6491                         5973                           6540.00
6492                         2108                           6175.00
6493                         2570                           4358.61
6494                         4122                           2916.94
6495                         1879                            256.11
6496                         4475                             30.56
6497                         1750                              0.00
6498                         1470                             56.94
6499                         5672                            229.17
6500                         2179                            166.67
6501                         7047                              0.00
6502                        12787                              0.00
6503                         3892                              0.00
6504                         1170                              0.00
6505                         1537                              0.00
6506                         6730                             84.72
6507                         3515                              0.00
6508                          841                              0.00
6509                         2332                             77.78
6510                         1916                              0.00
6511                         6589                            134.72
6512                         5108                            329.28
6513                         1419                            136.68
6514                         3242                            126.60
6515                         1794                              0.00
6516                         1733                              0.00
6517                         4282                              0.00
6518                         7447                              1.56
6519                         5163                             15.57
6520                         5134                              0.00
6521                        10673                              6.20
6522                        11166                              0.00
6523                        28155                              0.00
6524                        28942                              0.00
6525                         2253                              0.00
6526                        10883                              0.00
6527                         2608                              0.00
6528                         1674                              0.00
6529                         2127                              0.00
6530                          922                              0.00
6531                         1676                              0.00
6532                         1179                              0.00
6533                         2102                              6.67
6534                         2423                           1266.67
6535                          346                           1600.00
6536                          377                            443.33
6537                         3259                           1790.00
6538                        14193                           2469.21
6539                         2360                           1787.78
6540                         1315                            896.66
6541                         3071                           1500.00
6542                         1545                           1420.00
6543                         3381                           3240.00
6544                         8667                           3022.78
6545                          671                           2915.00
6546                           86                           2840.00
6547                            6                           3108.33
6548                            0                           1383.06
6549                           28                            356.67
6550                          245                            153.61
6551                         1112                            713.89
6552                          975                            284.72
6553                         2216                              0.00
6554                         5983                              0.00
6555                         5132                              0.00
6556                          868                              0.00
6557                          653                              0.00
6558                          862                            202.78
6559                         5852                              0.00
6560                          620                              0.00
6561                         1785                              0.00
6562                         3069                              0.00
6563                         4492                            243.06
6564                         2762                            619.94
6565                         3869                            982.07
6566                         1026                            680.49
6567                         1898                            854.74
6568                         1320                            374.16
6569                         1169                              0.00
6570                          919                            133.80
6571                        86180                              0.00
6572                        95743                              3.33
6573                        94469                              0.00
6574                        89252                              0.00
6575                        80533                              0.00
6576                        88252                              0.00
6577                        86254                              0.00
6578                        68334                             37.00
6579                       137878                           2270.00
6580                       188243                            400.00
6581                        87976                              0.00
6582                        91031                              0.00
6583                        81873                              0.00
6584                        83858                              0.00
6585                        69351                              0.00
6586                       100938                              3.33
6587                       104955                              0.00
6588                        79905                            217.78
6589                       108228                            536.67
6590                       189883                              0.00
6591                       298894                              0.00
6592                       138352                              0.00
6593                       127329                              0.00
6594                       121091                             70.00
6595                       131771                              0.00
6596                       387301                              0.00
6597                       267556                            302.78
6598                       305778                              3.33
6599                       550384                             13.89
6600                       205490                              0.00
6601                       219944                              0.00
6602                       225755                              0.00
6603                       268681                              0.00
6604                       320800                              0.00
6605                       470790                              0.00
6606                       629792                             19.44
6607                       527525                              0.00
6608                        58554                              0.00
6609                        76196                              0.00
6610                       159683                              6.67
6611                        19565                              0.00
6612                          998                              3.33
6613                         1062                              0.00
6614                         1458                              3.33
6615                        28925                              0.00
6616                       127089                             44.44
6617                       141600                             23.89
6618                        88070                             22.22
6619                       119674                             32.62
6620                        66255                              3.33
6621                        49139                              3.33
6622                        92421                              0.00
6623                       131306                              0.00
6624                         6576                             42.90
6625                         7840                             67.49
6626                         9311                             48.86
6627                        36373                             47.15
6628                        44956                             64.00
6629                        30900                             23.00
6630                        51103                            106.00
6631                        63702                            165.00
6632                        62594                             68.57
6633                        40362                            139.14
6634                        30577                             26.60
6635                        31344                             22.71
6636                        29349                             60.59
6637                        31112                            328.34
6638                        32031                             77.71
6639                        29746                            263.93
6640                        32306                           1164.92
6641                        34205                           1414.33
6642                        52220                           1737.05
6643                        46407                           1004.77
6644                        40114                           1947.11
6645                        41001                           2821.03
6646                        39458                           1630.72
6647                        37813                           1481.84
6648                        37719                           1392.65
6649                        59538                           2403.53
6650                        47716                           3198.38
6651                        64818                           1780.51
6652                        58995                            829.53
6653                        93478                            434.82
6654                        84464                            314.27
6655                        51742                             47.49
6656                        54005                            640.52
6657                       111177                             84.17
6658                        97497                            117.89
6659                        62335                            101.98
6660                        83872                             23.03
6661                        65172                             72.05
6662                        35859                             31.29
6663                        46455                             15.61
6664                        57404                             10.83
6665                        51729                             61.20
6666                        36352                             38.01
6667                        28640                            140.44
6668                        53252                              6.32
6669                        48242                              4.50
6670                        49248                              7.35
6671                        51551                              2.95
6672                        61567                              1.47
6673                        46670                              5.86
6674                        45283                              1.47
6675                        47759                              1.47
6676                        28119                              0.00
6677                        46858                            236.67
6678                        25598                            390.00
6679                        39016                            263.33
6680                        40252                            150.00
6681                        13951                            193.00
6682                        21030                            223.00
6683                        34900                            240.00
6684                        10329                            253.00
6685                        14982                            186.67
6686                        31443                            206.67
6687                        30389                              0.00
6688                        27352                              0.00
6689                        29420                              0.00
6690                        26359                              0.00
6691                        17289                              0.00
6692                        37220                             60.00
6693                        20015                           1513.33
6694                        28919                           1053.33
6695                        19474                           2860.00
6696                        27405                           1750.00
6697                        23086                           3696.67
6698                        29292                           2213.33
6699                        21985                           1313.33
6700                        29832                           2907.78
6701                        29400                           2971.11
6702                        16268                           3746.39
6703                        20129                           5035.83
6704                        28279                           2470.00
6705                        16705                           3300.00
6706                        25729                           2575.56
6707                        16731                            980.00
6708                        33246                            420.00
6709                        28152                            660.83
6710                        30179                            650.00
6711                        52242                            250.00
6712                        37215                            555.00
6713                        28671                             95.00
6714                        25718                            360.00
6715                        29968                            395.00
6716                        28239                            160.00
6717                        31041                            495.00
6718                        25501                            510.00
6719                        26579                            115.00
6720                        27887                             20.00
6721                        29517                            350.00
6722                        28138                            540.00
6723                        47170                             30.00
6724                        76521                            344.44
6725                        50879                            348.61
6726                        91120                              0.00
6727                        52643                              0.00
6728                        41412                              0.00
6729                        86106                              0.00
6730                        67480                            130.00
6731                        36710                            176.67
6732                        35185                            293.33
6733                        61292                            231.11
6734                        68396                            297.00
6735                        27009                            300.00
6736                        43420                            347.00
6737                        76180                             67.00
6738                        95611                            330.00
6739                        46968                            170.00
6740                        21024                              0.00
6741                        24021                              0.00
6742                        24561                              0.00
6743                        19751                              0.00
6744                        27617                              0.00
6745                        27434                              0.00
6746                        23218                            120.00
6747                        27650                            143.33
6748                        23140                            935.56
6749                        65960                            376.66
6750                       105694                            170.00
6751                        59193                            388.95
6752                        62902                            270.00
6753                        66328                             16.67
6754                        71540                              0.00
6755                       124311                              0.00
6756                       119721                              0.00
6757                       122523                              0.00
6758                       105920                              0.00
6759                        97010                            212.50
6760                       114357                            136.11
6761                       111236                              0.00
6762                       119888                              0.00
6763                       143342                            444.44
6764                       173851                              0.00
6765                       130578                              0.00
6766                       189154                            347.22
6767                       166713                              0.00
6768                        88839                            111.11
6769                        94730                              0.00
6770                        90715                              0.00
6771                       102245                              0.00
6772                        80847                              0.00
6773                       115253                              0.00
6774                       108893                              0.00
6775                        70254                              0.00
6776                       157110                              0.00
6777                       207844                              0.00
6778                        76001                              0.00
6779                       133739                             69.44
6780                       153402                              0.00
6781                       141383                              0.00
6782                       123145                              0.00
6783                        14343                          38298.83
6784                        15344                          37179.95
6785                        14767                          35119.57
6786                        16285                          36269.31
6787                        23854                          35296.00
6788                        16197                          36801.00
6789                        34871                          38457.00
6790                        23684                          39240.00
6791                        14912                          36715.26
6792                        16098                          29818.61
6793                        15615                          31253.98
6794                        15850                          33217.16
6795                        17349                          29920.35
6796                        17513                          29379.20
6797                        16259                          29293.55
6798                        13164                          29208.74
6799                        14395                          32809.38
6800                        15576                          36012.63
6801                        14651                          32740.83
6802                        22264                          37265.77
6803                        21557                          40698.76
6804                        20822                          46018.92
6805                        18680                          39637.48
6806                        12422                          45942.56
6807                        14421                          43441.46
6808                          789                          50712.53
6809                          412                          45971.18
6810                          697                          44003.86
6811                          964                          51722.11
6812                          468                          47983.17
6813                          559                          38125.61
6814                          301                          54580.81
6815                          402                          53144.21
6816                          674                          53182.15
6817                          488                          60153.52
6818                          686                          59023.76
6819                         3262                          56546.79
6820                          574                          61316.94
6821                        10163                          49907.28
6822                        11742                          46909.66
6823                         1178                          50016.63
6824                         2475                          47805.79
6825                         4495                          54023.57
6826                         6376                          48575.67
6827                        33292                          32007.24
6828                       130416                          34431.00
6829                        81240                          44743.45
6830                         3466                          41513.70
6831                        29994                          28981.57
6832                        39626                          25874.51
6833                        59206                          21168.43
6834                        72838                          24117.02
6835                        88932                          19799.28
6836                        19711                              4.25
6837                        21035                             12.84
6838                        15357                             28.61
6839                        30199                              4.32
6840                        44403                              1.00
6841                        18803                              0.00
6842                        30480                              0.00
6843                        42246                              0.00
6844                        32356                              2.88
6845                        41951                              0.00
6846                        20029                              0.00
6847                        19439                              0.00
6848                        19822                              0.00
6849                        19293                              0.00
6850                        19097                              0.00
6851                        20969                             20.00
6852                        25440                            366.67
6853                        26038                            355.56
6854                        26002                            491.11
6855                        25490                            453.33
6856                        24544                            833.33
6857                        24173                           1211.76
6858                        24102                           1130.00
6859                        26604                           1143.33
6860                        26375                           1189.99
6861                        53246                            726.08
6862                        38398                            338.25
6863                        47643                             52.22
6864                        29726                             78.29
6865                        45674                            419.72
6866                        53317                             41.64
6867                        44055                             16.81
6868                        35960                              3.37
6869                        26265                              0.00
6870                        52904                            182.46
6871                        23931                            145.78
6872                        31343                            211.31
6873                        31705                             15.62
6874                        26542                              0.00
6875                        33058                              0.00
6876                        32209                              3.39
6877                        10768                             15.01
6878                        26520                             14.89
6879                        36951                              0.00
6880                        28234                              6.49
6881                        36841                            136.82
6882                        55257                              0.00
6883                        29368                              1.60
6884                        40986                             13.33
6885                        38927                              0.00
6886                        25682                              0.00
6887                        42296                             15.56
6888                        35198                            146.67
6889                        79624                              0.00
6890                        32139                              0.00
6891                        72868                              0.00
6892                        75668                              0.00
6893                        56202                              0.00
6894                        46606                              0.00
6895                        75936                              0.00
6896                        50234                              0.00
6897                        35137                              0.00
6898                        76769                              0.00
6899                        57611                              0.00
6900                        26090                              0.00
6901                        28879                              0.00
6902                        42234                              0.00
6903                        42039                              0.00
6904                        61153                             40.00
6905                        23941                           3223.33
6906                        46519                           3403.33
6907                        51133                           8624.44
6908                        54596                           5564.44
6909                        73384                           9201.11
6910                        48349                           7854.45
6911                        55121                           6058.89
6912                        61378                           8000.00
6913                        41978                           9792.22
6914                        55317                          11659.17
6915                        72200                           9273.33
6916                        59392                          12748.89
6917                        62944                          12341.67
6918                        79489                           7610.00
6919                        64412                           2635.00
6920                        65217                              0.00
6921                        60138                              0.00
6922                        62634                              0.00
6923                       112931                              0.00
6924                       113902                              0.00
6925                        63378                              0.00
6926                        56062                              0.00
6927                        40165                             87.50
6928                        55951                              0.00
6929                        61500                            150.00
6930                        62487                            472.22
6931                        47913                              0.00
6932                        55693                              0.00
6933                        59448                              0.00
6934                        57722                              0.00
6935                       102268                            359.72
6936                       178369                           1144.44
6937                       108599                            670.83
6938                       181454                            106.94
6939                       128082                              0.00
6940                       105207                              6.94
6941                       193285                              0.00
6942                       163762                           1436.61
6943                       118291                           2922.87
6944                       106280                           2064.36
6945                       172927                           2031.71
6946                       188039                           2118.00
6947                       128990                           1607.00
6948                       186157                           1727.00
6949                       181873                           1942.00
6950                       159168                           1756.12
6951                       153145                            656.44
6952                        97559                            138.57
6953                       123337                             20.38
6954                       115358                             34.84
6955                       120199                            152.99
6956                        96709                            477.68
6957                        98413                           2401.72
6958                       110137                          23207.55
6959                       116289                          25211.69
6960                       124192                          16255.39
6961                       145663                          37267.19
6962                       148878                          28454.57
6963                       122564                          27722.10
6964                       126121                          18395.33
6965                       114929                          29602.08
6966                       122607                          34003.86
6967                       191302                          54568.45
6968                       187005                          53465.59
6969                       187611                          36475.32
6970                       107064                          38092.74
6971                       167944                          43945.63
6972                       187872                          19003.96
6973                       230581                           9160.33
6974                       193338                           4717.41
6975                       148639                           6625.97
6976                       237524                           5385.54
6977                       142459                           4604.35
6978                       136072                           5162.94
6979                       125319                           4200.17
6980                        93876                           4160.85
6981                       126225                           4170.08
6982                       135004                           3935.02
6983                        98620                           3848.93
6984                       123512                           3518.06
6985                       131525                           1086.95
6986                       123352                           2959.81
6987                       147588                           2798.14
6988                       190222                           4451.35
6989                       161723                           4922.79
6990                       153113                           4867.77
6991                       181562                           1577.05
6992                       125271                           1418.49
6993                       130291                           4166.40
6994                       151227                           4398.04
6995                        18477                            630.39
6996                        12232                           1377.78
6997                        12580                            918.89
6998                        13873                            870.00
6999                        18913                            949.00
7000                        10358                            856.00
7001                        10329                            820.00
7002                         9118                            936.00
7003                        11124                            784.57
7004                        13184                            368.02
7005                         9599                              5.12
7006                        10144                              3.33
7007                        10304                              0.00
7008                         7432                             58.57
7009                         7350                            113.09
7010                        10118                            257.26
7011                         7882                           1336.67
7012                        10274                            751.34
7013                        10803                           2207.31
7014                        17633                           1891.33
7015                        16067                           1494.67
7016                        12836                           1559.01
7017                        14828                           1107.58
7018                         9364                           2106.70
7019                        13092                           1551.12
7020                        22029                           2780.00
7021                        15456                           2595.53
7022                        18682                           1742.59
7023                        10906                           1768.97
7024                        10765                           2261.88
7025                        14782                           2430.00
7026                        37475                           2192.98
7027                        23799                           2109.40
7028                        18978                           1746.74
7029                        21424                           1770.00
7030                        20199                           1977.95
7031                         8397                           1805.00
7032                         5170                           1680.00
7033                         6780                           1560.00
7034                         7521                           1000.00
7035                         6938                           1270.00
7036                         5996                           1540.00
7037                         6435                           1240.00
7038                         6876                            110.00
7039                         8089                           1035.00
7040                         8147                            830.00
7041                        19120                           1514.72
7042                        20622                             90.00
7043                        14816                              0.00
7044                        24413                            478.33
7045                        15373                            300.00
7046                        12090                            985.00
7047                        20952                           1535.00
7048                        11334                           1143.33
7049                         8225                           1106.67
7050                        10322                            810.00
7051                        11514                            835.56
7052                         3609                            790.00
7053                         8817                            960.00
7054                         8597                            767.00
7055                         4411                            816.00
7056                         6089                           1403.33
7057                        11156                            751.11
7058                        10571                              0.00
7059                         8512                              0.00
7060                        13739                              0.00
7061                        12793                              0.00
7062                         9616                              0.00
7063                        10177                            113.33
7064                         5952                           4436.67
7065                         9260                           4757.77
7066                         5129                           4186.67
7067                        10099                           2386.66
7068                        10287                           4171.11
7069                        10735                           9220.00
7070                         9485                           8066.67
7071                        12527                           7046.67
7072                         9641                           8593.33
7073                         5261                           2156.67
7074                         4993                           2600.00
7075                         8092                           1865.00
7076                         4570                           2885.00
7077                         8993                           7925.00
7078                         5314                          13705.00
7079                        10461                          14115.00
7080                        10833                          11655.00
7081                        10375                          16675.00
7082                        17223                           5185.00
7083                        10989                           7895.00
7084                         8843                           9660.00
7085                         9889                           9590.00
7086                         8934                           9297.50
7087                         9845                           8155.00
7088                        10527                          10107.78
7089                         9850                           6275.00
7090                         9832                           6680.00
7091                         8536                           6180.00
7092                         8046                           8970.00
7093                         7834                           9320.00
7094                        13863                          11900.00
7095                        26379                           6680.00
7096                        15524                           5670.00
7097                        29497                           8105.00
7098                        16913                           6445.00
7099                        13645                           9115.00
7100                        24040                           7348.33
7101                        78507                              0.00
7102                        24894                              2.00
7103                        18174                             17.82
7104                        23131                             19.65
7105                        30177                              0.00
7106                        99837                              0.00
7107                       185014                             16.00
7108                        33312                              0.00
7109                        60984                             23.74
7110                        23367                             15.91
7111                        24012                              3.98
7112                        33027                              0.00
7113                        19057                              0.00
7114                        32584                              0.00
7115                        22488                              3.98
7116                        34824                              0.00
7117                        35548                           1055.56
7118                         9202                           5051.11
7119                        13594                          14570.00
7120                        20394                           3785.98
7121                        49543                           3296.55
7122                        24812                          10827.14
7123                        17642                           2816.87
7124                        21312                           7328.13
7125                        13580                          10976.66
7126                        42919                          18132.15
7127                       223987                          17180.56
7128                       126518                          16568.81
7129                       113735                          13592.48
7130                       233755                           6867.78
7131                        90033                          10398.61
7132                       178835                          18757.50
7133                        70437                            885.00
7134                        71418                          16981.94
7135                       305309                           9579.17
7136                        44523                           9777.78
7137                        41885                           6171.20
7138                        55760                           7991.67
7139                        51165                           3073.03
7140                        48527                            216.67
7141                        49533                           8756.94
7142                        40754                           6531.94
      type (TIPO) year (AÑO)     region (REGION)
1    conventional       2015              Albany
2    conventional       2015              Albany
3    conventional       2015              Albany
4    conventional       2015              Albany
5    conventional       2015              Albany
6    conventional       2015              Albany
7    conventional       2015              Albany
8    conventional       2015              Albany
9    conventional       2015              Albany
10   conventional       2015              Albany
11   conventional       2015              Albany
12   conventional       2015              Albany
13   conventional       2015              Albany
14   conventional       2015              Albany
15   conventional       2015              Albany
16   conventional       2015              Albany
17   conventional       2015              Albany
18   conventional       2015              Albany
19   conventional       2015              Albany
20   conventional       2015              Albany
21   conventional       2015              Albany
22   conventional       2015              Albany
23   conventional       2015              Albany
24   conventional       2015              Albany
25   conventional       2015              Albany
26   conventional       2015              Albany
27   conventional       2015              Albany
28   conventional       2015              Albany
29   conventional       2015              Albany
30   conventional       2015              Albany
31   conventional       2015              Albany
32   conventional       2015              Albany
33   conventional       2015              Albany
34   conventional       2015              Albany
35   conventional       2015              Albany
36   conventional       2015              Albany
37   conventional       2015              Albany
38   conventional       2015              Albany
39   conventional       2015              Albany
40   conventional       2015              Albany
41   conventional       2015              Albany
42   conventional       2015              Albany
43   conventional       2015              Albany
44   conventional       2015              Albany
45   conventional       2015              Albany
46   conventional       2015              Albany
47   conventional       2015              Albany
48   conventional       2015              Albany
49   conventional       2015              Albany
50   conventional       2015              Albany
51   conventional       2015              Albany
52   conventional       2015              Albany
53   conventional       2015             Atlanta
54   conventional       2015             Atlanta
55   conventional       2015             Atlanta
56   conventional       2015             Atlanta
57   conventional       2015             Atlanta
58   conventional       2015             Atlanta
59   conventional       2015             Atlanta
60   conventional       2015             Atlanta
61   conventional       2015             Atlanta
62   conventional       2015             Atlanta
63   conventional       2015             Atlanta
64   conventional       2015             Atlanta
65   conventional       2015             Atlanta
66   conventional       2015             Atlanta
67   conventional       2015             Atlanta
68   conventional       2015             Atlanta
69   conventional       2015             Atlanta
70   conventional       2015             Atlanta
71   conventional       2015             Atlanta
72   conventional       2015             Atlanta
73   conventional       2015             Atlanta
74   conventional       2015             Atlanta
75   conventional       2015             Atlanta
76   conventional       2015             Atlanta
77   conventional       2015             Atlanta
78   conventional       2015             Atlanta
79   conventional       2015             Atlanta
80   conventional       2015             Atlanta
81   conventional       2015             Atlanta
82   conventional       2015             Atlanta
83   conventional       2015             Atlanta
84   conventional       2015             Atlanta
85   conventional       2015             Atlanta
86   conventional       2015             Atlanta
87   conventional       2015             Atlanta
88   conventional       2015             Atlanta
89   conventional       2015             Atlanta
90   conventional       2015             Atlanta
91   conventional       2015             Atlanta
92   conventional       2015             Atlanta
93   conventional       2015             Atlanta
94   conventional       2015             Atlanta
95   conventional       2015             Atlanta
96   conventional       2015             Atlanta
97   conventional       2015             Atlanta
98   conventional       2015             Atlanta
99   conventional       2015             Atlanta
100  conventional       2015             Atlanta
101  conventional       2015             Atlanta
102  conventional       2015             Atlanta
103  conventional       2015             Atlanta
104  conventional       2015             Atlanta
105  conventional       2015 BaltimoreWashington
106  conventional       2015 BaltimoreWashington
107  conventional       2015 BaltimoreWashington
108  conventional       2015 BaltimoreWashington
109  conventional       2015 BaltimoreWashington
110  conventional       2015 BaltimoreWashington
111  conventional       2015 BaltimoreWashington
112  conventional       2015 BaltimoreWashington
113  conventional       2015 BaltimoreWashington
114  conventional       2015 BaltimoreWashington
115  conventional       2015 BaltimoreWashington
116  conventional       2015 BaltimoreWashington
117  conventional       2015 BaltimoreWashington
118  conventional       2015 BaltimoreWashington
119  conventional       2015 BaltimoreWashington
120  conventional       2015 BaltimoreWashington
121  conventional       2015 BaltimoreWashington
122  conventional       2015 BaltimoreWashington
123  conventional       2015 BaltimoreWashington
124  conventional       2015 BaltimoreWashington
125  conventional       2015 BaltimoreWashington
126  conventional       2015 BaltimoreWashington
127  conventional       2015 BaltimoreWashington
128  conventional       2015 BaltimoreWashington
129  conventional       2015 BaltimoreWashington
130  conventional       2015 BaltimoreWashington
131  conventional       2015 BaltimoreWashington
132  conventional       2015 BaltimoreWashington
133  conventional       2015 BaltimoreWashington
134  conventional       2015 BaltimoreWashington
135  conventional       2015 BaltimoreWashington
136  conventional       2015 BaltimoreWashington
137  conventional       2015 BaltimoreWashington
138  conventional       2015 BaltimoreWashington
139  conventional       2015 BaltimoreWashington
140  conventional       2015 BaltimoreWashington
141  conventional       2015 BaltimoreWashington
142  conventional       2015 BaltimoreWashington
143  conventional       2015 BaltimoreWashington
144  conventional       2015 BaltimoreWashington
145  conventional       2015 BaltimoreWashington
146  conventional       2015 BaltimoreWashington
147  conventional       2015 BaltimoreWashington
148  conventional       2015 BaltimoreWashington
149  conventional       2015 BaltimoreWashington
150  conventional       2015 BaltimoreWashington
151  conventional       2015 BaltimoreWashington
152  conventional       2015 BaltimoreWashington
153  conventional       2015 BaltimoreWashington
154  conventional       2015 BaltimoreWashington
155  conventional       2015 BaltimoreWashington
156  conventional       2015 BaltimoreWashington
157  conventional       2015               Boise
158  conventional       2015               Boise
159  conventional       2015               Boise
160  conventional       2015               Boise
161  conventional       2015               Boise
162  conventional       2015               Boise
163  conventional       2015               Boise
164  conventional       2015               Boise
165  conventional       2015               Boise
166  conventional       2015               Boise
167  conventional       2015               Boise
168  conventional       2015               Boise
169  conventional       2015               Boise
170  conventional       2015               Boise
171  conventional       2015               Boise
172  conventional       2015               Boise
173  conventional       2015               Boise
174  conventional       2015               Boise
175  conventional       2015               Boise
176  conventional       2015               Boise
177  conventional       2015               Boise
178  conventional       2015               Boise
179  conventional       2015               Boise
180  conventional       2015               Boise
181  conventional       2015               Boise
182  conventional       2015               Boise
183  conventional       2015               Boise
184  conventional       2015               Boise
185  conventional       2015               Boise
186  conventional       2015               Boise
187  conventional       2015               Boise
188  conventional       2015               Boise
189  conventional       2015               Boise
190  conventional       2015               Boise
191  conventional       2015               Boise
192  conventional       2015               Boise
193  conventional       2015               Boise
194  conventional       2015               Boise
195  conventional       2015               Boise
196  conventional       2015               Boise
197  conventional       2015               Boise
198  conventional       2015               Boise
199  conventional       2015               Boise
200  conventional       2015               Boise
201  conventional       2015               Boise
202  conventional       2015               Boise
203  conventional       2015               Boise
204  conventional       2015               Boise
205  conventional       2015               Boise
206  conventional       2015               Boise
207  conventional       2015               Boise
208  conventional       2015               Boise
209  conventional       2015              Boston
210  conventional       2015              Boston
211  conventional       2015              Boston
212  conventional       2015              Boston
213  conventional       2015              Boston
214  conventional       2015              Boston
215  conventional       2015              Boston
216  conventional       2015              Boston
217  conventional       2015              Boston
218  conventional       2015              Boston
219  conventional       2015              Boston
220  conventional       2015              Boston
221  conventional       2015              Boston
222  conventional       2015              Boston
223  conventional       2015              Boston
224  conventional       2015              Boston
225  conventional       2015              Boston
226  conventional       2015              Boston
227  conventional       2015              Boston
228  conventional       2015              Boston
229  conventional       2015              Boston
230  conventional       2015              Boston
231  conventional       2015              Boston
232  conventional       2015              Boston
233  conventional       2015              Boston
234  conventional       2015              Boston
235  conventional       2015              Boston
236  conventional       2015              Boston
237  conventional       2015              Boston
238  conventional       2015              Boston
239  conventional       2015              Boston
240  conventional       2015              Boston
241  conventional       2015              Boston
242  conventional       2015              Boston
243  conventional       2015              Boston
244  conventional       2015              Boston
245  conventional       2015              Boston
246  conventional       2015              Boston
247  conventional       2015              Boston
248  conventional       2015              Boston
249  conventional       2015              Boston
250  conventional       2015              Boston
251  conventional       2015              Boston
252  conventional       2015              Boston
253  conventional       2015              Boston
254  conventional       2015              Boston
255  conventional       2015              Boston
256  conventional       2015              Boston
257  conventional       2015              Boston
258  conventional       2015              Boston
259  conventional       2015              Boston
260  conventional       2015              Boston
261  conventional       2015    BuffaloRochester
262  conventional       2015    BuffaloRochester
263  conventional       2015    BuffaloRochester
264  conventional       2015    BuffaloRochester
265  conventional       2015    BuffaloRochester
266  conventional       2015    BuffaloRochester
267  conventional       2015    BuffaloRochester
268  conventional       2015    BuffaloRochester
269  conventional       2015    BuffaloRochester
270  conventional       2015    BuffaloRochester
271  conventional       2015    BuffaloRochester
272  conventional       2015    BuffaloRochester
273  conventional       2015    BuffaloRochester
274  conventional       2015    BuffaloRochester
275  conventional       2015    BuffaloRochester
276  conventional       2015    BuffaloRochester
277  conventional       2015    BuffaloRochester
278  conventional       2015    BuffaloRochester
279  conventional       2015    BuffaloRochester
280  conventional       2015    BuffaloRochester
281  conventional       2015    BuffaloRochester
282  conventional       2015    BuffaloRochester
283  conventional       2015    BuffaloRochester
284  conventional       2015    BuffaloRochester
285  conventional       2015    BuffaloRochester
286  conventional       2015    BuffaloRochester
287  conventional       2015    BuffaloRochester
288  conventional       2015    BuffaloRochester
289  conventional       2015    BuffaloRochester
290  conventional       2015    BuffaloRochester
291  conventional       2015    BuffaloRochester
292  conventional       2015    BuffaloRochester
293  conventional       2015    BuffaloRochester
294  conventional       2015    BuffaloRochester
295  conventional       2015    BuffaloRochester
296  conventional       2015    BuffaloRochester
297  conventional       2015    BuffaloRochester
298  conventional       2015    BuffaloRochester
299  conventional       2015    BuffaloRochester
300  conventional       2015    BuffaloRochester
301  conventional       2015    BuffaloRochester
302  conventional       2015    BuffaloRochester
303  conventional       2015    BuffaloRochester
304  conventional       2015    BuffaloRochester
305  conventional       2015    BuffaloRochester
306  conventional       2015    BuffaloRochester
307  conventional       2015    BuffaloRochester
308  conventional       2015    BuffaloRochester
309  conventional       2015    BuffaloRochester
310  conventional       2015    BuffaloRochester
311  conventional       2015    BuffaloRochester
312  conventional       2015    BuffaloRochester
313  conventional       2015          California
314  conventional       2015          California
315  conventional       2015          California
316  conventional       2015          California
317  conventional       2015          California
318  conventional       2015          California
319  conventional       2015          California
320  conventional       2015          California
321  conventional       2015          California
322  conventional       2015          California
323  conventional       2015          California
324  conventional       2015          California
325  conventional       2015          California
326  conventional       2015          California
327  conventional       2015          California
328  conventional       2015          California
329  conventional       2015          California
330  conventional       2015          California
331  conventional       2015          California
332  conventional       2015          California
333  conventional       2015          California
334  conventional       2015          California
335  conventional       2015          California
336  conventional       2015          California
337  conventional       2015          California
338  conventional       2015          California
339  conventional       2015          California
340  conventional       2015          California
341  conventional       2015          California
342  conventional       2015          California
343  conventional       2015          California
344  conventional       2015          California
345  conventional       2015          California
346  conventional       2015          California
347  conventional       2015          California
348  conventional       2015          California
349  conventional       2015          California
350  conventional       2015          California
351  conventional       2015          California
352  conventional       2015          California
353  conventional       2015          California
354  conventional       2015          California
355  conventional       2015          California
356  conventional       2015          California
357  conventional       2015          California
358  conventional       2015          California
359  conventional       2015          California
360  conventional       2015          California
361  conventional       2015          California
362  conventional       2015          California
363  conventional       2015          California
364  conventional       2015          California
365  conventional       2015           Charlotte
366  conventional       2015           Charlotte
367  conventional       2015           Charlotte
368  conventional       2015           Charlotte
369  conventional       2015           Charlotte
370  conventional       2015           Charlotte
371  conventional       2015           Charlotte
372  conventional       2015           Charlotte
373  conventional       2015           Charlotte
374  conventional       2015           Charlotte
375  conventional       2015           Charlotte
376  conventional       2015           Charlotte
377  conventional       2015           Charlotte
378  conventional       2015           Charlotte
379  conventional       2015           Charlotte
380  conventional       2015           Charlotte
381  conventional       2015           Charlotte
382  conventional       2015           Charlotte
383  conventional       2015           Charlotte
384  conventional       2015           Charlotte
385  conventional       2015           Charlotte
386  conventional       2015           Charlotte
387  conventional       2015           Charlotte
388  conventional       2015           Charlotte
389  conventional       2015           Charlotte
390  conventional       2015           Charlotte
391  conventional       2015           Charlotte
392  conventional       2015           Charlotte
393  conventional       2015           Charlotte
394  conventional       2015           Charlotte
395  conventional       2015           Charlotte
396  conventional       2015           Charlotte
397  conventional       2015           Charlotte
398  conventional       2015           Charlotte
399  conventional       2015           Charlotte
400  conventional       2015           Charlotte
401  conventional       2015           Charlotte
402  conventional       2015           Charlotte
403  conventional       2015           Charlotte
404  conventional       2015           Charlotte
405  conventional       2015           Charlotte
406  conventional       2015           Charlotte
407  conventional       2015           Charlotte
408  conventional       2015           Charlotte
409  conventional       2015           Charlotte
410  conventional       2015           Charlotte
411  conventional       2015           Charlotte
412  conventional       2015           Charlotte
413  conventional       2015           Charlotte
414  conventional       2015           Charlotte
415  conventional       2015           Charlotte
416  conventional       2015           Charlotte
417  conventional       2015             Chicago
418  conventional       2015             Chicago
419  conventional       2015             Chicago
420  conventional       2015             Chicago
421  conventional       2015             Chicago
422  conventional       2015             Chicago
423  conventional       2015             Chicago
424  conventional       2015             Chicago
425  conventional       2015             Chicago
426  conventional       2015             Chicago
427  conventional       2015             Chicago
428  conventional       2015             Chicago
429  conventional       2015             Chicago
430  conventional       2015             Chicago
431  conventional       2015             Chicago
432  conventional       2015             Chicago
433  conventional       2015             Chicago
434  conventional       2015             Chicago
435  conventional       2015             Chicago
436  conventional       2015             Chicago
437  conventional       2015             Chicago
438  conventional       2015             Chicago
439  conventional       2015             Chicago
440  conventional       2015             Chicago
441  conventional       2015             Chicago
442  conventional       2015             Chicago
443  conventional       2015             Chicago
444  conventional       2015             Chicago
445  conventional       2015             Chicago
446  conventional       2015             Chicago
447  conventional       2015             Chicago
448  conventional       2015             Chicago
449  conventional       2015             Chicago
450  conventional       2015             Chicago
451  conventional       2015             Chicago
452  conventional       2015             Chicago
453  conventional       2015             Chicago
454  conventional       2015             Chicago
455  conventional       2015             Chicago
456  conventional       2015             Chicago
457  conventional       2015             Chicago
458  conventional       2015             Chicago
459  conventional       2015             Chicago
460  conventional       2015             Chicago
461  conventional       2015             Chicago
462  conventional       2015             Chicago
463  conventional       2015             Chicago
464  conventional       2015             Chicago
465  conventional       2015             Chicago
466  conventional       2015             Chicago
467  conventional       2015             Chicago
468  conventional       2015             Chicago
469  conventional       2015    CincinnatiDayton
470  conventional       2015    CincinnatiDayton
471  conventional       2015    CincinnatiDayton
472  conventional       2015    CincinnatiDayton
473  conventional       2015    CincinnatiDayton
474  conventional       2015    CincinnatiDayton
475  conventional       2015    CincinnatiDayton
476  conventional       2015    CincinnatiDayton
477  conventional       2015    CincinnatiDayton
478  conventional       2015    CincinnatiDayton
479  conventional       2015    CincinnatiDayton
480  conventional       2015    CincinnatiDayton
481  conventional       2015    CincinnatiDayton
482  conventional       2015    CincinnatiDayton
483  conventional       2015    CincinnatiDayton
484  conventional       2015    CincinnatiDayton
485  conventional       2015    CincinnatiDayton
486  conventional       2015    CincinnatiDayton
487  conventional       2015    CincinnatiDayton
488  conventional       2015    CincinnatiDayton
489  conventional       2015    CincinnatiDayton
490  conventional       2015    CincinnatiDayton
491  conventional       2015    CincinnatiDayton
492  conventional       2015    CincinnatiDayton
493  conventional       2015    CincinnatiDayton
494  conventional       2015    CincinnatiDayton
495  conventional       2015    CincinnatiDayton
496  conventional       2015    CincinnatiDayton
497  conventional       2015    CincinnatiDayton
498  conventional       2015    CincinnatiDayton
499  conventional       2015    CincinnatiDayton
500  conventional       2015    CincinnatiDayton
501  conventional       2015    CincinnatiDayton
502  conventional       2015    CincinnatiDayton
503  conventional       2015    CincinnatiDayton
504  conventional       2015    CincinnatiDayton
505  conventional       2015    CincinnatiDayton
506  conventional       2015    CincinnatiDayton
507  conventional       2015    CincinnatiDayton
508  conventional       2015    CincinnatiDayton
509  conventional       2015    CincinnatiDayton
510  conventional       2015    CincinnatiDayton
511  conventional       2015    CincinnatiDayton
512  conventional       2015    CincinnatiDayton
513  conventional       2015    CincinnatiDayton
514  conventional       2015    CincinnatiDayton
515  conventional       2015    CincinnatiDayton
516  conventional       2015    CincinnatiDayton
517  conventional       2015    CincinnatiDayton
518  conventional       2015    CincinnatiDayton
519  conventional       2015    CincinnatiDayton
520  conventional       2015    CincinnatiDayton
521  conventional       2015            Columbus
522  conventional       2015            Columbus
523  conventional       2015            Columbus
524  conventional       2015            Columbus
525  conventional       2015            Columbus
526  conventional       2015            Columbus
527  conventional       2015            Columbus
528  conventional       2015            Columbus
529  conventional       2015            Columbus
530  conventional       2015            Columbus
531  conventional       2015            Columbus
532  conventional       2015            Columbus
533  conventional       2015            Columbus
534  conventional       2015            Columbus
535  conventional       2015            Columbus
536  conventional       2015            Columbus
537  conventional       2015            Columbus
538  conventional       2015            Columbus
539  conventional       2015            Columbus
540  conventional       2015            Columbus
541  conventional       2015            Columbus
542  conventional       2015            Columbus
543  conventional       2015            Columbus
544  conventional       2015            Columbus
545  conventional       2015            Columbus
546  conventional       2015            Columbus
547  conventional       2015            Columbus
548  conventional       2015            Columbus
549  conventional       2015            Columbus
550  conventional       2015            Columbus
551  conventional       2015            Columbus
552  conventional       2015            Columbus
553  conventional       2015            Columbus
554  conventional       2015            Columbus
555  conventional       2015            Columbus
556  conventional       2015            Columbus
557  conventional       2015            Columbus
558  conventional       2015            Columbus
559  conventional       2015            Columbus
560  conventional       2015            Columbus
561  conventional       2015            Columbus
562  conventional       2015            Columbus
563  conventional       2015            Columbus
564  conventional       2015            Columbus
565  conventional       2015            Columbus
566  conventional       2015            Columbus
567  conventional       2015            Columbus
568  conventional       2015            Columbus
569  conventional       2015            Columbus
570  conventional       2015            Columbus
571  conventional       2015            Columbus
572  conventional       2015            Columbus
573  conventional       2015       DallasFtWorth
574  conventional       2015       DallasFtWorth
575  conventional       2015       DallasFtWorth
576  conventional       2015       DallasFtWorth
577  conventional       2015       DallasFtWorth
578  conventional       2015       DallasFtWorth
579  conventional       2015       DallasFtWorth
580  conventional       2015       DallasFtWorth
581  conventional       2015       DallasFtWorth
582  conventional       2015       DallasFtWorth
583  conventional       2015       DallasFtWorth
584  conventional       2015       DallasFtWorth
585  conventional       2015       DallasFtWorth
586  conventional       2015       DallasFtWorth
587  conventional       2015       DallasFtWorth
588  conventional       2015       DallasFtWorth
589  conventional       2015       DallasFtWorth
590  conventional       2015       DallasFtWorth
591  conventional       2015       DallasFtWorth
592  conventional       2015       DallasFtWorth
593  conventional       2015       DallasFtWorth
594  conventional       2015       DallasFtWorth
595  conventional       2015       DallasFtWorth
596  conventional       2015       DallasFtWorth
597  conventional       2015       DallasFtWorth
598  conventional       2015       DallasFtWorth
599  conventional       2015       DallasFtWorth
600  conventional       2015       DallasFtWorth
601  conventional       2015       DallasFtWorth
602  conventional       2015       DallasFtWorth
603  conventional       2015       DallasFtWorth
604  conventional       2015       DallasFtWorth
605  conventional       2015       DallasFtWorth
606  conventional       2015       DallasFtWorth
607  conventional       2015       DallasFtWorth
608  conventional       2015       DallasFtWorth
609  conventional       2015       DallasFtWorth
610  conventional       2015       DallasFtWorth
611  conventional       2015       DallasFtWorth
612  conventional       2015       DallasFtWorth
613  conventional       2015       DallasFtWorth
614  conventional       2015       DallasFtWorth
615  conventional       2015       DallasFtWorth
616  conventional       2015       DallasFtWorth
617  conventional       2015       DallasFtWorth
618  conventional       2015       DallasFtWorth
619  conventional       2015       DallasFtWorth
620  conventional       2015       DallasFtWorth
621  conventional       2015       DallasFtWorth
622  conventional       2015       DallasFtWorth
623  conventional       2015       DallasFtWorth
624  conventional       2015       DallasFtWorth
625  conventional       2015              Denver
626  conventional       2015              Denver
627  conventional       2015              Denver
628  conventional       2015              Denver
629  conventional       2015              Denver
630  conventional       2015              Denver
631  conventional       2015              Denver
632  conventional       2015              Denver
633  conventional       2015              Denver
634  conventional       2015              Denver
635  conventional       2015              Denver
636  conventional       2015              Denver
637  conventional       2015              Denver
638  conventional       2015              Denver
639  conventional       2015              Denver
640  conventional       2015              Denver
641  conventional       2015              Denver
642  conventional       2015              Denver
643  conventional       2015              Denver
644  conventional       2015              Denver
645  conventional       2015              Denver
646  conventional       2015              Denver
647  conventional       2015              Denver
648  conventional       2015              Denver
649  conventional       2015              Denver
650  conventional       2015              Denver
651  conventional       2015              Denver
652  conventional       2015              Denver
653  conventional       2015              Denver
654  conventional       2015              Denver
655  conventional       2015              Denver
656  conventional       2015              Denver
657  conventional       2015              Denver
658  conventional       2015              Denver
659  conventional       2015              Denver
660  conventional       2015              Denver
661  conventional       2015              Denver
662  conventional       2015              Denver
663  conventional       2015              Denver
664  conventional       2015              Denver
665  conventional       2015              Denver
666  conventional       2015              Denver
667  conventional       2015              Denver
668  conventional       2015              Denver
669  conventional       2015              Denver
670  conventional       2015              Denver
671  conventional       2015              Denver
672  conventional       2015              Denver
673  conventional       2015              Denver
674  conventional       2015              Denver
675  conventional       2015              Denver
676  conventional       2015              Denver
677  conventional       2015             Detroit
678  conventional       2015             Detroit
679  conventional       2015             Detroit
680  conventional       2015             Detroit
681  conventional       2015             Detroit
682  conventional       2015             Detroit
683  conventional       2015             Detroit
684  conventional       2015             Detroit
685  conventional       2015             Detroit
686  conventional       2015             Detroit
687  conventional       2015             Detroit
688  conventional       2015             Detroit
689  conventional       2015             Detroit
690  conventional       2015             Detroit
691  conventional       2015             Detroit
692  conventional       2015             Detroit
693  conventional       2015             Detroit
694  conventional       2015             Detroit
695  conventional       2015             Detroit
696  conventional       2015             Detroit
697  conventional       2015             Detroit
698  conventional       2015             Detroit
699  conventional       2015             Detroit
700  conventional       2015             Detroit
701  conventional       2015             Detroit
702  conventional       2015             Detroit
703  conventional       2015             Detroit
704  conventional       2015             Detroit
705  conventional       2015             Detroit
706  conventional       2015             Detroit
707  conventional       2015             Detroit
708  conventional       2015             Detroit
709  conventional       2015             Detroit
710  conventional       2015             Detroit
711  conventional       2015             Detroit
712  conventional       2015             Detroit
713  conventional       2015             Detroit
714  conventional       2015             Detroit
715  conventional       2015             Detroit
716  conventional       2015             Detroit
717  conventional       2015             Detroit
718  conventional       2015             Detroit
719  conventional       2015             Detroit
720  conventional       2015             Detroit
721  conventional       2015             Detroit
722  conventional       2015             Detroit
723  conventional       2015             Detroit
724  conventional       2015             Detroit
725  conventional       2015             Detroit
726  conventional       2015             Detroit
727  conventional       2015             Detroit
728  conventional       2015             Detroit
729  conventional       2015         GrandRapids
730  conventional       2015         GrandRapids
731  conventional       2015         GrandRapids
732  conventional       2015         GrandRapids
733  conventional       2015         GrandRapids
734  conventional       2015         GrandRapids
735  conventional       2015         GrandRapids
736  conventional       2015         GrandRapids
737  conventional       2015         GrandRapids
738  conventional       2015         GrandRapids
739  conventional       2015         GrandRapids
740  conventional       2015         GrandRapids
741  conventional       2015         GrandRapids
742  conventional       2015         GrandRapids
743  conventional       2015         GrandRapids
744  conventional       2015         GrandRapids
745  conventional       2015         GrandRapids
746  conventional       2015         GrandRapids
747  conventional       2015         GrandRapids
748  conventional       2015         GrandRapids
749  conventional       2015         GrandRapids
750  conventional       2015         GrandRapids
751  conventional       2015         GrandRapids
752  conventional       2015         GrandRapids
753  conventional       2015         GrandRapids
754  conventional       2015         GrandRapids
755  conventional       2015         GrandRapids
756  conventional       2015         GrandRapids
757  conventional       2015         GrandRapids
758  conventional       2015         GrandRapids
759  conventional       2015         GrandRapids
760  conventional       2015         GrandRapids
761  conventional       2015         GrandRapids
762  conventional       2015         GrandRapids
763  conventional       2015         GrandRapids
764  conventional       2015         GrandRapids
765  conventional       2015         GrandRapids
766  conventional       2015         GrandRapids
767  conventional       2015         GrandRapids
768  conventional       2015         GrandRapids
769  conventional       2015         GrandRapids
770  conventional       2015         GrandRapids
771  conventional       2015         GrandRapids
772  conventional       2015         GrandRapids
773  conventional       2015         GrandRapids
774  conventional       2015         GrandRapids
775  conventional       2015         GrandRapids
776  conventional       2015         GrandRapids
777  conventional       2015         GrandRapids
778  conventional       2015         GrandRapids
779  conventional       2015         GrandRapids
780  conventional       2015         GrandRapids
781  conventional       2015          GreatLakes
782  conventional       2015          GreatLakes
783  conventional       2015          GreatLakes
784  conventional       2015          GreatLakes
785  conventional       2015          GreatLakes
786  conventional       2015          GreatLakes
787  conventional       2015          GreatLakes
788  conventional       2015          GreatLakes
789  conventional       2015          GreatLakes
790  conventional       2015          GreatLakes
791  conventional       2015          GreatLakes
792  conventional       2015          GreatLakes
793  conventional       2015          GreatLakes
794  conventional       2015          GreatLakes
795  conventional       2015          GreatLakes
796  conventional       2015          GreatLakes
797  conventional       2015          GreatLakes
798  conventional       2015          GreatLakes
799  conventional       2015          GreatLakes
800  conventional       2015          GreatLakes
801  conventional       2015          GreatLakes
802  conventional       2015          GreatLakes
803  conventional       2015          GreatLakes
804  conventional       2015          GreatLakes
805  conventional       2015          GreatLakes
806  conventional       2015          GreatLakes
807  conventional       2015          GreatLakes
808  conventional       2015          GreatLakes
809  conventional       2015          GreatLakes
810  conventional       2015          GreatLakes
811  conventional       2015          GreatLakes
812  conventional       2015          GreatLakes
813  conventional       2015          GreatLakes
814  conventional       2015          GreatLakes
815  conventional       2015          GreatLakes
816  conventional       2015          GreatLakes
817  conventional       2015          GreatLakes
818  conventional       2015          GreatLakes
819  conventional       2015          GreatLakes
820  conventional       2015          GreatLakes
821  conventional       2015          GreatLakes
822  conventional       2015          GreatLakes
823  conventional       2015          GreatLakes
824  conventional       2015          GreatLakes
825  conventional       2015          GreatLakes
826  conventional       2015          GreatLakes
827  conventional       2015          GreatLakes
828  conventional       2015          GreatLakes
829  conventional       2015          GreatLakes
830  conventional       2015          GreatLakes
831  conventional       2015          GreatLakes
832  conventional       2015          GreatLakes
833  conventional       2015  HarrisburgScranton
834  conventional       2015  HarrisburgScranton
835  conventional       2015  HarrisburgScranton
836  conventional       2015  HarrisburgScranton
837  conventional       2015  HarrisburgScranton
838  conventional       2015  HarrisburgScranton
839  conventional       2015  HarrisburgScranton
840  conventional       2015  HarrisburgScranton
841  conventional       2015  HarrisburgScranton
842  conventional       2015  HarrisburgScranton
843  conventional       2015  HarrisburgScranton
844  conventional       2015  HarrisburgScranton
845  conventional       2015  HarrisburgScranton
846  conventional       2015  HarrisburgScranton
847  conventional       2015  HarrisburgScranton
848  conventional       2015  HarrisburgScranton
849  conventional       2015  HarrisburgScranton
850  conventional       2015  HarrisburgScranton
851  conventional       2015  HarrisburgScranton
852  conventional       2015  HarrisburgScranton
853  conventional       2015  HarrisburgScranton
854  conventional       2015  HarrisburgScranton
855  conventional       2015  HarrisburgScranton
856  conventional       2015  HarrisburgScranton
857  conventional       2015  HarrisburgScranton
858  conventional       2015  HarrisburgScranton
859  conventional       2015  HarrisburgScranton
860  conventional       2015  HarrisburgScranton
861  conventional       2015  HarrisburgScranton
862  conventional       2015  HarrisburgScranton
863  conventional       2015  HarrisburgScranton
864  conventional       2015  HarrisburgScranton
865  conventional       2015  HarrisburgScranton
866  conventional       2015  HarrisburgScranton
867  conventional       2015  HarrisburgScranton
868  conventional       2015  HarrisburgScranton
869  conventional       2015  HarrisburgScranton
870  conventional       2015  HarrisburgScranton
871  conventional       2015  HarrisburgScranton
872  conventional       2015  HarrisburgScranton
873  conventional       2015  HarrisburgScranton
874  conventional       2015  HarrisburgScranton
875  conventional       2015  HarrisburgScranton
876  conventional       2015  HarrisburgScranton
877  conventional       2015  HarrisburgScranton
878  conventional       2015  HarrisburgScranton
879  conventional       2015  HarrisburgScranton
880  conventional       2015  HarrisburgScranton
881  conventional       2015  HarrisburgScranton
882  conventional       2015  HarrisburgScranton
883  conventional       2015  HarrisburgScranton
884  conventional       2015  HarrisburgScranton
885  conventional       2015 HartfordSpringfield
886  conventional       2015 HartfordSpringfield
887  conventional       2015 HartfordSpringfield
888  conventional       2015 HartfordSpringfield
889  conventional       2015 HartfordSpringfield
890  conventional       2015 HartfordSpringfield
891  conventional       2015 HartfordSpringfield
892  conventional       2015 HartfordSpringfield
893  conventional       2015 HartfordSpringfield
894  conventional       2015 HartfordSpringfield
895  conventional       2015 HartfordSpringfield
896  conventional       2015 HartfordSpringfield
897  conventional       2015 HartfordSpringfield
898  conventional       2015 HartfordSpringfield
899  conventional       2015 HartfordSpringfield
900  conventional       2015 HartfordSpringfield
901  conventional       2015 HartfordSpringfield
902  conventional       2015 HartfordSpringfield
903  conventional       2015 HartfordSpringfield
904  conventional       2015 HartfordSpringfield
905  conventional       2015 HartfordSpringfield
906  conventional       2015 HartfordSpringfield
907  conventional       2015 HartfordSpringfield
908  conventional       2015 HartfordSpringfield
909  conventional       2015 HartfordSpringfield
910  conventional       2015 HartfordSpringfield
911  conventional       2015 HartfordSpringfield
912  conventional       2015 HartfordSpringfield
913  conventional       2015 HartfordSpringfield
914  conventional       2015 HartfordSpringfield
915  conventional       2015 HartfordSpringfield
916  conventional       2015 HartfordSpringfield
917  conventional       2015 HartfordSpringfield
918  conventional       2015 HartfordSpringfield
919  conventional       2015 HartfordSpringfield
920  conventional       2015 HartfordSpringfield
921  conventional       2015 HartfordSpringfield
922  conventional       2015 HartfordSpringfield
923  conventional       2015 HartfordSpringfield
924  conventional       2015 HartfordSpringfield
925  conventional       2015 HartfordSpringfield
926  conventional       2015 HartfordSpringfield
927  conventional       2015 HartfordSpringfield
928  conventional       2015 HartfordSpringfield
929  conventional       2015 HartfordSpringfield
930  conventional       2015 HartfordSpringfield
931  conventional       2015 HartfordSpringfield
932  conventional       2015 HartfordSpringfield
933  conventional       2015 HartfordSpringfield
934  conventional       2015 HartfordSpringfield
935  conventional       2015 HartfordSpringfield
936  conventional       2015 HartfordSpringfield
937  conventional       2015             Houston
938  conventional       2015             Houston
939  conventional       2015             Houston
940  conventional       2015             Houston
941  conventional       2015             Houston
942  conventional       2015             Houston
943  conventional       2015             Houston
944  conventional       2015             Houston
945  conventional       2015             Houston
946  conventional       2015             Houston
947  conventional       2015             Houston
948  conventional       2015             Houston
949  conventional       2015             Houston
950  conventional       2015             Houston
951  conventional       2015             Houston
952  conventional       2015             Houston
953  conventional       2015             Houston
954  conventional       2015             Houston
955  conventional       2015             Houston
956  conventional       2015             Houston
957  conventional       2015             Houston
958  conventional       2015             Houston
959  conventional       2015             Houston
960  conventional       2015             Houston
961  conventional       2015             Houston
962  conventional       2015             Houston
963  conventional       2015             Houston
964  conventional       2015             Houston
965  conventional       2015             Houston
966  conventional       2015             Houston
967  conventional       2015             Houston
968  conventional       2015             Houston
969  conventional       2015             Houston
970  conventional       2015             Houston
971  conventional       2015             Houston
972  conventional       2015             Houston
973  conventional       2015             Houston
974  conventional       2015             Houston
975  conventional       2015             Houston
976  conventional       2015             Houston
977  conventional       2015             Houston
978  conventional       2015             Houston
979  conventional       2015             Houston
980  conventional       2015             Houston
981  conventional       2015             Houston
982  conventional       2015             Houston
983  conventional       2015             Houston
984  conventional       2015             Houston
985  conventional       2015             Houston
986  conventional       2015             Houston
987  conventional       2015             Houston
988  conventional       2015             Houston
989  conventional       2015        Indianapolis
990  conventional       2015        Indianapolis
991  conventional       2015        Indianapolis
992  conventional       2015        Indianapolis
993  conventional       2015        Indianapolis
994  conventional       2015        Indianapolis
995  conventional       2015        Indianapolis
996  conventional       2015        Indianapolis
997  conventional       2015        Indianapolis
998  conventional       2015        Indianapolis
999  conventional       2015        Indianapolis
1000 conventional       2015        Indianapolis
1001 conventional       2015        Indianapolis
1002 conventional       2015        Indianapolis
1003 conventional       2015        Indianapolis
1004 conventional       2015        Indianapolis
1005 conventional       2015        Indianapolis
1006 conventional       2015        Indianapolis
1007 conventional       2015        Indianapolis
1008 conventional       2015        Indianapolis
1009 conventional       2015        Indianapolis
1010 conventional       2015        Indianapolis
1011 conventional       2015        Indianapolis
1012 conventional       2015        Indianapolis
1013 conventional       2015        Indianapolis
1014 conventional       2015        Indianapolis
1015 conventional       2015        Indianapolis
1016 conventional       2015        Indianapolis
1017 conventional       2015        Indianapolis
1018 conventional       2015        Indianapolis
1019 conventional       2015        Indianapolis
1020 conventional       2015        Indianapolis
1021 conventional       2015        Indianapolis
1022 conventional       2015        Indianapolis
1023 conventional       2015        Indianapolis
1024 conventional       2015        Indianapolis
1025 conventional       2015        Indianapolis
1026 conventional       2015        Indianapolis
1027 conventional       2015        Indianapolis
1028 conventional       2015        Indianapolis
1029 conventional       2015        Indianapolis
1030 conventional       2015        Indianapolis
1031 conventional       2015        Indianapolis
1032 conventional       2015        Indianapolis
1033 conventional       2015        Indianapolis
1034 conventional       2015        Indianapolis
1035 conventional       2015        Indianapolis
1036 conventional       2015        Indianapolis
1037 conventional       2015        Indianapolis
1038 conventional       2015        Indianapolis
1039 conventional       2015        Indianapolis
1040 conventional       2015        Indianapolis
1041 conventional       2015        Jacksonville
1042 conventional       2015        Jacksonville
1043 conventional       2015        Jacksonville
1044 conventional       2015        Jacksonville
1045 conventional       2015        Jacksonville
1046 conventional       2015        Jacksonville
1047 conventional       2015        Jacksonville
1048 conventional       2015        Jacksonville
1049 conventional       2015        Jacksonville
1050 conventional       2015        Jacksonville
1051 conventional       2015        Jacksonville
1052 conventional       2015        Jacksonville
1053 conventional       2015        Jacksonville
1054 conventional       2015        Jacksonville
1055 conventional       2015        Jacksonville
1056 conventional       2015        Jacksonville
1057 conventional       2015        Jacksonville
1058 conventional       2015        Jacksonville
1059 conventional       2015        Jacksonville
1060 conventional       2015        Jacksonville
1061 conventional       2015        Jacksonville
1062 conventional       2015        Jacksonville
1063 conventional       2015        Jacksonville
1064 conventional       2015        Jacksonville
1065 conventional       2015        Jacksonville
1066 conventional       2015        Jacksonville
1067 conventional       2015        Jacksonville
1068 conventional       2015        Jacksonville
1069 conventional       2015        Jacksonville
1070 conventional       2015        Jacksonville
1071 conventional       2015        Jacksonville
1072 conventional       2015        Jacksonville
1073 conventional       2015        Jacksonville
1074 conventional       2015        Jacksonville
1075 conventional       2015        Jacksonville
1076 conventional       2015        Jacksonville
1077 conventional       2015        Jacksonville
1078 conventional       2015        Jacksonville
1079 conventional       2015        Jacksonville
1080 conventional       2015        Jacksonville
1081 conventional       2015        Jacksonville
1082 conventional       2015        Jacksonville
1083 conventional       2015        Jacksonville
1084 conventional       2015        Jacksonville
1085 conventional       2015        Jacksonville
1086 conventional       2015        Jacksonville
1087 conventional       2015        Jacksonville
1088 conventional       2015        Jacksonville
1089 conventional       2015        Jacksonville
1090 conventional       2015        Jacksonville
1091 conventional       2015        Jacksonville
1092 conventional       2015        Jacksonville
1093 conventional       2015            LasVegas
1094 conventional       2015            LasVegas
1095 conventional       2015            LasVegas
1096 conventional       2015            LasVegas
1097 conventional       2015            LasVegas
1098 conventional       2015            LasVegas
1099 conventional       2015            LasVegas
1100 conventional       2015            LasVegas
1101 conventional       2015            LasVegas
1102 conventional       2015            LasVegas
1103 conventional       2015            LasVegas
1104 conventional       2015            LasVegas
1105 conventional       2015            LasVegas
1106 conventional       2015            LasVegas
1107 conventional       2015            LasVegas
1108 conventional       2015            LasVegas
1109 conventional       2015            LasVegas
1110 conventional       2015            LasVegas
1111 conventional       2015            LasVegas
1112 conventional       2015            LasVegas
1113 conventional       2015            LasVegas
1114 conventional       2015            LasVegas
1115 conventional       2015            LasVegas
1116 conventional       2015            LasVegas
1117 conventional       2015            LasVegas
1118 conventional       2015            LasVegas
1119 conventional       2015            LasVegas
1120 conventional       2015            LasVegas
1121 conventional       2015            LasVegas
1122 conventional       2015            LasVegas
1123 conventional       2015            LasVegas
1124 conventional       2015            LasVegas
1125 conventional       2015            LasVegas
1126 conventional       2015            LasVegas
1127 conventional       2015            LasVegas
1128 conventional       2015            LasVegas
1129 conventional       2015            LasVegas
1130 conventional       2015            LasVegas
1131 conventional       2015            LasVegas
1132 conventional       2015            LasVegas
1133 conventional       2015            LasVegas
1134 conventional       2015            LasVegas
1135 conventional       2015            LasVegas
1136 conventional       2015            LasVegas
1137 conventional       2015            LasVegas
1138 conventional       2015            LasVegas
1139 conventional       2015            LasVegas
1140 conventional       2015            LasVegas
1141 conventional       2015            LasVegas
1142 conventional       2015            LasVegas
1143 conventional       2015            LasVegas
1144 conventional       2015            LasVegas
1145 conventional       2015          LosAngeles
1146 conventional       2015          LosAngeles
1147 conventional       2015          LosAngeles
1148 conventional       2015          LosAngeles
1149 conventional       2015          LosAngeles
1150 conventional       2015          LosAngeles
1151 conventional       2015          LosAngeles
1152 conventional       2015          LosAngeles
1153 conventional       2015          LosAngeles
1154 conventional       2015          LosAngeles
1155 conventional       2015          LosAngeles
1156 conventional       2015          LosAngeles
1157 conventional       2015          LosAngeles
1158 conventional       2015          LosAngeles
1159 conventional       2015          LosAngeles
1160 conventional       2015          LosAngeles
1161 conventional       2015          LosAngeles
1162 conventional       2015          LosAngeles
1163 conventional       2015          LosAngeles
1164 conventional       2015          LosAngeles
1165 conventional       2015          LosAngeles
1166 conventional       2015          LosAngeles
1167 conventional       2015          LosAngeles
1168 conventional       2015          LosAngeles
1169 conventional       2015          LosAngeles
1170 conventional       2015          LosAngeles
1171 conventional       2015          LosAngeles
1172 conventional       2015          LosAngeles
1173 conventional       2015          LosAngeles
1174 conventional       2015          LosAngeles
1175 conventional       2015          LosAngeles
1176 conventional       2015          LosAngeles
1177 conventional       2015          LosAngeles
1178 conventional       2015          LosAngeles
1179 conventional       2015          LosAngeles
1180 conventional       2015          LosAngeles
1181 conventional       2015          LosAngeles
1182 conventional       2015          LosAngeles
1183 conventional       2015          LosAngeles
1184 conventional       2015          LosAngeles
1185 conventional       2015          LosAngeles
1186 conventional       2015          LosAngeles
1187 conventional       2015          LosAngeles
1188 conventional       2015          LosAngeles
1189 conventional       2015          LosAngeles
1190 conventional       2015          LosAngeles
1191 conventional       2015          LosAngeles
1192 conventional       2015          LosAngeles
1193 conventional       2015          LosAngeles
1194 conventional       2015          LosAngeles
1195 conventional       2015          LosAngeles
1196 conventional       2015          LosAngeles
1197 conventional       2015          Louisville
1198 conventional       2015          Louisville
1199 conventional       2015          Louisville
1200 conventional       2015          Louisville
1201 conventional       2015          Louisville
1202 conventional       2015          Louisville
1203 conventional       2015          Louisville
1204 conventional       2015          Louisville
1205 conventional       2015          Louisville
1206 conventional       2015          Louisville
1207 conventional       2015          Louisville
1208 conventional       2015          Louisville
1209 conventional       2015          Louisville
1210 conventional       2015          Louisville
1211 conventional       2015          Louisville
1212 conventional       2015          Louisville
1213 conventional       2015          Louisville
1214 conventional       2015          Louisville
1215 conventional       2015          Louisville
1216 conventional       2015          Louisville
1217 conventional       2015          Louisville
1218 conventional       2015          Louisville
1219 conventional       2015          Louisville
1220 conventional       2015          Louisville
1221 conventional       2015          Louisville
1222 conventional       2015          Louisville
1223 conventional       2015          Louisville
1224 conventional       2015          Louisville
1225 conventional       2015          Louisville
1226 conventional       2015          Louisville
1227 conventional       2015          Louisville
1228 conventional       2015          Louisville
1229 conventional       2015          Louisville
1230 conventional       2015          Louisville
1231 conventional       2015          Louisville
1232 conventional       2015          Louisville
1233 conventional       2015          Louisville
1234 conventional       2015          Louisville
1235 conventional       2015          Louisville
1236 conventional       2015          Louisville
1237 conventional       2015          Louisville
1238 conventional       2015          Louisville
1239 conventional       2015          Louisville
1240 conventional       2015          Louisville
1241 conventional       2015          Louisville
1242 conventional       2015          Louisville
1243 conventional       2015          Louisville
1244 conventional       2015          Louisville
1245 conventional       2015          Louisville
1246 conventional       2015          Louisville
1247 conventional       2015          Louisville
1248 conventional       2015          Louisville
1249 conventional       2015   MiamiFtLauderdale
1250 conventional       2015   MiamiFtLauderdale
1251 conventional       2015   MiamiFtLauderdale
1252 conventional       2015   MiamiFtLauderdale
1253 conventional       2015   MiamiFtLauderdale
1254 conventional       2015   MiamiFtLauderdale
1255 conventional       2015   MiamiFtLauderdale
1256 conventional       2015   MiamiFtLauderdale
1257 conventional       2015   MiamiFtLauderdale
1258 conventional       2015   MiamiFtLauderdale
1259 conventional       2015   MiamiFtLauderdale
1260 conventional       2015   MiamiFtLauderdale
1261 conventional       2015   MiamiFtLauderdale
1262 conventional       2015   MiamiFtLauderdale
1263 conventional       2015   MiamiFtLauderdale
1264 conventional       2015   MiamiFtLauderdale
1265 conventional       2015   MiamiFtLauderdale
1266 conventional       2015   MiamiFtLauderdale
1267 conventional       2015   MiamiFtLauderdale
1268 conventional       2015   MiamiFtLauderdale
1269 conventional       2015   MiamiFtLauderdale
1270 conventional       2015   MiamiFtLauderdale
1271 conventional       2015   MiamiFtLauderdale
1272 conventional       2015   MiamiFtLauderdale
1273 conventional       2015   MiamiFtLauderdale
1274 conventional       2015   MiamiFtLauderdale
1275 conventional       2015   MiamiFtLauderdale
1276 conventional       2015   MiamiFtLauderdale
1277 conventional       2015   MiamiFtLauderdale
1278 conventional       2015   MiamiFtLauderdale
1279 conventional       2015   MiamiFtLauderdale
1280 conventional       2015   MiamiFtLauderdale
1281 conventional       2015   MiamiFtLauderdale
1282 conventional       2015   MiamiFtLauderdale
1283 conventional       2015   MiamiFtLauderdale
1284 conventional       2015   MiamiFtLauderdale
1285 conventional       2015   MiamiFtLauderdale
1286 conventional       2015   MiamiFtLauderdale
1287 conventional       2015   MiamiFtLauderdale
1288 conventional       2015   MiamiFtLauderdale
1289 conventional       2015   MiamiFtLauderdale
1290 conventional       2015   MiamiFtLauderdale
1291 conventional       2015   MiamiFtLauderdale
1292 conventional       2015   MiamiFtLauderdale
1293 conventional       2015   MiamiFtLauderdale
1294 conventional       2015   MiamiFtLauderdale
1295 conventional       2015   MiamiFtLauderdale
1296 conventional       2015   MiamiFtLauderdale
1297 conventional       2015   MiamiFtLauderdale
1298 conventional       2015   MiamiFtLauderdale
1299 conventional       2015   MiamiFtLauderdale
1300 conventional       2015   MiamiFtLauderdale
1301 conventional       2015            Midsouth
1302 conventional       2015            Midsouth
1303 conventional       2015            Midsouth
1304 conventional       2015            Midsouth
1305 conventional       2015            Midsouth
1306 conventional       2015            Midsouth
1307 conventional       2015            Midsouth
1308 conventional       2015            Midsouth
1309 conventional       2015            Midsouth
1310 conventional       2015            Midsouth
1311 conventional       2015            Midsouth
1312 conventional       2015            Midsouth
1313 conventional       2015            Midsouth
1314 conventional       2015            Midsouth
1315 conventional       2015            Midsouth
1316 conventional       2015            Midsouth
1317 conventional       2015            Midsouth
1318 conventional       2015            Midsouth
1319 conventional       2015            Midsouth
1320 conventional       2015            Midsouth
1321 conventional       2015            Midsouth
1322 conventional       2015            Midsouth
1323 conventional       2015            Midsouth
1324 conventional       2015            Midsouth
1325 conventional       2015            Midsouth
1326 conventional       2015            Midsouth
1327 conventional       2015            Midsouth
1328 conventional       2015            Midsouth
1329 conventional       2015            Midsouth
1330 conventional       2015            Midsouth
1331 conventional       2015            Midsouth
1332 conventional       2015            Midsouth
1333 conventional       2015            Midsouth
1334 conventional       2015            Midsouth
1335 conventional       2015            Midsouth
1336 conventional       2015            Midsouth
1337 conventional       2015            Midsouth
1338 conventional       2015            Midsouth
1339 conventional       2015            Midsouth
1340 conventional       2015            Midsouth
1341 conventional       2015            Midsouth
1342 conventional       2015            Midsouth
1343 conventional       2015            Midsouth
1344 conventional       2015            Midsouth
1345 conventional       2015            Midsouth
1346 conventional       2015            Midsouth
1347 conventional       2015            Midsouth
1348 conventional       2015            Midsouth
1349 conventional       2015            Midsouth
1350 conventional       2015            Midsouth
1351 conventional       2015            Midsouth
1352 conventional       2015            Midsouth
1353 conventional       2015           Nashville
1354 conventional       2015           Nashville
1355 conventional       2015           Nashville
1356 conventional       2015           Nashville
1357 conventional       2015           Nashville
1358 conventional       2015           Nashville
1359 conventional       2015           Nashville
1360 conventional       2015           Nashville
1361 conventional       2015           Nashville
1362 conventional       2015           Nashville
1363 conventional       2015           Nashville
1364 conventional       2015           Nashville
1365 conventional       2015           Nashville
1366 conventional       2015           Nashville
1367 conventional       2015           Nashville
1368 conventional       2015           Nashville
1369 conventional       2015           Nashville
1370 conventional       2015           Nashville
1371 conventional       2015           Nashville
1372 conventional       2015           Nashville
1373 conventional       2015           Nashville
1374 conventional       2015           Nashville
1375 conventional       2015           Nashville
1376 conventional       2015           Nashville
1377 conventional       2015           Nashville
1378 conventional       2015           Nashville
1379 conventional       2015           Nashville
1380 conventional       2015           Nashville
1381 conventional       2015           Nashville
1382 conventional       2015           Nashville
1383 conventional       2015           Nashville
1384 conventional       2015           Nashville
1385 conventional       2015           Nashville
1386 conventional       2015           Nashville
1387 conventional       2015           Nashville
1388 conventional       2015           Nashville
1389 conventional       2015           Nashville
1390 conventional       2015           Nashville
1391 conventional       2015           Nashville
1392 conventional       2015           Nashville
1393 conventional       2015           Nashville
1394 conventional       2015           Nashville
1395 conventional       2015           Nashville
1396 conventional       2015           Nashville
1397 conventional       2015           Nashville
1398 conventional       2015           Nashville
1399 conventional       2015           Nashville
1400 conventional       2015           Nashville
1401 conventional       2015           Nashville
1402 conventional       2015           Nashville
1403 conventional       2015           Nashville
1404 conventional       2015           Nashville
1405 conventional       2015    NewOrleansMobile
1406 conventional       2015    NewOrleansMobile
1407 conventional       2015    NewOrleansMobile
1408 conventional       2015    NewOrleansMobile
1409 conventional       2015    NewOrleansMobile
1410 conventional       2015    NewOrleansMobile
1411 conventional       2015    NewOrleansMobile
1412 conventional       2015    NewOrleansMobile
1413 conventional       2015    NewOrleansMobile
1414 conventional       2015    NewOrleansMobile
1415 conventional       2015    NewOrleansMobile
1416 conventional       2015    NewOrleansMobile
1417 conventional       2015    NewOrleansMobile
1418 conventional       2015    NewOrleansMobile
1419 conventional       2015    NewOrleansMobile
1420 conventional       2015    NewOrleansMobile
1421 conventional       2015    NewOrleansMobile
1422 conventional       2015    NewOrleansMobile
1423 conventional       2015    NewOrleansMobile
1424 conventional       2015    NewOrleansMobile
1425 conventional       2015    NewOrleansMobile
1426 conventional       2015    NewOrleansMobile
1427 conventional       2015    NewOrleansMobile
1428 conventional       2015    NewOrleansMobile
1429 conventional       2015    NewOrleansMobile
1430 conventional       2015    NewOrleansMobile
1431 conventional       2015    NewOrleansMobile
1432 conventional       2015    NewOrleansMobile
1433 conventional       2015    NewOrleansMobile
1434 conventional       2015    NewOrleansMobile
1435 conventional       2015    NewOrleansMobile
1436 conventional       2015    NewOrleansMobile
1437 conventional       2015    NewOrleansMobile
1438 conventional       2015    NewOrleansMobile
1439 conventional       2015    NewOrleansMobile
1440 conventional       2015    NewOrleansMobile
1441 conventional       2015    NewOrleansMobile
1442 conventional       2015    NewOrleansMobile
1443 conventional       2015    NewOrleansMobile
1444 conventional       2015    NewOrleansMobile
1445 conventional       2015    NewOrleansMobile
1446 conventional       2015    NewOrleansMobile
1447 conventional       2015    NewOrleansMobile
1448 conventional       2015    NewOrleansMobile
1449 conventional       2015    NewOrleansMobile
1450 conventional       2015    NewOrleansMobile
1451 conventional       2015    NewOrleansMobile
1452 conventional       2015    NewOrleansMobile
1453 conventional       2015    NewOrleansMobile
1454 conventional       2015    NewOrleansMobile
1455 conventional       2015    NewOrleansMobile
1456 conventional       2015    NewOrleansMobile
1457 conventional       2015             NewYork
1458 conventional       2015             NewYork
1459 conventional       2015             NewYork
1460 conventional       2015             NewYork
1461 conventional       2015             NewYork
1462 conventional       2015             NewYork
1463 conventional       2015             NewYork
1464 conventional       2015             NewYork
1465 conventional       2015             NewYork
1466 conventional       2015             NewYork
1467 conventional       2015             NewYork
1468 conventional       2015             NewYork
1469 conventional       2015             NewYork
1470 conventional       2015             NewYork
1471 conventional       2015             NewYork
1472 conventional       2015             NewYork
1473 conventional       2015             NewYork
1474 conventional       2015             NewYork
1475 conventional       2015             NewYork
1476 conventional       2015             NewYork
1477 conventional       2015             NewYork
1478 conventional       2015             NewYork
1479 conventional       2015             NewYork
1480 conventional       2015             NewYork
1481 conventional       2015             NewYork
1482 conventional       2015             NewYork
1483 conventional       2015             NewYork
1484 conventional       2015             NewYork
1485 conventional       2015             NewYork
1486 conventional       2015             NewYork
1487 conventional       2015             NewYork
1488 conventional       2015             NewYork
1489 conventional       2015             NewYork
1490 conventional       2015             NewYork
1491 conventional       2015             NewYork
1492 conventional       2015             NewYork
1493 conventional       2015             NewYork
1494 conventional       2015             NewYork
1495 conventional       2015             NewYork
1496 conventional       2015             NewYork
1497 conventional       2015             NewYork
1498 conventional       2015             NewYork
1499 conventional       2015             NewYork
1500 conventional       2015             NewYork
1501 conventional       2015             NewYork
1502 conventional       2015             NewYork
1503 conventional       2015             NewYork
1504 conventional       2015             NewYork
1505 conventional       2015             NewYork
1506 conventional       2015             NewYork
1507 conventional       2015             NewYork
1508 conventional       2015             NewYork
1509 conventional       2015           Northeast
1510 conventional       2015           Northeast
1511 conventional       2015           Northeast
1512 conventional       2015           Northeast
1513 conventional       2015           Northeast
1514 conventional       2015           Northeast
1515 conventional       2015           Northeast
1516 conventional       2015           Northeast
1517 conventional       2015           Northeast
1518 conventional       2015           Northeast
1519 conventional       2015           Northeast
1520 conventional       2015           Northeast
1521 conventional       2015           Northeast
1522 conventional       2015           Northeast
1523 conventional       2015           Northeast
1524 conventional       2015           Northeast
1525 conventional       2015           Northeast
1526 conventional       2015           Northeast
1527 conventional       2015           Northeast
1528 conventional       2015           Northeast
1529 conventional       2015           Northeast
1530 conventional       2015           Northeast
1531 conventional       2015           Northeast
1532 conventional       2015           Northeast
1533 conventional       2015           Northeast
1534 conventional       2015           Northeast
1535 conventional       2015           Northeast
1536 conventional       2015           Northeast
1537 conventional       2015           Northeast
1538 conventional       2015           Northeast
1539 conventional       2015           Northeast
1540 conventional       2015           Northeast
1541 conventional       2015           Northeast
1542 conventional       2015           Northeast
1543 conventional       2015           Northeast
1544 conventional       2015           Northeast
1545 conventional       2015           Northeast
1546 conventional       2015           Northeast
1547 conventional       2015           Northeast
1548 conventional       2015           Northeast
1549 conventional       2015           Northeast
1550 conventional       2015           Northeast
1551 conventional       2015           Northeast
1552 conventional       2015           Northeast
1553 conventional       2015           Northeast
1554 conventional       2015           Northeast
1555 conventional       2015           Northeast
1556 conventional       2015           Northeast
1557 conventional       2015           Northeast
1558 conventional       2015           Northeast
1559 conventional       2015           Northeast
1560 conventional       2015           Northeast
1561 conventional       2015  NorthernNewEngland
1562 conventional       2015  NorthernNewEngland
1563 conventional       2015  NorthernNewEngland
1564 conventional       2015  NorthernNewEngland
1565 conventional       2015  NorthernNewEngland
1566 conventional       2015  NorthernNewEngland
1567 conventional       2015  NorthernNewEngland
1568 conventional       2015  NorthernNewEngland
1569 conventional       2015  NorthernNewEngland
1570 conventional       2015  NorthernNewEngland
1571 conventional       2015  NorthernNewEngland
1572 conventional       2015  NorthernNewEngland
1573 conventional       2015  NorthernNewEngland
1574 conventional       2015  NorthernNewEngland
1575 conventional       2015  NorthernNewEngland
1576 conventional       2015  NorthernNewEngland
1577 conventional       2015  NorthernNewEngland
1578 conventional       2015  NorthernNewEngland
1579 conventional       2015  NorthernNewEngland
1580 conventional       2015  NorthernNewEngland
1581 conventional       2015  NorthernNewEngland
1582 conventional       2015  NorthernNewEngland
1583 conventional       2015  NorthernNewEngland
1584 conventional       2015  NorthernNewEngland
1585 conventional       2015  NorthernNewEngland
1586 conventional       2015  NorthernNewEngland
1587 conventional       2015  NorthernNewEngland
1588 conventional       2015  NorthernNewEngland
1589 conventional       2015  NorthernNewEngland
1590 conventional       2015  NorthernNewEngland
1591 conventional       2015  NorthernNewEngland
1592 conventional       2015  NorthernNewEngland
1593 conventional       2015  NorthernNewEngland
1594 conventional       2015  NorthernNewEngland
1595 conventional       2015  NorthernNewEngland
1596 conventional       2015  NorthernNewEngland
1597 conventional       2015  NorthernNewEngland
1598 conventional       2015  NorthernNewEngland
1599 conventional       2015  NorthernNewEngland
1600 conventional       2015  NorthernNewEngland
1601 conventional       2015  NorthernNewEngland
1602 conventional       2015  NorthernNewEngland
1603 conventional       2015  NorthernNewEngland
1604 conventional       2015  NorthernNewEngland
1605 conventional       2015  NorthernNewEngland
1606 conventional       2015  NorthernNewEngland
1607 conventional       2015  NorthernNewEngland
1608 conventional       2015  NorthernNewEngland
1609 conventional       2015  NorthernNewEngland
1610 conventional       2015  NorthernNewEngland
1611 conventional       2015  NorthernNewEngland
1612 conventional       2015  NorthernNewEngland
1613 conventional       2015             Orlando
1614 conventional       2015             Orlando
1615 conventional       2015             Orlando
1616 conventional       2015             Orlando
1617 conventional       2015             Orlando
1618 conventional       2015             Orlando
1619 conventional       2015             Orlando
1620 conventional       2015             Orlando
1621 conventional       2015             Orlando
1622 conventional       2015             Orlando
1623 conventional       2015             Orlando
1624 conventional       2015             Orlando
1625 conventional       2015             Orlando
1626 conventional       2015             Orlando
1627 conventional       2015             Orlando
1628 conventional       2015             Orlando
1629 conventional       2015             Orlando
1630 conventional       2015             Orlando
1631 conventional       2015             Orlando
1632 conventional       2015             Orlando
1633 conventional       2015             Orlando
1634 conventional       2015             Orlando
1635 conventional       2015             Orlando
1636 conventional       2015             Orlando
1637 conventional       2015             Orlando
1638 conventional       2015             Orlando
1639 conventional       2015             Orlando
1640 conventional       2015             Orlando
1641 conventional       2015             Orlando
1642 conventional       2015             Orlando
1643 conventional       2015             Orlando
1644 conventional       2015             Orlando
1645 conventional       2015             Orlando
1646 conventional       2015             Orlando
1647 conventional       2015             Orlando
1648 conventional       2015             Orlando
1649 conventional       2015             Orlando
1650 conventional       2015             Orlando
1651 conventional       2015             Orlando
1652 conventional       2015             Orlando
1653 conventional       2015             Orlando
1654 conventional       2015             Orlando
1655 conventional       2015             Orlando
1656 conventional       2015             Orlando
1657 conventional       2015             Orlando
1658 conventional       2015             Orlando
1659 conventional       2015             Orlando
1660 conventional       2015             Orlando
1661 conventional       2015             Orlando
1662 conventional       2015             Orlando
1663 conventional       2015             Orlando
1664 conventional       2015             Orlando
1665 conventional       2015        Philadelphia
1666 conventional       2015        Philadelphia
1667 conventional       2015        Philadelphia
1668 conventional       2015        Philadelphia
1669 conventional       2015        Philadelphia
1670 conventional       2015        Philadelphia
1671 conventional       2015        Philadelphia
1672 conventional       2015        Philadelphia
1673 conventional       2015        Philadelphia
1674 conventional       2015        Philadelphia
1675 conventional       2015        Philadelphia
1676 conventional       2015        Philadelphia
1677 conventional       2015        Philadelphia
1678 conventional       2015        Philadelphia
1679 conventional       2015        Philadelphia
1680 conventional       2015        Philadelphia
1681 conventional       2015        Philadelphia
1682 conventional       2015        Philadelphia
1683 conventional       2015        Philadelphia
1684 conventional       2015        Philadelphia
1685 conventional       2015        Philadelphia
1686 conventional       2015        Philadelphia
1687 conventional       2015        Philadelphia
1688 conventional       2015        Philadelphia
1689 conventional       2015        Philadelphia
1690 conventional       2015        Philadelphia
1691 conventional       2015        Philadelphia
1692 conventional       2015        Philadelphia
1693 conventional       2015        Philadelphia
1694 conventional       2015        Philadelphia
1695 conventional       2015        Philadelphia
1696 conventional       2015        Philadelphia
1697 conventional       2015        Philadelphia
1698 conventional       2015        Philadelphia
1699 conventional       2015        Philadelphia
1700 conventional       2015        Philadelphia
1701 conventional       2015        Philadelphia
1702 conventional       2015        Philadelphia
1703 conventional       2015        Philadelphia
1704 conventional       2015        Philadelphia
1705 conventional       2015        Philadelphia
1706 conventional       2015        Philadelphia
1707 conventional       2015        Philadelphia
1708 conventional       2015        Philadelphia
1709 conventional       2015        Philadelphia
1710 conventional       2015        Philadelphia
1711 conventional       2015        Philadelphia
1712 conventional       2015        Philadelphia
1713 conventional       2015        Philadelphia
1714 conventional       2015        Philadelphia
1715 conventional       2015        Philadelphia
1716 conventional       2015        Philadelphia
1717 conventional       2015       PhoenixTucson
1718 conventional       2015       PhoenixTucson
1719 conventional       2015       PhoenixTucson
1720 conventional       2015       PhoenixTucson
1721 conventional       2015       PhoenixTucson
1722 conventional       2015       PhoenixTucson
1723 conventional       2015       PhoenixTucson
1724 conventional       2015       PhoenixTucson
1725 conventional       2015       PhoenixTucson
1726 conventional       2015       PhoenixTucson
1727 conventional       2015       PhoenixTucson
1728 conventional       2015       PhoenixTucson
1729 conventional       2015       PhoenixTucson
1730 conventional       2015       PhoenixTucson
1731 conventional       2015       PhoenixTucson
1732 conventional       2015       PhoenixTucson
1733 conventional       2015       PhoenixTucson
1734 conventional       2015       PhoenixTucson
1735 conventional       2015       PhoenixTucson
1736 conventional       2015       PhoenixTucson
1737 conventional       2015       PhoenixTucson
1738 conventional       2015       PhoenixTucson
1739 conventional       2015       PhoenixTucson
1740 conventional       2015       PhoenixTucson
1741 conventional       2015       PhoenixTucson
1742 conventional       2015       PhoenixTucson
1743 conventional       2015       PhoenixTucson
1744 conventional       2015       PhoenixTucson
1745 conventional       2015       PhoenixTucson
1746 conventional       2015       PhoenixTucson
1747 conventional       2015       PhoenixTucson
1748 conventional       2015       PhoenixTucson
1749 conventional       2015       PhoenixTucson
1750 conventional       2015       PhoenixTucson
1751 conventional       2015       PhoenixTucson
1752 conventional       2015       PhoenixTucson
1753 conventional       2015       PhoenixTucson
1754 conventional       2015       PhoenixTucson
1755 conventional       2015       PhoenixTucson
1756 conventional       2015       PhoenixTucson
1757 conventional       2015       PhoenixTucson
1758 conventional       2015       PhoenixTucson
1759 conventional       2015       PhoenixTucson
1760 conventional       2015       PhoenixTucson
1761 conventional       2015       PhoenixTucson
1762 conventional       2015       PhoenixTucson
1763 conventional       2015       PhoenixTucson
1764 conventional       2015       PhoenixTucson
1765 conventional       2015       PhoenixTucson
1766 conventional       2015       PhoenixTucson
1767 conventional       2015       PhoenixTucson
1768 conventional       2015       PhoenixTucson
1769 conventional       2015          Pittsburgh
1770 conventional       2015          Pittsburgh
1771 conventional       2015          Pittsburgh
1772 conventional       2015          Pittsburgh
1773 conventional       2015          Pittsburgh
1774 conventional       2015          Pittsburgh
1775 conventional       2015          Pittsburgh
1776 conventional       2015          Pittsburgh
1777 conventional       2015          Pittsburgh
1778 conventional       2015          Pittsburgh
1779 conventional       2015          Pittsburgh
1780 conventional       2015          Pittsburgh
1781 conventional       2015          Pittsburgh
1782 conventional       2015          Pittsburgh
1783 conventional       2015          Pittsburgh
1784 conventional       2015          Pittsburgh
1785 conventional       2015          Pittsburgh
1786 conventional       2015          Pittsburgh
1787 conventional       2015          Pittsburgh
1788 conventional       2015          Pittsburgh
1789 conventional       2015          Pittsburgh
1790 conventional       2015          Pittsburgh
1791 conventional       2015          Pittsburgh
1792 conventional       2015          Pittsburgh
1793 conventional       2015          Pittsburgh
1794 conventional       2015          Pittsburgh
1795 conventional       2015          Pittsburgh
1796 conventional       2015          Pittsburgh
1797 conventional       2015          Pittsburgh
1798 conventional       2015          Pittsburgh
1799 conventional       2015          Pittsburgh
1800 conventional       2015          Pittsburgh
1801 conventional       2015          Pittsburgh
1802 conventional       2015          Pittsburgh
1803 conventional       2015          Pittsburgh
1804 conventional       2015          Pittsburgh
1805 conventional       2015          Pittsburgh
1806 conventional       2015          Pittsburgh
1807 conventional       2015          Pittsburgh
1808 conventional       2015          Pittsburgh
1809 conventional       2015          Pittsburgh
1810 conventional       2015          Pittsburgh
1811 conventional       2015          Pittsburgh
1812 conventional       2015          Pittsburgh
1813 conventional       2015          Pittsburgh
1814 conventional       2015          Pittsburgh
1815 conventional       2015          Pittsburgh
1816 conventional       2015          Pittsburgh
1817 conventional       2015          Pittsburgh
1818 conventional       2015          Pittsburgh
1819 conventional       2015          Pittsburgh
1820 conventional       2015          Pittsburgh
1821 conventional       2015              Plains
1822 conventional       2015              Plains
1823 conventional       2015              Plains
1824 conventional       2015              Plains
1825 conventional       2015              Plains
1826 conventional       2015              Plains
1827 conventional       2015              Plains
1828 conventional       2015              Plains
1829 conventional       2015              Plains
1830 conventional       2015              Plains
1831 conventional       2015              Plains
1832 conventional       2015              Plains
1833 conventional       2015              Plains
1834 conventional       2015              Plains
1835 conventional       2015              Plains
1836 conventional       2015              Plains
1837 conventional       2015              Plains
1838 conventional       2015              Plains
1839 conventional       2015              Plains
1840 conventional       2015              Plains
1841 conventional       2015              Plains
1842 conventional       2015              Plains
1843 conventional       2015              Plains
1844 conventional       2015              Plains
1845 conventional       2015              Plains
1846 conventional       2015              Plains
1847 conventional       2015              Plains
1848 conventional       2015              Plains
1849 conventional       2015              Plains
1850 conventional       2015              Plains
1851 conventional       2015              Plains
1852 conventional       2015              Plains
1853 conventional       2015              Plains
1854 conventional       2015              Plains
1855 conventional       2015              Plains
1856 conventional       2015              Plains
1857 conventional       2015              Plains
1858 conventional       2015              Plains
1859 conventional       2015              Plains
1860 conventional       2015              Plains
1861 conventional       2015              Plains
1862 conventional       2015              Plains
1863 conventional       2015              Plains
1864 conventional       2015              Plains
1865 conventional       2015              Plains
1866 conventional       2015              Plains
1867 conventional       2015              Plains
1868 conventional       2015              Plains
1869 conventional       2015              Plains
1870 conventional       2015              Plains
1871 conventional       2015              Plains
1872 conventional       2015              Plains
1873 conventional       2015            Portland
1874 conventional       2015            Portland
1875 conventional       2015            Portland
1876 conventional       2015            Portland
1877 conventional       2015            Portland
1878 conventional       2015            Portland
1879 conventional       2015            Portland
1880 conventional       2015            Portland
1881 conventional       2015            Portland
1882 conventional       2015            Portland
1883 conventional       2015            Portland
1884 conventional       2015            Portland
1885 conventional       2015            Portland
1886 conventional       2015            Portland
1887 conventional       2015            Portland
1888 conventional       2015            Portland
1889 conventional       2015            Portland
1890 conventional       2015            Portland
1891 conventional       2015            Portland
1892 conventional       2015            Portland
1893 conventional       2015            Portland
1894 conventional       2015            Portland
1895 conventional       2015            Portland
1896 conventional       2015            Portland
1897 conventional       2015            Portland
1898 conventional       2015            Portland
1899 conventional       2015            Portland
1900 conventional       2015            Portland
1901 conventional       2015            Portland
1902 conventional       2015            Portland
1903 conventional       2015            Portland
1904 conventional       2015            Portland
1905 conventional       2015            Portland
1906 conventional       2015            Portland
1907 conventional       2015            Portland
1908 conventional       2015            Portland
1909 conventional       2015            Portland
1910 conventional       2015            Portland
1911 conventional       2015            Portland
1912 conventional       2015            Portland
1913 conventional       2015            Portland
1914 conventional       2015            Portland
1915 conventional       2015            Portland
1916 conventional       2015            Portland
1917 conventional       2015            Portland
1918 conventional       2015            Portland
1919 conventional       2015            Portland
1920 conventional       2015            Portland
1921 conventional       2015            Portland
1922 conventional       2015            Portland
1923 conventional       2015            Portland
1924 conventional       2015            Portland
1925 conventional       2015   RaleighGreensboro
1926 conventional       2015   RaleighGreensboro
1927 conventional       2015   RaleighGreensboro
1928 conventional       2015   RaleighGreensboro
1929 conventional       2015   RaleighGreensboro
1930 conventional       2015   RaleighGreensboro
1931 conventional       2015   RaleighGreensboro
1932 conventional       2015   RaleighGreensboro
1933 conventional       2015   RaleighGreensboro
1934 conventional       2015   RaleighGreensboro
1935 conventional       2015   RaleighGreensboro
1936 conventional       2015   RaleighGreensboro
1937 conventional       2015   RaleighGreensboro
1938 conventional       2015   RaleighGreensboro
1939 conventional       2015   RaleighGreensboro
1940 conventional       2015   RaleighGreensboro
1941 conventional       2015   RaleighGreensboro
1942 conventional       2015   RaleighGreensboro
1943 conventional       2015   RaleighGreensboro
1944 conventional       2015   RaleighGreensboro
1945 conventional       2015   RaleighGreensboro
1946 conventional       2015   RaleighGreensboro
1947 conventional       2015   RaleighGreensboro
1948 conventional       2015   RaleighGreensboro
1949 conventional       2015   RaleighGreensboro
1950 conventional       2015   RaleighGreensboro
1951 conventional       2015   RaleighGreensboro
1952 conventional       2015   RaleighGreensboro
1953 conventional       2015   RaleighGreensboro
1954 conventional       2015   RaleighGreensboro
1955 conventional       2015   RaleighGreensboro
1956 conventional       2015   RaleighGreensboro
1957 conventional       2015   RaleighGreensboro
1958 conventional       2015   RaleighGreensboro
1959 conventional       2015   RaleighGreensboro
1960 conventional       2015   RaleighGreensboro
1961 conventional       2015   RaleighGreensboro
1962 conventional       2015   RaleighGreensboro
1963 conventional       2015   RaleighGreensboro
1964 conventional       2015   RaleighGreensboro
1965 conventional       2015   RaleighGreensboro
1966 conventional       2015   RaleighGreensboro
1967 conventional       2015   RaleighGreensboro
1968 conventional       2015   RaleighGreensboro
1969 conventional       2015   RaleighGreensboro
1970 conventional       2015   RaleighGreensboro
1971 conventional       2015   RaleighGreensboro
1972 conventional       2015   RaleighGreensboro
1973 conventional       2015   RaleighGreensboro
1974 conventional       2015   RaleighGreensboro
1975 conventional       2015   RaleighGreensboro
1976 conventional       2015   RaleighGreensboro
1977 conventional       2015     RichmondNorfolk
1978 conventional       2015     RichmondNorfolk
1979 conventional       2015     RichmondNorfolk
1980 conventional       2015     RichmondNorfolk
1981 conventional       2015     RichmondNorfolk
1982 conventional       2015     RichmondNorfolk
1983 conventional       2015     RichmondNorfolk
1984 conventional       2015     RichmondNorfolk
1985 conventional       2015     RichmondNorfolk
1986 conventional       2015     RichmondNorfolk
1987 conventional       2015     RichmondNorfolk
1988 conventional       2015     RichmondNorfolk
1989 conventional       2015     RichmondNorfolk
1990 conventional       2015     RichmondNorfolk
1991 conventional       2015     RichmondNorfolk
1992 conventional       2015     RichmondNorfolk
1993 conventional       2015     RichmondNorfolk
1994 conventional       2015     RichmondNorfolk
1995 conventional       2015     RichmondNorfolk
1996 conventional       2015     RichmondNorfolk
1997 conventional       2015     RichmondNorfolk
1998 conventional       2015     RichmondNorfolk
1999 conventional       2015     RichmondNorfolk
2000 conventional       2015     RichmondNorfolk
2001 conventional       2015     RichmondNorfolk
2002 conventional       2015     RichmondNorfolk
2003 conventional       2015     RichmondNorfolk
2004 conventional       2015     RichmondNorfolk
2005 conventional       2015     RichmondNorfolk
2006 conventional       2015     RichmondNorfolk
2007 conventional       2015     RichmondNorfolk
2008 conventional       2015     RichmondNorfolk
2009 conventional       2015     RichmondNorfolk
2010 conventional       2015     RichmondNorfolk
2011 conventional       2015     RichmondNorfolk
2012 conventional       2015     RichmondNorfolk
2013 conventional       2015     RichmondNorfolk
2014 conventional       2015     RichmondNorfolk
2015 conventional       2015     RichmondNorfolk
2016 conventional       2015     RichmondNorfolk
2017 conventional       2015     RichmondNorfolk
2018 conventional       2015     RichmondNorfolk
2019 conventional       2015     RichmondNorfolk
2020 conventional       2015     RichmondNorfolk
2021 conventional       2015     RichmondNorfolk
2022 conventional       2015     RichmondNorfolk
2023 conventional       2015     RichmondNorfolk
2024 conventional       2015     RichmondNorfolk
2025 conventional       2015     RichmondNorfolk
2026 conventional       2015     RichmondNorfolk
2027 conventional       2015     RichmondNorfolk
2028 conventional       2015     RichmondNorfolk
2029 conventional       2015             Roanoke
2030 conventional       2015             Roanoke
2031 conventional       2015             Roanoke
2032 conventional       2015             Roanoke
2033 conventional       2015             Roanoke
2034 conventional       2015             Roanoke
2035 conventional       2015             Roanoke
2036 conventional       2015             Roanoke
2037 conventional       2015             Roanoke
2038 conventional       2015             Roanoke
2039 conventional       2015             Roanoke
2040 conventional       2015             Roanoke
2041 conventional       2015             Roanoke
2042 conventional       2015             Roanoke
2043 conventional       2015             Roanoke
2044 conventional       2015             Roanoke
2045 conventional       2015             Roanoke
2046 conventional       2015             Roanoke
2047 conventional       2015             Roanoke
2048 conventional       2015             Roanoke
2049 conventional       2015             Roanoke
2050 conventional       2015             Roanoke
2051 conventional       2015             Roanoke
2052 conventional       2015             Roanoke
2053 conventional       2015             Roanoke
2054 conventional       2015             Roanoke
2055 conventional       2015             Roanoke
2056 conventional       2015             Roanoke
2057 conventional       2015             Roanoke
2058 conventional       2015             Roanoke
2059 conventional       2015             Roanoke
2060 conventional       2015             Roanoke
2061 conventional       2015             Roanoke
2062 conventional       2015             Roanoke
2063 conventional       2015             Roanoke
2064 conventional       2015             Roanoke
2065 conventional       2015             Roanoke
2066 conventional       2015             Roanoke
2067 conventional       2015             Roanoke
2068 conventional       2015             Roanoke
2069 conventional       2015             Roanoke
2070 conventional       2015             Roanoke
2071 conventional       2015             Roanoke
2072 conventional       2015             Roanoke
2073 conventional       2015             Roanoke
2074 conventional       2015             Roanoke
2075 conventional       2015             Roanoke
2076 conventional       2015             Roanoke
2077 conventional       2015             Roanoke
2078 conventional       2015             Roanoke
2079 conventional       2015             Roanoke
2080 conventional       2015             Roanoke
2081 conventional       2015          Sacramento
2082 conventional       2015          Sacramento
2083 conventional       2015          Sacramento
2084 conventional       2015          Sacramento
2085 conventional       2015          Sacramento
2086 conventional       2015          Sacramento
2087 conventional       2015          Sacramento
2088 conventional       2015          Sacramento
2089 conventional       2015          Sacramento
2090 conventional       2015          Sacramento
2091 conventional       2015          Sacramento
2092 conventional       2015          Sacramento
2093 conventional       2015          Sacramento
2094 conventional       2015          Sacramento
2095 conventional       2015          Sacramento
2096 conventional       2015          Sacramento
2097 conventional       2015          Sacramento
2098 conventional       2015          Sacramento
2099 conventional       2015          Sacramento
2100 conventional       2015          Sacramento
2101 conventional       2015          Sacramento
2102 conventional       2015          Sacramento
2103 conventional       2015          Sacramento
2104 conventional       2015          Sacramento
2105 conventional       2015          Sacramento
2106 conventional       2015          Sacramento
2107 conventional       2015          Sacramento
2108 conventional       2015          Sacramento
2109 conventional       2015          Sacramento
2110 conventional       2015          Sacramento
2111 conventional       2015          Sacramento
2112 conventional       2015          Sacramento
2113 conventional       2015          Sacramento
2114 conventional       2015          Sacramento
2115 conventional       2015          Sacramento
2116 conventional       2015          Sacramento
2117 conventional       2015          Sacramento
2118 conventional       2015          Sacramento
2119 conventional       2015          Sacramento
2120 conventional       2015          Sacramento
2121 conventional       2015          Sacramento
2122 conventional       2015          Sacramento
2123 conventional       2015          Sacramento
2124 conventional       2015          Sacramento
2125 conventional       2015          Sacramento
2126 conventional       2015          Sacramento
2127 conventional       2015          Sacramento
2128 conventional       2015          Sacramento
2129 conventional       2015          Sacramento
2130 conventional       2015          Sacramento
2131 conventional       2015          Sacramento
2132 conventional       2015          Sacramento
2133 conventional       2015            SanDiego
2134 conventional       2015            SanDiego
2135 conventional       2015            SanDiego
2136 conventional       2015            SanDiego
2137 conventional       2015            SanDiego
2138 conventional       2015            SanDiego
2139 conventional       2015            SanDiego
2140 conventional       2015            SanDiego
2141 conventional       2015            SanDiego
2142 conventional       2015            SanDiego
2143 conventional       2015            SanDiego
2144 conventional       2015            SanDiego
2145 conventional       2015            SanDiego
2146 conventional       2015            SanDiego
2147 conventional       2015            SanDiego
2148 conventional       2015            SanDiego
2149 conventional       2015            SanDiego
2150 conventional       2015            SanDiego
2151 conventional       2015            SanDiego
2152 conventional       2015            SanDiego
2153 conventional       2015            SanDiego
2154 conventional       2015            SanDiego
2155 conventional       2015            SanDiego
2156 conventional       2015            SanDiego
2157 conventional       2015            SanDiego
2158 conventional       2015            SanDiego
2159 conventional       2015            SanDiego
2160 conventional       2015            SanDiego
2161 conventional       2015            SanDiego
2162 conventional       2015            SanDiego
2163 conventional       2015            SanDiego
2164 conventional       2015            SanDiego
2165 conventional       2015            SanDiego
2166 conventional       2015            SanDiego
2167 conventional       2015            SanDiego
2168 conventional       2015            SanDiego
2169 conventional       2015            SanDiego
2170 conventional       2015            SanDiego
2171 conventional       2015            SanDiego
2172 conventional       2015            SanDiego
2173 conventional       2015            SanDiego
2174 conventional       2015            SanDiego
2175 conventional       2015            SanDiego
2176 conventional       2015            SanDiego
2177 conventional       2015            SanDiego
2178 conventional       2015            SanDiego
2179 conventional       2015            SanDiego
2180 conventional       2015            SanDiego
2181 conventional       2015            SanDiego
2182 conventional       2015            SanDiego
2183 conventional       2015            SanDiego
2184 conventional       2015            SanDiego
2185 conventional       2015        SanFrancisco
2186 conventional       2015        SanFrancisco
2187 conventional       2015        SanFrancisco
2188 conventional       2015        SanFrancisco
2189 conventional       2015        SanFrancisco
2190 conventional       2015        SanFrancisco
2191 conventional       2015        SanFrancisco
2192 conventional       2015        SanFrancisco
2193 conventional       2015        SanFrancisco
2194 conventional       2015        SanFrancisco
2195 conventional       2015        SanFrancisco
2196 conventional       2015        SanFrancisco
2197 conventional       2015        SanFrancisco
2198 conventional       2015        SanFrancisco
2199 conventional       2015        SanFrancisco
2200 conventional       2015        SanFrancisco
2201 conventional       2015        SanFrancisco
2202 conventional       2015        SanFrancisco
2203 conventional       2015        SanFrancisco
2204 conventional       2015        SanFrancisco
2205 conventional       2015        SanFrancisco
2206 conventional       2015        SanFrancisco
2207 conventional       2015        SanFrancisco
2208 conventional       2015        SanFrancisco
2209 conventional       2015        SanFrancisco
2210 conventional       2015        SanFrancisco
2211 conventional       2015        SanFrancisco
2212 conventional       2015        SanFrancisco
2213 conventional       2015        SanFrancisco
2214 conventional       2015        SanFrancisco
2215 conventional       2015        SanFrancisco
2216 conventional       2015        SanFrancisco
2217 conventional       2015        SanFrancisco
2218 conventional       2015        SanFrancisco
2219 conventional       2015        SanFrancisco
2220 conventional       2015        SanFrancisco
2221 conventional       2015        SanFrancisco
2222 conventional       2015        SanFrancisco
2223 conventional       2015        SanFrancisco
2224 conventional       2015        SanFrancisco
2225 conventional       2015        SanFrancisco
2226 conventional       2015        SanFrancisco
2227 conventional       2015        SanFrancisco
2228 conventional       2015        SanFrancisco
2229 conventional       2015        SanFrancisco
2230 conventional       2015        SanFrancisco
2231 conventional       2015        SanFrancisco
2232 conventional       2015        SanFrancisco
2233 conventional       2015        SanFrancisco
2234 conventional       2015        SanFrancisco
2235 conventional       2015        SanFrancisco
2236 conventional       2015        SanFrancisco
2237 conventional       2015             Seattle
2238 conventional       2015             Seattle
2239 conventional       2015             Seattle
2240 conventional       2015             Seattle
2241 conventional       2015             Seattle
2242 conventional       2015             Seattle
2243 conventional       2015             Seattle
2244 conventional       2015             Seattle
2245 conventional       2015             Seattle
2246 conventional       2015             Seattle
2247 conventional       2015             Seattle
2248 conventional       2015             Seattle
2249 conventional       2015             Seattle
2250 conventional       2015             Seattle
2251 conventional       2015             Seattle
2252 conventional       2015             Seattle
2253 conventional       2015             Seattle
2254 conventional       2015             Seattle
2255 conventional       2015             Seattle
2256 conventional       2015             Seattle
2257 conventional       2015             Seattle
2258 conventional       2015             Seattle
2259 conventional       2015             Seattle
2260 conventional       2015             Seattle
2261 conventional       2015             Seattle
2262 conventional       2015             Seattle
2263 conventional       2015             Seattle
2264 conventional       2015             Seattle
2265 conventional       2015             Seattle
2266 conventional       2015             Seattle
2267 conventional       2015             Seattle
2268 conventional       2015             Seattle
2269 conventional       2015             Seattle
2270 conventional       2015             Seattle
2271 conventional       2015             Seattle
2272 conventional       2015             Seattle
2273 conventional       2015             Seattle
2274 conventional       2015             Seattle
2275 conventional       2015             Seattle
2276 conventional       2015             Seattle
2277 conventional       2015             Seattle
2278 conventional       2015             Seattle
2279 conventional       2015             Seattle
2280 conventional       2015             Seattle
2281 conventional       2015             Seattle
2282 conventional       2015             Seattle
2283 conventional       2015             Seattle
2284 conventional       2015             Seattle
2285 conventional       2015             Seattle
2286 conventional       2015             Seattle
2287 conventional       2015             Seattle
2288 conventional       2015             Seattle
2289 conventional       2015       SouthCarolina
2290 conventional       2015       SouthCarolina
2291 conventional       2015       SouthCarolina
2292 conventional       2015       SouthCarolina
2293 conventional       2015       SouthCarolina
2294 conventional       2015       SouthCarolina
2295 conventional       2015       SouthCarolina
2296 conventional       2015       SouthCarolina
2297 conventional       2015       SouthCarolina
2298 conventional       2015       SouthCarolina
2299 conventional       2015       SouthCarolina
2300 conventional       2015       SouthCarolina
2301 conventional       2015       SouthCarolina
2302 conventional       2015       SouthCarolina
2303 conventional       2015       SouthCarolina
2304 conventional       2015       SouthCarolina
2305 conventional       2015       SouthCarolina
2306 conventional       2015       SouthCarolina
2307 conventional       2015       SouthCarolina
2308 conventional       2015       SouthCarolina
2309 conventional       2015       SouthCarolina
2310 conventional       2015       SouthCarolina
2311 conventional       2015       SouthCarolina
2312 conventional       2015       SouthCarolina
2313 conventional       2015       SouthCarolina
2314 conventional       2015       SouthCarolina
2315 conventional       2015       SouthCarolina
2316 conventional       2015       SouthCarolina
2317 conventional       2015       SouthCarolina
2318 conventional       2015       SouthCarolina
2319 conventional       2015       SouthCarolina
2320 conventional       2015       SouthCarolina
2321 conventional       2015       SouthCarolina
2322 conventional       2015       SouthCarolina
2323 conventional       2015       SouthCarolina
2324 conventional       2015       SouthCarolina
2325 conventional       2015       SouthCarolina
2326 conventional       2015       SouthCarolina
2327 conventional       2015       SouthCarolina
2328 conventional       2015       SouthCarolina
2329 conventional       2015       SouthCarolina
2330 conventional       2015       SouthCarolina
2331 conventional       2015       SouthCarolina
2332 conventional       2015       SouthCarolina
2333 conventional       2015       SouthCarolina
2334 conventional       2015       SouthCarolina
2335 conventional       2015       SouthCarolina
2336 conventional       2015       SouthCarolina
2337 conventional       2015       SouthCarolina
2338 conventional       2015       SouthCarolina
2339 conventional       2015       SouthCarolina
2340 conventional       2015       SouthCarolina
2341 conventional       2015        SouthCentral
2342 conventional       2015        SouthCentral
2343 conventional       2015        SouthCentral
2344 conventional       2015        SouthCentral
2345 conventional       2015        SouthCentral
2346 conventional       2015        SouthCentral
2347 conventional       2015        SouthCentral
2348 conventional       2015        SouthCentral
2349 conventional       2015        SouthCentral
2350 conventional       2015        SouthCentral
2351 conventional       2015        SouthCentral
2352 conventional       2015        SouthCentral
2353 conventional       2015        SouthCentral
2354 conventional       2015        SouthCentral
2355 conventional       2015        SouthCentral
2356 conventional       2015        SouthCentral
2357 conventional       2015        SouthCentral
2358 conventional       2015        SouthCentral
2359 conventional       2015        SouthCentral
2360 conventional       2015        SouthCentral
2361 conventional       2015        SouthCentral
2362 conventional       2015        SouthCentral
2363 conventional       2015        SouthCentral
2364 conventional       2015        SouthCentral
2365 conventional       2015        SouthCentral
2366 conventional       2015        SouthCentral
2367 conventional       2015        SouthCentral
2368 conventional       2015        SouthCentral
2369 conventional       2015        SouthCentral
2370 conventional       2015        SouthCentral
2371 conventional       2015        SouthCentral
2372 conventional       2015        SouthCentral
2373 conventional       2015        SouthCentral
2374 conventional       2015        SouthCentral
2375 conventional       2015        SouthCentral
2376 conventional       2015        SouthCentral
2377 conventional       2015        SouthCentral
2378 conventional       2015        SouthCentral
2379 conventional       2015        SouthCentral
2380 conventional       2015        SouthCentral
2381 conventional       2015        SouthCentral
2382 conventional       2015        SouthCentral
2383 conventional       2015        SouthCentral
2384 conventional       2015        SouthCentral
2385 conventional       2015        SouthCentral
2386 conventional       2015        SouthCentral
2387 conventional       2015        SouthCentral
2388 conventional       2015        SouthCentral
2389 conventional       2015        SouthCentral
2390 conventional       2015        SouthCentral
2391 conventional       2015        SouthCentral
2392 conventional       2015        SouthCentral
2393 conventional       2015           Southeast
2394 conventional       2015           Southeast
2395 conventional       2015           Southeast
2396 conventional       2015           Southeast
2397 conventional       2015           Southeast
2398 conventional       2015           Southeast
2399 conventional       2015           Southeast
2400 conventional       2015           Southeast
2401 conventional       2015           Southeast
2402 conventional       2015           Southeast
2403 conventional       2015           Southeast
2404 conventional       2015           Southeast
2405 conventional       2015           Southeast
2406 conventional       2015           Southeast
2407 conventional       2015           Southeast
2408 conventional       2015           Southeast
2409 conventional       2015           Southeast
2410 conventional       2015           Southeast
2411 conventional       2015           Southeast
2412 conventional       2015           Southeast
2413 conventional       2015           Southeast
2414 conventional       2015           Southeast
2415 conventional       2015           Southeast
2416 conventional       2015           Southeast
2417 conventional       2015           Southeast
2418 conventional       2015           Southeast
2419 conventional       2015           Southeast
2420 conventional       2015           Southeast
2421 conventional       2015           Southeast
2422 conventional       2015           Southeast
2423 conventional       2015           Southeast
2424 conventional       2015           Southeast
2425 conventional       2015           Southeast
2426 conventional       2015           Southeast
2427 conventional       2015           Southeast
2428 conventional       2015           Southeast
2429 conventional       2015           Southeast
2430 conventional       2015           Southeast
2431 conventional       2015           Southeast
2432 conventional       2015           Southeast
2433 conventional       2015           Southeast
2434 conventional       2015           Southeast
2435 conventional       2015           Southeast
2436 conventional       2015           Southeast
2437 conventional       2015           Southeast
2438 conventional       2015           Southeast
2439 conventional       2015           Southeast
2440 conventional       2015           Southeast
2441 conventional       2015           Southeast
2442 conventional       2015           Southeast
2443 conventional       2015           Southeast
2444 conventional       2015           Southeast
2445 conventional       2015             Spokane
2446 conventional       2015             Spokane
2447 conventional       2015             Spokane
2448 conventional       2015             Spokane
2449 conventional       2015             Spokane
2450 conventional       2015             Spokane
2451 conventional       2015             Spokane
2452 conventional       2015             Spokane
2453 conventional       2015             Spokane
2454 conventional       2015             Spokane
2455 conventional       2015             Spokane
2456 conventional       2015             Spokane
2457 conventional       2015             Spokane
2458 conventional       2015             Spokane
2459 conventional       2015             Spokane
2460 conventional       2015             Spokane
2461 conventional       2015             Spokane
2462 conventional       2015             Spokane
2463 conventional       2015             Spokane
2464 conventional       2015             Spokane
2465 conventional       2015             Spokane
2466 conventional       2015             Spokane
2467 conventional       2015             Spokane
2468 conventional       2015             Spokane
2469 conventional       2015             Spokane
2470 conventional       2015             Spokane
2471 conventional       2015             Spokane
2472 conventional       2015             Spokane
2473 conventional       2015             Spokane
2474 conventional       2015             Spokane
2475 conventional       2015             Spokane
2476 conventional       2015             Spokane
2477 conventional       2015             Spokane
2478 conventional       2015             Spokane
2479 conventional       2015             Spokane
2480 conventional       2015             Spokane
2481 conventional       2015             Spokane
2482 conventional       2015             Spokane
2483 conventional       2015             Spokane
2484 conventional       2015             Spokane
2485 conventional       2015             Spokane
2486 conventional       2015             Spokane
2487 conventional       2015             Spokane
2488 conventional       2015             Spokane
2489 conventional       2015             Spokane
2490 conventional       2015             Spokane
2491 conventional       2015             Spokane
2492 conventional       2015             Spokane
2493 conventional       2015             Spokane
2494 conventional       2015             Spokane
2495 conventional       2015             Spokane
2496 conventional       2015             Spokane
2497 conventional       2015             StLouis
2498 conventional       2015             StLouis
2499 conventional       2015             StLouis
2500 conventional       2015             StLouis
2501 conventional       2015             StLouis
2502 conventional       2015             StLouis
2503 conventional       2015             StLouis
2504 conventional       2015             StLouis
2505 conventional       2015             StLouis
2506 conventional       2015             StLouis
2507 conventional       2015             StLouis
2508 conventional       2015             StLouis
2509 conventional       2015             StLouis
2510 conventional       2015             StLouis
2511 conventional       2015             StLouis
2512 conventional       2015             StLouis
2513 conventional       2015             StLouis
2514 conventional       2015             StLouis
2515 conventional       2015             StLouis
2516 conventional       2015             StLouis
2517 conventional       2015             StLouis
2518 conventional       2015             StLouis
2519 conventional       2015             StLouis
2520 conventional       2015             StLouis
2521 conventional       2015             StLouis
2522 conventional       2015             StLouis
2523 conventional       2015             StLouis
2524 conventional       2015             StLouis
2525 conventional       2015             StLouis
2526 conventional       2015             StLouis
2527 conventional       2015             StLouis
2528 conventional       2015             StLouis
2529 conventional       2015             StLouis
2530 conventional       2015             StLouis
2531 conventional       2015             StLouis
2532 conventional       2015             StLouis
2533 conventional       2015             StLouis
2534 conventional       2015             StLouis
2535 conventional       2015             StLouis
2536 conventional       2015             StLouis
2537 conventional       2015             StLouis
2538 conventional       2015             StLouis
2539 conventional       2015             StLouis
2540 conventional       2015             StLouis
2541 conventional       2015             StLouis
2542 conventional       2015             StLouis
2543 conventional       2015             StLouis
2544 conventional       2015             StLouis
2545 conventional       2015             StLouis
2546 conventional       2015             StLouis
2547 conventional       2015             StLouis
2548 conventional       2015             StLouis
2549 conventional       2015            Syracuse
2550 conventional       2015            Syracuse
2551 conventional       2015            Syracuse
2552 conventional       2015            Syracuse
2553 conventional       2015            Syracuse
2554 conventional       2015            Syracuse
2555 conventional       2015            Syracuse
2556 conventional       2015            Syracuse
2557 conventional       2015            Syracuse
2558 conventional       2015            Syracuse
2559 conventional       2015            Syracuse
2560 conventional       2015            Syracuse
2561 conventional       2015            Syracuse
2562 conventional       2015            Syracuse
2563 conventional       2015            Syracuse
2564 conventional       2015            Syracuse
2565 conventional       2015            Syracuse
2566 conventional       2015            Syracuse
2567 conventional       2015            Syracuse
2568 conventional       2015            Syracuse
2569 conventional       2015            Syracuse
2570 conventional       2015            Syracuse
2571 conventional       2015            Syracuse
2572 conventional       2015            Syracuse
2573 conventional       2015            Syracuse
2574 conventional       2015            Syracuse
2575 conventional       2015            Syracuse
2576 conventional       2015            Syracuse
2577 conventional       2015            Syracuse
2578 conventional       2015            Syracuse
2579 conventional       2015            Syracuse
2580 conventional       2015            Syracuse
2581 conventional       2015            Syracuse
2582 conventional       2015            Syracuse
2583 conventional       2015            Syracuse
2584 conventional       2015            Syracuse
2585 conventional       2015            Syracuse
2586 conventional       2015            Syracuse
2587 conventional       2015            Syracuse
2588 conventional       2015            Syracuse
2589 conventional       2015            Syracuse
2590 conventional       2015            Syracuse
2591 conventional       2015            Syracuse
2592 conventional       2015            Syracuse
2593 conventional       2015            Syracuse
2594 conventional       2015            Syracuse
2595 conventional       2015            Syracuse
2596 conventional       2015            Syracuse
2597 conventional       2015            Syracuse
2598 conventional       2015            Syracuse
2599 conventional       2015            Syracuse
2600 conventional       2015            Syracuse
2601 conventional       2015               Tampa
2602 conventional       2015               Tampa
2603 conventional       2015               Tampa
2604 conventional       2015               Tampa
2605 conventional       2015               Tampa
2606 conventional       2015               Tampa
2607 conventional       2015               Tampa
2608 conventional       2015               Tampa
2609 conventional       2015               Tampa
2610 conventional       2015               Tampa
2611 conventional       2015               Tampa
2612 conventional       2015               Tampa
2613 conventional       2015               Tampa
2614 conventional       2015               Tampa
2615 conventional       2015               Tampa
2616 conventional       2015               Tampa
2617 conventional       2015               Tampa
2618 conventional       2015               Tampa
2619 conventional       2015               Tampa
2620 conventional       2015               Tampa
2621 conventional       2015               Tampa
2622 conventional       2015               Tampa
2623 conventional       2015               Tampa
2624 conventional       2015               Tampa
2625 conventional       2015               Tampa
2626 conventional       2015               Tampa
2627 conventional       2015               Tampa
2628 conventional       2015               Tampa
2629 conventional       2015               Tampa
2630 conventional       2015               Tampa
2631 conventional       2015               Tampa
2632 conventional       2015               Tampa
2633 conventional       2015               Tampa
2634 conventional       2015               Tampa
2635 conventional       2015               Tampa
2636 conventional       2015               Tampa
2637 conventional       2015               Tampa
2638 conventional       2015               Tampa
2639 conventional       2015               Tampa
2640 conventional       2015               Tampa
2641 conventional       2015               Tampa
2642 conventional       2015               Tampa
2643 conventional       2015               Tampa
2644 conventional       2015               Tampa
2645 conventional       2015               Tampa
2646 conventional       2015               Tampa
2647 conventional       2015               Tampa
2648 conventional       2015               Tampa
2649 conventional       2015               Tampa
2650 conventional       2015               Tampa
2651 conventional       2015               Tampa
2652 conventional       2015               Tampa
2653 conventional       2015             TotalUS
2654 conventional       2015             TotalUS
2655 conventional       2015             TotalUS
2656 conventional       2015             TotalUS
2657 conventional       2015             TotalUS
2658 conventional       2015             TotalUS
2659 conventional       2015             TotalUS
2660 conventional       2015             TotalUS
2661 conventional       2015             TotalUS
2662 conventional       2015             TotalUS
2663 conventional       2015             TotalUS
2664 conventional       2015             TotalUS
2665 conventional       2015             TotalUS
2666 conventional       2015             TotalUS
2667 conventional       2015             TotalUS
2668 conventional       2015             TotalUS
2669 conventional       2015             TotalUS
2670 conventional       2015             TotalUS
2671 conventional       2015             TotalUS
2672 conventional       2015             TotalUS
2673 conventional       2015             TotalUS
2674 conventional       2015             TotalUS
2675 conventional       2015             TotalUS
2676 conventional       2015             TotalUS
2677 conventional       2015             TotalUS
2678 conventional       2015             TotalUS
2679 conventional       2015             TotalUS
2680 conventional       2015             TotalUS
2681 conventional       2015             TotalUS
2682 conventional       2015             TotalUS
2683 conventional       2015             TotalUS
2684 conventional       2015             TotalUS
2685 conventional       2015             TotalUS
2686 conventional       2015             TotalUS
2687 conventional       2015             TotalUS
2688 conventional       2015             TotalUS
2689 conventional       2015             TotalUS
2690 conventional       2015             TotalUS
2691 conventional       2015             TotalUS
2692 conventional       2015             TotalUS
2693 conventional       2015             TotalUS
2694 conventional       2015             TotalUS
2695 conventional       2015             TotalUS
2696 conventional       2015             TotalUS
2697 conventional       2015             TotalUS
2698 conventional       2015             TotalUS
2699 conventional       2015             TotalUS
2700 conventional       2015             TotalUS
2701 conventional       2015             TotalUS
2702 conventional       2015             TotalUS
2703 conventional       2015             TotalUS
2704 conventional       2015             TotalUS
2705 conventional       2015                West
2706 conventional       2015                West
2707 conventional       2015                West
2708 conventional       2015                West
2709 conventional       2015                West
2710 conventional       2015                West
2711 conventional       2015                West
2712 conventional       2015                West
2713 conventional       2015                West
2714 conventional       2015                West
2715 conventional       2015                West
2716 conventional       2015                West
2717 conventional       2015                West
2718 conventional       2015                West
2719 conventional       2015                West
2720 conventional       2015                West
2721 conventional       2015                West
2722 conventional       2015                West
2723 conventional       2015                West
2724 conventional       2015                West
2725 conventional       2015                West
2726 conventional       2015                West
2727 conventional       2015                West
2728 conventional       2015                West
2729 conventional       2015                West
2730 conventional       2015                West
2731 conventional       2015                West
2732 conventional       2015                West
2733 conventional       2015                West
2734 conventional       2015                West
2735 conventional       2015                West
2736 conventional       2015                West
2737 conventional       2015                West
2738 conventional       2015                West
2739 conventional       2015                West
2740 conventional       2015                West
2741 conventional       2015                West
2742 conventional       2015                West
2743 conventional       2015                West
2744 conventional       2015                West
2745 conventional       2015                West
2746 conventional       2015                West
2747 conventional       2015                West
2748 conventional       2015                West
2749 conventional       2015                West
2750 conventional       2015                West
2751 conventional       2015                West
2752 conventional       2015                West
2753 conventional       2015                West
2754 conventional       2015                West
2755 conventional       2015                West
2756 conventional       2015                West
2757 conventional       2015    WestTexNewMexico
2758 conventional       2015    WestTexNewMexico
2759 conventional       2015    WestTexNewMexico
2760 conventional       2015    WestTexNewMexico
2761 conventional       2015    WestTexNewMexico
2762 conventional       2015    WestTexNewMexico
2763 conventional       2015    WestTexNewMexico
2764 conventional       2015    WestTexNewMexico
2765 conventional       2015    WestTexNewMexico
2766 conventional       2015    WestTexNewMexico
2767 conventional       2015    WestTexNewMexico
2768 conventional       2015    WestTexNewMexico
2769 conventional       2015    WestTexNewMexico
2770 conventional       2015    WestTexNewMexico
2771 conventional       2015    WestTexNewMexico
2772 conventional       2015    WestTexNewMexico
2773 conventional       2015    WestTexNewMexico
2774 conventional       2015    WestTexNewMexico
2775 conventional       2015    WestTexNewMexico
2776 conventional       2015    WestTexNewMexico
2777 conventional       2015    WestTexNewMexico
2778 conventional       2015    WestTexNewMexico
2779 conventional       2015    WestTexNewMexico
2780 conventional       2015    WestTexNewMexico
2781 conventional       2015    WestTexNewMexico
2782 conventional       2015    WestTexNewMexico
2783 conventional       2015    WestTexNewMexico
2784 conventional       2015    WestTexNewMexico
2785 conventional       2015    WestTexNewMexico
2786 conventional       2015    WestTexNewMexico
2787 conventional       2015    WestTexNewMexico
2788 conventional       2015    WestTexNewMexico
2789 conventional       2015    WestTexNewMexico
2790 conventional       2015    WestTexNewMexico
2791 conventional       2015    WestTexNewMexico
2792 conventional       2015    WestTexNewMexico
2793 conventional       2015    WestTexNewMexico
2794 conventional       2015    WestTexNewMexico
2795 conventional       2015    WestTexNewMexico
2796 conventional       2015    WestTexNewMexico
2797 conventional       2015    WestTexNewMexico
2798 conventional       2015    WestTexNewMexico
2799 conventional       2015    WestTexNewMexico
2800 conventional       2015    WestTexNewMexico
2801 conventional       2015    WestTexNewMexico
2802 conventional       2015    WestTexNewMexico
2803 conventional       2015    WestTexNewMexico
2804 conventional       2015    WestTexNewMexico
2805 conventional       2015    WestTexNewMexico
2806 conventional       2015    WestTexNewMexico
2807 conventional       2015    WestTexNewMexico
2808 conventional       2015    WestTexNewMexico
2809 conventional       2016              Albany
2810 conventional       2016              Albany
2811 conventional       2016              Albany
2812 conventional       2016              Albany
2813 conventional       2016              Albany
2814 conventional       2016              Albany
2815 conventional       2016              Albany
2816 conventional       2016              Albany
2817 conventional       2016              Albany
2818 conventional       2016              Albany
2819 conventional       2016              Albany
2820 conventional       2016              Albany
2821 conventional       2016              Albany
2822 conventional       2016              Albany
2823 conventional       2016              Albany
2824 conventional       2016              Albany
2825 conventional       2016              Albany
2826 conventional       2016              Albany
2827 conventional       2016              Albany
2828 conventional       2016              Albany
2829 conventional       2016              Albany
2830 conventional       2016              Albany
2831 conventional       2016              Albany
2832 conventional       2016              Albany
2833 conventional       2016              Albany
2834 conventional       2016              Albany
2835 conventional       2016              Albany
2836 conventional       2016              Albany
2837 conventional       2016              Albany
2838 conventional       2016              Albany
2839 conventional       2016              Albany
2840 conventional       2016              Albany
2841 conventional       2016              Albany
2842 conventional       2016              Albany
2843 conventional       2016              Albany
2844 conventional       2016              Albany
2845 conventional       2016              Albany
2846 conventional       2016              Albany
2847 conventional       2016              Albany
2848 conventional       2016              Albany
2849 conventional       2016              Albany
2850 conventional       2016              Albany
2851 conventional       2016              Albany
2852 conventional       2016              Albany
2853 conventional       2016              Albany
2854 conventional       2016              Albany
2855 conventional       2016              Albany
2856 conventional       2016              Albany
2857 conventional       2016              Albany
2858 conventional       2016              Albany
2859 conventional       2016              Albany
2860 conventional       2016              Albany
2861 conventional       2016             Atlanta
2862 conventional       2016             Atlanta
2863 conventional       2016             Atlanta
2864 conventional       2016             Atlanta
2865 conventional       2016             Atlanta
2866 conventional       2016             Atlanta
2867 conventional       2016             Atlanta
2868 conventional       2016             Atlanta
2869 conventional       2016             Atlanta
2870 conventional       2016             Atlanta
2871 conventional       2016             Atlanta
2872 conventional       2016             Atlanta
2873 conventional       2016             Atlanta
2874 conventional       2016             Atlanta
2875 conventional       2016             Atlanta
2876 conventional       2016             Atlanta
2877 conventional       2016             Atlanta
2878 conventional       2016             Atlanta
2879 conventional       2016             Atlanta
2880 conventional       2016             Atlanta
2881 conventional       2016             Atlanta
2882 conventional       2016             Atlanta
2883 conventional       2016             Atlanta
2884 conventional       2016             Atlanta
2885 conventional       2016             Atlanta
2886 conventional       2016             Atlanta
2887 conventional       2016             Atlanta
2888 conventional       2016             Atlanta
2889 conventional       2016             Atlanta
2890 conventional       2016             Atlanta
2891 conventional       2016             Atlanta
2892 conventional       2016             Atlanta
2893 conventional       2016             Atlanta
2894 conventional       2016             Atlanta
2895 conventional       2016             Atlanta
2896 conventional       2016             Atlanta
2897 conventional       2016             Atlanta
2898 conventional       2016             Atlanta
2899 conventional       2016             Atlanta
2900 conventional       2016             Atlanta
2901 conventional       2016             Atlanta
2902 conventional       2016             Atlanta
2903 conventional       2016             Atlanta
2904 conventional       2016             Atlanta
2905 conventional       2016             Atlanta
2906 conventional       2016             Atlanta
2907 conventional       2016             Atlanta
2908 conventional       2016             Atlanta
2909 conventional       2016             Atlanta
2910 conventional       2016             Atlanta
2911 conventional       2016             Atlanta
2912 conventional       2016             Atlanta
2913 conventional       2016 BaltimoreWashington
2914 conventional       2016 BaltimoreWashington
2915 conventional       2016 BaltimoreWashington
2916 conventional       2016 BaltimoreWashington
2917 conventional       2016 BaltimoreWashington
2918 conventional       2016 BaltimoreWashington
2919 conventional       2016 BaltimoreWashington
2920 conventional       2016 BaltimoreWashington
2921 conventional       2016 BaltimoreWashington
2922 conventional       2016 BaltimoreWashington
2923 conventional       2016 BaltimoreWashington
2924 conventional       2016 BaltimoreWashington
2925 conventional       2016 BaltimoreWashington
2926 conventional       2016 BaltimoreWashington
2927 conventional       2016 BaltimoreWashington
2928 conventional       2016 BaltimoreWashington
2929 conventional       2016 BaltimoreWashington
2930 conventional       2016 BaltimoreWashington
2931 conventional       2016 BaltimoreWashington
2932 conventional       2016 BaltimoreWashington
2933 conventional       2016 BaltimoreWashington
2934 conventional       2016 BaltimoreWashington
2935 conventional       2016 BaltimoreWashington
2936 conventional       2016 BaltimoreWashington
2937 conventional       2016 BaltimoreWashington
2938 conventional       2016 BaltimoreWashington
2939 conventional       2016 BaltimoreWashington
2940 conventional       2016 BaltimoreWashington
2941 conventional       2016 BaltimoreWashington
2942 conventional       2016 BaltimoreWashington
2943 conventional       2016 BaltimoreWashington
2944 conventional       2016 BaltimoreWashington
2945 conventional       2016 BaltimoreWashington
2946 conventional       2016 BaltimoreWashington
2947 conventional       2016 BaltimoreWashington
2948 conventional       2016 BaltimoreWashington
2949 conventional       2016 BaltimoreWashington
2950 conventional       2016 BaltimoreWashington
2951 conventional       2016 BaltimoreWashington
2952 conventional       2016 BaltimoreWashington
2953 conventional       2016 BaltimoreWashington
2954 conventional       2016 BaltimoreWashington
2955 conventional       2016 BaltimoreWashington
2956 conventional       2016 BaltimoreWashington
2957 conventional       2016 BaltimoreWashington
2958 conventional       2016 BaltimoreWashington
2959 conventional       2016 BaltimoreWashington
2960 conventional       2016 BaltimoreWashington
2961 conventional       2016 BaltimoreWashington
2962 conventional       2016 BaltimoreWashington
2963 conventional       2016 BaltimoreWashington
2964 conventional       2016 BaltimoreWashington
2965 conventional       2016               Boise
2966 conventional       2016               Boise
2967 conventional       2016               Boise
2968 conventional       2016               Boise
2969 conventional       2016               Boise
2970 conventional       2016               Boise
2971 conventional       2016               Boise
2972 conventional       2016               Boise
2973 conventional       2016               Boise
2974 conventional       2016               Boise
2975 conventional       2016               Boise
2976 conventional       2016               Boise
2977 conventional       2016               Boise
2978 conventional       2016               Boise
2979 conventional       2016               Boise
2980 conventional       2016               Boise
2981 conventional       2016               Boise
2982 conventional       2016               Boise
2983 conventional       2016               Boise
2984 conventional       2016               Boise
2985 conventional       2016               Boise
2986 conventional       2016               Boise
2987 conventional       2016               Boise
2988 conventional       2016               Boise
2989 conventional       2016               Boise
2990 conventional       2016               Boise
2991 conventional       2016               Boise
2992 conventional       2016               Boise
2993 conventional       2016               Boise
2994 conventional       2016               Boise
2995 conventional       2016               Boise
2996 conventional       2016               Boise
2997 conventional       2016               Boise
2998 conventional       2016               Boise
2999 conventional       2016               Boise
3000 conventional       2016               Boise
3001 conventional       2016               Boise
3002 conventional       2016               Boise
3003 conventional       2016               Boise
3004 conventional       2016               Boise
3005 conventional       2016               Boise
3006 conventional       2016               Boise
3007 conventional       2016               Boise
3008 conventional       2016               Boise
3009 conventional       2016               Boise
3010 conventional       2016               Boise
3011 conventional       2016               Boise
3012 conventional       2016               Boise
3013 conventional       2016               Boise
3014 conventional       2016               Boise
3015 conventional       2016               Boise
3016 conventional       2016               Boise
3017 conventional       2016              Boston
3018 conventional       2016              Boston
3019 conventional       2016              Boston
3020 conventional       2016              Boston
3021 conventional       2016              Boston
3022 conventional       2016              Boston
3023 conventional       2016              Boston
3024 conventional       2016              Boston
3025 conventional       2016              Boston
3026 conventional       2016              Boston
3027 conventional       2016              Boston
3028 conventional       2016              Boston
3029 conventional       2016              Boston
3030 conventional       2016              Boston
3031 conventional       2016              Boston
3032 conventional       2016              Boston
3033 conventional       2016              Boston
3034 conventional       2016              Boston
3035 conventional       2016              Boston
3036 conventional       2016              Boston
3037 conventional       2016              Boston
3038 conventional       2016              Boston
3039 conventional       2016              Boston
3040 conventional       2016              Boston
3041 conventional       2016              Boston
3042 conventional       2016              Boston
3043 conventional       2016              Boston
3044 conventional       2016              Boston
3045 conventional       2016              Boston
3046 conventional       2016              Boston
3047 conventional       2016              Boston
3048 conventional       2016              Boston
3049 conventional       2016              Boston
3050 conventional       2016              Boston
3051 conventional       2016              Boston
3052 conventional       2016              Boston
3053 conventional       2016              Boston
3054 conventional       2016              Boston
3055 conventional       2016              Boston
3056 conventional       2016              Boston
3057 conventional       2016              Boston
3058 conventional       2016              Boston
3059 conventional       2016              Boston
3060 conventional       2016              Boston
3061 conventional       2016              Boston
3062 conventional       2016              Boston
3063 conventional       2016              Boston
3064 conventional       2016              Boston
3065 conventional       2016              Boston
3066 conventional       2016              Boston
3067 conventional       2016              Boston
3068 conventional       2016              Boston
3069 conventional       2016    BuffaloRochester
3070 conventional       2016    BuffaloRochester
3071 conventional       2016    BuffaloRochester
3072 conventional       2016    BuffaloRochester
3073 conventional       2016    BuffaloRochester
3074 conventional       2016    BuffaloRochester
3075 conventional       2016    BuffaloRochester
3076 conventional       2016    BuffaloRochester
3077 conventional       2016    BuffaloRochester
3078 conventional       2016    BuffaloRochester
3079 conventional       2016    BuffaloRochester
3080 conventional       2016    BuffaloRochester
3081 conventional       2016    BuffaloRochester
3082 conventional       2016    BuffaloRochester
3083 conventional       2016    BuffaloRochester
3084 conventional       2016    BuffaloRochester
3085 conventional       2016    BuffaloRochester
3086 conventional       2016    BuffaloRochester
3087 conventional       2016    BuffaloRochester
3088 conventional       2016    BuffaloRochester
3089 conventional       2016    BuffaloRochester
3090 conventional       2016    BuffaloRochester
3091 conventional       2016    BuffaloRochester
3092 conventional       2016    BuffaloRochester
3093 conventional       2016    BuffaloRochester
3094 conventional       2016    BuffaloRochester
3095 conventional       2016    BuffaloRochester
3096 conventional       2016    BuffaloRochester
3097 conventional       2016    BuffaloRochester
3098 conventional       2016    BuffaloRochester
3099 conventional       2016    BuffaloRochester
3100 conventional       2016    BuffaloRochester
3101 conventional       2016    BuffaloRochester
3102 conventional       2016    BuffaloRochester
3103 conventional       2016    BuffaloRochester
3104 conventional       2016    BuffaloRochester
3105 conventional       2016    BuffaloRochester
3106 conventional       2016    BuffaloRochester
3107 conventional       2016    BuffaloRochester
3108 conventional       2016    BuffaloRochester
3109 conventional       2016    BuffaloRochester
3110 conventional       2016    BuffaloRochester
3111 conventional       2016    BuffaloRochester
3112 conventional       2016    BuffaloRochester
3113 conventional       2016    BuffaloRochester
3114 conventional       2016    BuffaloRochester
3115 conventional       2016    BuffaloRochester
3116 conventional       2016    BuffaloRochester
3117 conventional       2016    BuffaloRochester
3118 conventional       2016    BuffaloRochester
3119 conventional       2016    BuffaloRochester
3120 conventional       2016    BuffaloRochester
3121 conventional       2016          California
3122 conventional       2016          California
3123 conventional       2016          California
3124 conventional       2016          California
3125 conventional       2016          California
3126 conventional       2016          California
3127 conventional       2016          California
3128 conventional       2016          California
3129 conventional       2016          California
3130 conventional       2016          California
3131 conventional       2016          California
3132 conventional       2016          California
3133 conventional       2016          California
3134 conventional       2016          California
3135 conventional       2016          California
3136 conventional       2016          California
3137 conventional       2016          California
3138 conventional       2016          California
3139 conventional       2016          California
3140 conventional       2016          California
3141 conventional       2016          California
3142 conventional       2016          California
3143 conventional       2016          California
3144 conventional       2016          California
3145 conventional       2016          California
3146 conventional       2016          California
3147 conventional       2016          California
3148 conventional       2016          California
3149 conventional       2016          California
3150 conventional       2016          California
3151 conventional       2016          California
3152 conventional       2016          California
3153 conventional       2016          California
3154 conventional       2016          California
3155 conventional       2016          California
3156 conventional       2016          California
3157 conventional       2016          California
3158 conventional       2016          California
3159 conventional       2016          California
3160 conventional       2016          California
3161 conventional       2016          California
3162 conventional       2016          California
3163 conventional       2016          California
3164 conventional       2016          California
3165 conventional       2016          California
3166 conventional       2016          California
3167 conventional       2016          California
3168 conventional       2016          California
3169 conventional       2016          California
3170 conventional       2016          California
3171 conventional       2016          California
3172 conventional       2016          California
3173 conventional       2016           Charlotte
3174 conventional       2016           Charlotte
3175 conventional       2016           Charlotte
3176 conventional       2016           Charlotte
3177 conventional       2016           Charlotte
3178 conventional       2016           Charlotte
3179 conventional       2016           Charlotte
3180 conventional       2016           Charlotte
3181 conventional       2016           Charlotte
3182 conventional       2016           Charlotte
3183 conventional       2016           Charlotte
3184 conventional       2016           Charlotte
3185 conventional       2016           Charlotte
3186 conventional       2016           Charlotte
3187 conventional       2016           Charlotte
3188 conventional       2016           Charlotte
3189 conventional       2016           Charlotte
3190 conventional       2016           Charlotte
3191 conventional       2016           Charlotte
3192 conventional       2016           Charlotte
3193 conventional       2016           Charlotte
3194 conventional       2016           Charlotte
3195 conventional       2016           Charlotte
3196 conventional       2016           Charlotte
3197 conventional       2016           Charlotte
3198 conventional       2016           Charlotte
3199 conventional       2016           Charlotte
3200 conventional       2016           Charlotte
3201 conventional       2016           Charlotte
3202 conventional       2016           Charlotte
3203 conventional       2016           Charlotte
3204 conventional       2016           Charlotte
3205 conventional       2016           Charlotte
3206 conventional       2016           Charlotte
3207 conventional       2016           Charlotte
3208 conventional       2016           Charlotte
3209 conventional       2016           Charlotte
3210 conventional       2016           Charlotte
3211 conventional       2016           Charlotte
3212 conventional       2016           Charlotte
3213 conventional       2016           Charlotte
3214 conventional       2016           Charlotte
3215 conventional       2016           Charlotte
3216 conventional       2016           Charlotte
3217 conventional       2016           Charlotte
3218 conventional       2016           Charlotte
3219 conventional       2016           Charlotte
3220 conventional       2016           Charlotte
3221 conventional       2016           Charlotte
3222 conventional       2016           Charlotte
3223 conventional       2016           Charlotte
3224 conventional       2016           Charlotte
3225 conventional       2016             Chicago
3226 conventional       2016             Chicago
3227 conventional       2016             Chicago
3228 conventional       2016             Chicago
3229 conventional       2016             Chicago
3230 conventional       2016             Chicago
3231 conventional       2016             Chicago
3232 conventional       2016             Chicago
3233 conventional       2016             Chicago
3234 conventional       2016             Chicago
3235 conventional       2016             Chicago
3236 conventional       2016             Chicago
3237 conventional       2016             Chicago
3238 conventional       2016             Chicago
3239 conventional       2016             Chicago
3240 conventional       2016             Chicago
3241 conventional       2016             Chicago
3242 conventional       2016             Chicago
3243 conventional       2016             Chicago
3244 conventional       2016             Chicago
3245 conventional       2016             Chicago
3246 conventional       2016             Chicago
3247 conventional       2016             Chicago
3248 conventional       2016             Chicago
3249 conventional       2016             Chicago
3250 conventional       2016             Chicago
3251 conventional       2016             Chicago
3252 conventional       2016             Chicago
3253 conventional       2016             Chicago
3254 conventional       2016             Chicago
3255 conventional       2016             Chicago
3256 conventional       2016             Chicago
3257 conventional       2016             Chicago
3258 conventional       2016             Chicago
3259 conventional       2016             Chicago
3260 conventional       2016             Chicago
3261 conventional       2016             Chicago
3262 conventional       2016             Chicago
3263 conventional       2016             Chicago
3264 conventional       2016             Chicago
3265 conventional       2016             Chicago
3266 conventional       2016             Chicago
3267 conventional       2016             Chicago
3268 conventional       2016             Chicago
3269 conventional       2016             Chicago
3270 conventional       2016             Chicago
3271 conventional       2016             Chicago
3272 conventional       2016             Chicago
3273 conventional       2016             Chicago
3274 conventional       2016             Chicago
3275 conventional       2016             Chicago
3276 conventional       2016             Chicago
3277 conventional       2016    CincinnatiDayton
3278 conventional       2016    CincinnatiDayton
3279 conventional       2016    CincinnatiDayton
3280 conventional       2016    CincinnatiDayton
3281 conventional       2016    CincinnatiDayton
3282 conventional       2016    CincinnatiDayton
3283 conventional       2016    CincinnatiDayton
3284 conventional       2016    CincinnatiDayton
3285 conventional       2016    CincinnatiDayton
3286 conventional       2016    CincinnatiDayton
3287 conventional       2016    CincinnatiDayton
3288 conventional       2016    CincinnatiDayton
3289 conventional       2016    CincinnatiDayton
3290 conventional       2016    CincinnatiDayton
3291 conventional       2016    CincinnatiDayton
3292 conventional       2016    CincinnatiDayton
3293 conventional       2016    CincinnatiDayton
3294 conventional       2016    CincinnatiDayton
3295 conventional       2016    CincinnatiDayton
3296 conventional       2016    CincinnatiDayton
3297 conventional       2016    CincinnatiDayton
3298 conventional       2016    CincinnatiDayton
3299 conventional       2016    CincinnatiDayton
3300 conventional       2016    CincinnatiDayton
3301 conventional       2016    CincinnatiDayton
3302 conventional       2016    CincinnatiDayton
3303 conventional       2016    CincinnatiDayton
3304 conventional       2016    CincinnatiDayton
3305 conventional       2016    CincinnatiDayton
3306 conventional       2016    CincinnatiDayton
3307 conventional       2016    CincinnatiDayton
3308 conventional       2016    CincinnatiDayton
3309 conventional       2016    CincinnatiDayton
3310 conventional       2016    CincinnatiDayton
3311 conventional       2016    CincinnatiDayton
3312 conventional       2016    CincinnatiDayton
3313 conventional       2016    CincinnatiDayton
3314 conventional       2016    CincinnatiDayton
3315 conventional       2016    CincinnatiDayton
3316 conventional       2016    CincinnatiDayton
3317 conventional       2016    CincinnatiDayton
3318 conventional       2016    CincinnatiDayton
3319 conventional       2016    CincinnatiDayton
3320 conventional       2016    CincinnatiDayton
3321 conventional       2016    CincinnatiDayton
3322 conventional       2016    CincinnatiDayton
3323 conventional       2016    CincinnatiDayton
3324 conventional       2016    CincinnatiDayton
3325 conventional       2016    CincinnatiDayton
3326 conventional       2016    CincinnatiDayton
3327 conventional       2016    CincinnatiDayton
3328 conventional       2016    CincinnatiDayton
3329 conventional       2016            Columbus
3330 conventional       2016            Columbus
3331 conventional       2016            Columbus
3332 conventional       2016            Columbus
3333 conventional       2016            Columbus
3334 conventional       2016            Columbus
3335 conventional       2016            Columbus
3336 conventional       2016            Columbus
3337 conventional       2016            Columbus
3338 conventional       2016            Columbus
3339 conventional       2016            Columbus
3340 conventional       2016            Columbus
3341 conventional       2016            Columbus
3342 conventional       2016            Columbus
3343 conventional       2016            Columbus
3344 conventional       2016            Columbus
3345 conventional       2016            Columbus
3346 conventional       2016            Columbus
3347 conventional       2016            Columbus
3348 conventional       2016            Columbus
3349 conventional       2016            Columbus
3350 conventional       2016            Columbus
3351 conventional       2016            Columbus
3352 conventional       2016            Columbus
3353 conventional       2016            Columbus
3354 conventional       2016            Columbus
3355 conventional       2016            Columbus
3356 conventional       2016            Columbus
3357 conventional       2016            Columbus
3358 conventional       2016            Columbus
3359 conventional       2016            Columbus
3360 conventional       2016            Columbus
3361 conventional       2016            Columbus
3362 conventional       2016            Columbus
3363 conventional       2016            Columbus
3364 conventional       2016            Columbus
3365 conventional       2016            Columbus
3366 conventional       2016            Columbus
3367 conventional       2016            Columbus
3368 conventional       2016            Columbus
3369 conventional       2016            Columbus
3370 conventional       2016            Columbus
3371 conventional       2016            Columbus
3372 conventional       2016            Columbus
3373 conventional       2016            Columbus
3374 conventional       2016            Columbus
3375 conventional       2016            Columbus
3376 conventional       2016            Columbus
3377 conventional       2016            Columbus
3378 conventional       2016            Columbus
3379 conventional       2016            Columbus
3380 conventional       2016            Columbus
3381 conventional       2016       DallasFtWorth
3382 conventional       2016       DallasFtWorth
3383 conventional       2016       DallasFtWorth
3384 conventional       2016       DallasFtWorth
3385 conventional       2016       DallasFtWorth
3386 conventional       2016       DallasFtWorth
3387 conventional       2016       DallasFtWorth
3388 conventional       2016       DallasFtWorth
3389 conventional       2016       DallasFtWorth
3390 conventional       2016       DallasFtWorth
3391 conventional       2016       DallasFtWorth
3392 conventional       2016       DallasFtWorth
3393 conventional       2016       DallasFtWorth
3394 conventional       2016       DallasFtWorth
3395 conventional       2016       DallasFtWorth
3396 conventional       2016       DallasFtWorth
3397 conventional       2016       DallasFtWorth
3398 conventional       2016       DallasFtWorth
3399 conventional       2016       DallasFtWorth
3400 conventional       2016       DallasFtWorth
3401 conventional       2016       DallasFtWorth
3402 conventional       2016       DallasFtWorth
3403 conventional       2016       DallasFtWorth
3404 conventional       2016       DallasFtWorth
3405 conventional       2016       DallasFtWorth
3406 conventional       2016       DallasFtWorth
3407 conventional       2016       DallasFtWorth
3408 conventional       2016       DallasFtWorth
3409 conventional       2016       DallasFtWorth
3410 conventional       2016       DallasFtWorth
3411 conventional       2016       DallasFtWorth
3412 conventional       2016       DallasFtWorth
3413 conventional       2016       DallasFtWorth
3414 conventional       2016       DallasFtWorth
3415 conventional       2016       DallasFtWorth
3416 conventional       2016       DallasFtWorth
3417 conventional       2016       DallasFtWorth
3418 conventional       2016       DallasFtWorth
3419 conventional       2016       DallasFtWorth
3420 conventional       2016       DallasFtWorth
3421 conventional       2016       DallasFtWorth
3422 conventional       2016       DallasFtWorth
3423 conventional       2016       DallasFtWorth
3424 conventional       2016       DallasFtWorth
3425 conventional       2016       DallasFtWorth
3426 conventional       2016       DallasFtWorth
3427 conventional       2016       DallasFtWorth
3428 conventional       2016       DallasFtWorth
3429 conventional       2016       DallasFtWorth
3430 conventional       2016       DallasFtWorth
3431 conventional       2016       DallasFtWorth
3432 conventional       2016       DallasFtWorth
3433 conventional       2016              Denver
3434 conventional       2016              Denver
3435 conventional       2016              Denver
3436 conventional       2016              Denver
3437 conventional       2016              Denver
3438 conventional       2016              Denver
3439 conventional       2016              Denver
3440 conventional       2016              Denver
3441 conventional       2016              Denver
3442 conventional       2016              Denver
3443 conventional       2016              Denver
3444 conventional       2016              Denver
3445 conventional       2016              Denver
3446 conventional       2016              Denver
3447 conventional       2016              Denver
3448 conventional       2016              Denver
3449 conventional       2016              Denver
3450 conventional       2016              Denver
3451 conventional       2016              Denver
3452 conventional       2016              Denver
3453 conventional       2016              Denver
3454 conventional       2016              Denver
3455 conventional       2016              Denver
3456 conventional       2016              Denver
3457 conventional       2016              Denver
3458 conventional       2016              Denver
3459 conventional       2016              Denver
3460 conventional       2016              Denver
3461 conventional       2016              Denver
3462 conventional       2016              Denver
3463 conventional       2016              Denver
3464 conventional       2016              Denver
3465 conventional       2016              Denver
3466 conventional       2016              Denver
3467 conventional       2016              Denver
3468 conventional       2016              Denver
3469 conventional       2016              Denver
3470 conventional       2016              Denver
3471 conventional       2016              Denver
3472 conventional       2016              Denver
3473 conventional       2016              Denver
3474 conventional       2016              Denver
3475 conventional       2016              Denver
3476 conventional       2016              Denver
3477 conventional       2016              Denver
3478 conventional       2016              Denver
3479 conventional       2016              Denver
3480 conventional       2016              Denver
3481 conventional       2016              Denver
3482 conventional       2016              Denver
3483 conventional       2016              Denver
3484 conventional       2016              Denver
3485 conventional       2016             Detroit
3486 conventional       2016             Detroit
3487 conventional       2016             Detroit
3488 conventional       2016             Detroit
3489 conventional       2016             Detroit
3490 conventional       2016             Detroit
3491 conventional       2016             Detroit
3492 conventional       2016             Detroit
3493 conventional       2016             Detroit
3494 conventional       2016             Detroit
3495 conventional       2016             Detroit
3496 conventional       2016             Detroit
3497 conventional       2016             Detroit
3498 conventional       2016             Detroit
3499 conventional       2016             Detroit
3500 conventional       2016             Detroit
3501 conventional       2016             Detroit
3502 conventional       2016             Detroit
3503 conventional       2016             Detroit
3504 conventional       2016             Detroit
3505 conventional       2016             Detroit
3506 conventional       2016             Detroit
3507 conventional       2016             Detroit
3508 conventional       2016             Detroit
3509 conventional       2016             Detroit
3510 conventional       2016             Detroit
3511 conventional       2016             Detroit
3512 conventional       2016             Detroit
3513 conventional       2016             Detroit
3514 conventional       2016             Detroit
3515 conventional       2016             Detroit
3516 conventional       2016             Detroit
3517 conventional       2016             Detroit
3518 conventional       2016             Detroit
3519 conventional       2016             Detroit
3520 conventional       2016             Detroit
3521 conventional       2016             Detroit
3522 conventional       2016             Detroit
3523 conventional       2016             Detroit
3524 conventional       2016             Detroit
3525 conventional       2016             Detroit
3526 conventional       2016             Detroit
3527 conventional       2016             Detroit
3528 conventional       2016             Detroit
3529 conventional       2016             Detroit
3530 conventional       2016             Detroit
3531 conventional       2016             Detroit
3532 conventional       2016             Detroit
3533 conventional       2016             Detroit
3534 conventional       2016             Detroit
3535 conventional       2016             Detroit
3536 conventional       2016             Detroit
3537 conventional       2016         GrandRapids
3538 conventional       2016         GrandRapids
3539 conventional       2016         GrandRapids
3540 conventional       2016         GrandRapids
3541 conventional       2016         GrandRapids
3542 conventional       2016         GrandRapids
3543 conventional       2016         GrandRapids
3544 conventional       2016         GrandRapids
3545 conventional       2016         GrandRapids
3546 conventional       2016         GrandRapids
3547 conventional       2016         GrandRapids
3548 conventional       2016         GrandRapids
3549 conventional       2016         GrandRapids
3550 conventional       2016         GrandRapids
3551 conventional       2016         GrandRapids
3552 conventional       2016         GrandRapids
3553 conventional       2016         GrandRapids
3554 conventional       2016         GrandRapids
3555 conventional       2016         GrandRapids
3556 conventional       2016         GrandRapids
3557 conventional       2016         GrandRapids
3558 conventional       2016         GrandRapids
3559 conventional       2016         GrandRapids
3560 conventional       2016         GrandRapids
3561 conventional       2016         GrandRapids
3562 conventional       2016         GrandRapids
3563 conventional       2016         GrandRapids
3564 conventional       2016         GrandRapids
3565 conventional       2016         GrandRapids
3566 conventional       2016         GrandRapids
3567 conventional       2016         GrandRapids
3568 conventional       2016         GrandRapids
3569 conventional       2016         GrandRapids
3570 conventional       2016         GrandRapids
3571 conventional       2016         GrandRapids
3572 conventional       2016         GrandRapids
3573 conventional       2016         GrandRapids
3574 conventional       2016         GrandRapids
3575 conventional       2016         GrandRapids
3576 conventional       2016         GrandRapids
3577 conventional       2016         GrandRapids
3578 conventional       2016         GrandRapids
3579 conventional       2016         GrandRapids
3580 conventional       2016         GrandRapids
3581 conventional       2016         GrandRapids
3582 conventional       2016         GrandRapids
3583 conventional       2016         GrandRapids
3584 conventional       2016         GrandRapids
3585 conventional       2016         GrandRapids
3586 conventional       2016         GrandRapids
3587 conventional       2016         GrandRapids
3588 conventional       2016         GrandRapids
3589 conventional       2016          GreatLakes
3590 conventional       2016          GreatLakes
3591 conventional       2016          GreatLakes
3592 conventional       2016          GreatLakes
3593 conventional       2016          GreatLakes
3594 conventional       2016          GreatLakes
3595 conventional       2016          GreatLakes
3596 conventional       2016          GreatLakes
3597 conventional       2016          GreatLakes
3598 conventional       2016          GreatLakes
3599 conventional       2016          GreatLakes
3600 conventional       2016          GreatLakes
3601 conventional       2016          GreatLakes
3602 conventional       2016          GreatLakes
3603 conventional       2016          GreatLakes
3604 conventional       2016          GreatLakes
3605 conventional       2016          GreatLakes
3606 conventional       2016          GreatLakes
3607 conventional       2016          GreatLakes
3608 conventional       2016          GreatLakes
3609 conventional       2016          GreatLakes
3610 conventional       2016          GreatLakes
3611 conventional       2016          GreatLakes
3612 conventional       2016          GreatLakes
3613 conventional       2016          GreatLakes
3614 conventional       2016          GreatLakes
3615 conventional       2016          GreatLakes
3616 conventional       2016          GreatLakes
3617 conventional       2016          GreatLakes
3618 conventional       2016          GreatLakes
3619 conventional       2016          GreatLakes
3620 conventional       2016          GreatLakes
3621 conventional       2016          GreatLakes
3622 conventional       2016          GreatLakes
3623 conventional       2016          GreatLakes
3624 conventional       2016          GreatLakes
3625 conventional       2016          GreatLakes
3626 conventional       2016          GreatLakes
3627 conventional       2016          GreatLakes
3628 conventional       2016          GreatLakes
3629 conventional       2016          GreatLakes
3630 conventional       2016          GreatLakes
3631 conventional       2016          GreatLakes
3632 conventional       2016          GreatLakes
3633 conventional       2016          GreatLakes
3634 conventional       2016          GreatLakes
3635 conventional       2016          GreatLakes
3636 conventional       2016          GreatLakes
3637 conventional       2016          GreatLakes
3638 conventional       2016          GreatLakes
3639 conventional       2016          GreatLakes
3640 conventional       2016          GreatLakes
3641 conventional       2016  HarrisburgScranton
3642 conventional       2016  HarrisburgScranton
3643 conventional       2016  HarrisburgScranton
3644 conventional       2016  HarrisburgScranton
3645 conventional       2016  HarrisburgScranton
3646 conventional       2016  HarrisburgScranton
3647 conventional       2016  HarrisburgScranton
3648 conventional       2016  HarrisburgScranton
3649 conventional       2016  HarrisburgScranton
3650 conventional       2016  HarrisburgScranton
3651 conventional       2016  HarrisburgScranton
3652 conventional       2016  HarrisburgScranton
3653 conventional       2016  HarrisburgScranton
3654 conventional       2016  HarrisburgScranton
3655 conventional       2016  HarrisburgScranton
3656 conventional       2016  HarrisburgScranton
3657 conventional       2016  HarrisburgScranton
3658 conventional       2016  HarrisburgScranton
3659 conventional       2016  HarrisburgScranton
3660 conventional       2016  HarrisburgScranton
3661 conventional       2016  HarrisburgScranton
3662 conventional       2016  HarrisburgScranton
3663 conventional       2016  HarrisburgScranton
3664 conventional       2016  HarrisburgScranton
3665 conventional       2016  HarrisburgScranton
3666 conventional       2016  HarrisburgScranton
3667 conventional       2016  HarrisburgScranton
3668 conventional       2016  HarrisburgScranton
3669 conventional       2016  HarrisburgScranton
3670 conventional       2016  HarrisburgScranton
3671 conventional       2016  HarrisburgScranton
3672 conventional       2016  HarrisburgScranton
3673 conventional       2016  HarrisburgScranton
3674 conventional       2016  HarrisburgScranton
3675 conventional       2016  HarrisburgScranton
3676 conventional       2016  HarrisburgScranton
3677 conventional       2016  HarrisburgScranton
3678 conventional       2016  HarrisburgScranton
3679 conventional       2016  HarrisburgScranton
3680 conventional       2016  HarrisburgScranton
3681 conventional       2016  HarrisburgScranton
3682 conventional       2016  HarrisburgScranton
3683 conventional       2016  HarrisburgScranton
3684 conventional       2016  HarrisburgScranton
3685 conventional       2016  HarrisburgScranton
3686 conventional       2016  HarrisburgScranton
3687 conventional       2016  HarrisburgScranton
3688 conventional       2016  HarrisburgScranton
3689 conventional       2016  HarrisburgScranton
3690 conventional       2016  HarrisburgScranton
3691 conventional       2016  HarrisburgScranton
3692 conventional       2016  HarrisburgScranton
3693 conventional       2016 HartfordSpringfield
3694 conventional       2016 HartfordSpringfield
3695 conventional       2016 HartfordSpringfield
3696 conventional       2016 HartfordSpringfield
3697 conventional       2016 HartfordSpringfield
3698 conventional       2016 HartfordSpringfield
3699 conventional       2016 HartfordSpringfield
3700 conventional       2016 HartfordSpringfield
3701 conventional       2016 HartfordSpringfield
3702 conventional       2016 HartfordSpringfield
3703 conventional       2016 HartfordSpringfield
3704 conventional       2016 HartfordSpringfield
3705 conventional       2016 HartfordSpringfield
3706 conventional       2016 HartfordSpringfield
3707 conventional       2016 HartfordSpringfield
3708 conventional       2016 HartfordSpringfield
3709 conventional       2016 HartfordSpringfield
3710 conventional       2016 HartfordSpringfield
3711 conventional       2016 HartfordSpringfield
3712 conventional       2016 HartfordSpringfield
3713 conventional       2016 HartfordSpringfield
3714 conventional       2016 HartfordSpringfield
3715 conventional       2016 HartfordSpringfield
3716 conventional       2016 HartfordSpringfield
3717 conventional       2016 HartfordSpringfield
3718 conventional       2016 HartfordSpringfield
3719 conventional       2016 HartfordSpringfield
3720 conventional       2016 HartfordSpringfield
3721 conventional       2016 HartfordSpringfield
3722 conventional       2016 HartfordSpringfield
3723 conventional       2016 HartfordSpringfield
3724 conventional       2016 HartfordSpringfield
3725 conventional       2016 HartfordSpringfield
3726 conventional       2016 HartfordSpringfield
3727 conventional       2016 HartfordSpringfield
3728 conventional       2016 HartfordSpringfield
3729 conventional       2016 HartfordSpringfield
3730 conventional       2016 HartfordSpringfield
3731 conventional       2016 HartfordSpringfield
3732 conventional       2016 HartfordSpringfield
3733 conventional       2016 HartfordSpringfield
3734 conventional       2016 HartfordSpringfield
3735 conventional       2016 HartfordSpringfield
3736 conventional       2016 HartfordSpringfield
3737 conventional       2016 HartfordSpringfield
3738 conventional       2016 HartfordSpringfield
3739 conventional       2016 HartfordSpringfield
3740 conventional       2016 HartfordSpringfield
3741 conventional       2016 HartfordSpringfield
3742 conventional       2016 HartfordSpringfield
3743 conventional       2016 HartfordSpringfield
3744 conventional       2016 HartfordSpringfield
3745 conventional       2016             Houston
3746 conventional       2016             Houston
3747 conventional       2016             Houston
3748 conventional       2016             Houston
3749 conventional       2016             Houston
3750 conventional       2016             Houston
3751 conventional       2016             Houston
3752 conventional       2016             Houston
3753 conventional       2016             Houston
3754 conventional       2016             Houston
3755 conventional       2016             Houston
3756 conventional       2016             Houston
3757 conventional       2016             Houston
3758 conventional       2016             Houston
3759 conventional       2016             Houston
3760 conventional       2016             Houston
3761 conventional       2016             Houston
3762 conventional       2016             Houston
3763 conventional       2016             Houston
3764 conventional       2016             Houston
3765 conventional       2016             Houston
3766 conventional       2016             Houston
3767 conventional       2016             Houston
3768 conventional       2016             Houston
3769 conventional       2016             Houston
3770 conventional       2016             Houston
3771 conventional       2016             Houston
3772 conventional       2016             Houston
3773 conventional       2016             Houston
3774 conventional       2016             Houston
3775 conventional       2016             Houston
3776 conventional       2016             Houston
3777 conventional       2016             Houston
3778 conventional       2016             Houston
3779 conventional       2016             Houston
3780 conventional       2016             Houston
3781 conventional       2016             Houston
3782 conventional       2016             Houston
3783 conventional       2016             Houston
3784 conventional       2016             Houston
3785 conventional       2016             Houston
3786 conventional       2016             Houston
3787 conventional       2016             Houston
3788 conventional       2016             Houston
3789 conventional       2016             Houston
3790 conventional       2016             Houston
3791 conventional       2016             Houston
3792 conventional       2016             Houston
3793 conventional       2016             Houston
3794 conventional       2016             Houston
3795 conventional       2016             Houston
3796 conventional       2016             Houston
3797 conventional       2016        Indianapolis
3798 conventional       2016        Indianapolis
3799 conventional       2016        Indianapolis
3800 conventional       2016        Indianapolis
3801 conventional       2016        Indianapolis
3802 conventional       2016        Indianapolis
3803 conventional       2016        Indianapolis
3804 conventional       2016        Indianapolis
3805 conventional       2016        Indianapolis
3806 conventional       2016        Indianapolis
3807 conventional       2016        Indianapolis
3808 conventional       2016        Indianapolis
3809 conventional       2016        Indianapolis
3810 conventional       2016        Indianapolis
3811 conventional       2016        Indianapolis
3812 conventional       2016        Indianapolis
3813 conventional       2016        Indianapolis
3814 conventional       2016        Indianapolis
3815 conventional       2016        Indianapolis
3816 conventional       2016        Indianapolis
3817 conventional       2016        Indianapolis
3818 conventional       2016        Indianapolis
3819 conventional       2016        Indianapolis
3820 conventional       2016        Indianapolis
3821 conventional       2016        Indianapolis
3822 conventional       2016        Indianapolis
3823 conventional       2016        Indianapolis
3824 conventional       2016        Indianapolis
3825 conventional       2016        Indianapolis
3826 conventional       2016        Indianapolis
3827 conventional       2016        Indianapolis
3828 conventional       2016        Indianapolis
3829 conventional       2016        Indianapolis
3830 conventional       2016        Indianapolis
3831 conventional       2016        Indianapolis
3832 conventional       2016        Indianapolis
3833 conventional       2016        Indianapolis
3834 conventional       2016        Indianapolis
3835 conventional       2016        Indianapolis
3836 conventional       2016        Indianapolis
3837 conventional       2016        Indianapolis
3838 conventional       2016        Indianapolis
3839 conventional       2016        Indianapolis
3840 conventional       2016        Indianapolis
3841 conventional       2016        Indianapolis
3842 conventional       2016        Indianapolis
3843 conventional       2016        Indianapolis
3844 conventional       2016        Indianapolis
3845 conventional       2016        Indianapolis
3846 conventional       2016        Indianapolis
3847 conventional       2016        Indianapolis
3848 conventional       2016        Indianapolis
3849 conventional       2016        Jacksonville
3850 conventional       2016        Jacksonville
3851 conventional       2016        Jacksonville
3852 conventional       2016        Jacksonville
3853 conventional       2016        Jacksonville
3854 conventional       2016        Jacksonville
3855 conventional       2016        Jacksonville
3856 conventional       2016        Jacksonville
3857 conventional       2016        Jacksonville
3858 conventional       2016        Jacksonville
3859 conventional       2016        Jacksonville
3860 conventional       2016        Jacksonville
3861 conventional       2016        Jacksonville
3862 conventional       2016        Jacksonville
3863 conventional       2016        Jacksonville
3864 conventional       2016        Jacksonville
3865 conventional       2016        Jacksonville
3866 conventional       2016        Jacksonville
3867 conventional       2016        Jacksonville
3868 conventional       2016        Jacksonville
3869 conventional       2016        Jacksonville
3870 conventional       2016        Jacksonville
3871 conventional       2016        Jacksonville
3872 conventional       2016        Jacksonville
3873 conventional       2016        Jacksonville
3874 conventional       2016        Jacksonville
3875 conventional       2016        Jacksonville
3876 conventional       2016        Jacksonville
3877 conventional       2016        Jacksonville
3878 conventional       2016        Jacksonville
3879 conventional       2016        Jacksonville
3880 conventional       2016        Jacksonville
3881 conventional       2016        Jacksonville
3882 conventional       2016        Jacksonville
3883 conventional       2016        Jacksonville
3884 conventional       2016        Jacksonville
3885 conventional       2016        Jacksonville
3886 conventional       2016        Jacksonville
3887 conventional       2016        Jacksonville
3888 conventional       2016        Jacksonville
3889 conventional       2016        Jacksonville
3890 conventional       2016        Jacksonville
3891 conventional       2016        Jacksonville
3892 conventional       2016        Jacksonville
3893 conventional       2016        Jacksonville
3894 conventional       2016        Jacksonville
3895 conventional       2016        Jacksonville
3896 conventional       2016        Jacksonville
3897 conventional       2016        Jacksonville
3898 conventional       2016        Jacksonville
3899 conventional       2016        Jacksonville
3900 conventional       2016        Jacksonville
3901 conventional       2016            LasVegas
3902 conventional       2016            LasVegas
3903 conventional       2016            LasVegas
3904 conventional       2016            LasVegas
3905 conventional       2016            LasVegas
3906 conventional       2016            LasVegas
3907 conventional       2016            LasVegas
3908 conventional       2016            LasVegas
3909 conventional       2016            LasVegas
3910 conventional       2016            LasVegas
3911 conventional       2016            LasVegas
3912 conventional       2016            LasVegas
3913 conventional       2016            LasVegas
3914 conventional       2016            LasVegas
3915 conventional       2016            LasVegas
3916 conventional       2016            LasVegas
3917 conventional       2016            LasVegas
3918 conventional       2016            LasVegas
3919 conventional       2016            LasVegas
3920 conventional       2016            LasVegas
3921 conventional       2016            LasVegas
3922 conventional       2016            LasVegas
3923 conventional       2016            LasVegas
3924 conventional       2016            LasVegas
3925 conventional       2016            LasVegas
3926 conventional       2016            LasVegas
3927 conventional       2016            LasVegas
3928 conventional       2016            LasVegas
3929 conventional       2016            LasVegas
3930 conventional       2016            LasVegas
3931 conventional       2016            LasVegas
3932 conventional       2016            LasVegas
3933 conventional       2016            LasVegas
3934 conventional       2016            LasVegas
3935 conventional       2016            LasVegas
3936 conventional       2016            LasVegas
3937 conventional       2016            LasVegas
3938 conventional       2016            LasVegas
3939 conventional       2016            LasVegas
3940 conventional       2016            LasVegas
3941 conventional       2016            LasVegas
3942 conventional       2016            LasVegas
3943 conventional       2016            LasVegas
3944 conventional       2016            LasVegas
3945 conventional       2016            LasVegas
3946 conventional       2016            LasVegas
3947 conventional       2016            LasVegas
3948 conventional       2016            LasVegas
3949 conventional       2016            LasVegas
3950 conventional       2016            LasVegas
3951 conventional       2016            LasVegas
3952 conventional       2016            LasVegas
3953 conventional       2016          LosAngeles
3954 conventional       2016          LosAngeles
3955 conventional       2016          LosAngeles
3956 conventional       2016          LosAngeles
3957 conventional       2016          LosAngeles
3958 conventional       2016          LosAngeles
3959 conventional       2016          LosAngeles
3960 conventional       2016          LosAngeles
3961 conventional       2016          LosAngeles
3962 conventional       2016          LosAngeles
3963 conventional       2016          LosAngeles
3964 conventional       2016          LosAngeles
3965 conventional       2016          LosAngeles
3966 conventional       2016          LosAngeles
3967 conventional       2016          LosAngeles
3968 conventional       2016          LosAngeles
3969 conventional       2016          LosAngeles
3970 conventional       2016          LosAngeles
3971 conventional       2016          LosAngeles
3972 conventional       2016          LosAngeles
3973 conventional       2016          LosAngeles
3974 conventional       2016          LosAngeles
3975 conventional       2016          LosAngeles
3976 conventional       2016          LosAngeles
3977 conventional       2016          LosAngeles
3978 conventional       2016          LosAngeles
3979 conventional       2016          LosAngeles
3980 conventional       2016          LosAngeles
3981 conventional       2016          LosAngeles
3982 conventional       2016          LosAngeles
3983 conventional       2016          LosAngeles
3984 conventional       2016          LosAngeles
3985 conventional       2016          LosAngeles
3986 conventional       2016          LosAngeles
3987 conventional       2016          LosAngeles
3988 conventional       2016          LosAngeles
3989 conventional       2016          LosAngeles
3990 conventional       2016          LosAngeles
3991 conventional       2016          LosAngeles
3992 conventional       2016          LosAngeles
3993 conventional       2016          LosAngeles
3994 conventional       2016          LosAngeles
3995 conventional       2016          LosAngeles
3996 conventional       2016          LosAngeles
3997 conventional       2016          LosAngeles
3998 conventional       2016          LosAngeles
3999 conventional       2016          LosAngeles
4000 conventional       2016          LosAngeles
4001 conventional       2016          LosAngeles
4002 conventional       2016          LosAngeles
4003 conventional       2016          LosAngeles
4004 conventional       2016          LosAngeles
4005 conventional       2016          Louisville
4006 conventional       2016          Louisville
4007 conventional       2016          Louisville
4008 conventional       2016          Louisville
4009 conventional       2016          Louisville
4010 conventional       2016          Louisville
4011 conventional       2016          Louisville
4012 conventional       2016          Louisville
4013 conventional       2016          Louisville
4014 conventional       2016          Louisville
4015 conventional       2016          Louisville
4016 conventional       2016          Louisville
4017 conventional       2016          Louisville
4018 conventional       2016          Louisville
4019 conventional       2016          Louisville
4020 conventional       2016          Louisville
4021 conventional       2016          Louisville
4022 conventional       2016          Louisville
4023 conventional       2016          Louisville
4024 conventional       2016          Louisville
4025 conventional       2016          Louisville
4026 conventional       2016          Louisville
4027 conventional       2016          Louisville
4028 conventional       2016          Louisville
4029 conventional       2016          Louisville
4030 conventional       2016          Louisville
4031 conventional       2016          Louisville
4032 conventional       2016          Louisville
4033 conventional       2016          Louisville
4034 conventional       2016          Louisville
4035 conventional       2016          Louisville
4036 conventional       2016          Louisville
4037 conventional       2016          Louisville
4038 conventional       2016          Louisville
4039 conventional       2016          Louisville
4040 conventional       2016          Louisville
4041 conventional       2016          Louisville
4042 conventional       2016          Louisville
4043 conventional       2016          Louisville
4044 conventional       2016          Louisville
4045 conventional       2016          Louisville
4046 conventional       2016          Louisville
4047 conventional       2016          Louisville
4048 conventional       2016          Louisville
4049 conventional       2016          Louisville
4050 conventional       2016          Louisville
4051 conventional       2016          Louisville
4052 conventional       2016          Louisville
4053 conventional       2016          Louisville
4054 conventional       2016          Louisville
4055 conventional       2016          Louisville
4056 conventional       2016          Louisville
4057 conventional       2016   MiamiFtLauderdale
4058 conventional       2016   MiamiFtLauderdale
4059 conventional       2016   MiamiFtLauderdale
4060 conventional       2016   MiamiFtLauderdale
4061 conventional       2016   MiamiFtLauderdale
4062 conventional       2016   MiamiFtLauderdale
4063 conventional       2016   MiamiFtLauderdale
4064 conventional       2016   MiamiFtLauderdale
4065 conventional       2016   MiamiFtLauderdale
4066 conventional       2016   MiamiFtLauderdale
4067 conventional       2016   MiamiFtLauderdale
4068 conventional       2016   MiamiFtLauderdale
4069 conventional       2016   MiamiFtLauderdale
4070 conventional       2016   MiamiFtLauderdale
4071 conventional       2016   MiamiFtLauderdale
4072 conventional       2016   MiamiFtLauderdale
4073 conventional       2016   MiamiFtLauderdale
4074 conventional       2016   MiamiFtLauderdale
4075 conventional       2016   MiamiFtLauderdale
4076 conventional       2016   MiamiFtLauderdale
4077 conventional       2016   MiamiFtLauderdale
4078 conventional       2016   MiamiFtLauderdale
4079 conventional       2016   MiamiFtLauderdale
4080 conventional       2016   MiamiFtLauderdale
4081 conventional       2016   MiamiFtLauderdale
4082 conventional       2016   MiamiFtLauderdale
4083 conventional       2016   MiamiFtLauderdale
4084 conventional       2016   MiamiFtLauderdale
4085 conventional       2016   MiamiFtLauderdale
4086 conventional       2016   MiamiFtLauderdale
4087 conventional       2016   MiamiFtLauderdale
4088 conventional       2016   MiamiFtLauderdale
4089 conventional       2016   MiamiFtLauderdale
4090 conventional       2016   MiamiFtLauderdale
4091 conventional       2016   MiamiFtLauderdale
4092 conventional       2016   MiamiFtLauderdale
4093 conventional       2016   MiamiFtLauderdale
4094 conventional       2016   MiamiFtLauderdale
4095 conventional       2016   MiamiFtLauderdale
4096 conventional       2016   MiamiFtLauderdale
4097 conventional       2016   MiamiFtLauderdale
4098 conventional       2016   MiamiFtLauderdale
4099 conventional       2016   MiamiFtLauderdale
4100 conventional       2016   MiamiFtLauderdale
4101 conventional       2016   MiamiFtLauderdale
4102 conventional       2016   MiamiFtLauderdale
4103 conventional       2016   MiamiFtLauderdale
4104 conventional       2016   MiamiFtLauderdale
4105 conventional       2016   MiamiFtLauderdale
4106 conventional       2016   MiamiFtLauderdale
4107 conventional       2016   MiamiFtLauderdale
4108 conventional       2016   MiamiFtLauderdale
4109 conventional       2016            Midsouth
4110 conventional       2016            Midsouth
4111 conventional       2016            Midsouth
4112 conventional       2016            Midsouth
4113 conventional       2016            Midsouth
4114 conventional       2016            Midsouth
4115 conventional       2016            Midsouth
4116 conventional       2016            Midsouth
4117 conventional       2016            Midsouth
4118 conventional       2016            Midsouth
4119 conventional       2016            Midsouth
4120 conventional       2016            Midsouth
4121 conventional       2016            Midsouth
4122 conventional       2016            Midsouth
4123 conventional       2016            Midsouth
4124 conventional       2016            Midsouth
4125 conventional       2016            Midsouth
4126 conventional       2016            Midsouth
4127 conventional       2016            Midsouth
4128 conventional       2016            Midsouth
4129 conventional       2016            Midsouth
4130 conventional       2016            Midsouth
4131 conventional       2016            Midsouth
4132 conventional       2016            Midsouth
4133 conventional       2016            Midsouth
4134 conventional       2016            Midsouth
4135 conventional       2016            Midsouth
4136 conventional       2016            Midsouth
4137 conventional       2016            Midsouth
4138 conventional       2016            Midsouth
4139 conventional       2016            Midsouth
4140 conventional       2016            Midsouth
4141 conventional       2016            Midsouth
4142 conventional       2016            Midsouth
4143 conventional       2016            Midsouth
4144 conventional       2016            Midsouth
4145 conventional       2016            Midsouth
4146 conventional       2016            Midsouth
4147 conventional       2016            Midsouth
4148 conventional       2016            Midsouth
4149 conventional       2016            Midsouth
4150 conventional       2016            Midsouth
4151 conventional       2016            Midsouth
4152 conventional       2016            Midsouth
4153 conventional       2016            Midsouth
4154 conventional       2016            Midsouth
4155 conventional       2016            Midsouth
4156 conventional       2016            Midsouth
4157 conventional       2016            Midsouth
4158 conventional       2016            Midsouth
4159 conventional       2016            Midsouth
4160 conventional       2016            Midsouth
4161 conventional       2016           Nashville
4162 conventional       2016           Nashville
4163 conventional       2016           Nashville
4164 conventional       2016           Nashville
4165 conventional       2016           Nashville
4166 conventional       2016           Nashville
4167 conventional       2016           Nashville
4168 conventional       2016           Nashville
4169 conventional       2016           Nashville
4170 conventional       2016           Nashville
4171 conventional       2016           Nashville
4172 conventional       2016           Nashville
4173 conventional       2016           Nashville
4174 conventional       2016           Nashville
4175 conventional       2016           Nashville
4176 conventional       2016           Nashville
4177 conventional       2016           Nashville
4178 conventional       2016           Nashville
4179 conventional       2016           Nashville
4180 conventional       2016           Nashville
4181 conventional       2016           Nashville
4182 conventional       2016           Nashville
4183 conventional       2016           Nashville
4184 conventional       2016           Nashville
4185 conventional       2016           Nashville
4186 conventional       2016           Nashville
4187 conventional       2016           Nashville
4188 conventional       2016           Nashville
4189 conventional       2016           Nashville
4190 conventional       2016           Nashville
4191 conventional       2016           Nashville
4192 conventional       2016           Nashville
4193 conventional       2016           Nashville
4194 conventional       2016           Nashville
4195 conventional       2016           Nashville
4196 conventional       2016           Nashville
4197 conventional       2016           Nashville
4198 conventional       2016           Nashville
4199 conventional       2016           Nashville
4200 conventional       2016           Nashville
4201 conventional       2016           Nashville
4202 conventional       2016           Nashville
4203 conventional       2016           Nashville
4204 conventional       2016           Nashville
4205 conventional       2016           Nashville
4206 conventional       2016           Nashville
4207 conventional       2016           Nashville
4208 conventional       2016           Nashville
4209 conventional       2016           Nashville
4210 conventional       2016           Nashville
4211 conventional       2016           Nashville
4212 conventional       2016           Nashville
4213 conventional       2016    NewOrleansMobile
4214 conventional       2016    NewOrleansMobile
4215 conventional       2016    NewOrleansMobile
4216 conventional       2016    NewOrleansMobile
4217 conventional       2016    NewOrleansMobile
4218 conventional       2016    NewOrleansMobile
4219 conventional       2016    NewOrleansMobile
4220 conventional       2016    NewOrleansMobile
4221 conventional       2016    NewOrleansMobile
4222 conventional       2016    NewOrleansMobile
4223 conventional       2016    NewOrleansMobile
4224 conventional       2016    NewOrleansMobile
4225 conventional       2016    NewOrleansMobile
4226 conventional       2016    NewOrleansMobile
4227 conventional       2016    NewOrleansMobile
4228 conventional       2016    NewOrleansMobile
4229 conventional       2016    NewOrleansMobile
4230 conventional       2016    NewOrleansMobile
4231 conventional       2016    NewOrleansMobile
4232 conventional       2016    NewOrleansMobile
4233 conventional       2016    NewOrleansMobile
4234 conventional       2016    NewOrleansMobile
4235 conventional       2016    NewOrleansMobile
4236 conventional       2016    NewOrleansMobile
4237 conventional       2016    NewOrleansMobile
4238 conventional       2016    NewOrleansMobile
4239 conventional       2016    NewOrleansMobile
4240 conventional       2016    NewOrleansMobile
4241 conventional       2016    NewOrleansMobile
4242 conventional       2016    NewOrleansMobile
4243 conventional       2016    NewOrleansMobile
4244 conventional       2016    NewOrleansMobile
4245 conventional       2016    NewOrleansMobile
4246 conventional       2016    NewOrleansMobile
4247 conventional       2016    NewOrleansMobile
4248 conventional       2016    NewOrleansMobile
4249 conventional       2016    NewOrleansMobile
4250 conventional       2016    NewOrleansMobile
4251 conventional       2016    NewOrleansMobile
4252 conventional       2016    NewOrleansMobile
4253 conventional       2016    NewOrleansMobile
4254 conventional       2016    NewOrleansMobile
4255 conventional       2016    NewOrleansMobile
4256 conventional       2016    NewOrleansMobile
4257 conventional       2016    NewOrleansMobile
4258 conventional       2016    NewOrleansMobile
4259 conventional       2016    NewOrleansMobile
4260 conventional       2016    NewOrleansMobile
4261 conventional       2016    NewOrleansMobile
4262 conventional       2016    NewOrleansMobile
4263 conventional       2016    NewOrleansMobile
4264 conventional       2016    NewOrleansMobile
4265 conventional       2016             NewYork
4266 conventional       2016             NewYork
4267 conventional       2016             NewYork
4268 conventional       2016             NewYork
4269 conventional       2016             NewYork
4270 conventional       2016             NewYork
4271 conventional       2016             NewYork
4272 conventional       2016             NewYork
4273 conventional       2016             NewYork
4274 conventional       2016             NewYork
4275 conventional       2016             NewYork
4276 conventional       2016             NewYork
4277 conventional       2016             NewYork
4278 conventional       2016             NewYork
4279 conventional       2016             NewYork
4280 conventional       2016             NewYork
4281 conventional       2016             NewYork
4282 conventional       2016             NewYork
4283 conventional       2016             NewYork
4284 conventional       2016             NewYork
4285 conventional       2016             NewYork
4286 conventional       2016             NewYork
4287 conventional       2016             NewYork
4288 conventional       2016             NewYork
4289 conventional       2016             NewYork
4290 conventional       2016             NewYork
4291 conventional       2016             NewYork
4292 conventional       2016             NewYork
4293 conventional       2016             NewYork
4294 conventional       2016             NewYork
4295 conventional       2016             NewYork
4296 conventional       2016             NewYork
4297 conventional       2016             NewYork
4298 conventional       2016             NewYork
4299 conventional       2016             NewYork
4300 conventional       2016             NewYork
4301 conventional       2016             NewYork
4302 conventional       2016             NewYork
4303 conventional       2016             NewYork
4304 conventional       2016             NewYork
4305 conventional       2016             NewYork
4306 conventional       2016             NewYork
4307 conventional       2016             NewYork
4308 conventional       2016             NewYork
4309 conventional       2016             NewYork
4310 conventional       2016             NewYork
4311 conventional       2016             NewYork
4312 conventional       2016             NewYork
4313 conventional       2016             NewYork
4314 conventional       2016             NewYork
4315 conventional       2016             NewYork
4316 conventional       2016             NewYork
4317 conventional       2016           Northeast
4318 conventional       2016           Northeast
4319 conventional       2016           Northeast
4320 conventional       2016           Northeast
4321 conventional       2016           Northeast
4322 conventional       2016           Northeast
4323 conventional       2016           Northeast
4324 conventional       2016           Northeast
4325 conventional       2016           Northeast
4326 conventional       2016           Northeast
4327 conventional       2016           Northeast
4328 conventional       2016           Northeast
4329 conventional       2016           Northeast
4330 conventional       2016           Northeast
4331 conventional       2016           Northeast
4332 conventional       2016           Northeast
4333 conventional       2016           Northeast
4334 conventional       2016           Northeast
4335 conventional       2016           Northeast
4336 conventional       2016           Northeast
4337 conventional       2016           Northeast
4338 conventional       2016           Northeast
4339 conventional       2016           Northeast
4340 conventional       2016           Northeast
4341 conventional       2016           Northeast
4342 conventional       2016           Northeast
4343 conventional       2016           Northeast
4344 conventional       2016           Northeast
4345 conventional       2016           Northeast
4346 conventional       2016           Northeast
4347 conventional       2016           Northeast
4348 conventional       2016           Northeast
4349 conventional       2016           Northeast
4350 conventional       2016           Northeast
4351 conventional       2016           Northeast
4352 conventional       2016           Northeast
4353 conventional       2016           Northeast
4354 conventional       2016           Northeast
4355 conventional       2016           Northeast
4356 conventional       2016           Northeast
4357 conventional       2016           Northeast
4358 conventional       2016           Northeast
4359 conventional       2016           Northeast
4360 conventional       2016           Northeast
4361 conventional       2016           Northeast
4362 conventional       2016           Northeast
4363 conventional       2016           Northeast
4364 conventional       2016           Northeast
4365 conventional       2016           Northeast
4366 conventional       2016           Northeast
4367 conventional       2016           Northeast
4368 conventional       2016           Northeast
4369 conventional       2016  NorthernNewEngland
4370 conventional       2016  NorthernNewEngland
4371 conventional       2016  NorthernNewEngland
4372 conventional       2016  NorthernNewEngland
4373 conventional       2016  NorthernNewEngland
4374 conventional       2016  NorthernNewEngland
4375 conventional       2016  NorthernNewEngland
4376 conventional       2016  NorthernNewEngland
4377 conventional       2016  NorthernNewEngland
4378 conventional       2016  NorthernNewEngland
4379 conventional       2016  NorthernNewEngland
4380 conventional       2016  NorthernNewEngland
4381 conventional       2016  NorthernNewEngland
4382 conventional       2016  NorthernNewEngland
4383 conventional       2016  NorthernNewEngland
4384 conventional       2016  NorthernNewEngland
4385 conventional       2016  NorthernNewEngland
4386 conventional       2016  NorthernNewEngland
4387 conventional       2016  NorthernNewEngland
4388 conventional       2016  NorthernNewEngland
4389 conventional       2016  NorthernNewEngland
4390 conventional       2016  NorthernNewEngland
4391 conventional       2016  NorthernNewEngland
4392 conventional       2016  NorthernNewEngland
4393 conventional       2016  NorthernNewEngland
4394 conventional       2016  NorthernNewEngland
4395 conventional       2016  NorthernNewEngland
4396 conventional       2016  NorthernNewEngland
4397 conventional       2016  NorthernNewEngland
4398 conventional       2016  NorthernNewEngland
4399 conventional       2016  NorthernNewEngland
4400 conventional       2016  NorthernNewEngland
4401 conventional       2016  NorthernNewEngland
4402 conventional       2016  NorthernNewEngland
4403 conventional       2016  NorthernNewEngland
4404 conventional       2016  NorthernNewEngland
4405 conventional       2016  NorthernNewEngland
4406 conventional       2016  NorthernNewEngland
4407 conventional       2016  NorthernNewEngland
4408 conventional       2016  NorthernNewEngland
4409 conventional       2016  NorthernNewEngland
4410 conventional       2016  NorthernNewEngland
4411 conventional       2016  NorthernNewEngland
4412 conventional       2016  NorthernNewEngland
4413 conventional       2016  NorthernNewEngland
4414 conventional       2016  NorthernNewEngland
4415 conventional       2016  NorthernNewEngland
4416 conventional       2016  NorthernNewEngland
4417 conventional       2016  NorthernNewEngland
4418 conventional       2016  NorthernNewEngland
4419 conventional       2016  NorthernNewEngland
4420 conventional       2016  NorthernNewEngland
4421 conventional       2016             Orlando
4422 conventional       2016             Orlando
4423 conventional       2016             Orlando
4424 conventional       2016             Orlando
4425 conventional       2016             Orlando
4426 conventional       2016             Orlando
4427 conventional       2016             Orlando
4428 conventional       2016             Orlando
4429 conventional       2016             Orlando
4430 conventional       2016             Orlando
4431 conventional       2016             Orlando
4432 conventional       2016             Orlando
4433 conventional       2016             Orlando
4434 conventional       2016             Orlando
4435 conventional       2016             Orlando
4436 conventional       2016             Orlando
4437 conventional       2016             Orlando
4438 conventional       2016             Orlando
4439 conventional       2016             Orlando
4440 conventional       2016             Orlando
4441 conventional       2016             Orlando
4442 conventional       2016             Orlando
4443 conventional       2016             Orlando
4444 conventional       2016             Orlando
4445 conventional       2016             Orlando
4446 conventional       2016             Orlando
4447 conventional       2016             Orlando
4448 conventional       2016             Orlando
4449 conventional       2016             Orlando
4450 conventional       2016             Orlando
4451 conventional       2016             Orlando
4452 conventional       2016             Orlando
4453 conventional       2016             Orlando
4454 conventional       2016             Orlando
4455 conventional       2016             Orlando
4456 conventional       2016             Orlando
4457 conventional       2016             Orlando
4458 conventional       2016             Orlando
4459 conventional       2016             Orlando
4460 conventional       2016             Orlando
4461 conventional       2016             Orlando
4462 conventional       2016             Orlando
4463 conventional       2016             Orlando
4464 conventional       2016             Orlando
4465 conventional       2016             Orlando
4466 conventional       2016             Orlando
4467 conventional       2016             Orlando
4468 conventional       2016             Orlando
4469 conventional       2016             Orlando
4470 conventional       2016             Orlando
4471 conventional       2016             Orlando
4472 conventional       2016             Orlando
4473 conventional       2016        Philadelphia
4474 conventional       2016        Philadelphia
4475 conventional       2016        Philadelphia
4476 conventional       2016        Philadelphia
4477 conventional       2016        Philadelphia
4478 conventional       2016        Philadelphia
4479 conventional       2016        Philadelphia
4480 conventional       2016        Philadelphia
4481 conventional       2016        Philadelphia
4482 conventional       2016        Philadelphia
4483 conventional       2016        Philadelphia
4484 conventional       2016        Philadelphia
4485 conventional       2016        Philadelphia
4486 conventional       2016        Philadelphia
4487 conventional       2016        Philadelphia
4488 conventional       2016        Philadelphia
4489 conventional       2016        Philadelphia
4490 conventional       2016        Philadelphia
4491 conventional       2016        Philadelphia
4492 conventional       2016        Philadelphia
4493 conventional       2016        Philadelphia
4494 conventional       2016        Philadelphia
4495 conventional       2016        Philadelphia
4496 conventional       2016        Philadelphia
4497 conventional       2016        Philadelphia
4498 conventional       2016        Philadelphia
4499 conventional       2016        Philadelphia
4500 conventional       2016        Philadelphia
4501 conventional       2016        Philadelphia
4502 conventional       2016        Philadelphia
4503 conventional       2016        Philadelphia
4504 conventional       2016        Philadelphia
4505 conventional       2016        Philadelphia
4506 conventional       2016        Philadelphia
4507 conventional       2016        Philadelphia
4508 conventional       2016        Philadelphia
4509 conventional       2016        Philadelphia
4510 conventional       2016        Philadelphia
4511 conventional       2016        Philadelphia
4512 conventional       2016        Philadelphia
4513 conventional       2016        Philadelphia
4514 conventional       2016        Philadelphia
4515 conventional       2016        Philadelphia
4516 conventional       2016        Philadelphia
4517 conventional       2016        Philadelphia
4518 conventional       2016        Philadelphia
4519 conventional       2016        Philadelphia
4520 conventional       2016        Philadelphia
4521 conventional       2016        Philadelphia
4522 conventional       2016        Philadelphia
4523 conventional       2016        Philadelphia
4524 conventional       2016        Philadelphia
4525 conventional       2016       PhoenixTucson
4526 conventional       2016       PhoenixTucson
4527 conventional       2016       PhoenixTucson
4528 conventional       2016       PhoenixTucson
4529 conventional       2016       PhoenixTucson
4530 conventional       2016       PhoenixTucson
4531 conventional       2016       PhoenixTucson
4532 conventional       2016       PhoenixTucson
4533 conventional       2016       PhoenixTucson
4534 conventional       2016       PhoenixTucson
4535 conventional       2016       PhoenixTucson
4536 conventional       2016       PhoenixTucson
4537 conventional       2016       PhoenixTucson
4538 conventional       2016       PhoenixTucson
4539 conventional       2016       PhoenixTucson
4540 conventional       2016       PhoenixTucson
4541 conventional       2016       PhoenixTucson
4542 conventional       2016       PhoenixTucson
4543 conventional       2016       PhoenixTucson
4544 conventional       2016       PhoenixTucson
4545 conventional       2016       PhoenixTucson
4546 conventional       2016       PhoenixTucson
4547 conventional       2016       PhoenixTucson
4548 conventional       2016       PhoenixTucson
4549 conventional       2016       PhoenixTucson
4550 conventional       2016       PhoenixTucson
4551 conventional       2016       PhoenixTucson
4552 conventional       2016       PhoenixTucson
4553 conventional       2016       PhoenixTucson
4554 conventional       2016       PhoenixTucson
4555 conventional       2016       PhoenixTucson
4556 conventional       2016       PhoenixTucson
4557 conventional       2016       PhoenixTucson
4558 conventional       2016       PhoenixTucson
4559 conventional       2016       PhoenixTucson
4560 conventional       2016       PhoenixTucson
4561 conventional       2016       PhoenixTucson
4562 conventional       2016       PhoenixTucson
4563 conventional       2016       PhoenixTucson
4564 conventional       2016       PhoenixTucson
4565 conventional       2016       PhoenixTucson
4566 conventional       2016       PhoenixTucson
4567 conventional       2016       PhoenixTucson
4568 conventional       2016       PhoenixTucson
4569 conventional       2016       PhoenixTucson
4570 conventional       2016       PhoenixTucson
4571 conventional       2016       PhoenixTucson
4572 conventional       2016       PhoenixTucson
4573 conventional       2016       PhoenixTucson
4574 conventional       2016       PhoenixTucson
4575 conventional       2016       PhoenixTucson
4576 conventional       2016       PhoenixTucson
4577 conventional       2016          Pittsburgh
4578 conventional       2016          Pittsburgh
4579 conventional       2016          Pittsburgh
4580 conventional       2016          Pittsburgh
4581 conventional       2016          Pittsburgh
4582 conventional       2016          Pittsburgh
4583 conventional       2016          Pittsburgh
4584 conventional       2016          Pittsburgh
4585 conventional       2016          Pittsburgh
4586 conventional       2016          Pittsburgh
4587 conventional       2016          Pittsburgh
4588 conventional       2016          Pittsburgh
4589 conventional       2016          Pittsburgh
4590 conventional       2016          Pittsburgh
4591 conventional       2016          Pittsburgh
4592 conventional       2016          Pittsburgh
4593 conventional       2016          Pittsburgh
4594 conventional       2016          Pittsburgh
4595 conventional       2016          Pittsburgh
4596 conventional       2016          Pittsburgh
4597 conventional       2016          Pittsburgh
4598 conventional       2016          Pittsburgh
4599 conventional       2016          Pittsburgh
4600 conventional       2016          Pittsburgh
4601 conventional       2016          Pittsburgh
4602 conventional       2016          Pittsburgh
4603 conventional       2016          Pittsburgh
4604 conventional       2016          Pittsburgh
4605 conventional       2016          Pittsburgh
4606 conventional       2016          Pittsburgh
4607 conventional       2016          Pittsburgh
4608 conventional       2016          Pittsburgh
4609 conventional       2016          Pittsburgh
4610 conventional       2016          Pittsburgh
4611 conventional       2016          Pittsburgh
4612 conventional       2016          Pittsburgh
4613 conventional       2016          Pittsburgh
4614 conventional       2016          Pittsburgh
4615 conventional       2016          Pittsburgh
4616 conventional       2016          Pittsburgh
4617 conventional       2016          Pittsburgh
4618 conventional       2016          Pittsburgh
4619 conventional       2016          Pittsburgh
4620 conventional       2016          Pittsburgh
4621 conventional       2016          Pittsburgh
4622 conventional       2016          Pittsburgh
4623 conventional       2016          Pittsburgh
4624 conventional       2016          Pittsburgh
4625 conventional       2016          Pittsburgh
4626 conventional       2016          Pittsburgh
4627 conventional       2016          Pittsburgh
4628 conventional       2016          Pittsburgh
4629 conventional       2016              Plains
4630 conventional       2016              Plains
4631 conventional       2016              Plains
4632 conventional       2016              Plains
4633 conventional       2016              Plains
4634 conventional       2016              Plains
4635 conventional       2016              Plains
4636 conventional       2016              Plains
4637 conventional       2016              Plains
4638 conventional       2016              Plains
4639 conventional       2016              Plains
4640 conventional       2016              Plains
4641 conventional       2016              Plains
4642 conventional       2016              Plains
4643 conventional       2016              Plains
4644 conventional       2016              Plains
4645 conventional       2016              Plains
4646 conventional       2016              Plains
4647 conventional       2016              Plains
4648 conventional       2016              Plains
4649 conventional       2016              Plains
4650 conventional       2016              Plains
4651 conventional       2016              Plains
4652 conventional       2016              Plains
4653 conventional       2016              Plains
4654 conventional       2016              Plains
4655 conventional       2016              Plains
4656 conventional       2016              Plains
4657 conventional       2016              Plains
4658 conventional       2016              Plains
4659 conventional       2016              Plains
4660 conventional       2016              Plains
4661 conventional       2016              Plains
4662 conventional       2016              Plains
4663 conventional       2016              Plains
4664 conventional       2016              Plains
4665 conventional       2016              Plains
4666 conventional       2016              Plains
4667 conventional       2016              Plains
4668 conventional       2016              Plains
4669 conventional       2016              Plains
4670 conventional       2016              Plains
4671 conventional       2016              Plains
4672 conventional       2016              Plains
4673 conventional       2016              Plains
4674 conventional       2016              Plains
4675 conventional       2016              Plains
4676 conventional       2016              Plains
4677 conventional       2016              Plains
4678 conventional       2016              Plains
4679 conventional       2016              Plains
4680 conventional       2016              Plains
4681 conventional       2016            Portland
4682 conventional       2016            Portland
4683 conventional       2016            Portland
4684 conventional       2016            Portland
4685 conventional       2016            Portland
4686 conventional       2016            Portland
4687 conventional       2016            Portland
4688 conventional       2016            Portland
4689 conventional       2016            Portland
4690 conventional       2016            Portland
4691 conventional       2016            Portland
4692 conventional       2016            Portland
4693 conventional       2016            Portland
4694 conventional       2016            Portland
4695 conventional       2016            Portland
4696 conventional       2016            Portland
4697 conventional       2016            Portland
4698 conventional       2016            Portland
4699 conventional       2016            Portland
4700 conventional       2016            Portland
4701 conventional       2016            Portland
4702 conventional       2016            Portland
4703 conventional       2016            Portland
4704 conventional       2016            Portland
4705 conventional       2016            Portland
4706 conventional       2016            Portland
4707 conventional       2016            Portland
4708 conventional       2016            Portland
4709 conventional       2016            Portland
4710 conventional       2016            Portland
4711 conventional       2016            Portland
4712 conventional       2016            Portland
4713 conventional       2016            Portland
4714 conventional       2016            Portland
4715 conventional       2016            Portland
4716 conventional       2016            Portland
4717 conventional       2016            Portland
4718 conventional       2016            Portland
4719 conventional       2016            Portland
4720 conventional       2016            Portland
4721 conventional       2016            Portland
4722 conventional       2016            Portland
4723 conventional       2016            Portland
4724 conventional       2016            Portland
4725 conventional       2016            Portland
4726 conventional       2016            Portland
4727 conventional       2016            Portland
4728 conventional       2016            Portland
4729 conventional       2016            Portland
4730 conventional       2016            Portland
4731 conventional       2016            Portland
4732 conventional       2016            Portland
4733 conventional       2016   RaleighGreensboro
4734 conventional       2016   RaleighGreensboro
4735 conventional       2016   RaleighGreensboro
4736 conventional       2016   RaleighGreensboro
4737 conventional       2016   RaleighGreensboro
4738 conventional       2016   RaleighGreensboro
4739 conventional       2016   RaleighGreensboro
4740 conventional       2016   RaleighGreensboro
4741 conventional       2016   RaleighGreensboro
4742 conventional       2016   RaleighGreensboro
4743 conventional       2016   RaleighGreensboro
4744 conventional       2016   RaleighGreensboro
4745 conventional       2016   RaleighGreensboro
4746 conventional       2016   RaleighGreensboro
4747 conventional       2016   RaleighGreensboro
4748 conventional       2016   RaleighGreensboro
4749 conventional       2016   RaleighGreensboro
4750 conventional       2016   RaleighGreensboro
4751 conventional       2016   RaleighGreensboro
4752 conventional       2016   RaleighGreensboro
4753 conventional       2016   RaleighGreensboro
4754 conventional       2016   RaleighGreensboro
4755 conventional       2016   RaleighGreensboro
4756 conventional       2016   RaleighGreensboro
4757 conventional       2016   RaleighGreensboro
4758 conventional       2016   RaleighGreensboro
4759 conventional       2016   RaleighGreensboro
4760 conventional       2016   RaleighGreensboro
4761 conventional       2016   RaleighGreensboro
4762 conventional       2016   RaleighGreensboro
4763 conventional       2016   RaleighGreensboro
4764 conventional       2016   RaleighGreensboro
4765 conventional       2016   RaleighGreensboro
4766 conventional       2016   RaleighGreensboro
4767 conventional       2016   RaleighGreensboro
4768 conventional       2016   RaleighGreensboro
4769 conventional       2016   RaleighGreensboro
4770 conventional       2016   RaleighGreensboro
4771 conventional       2016   RaleighGreensboro
4772 conventional       2016   RaleighGreensboro
4773 conventional       2016   RaleighGreensboro
4774 conventional       2016   RaleighGreensboro
4775 conventional       2016   RaleighGreensboro
4776 conventional       2016   RaleighGreensboro
4777 conventional       2016   RaleighGreensboro
4778 conventional       2016   RaleighGreensboro
4779 conventional       2016   RaleighGreensboro
4780 conventional       2016   RaleighGreensboro
4781 conventional       2016   RaleighGreensboro
4782 conventional       2016   RaleighGreensboro
4783 conventional       2016   RaleighGreensboro
4784 conventional       2016   RaleighGreensboro
4785 conventional       2016     RichmondNorfolk
4786 conventional       2016     RichmondNorfolk
4787 conventional       2016     RichmondNorfolk
4788 conventional       2016     RichmondNorfolk
4789 conventional       2016     RichmondNorfolk
4790 conventional       2016     RichmondNorfolk
4791 conventional       2016     RichmondNorfolk
4792 conventional       2016     RichmondNorfolk
4793 conventional       2016     RichmondNorfolk
4794 conventional       2016     RichmondNorfolk
4795 conventional       2016     RichmondNorfolk
4796 conventional       2016     RichmondNorfolk
4797 conventional       2016     RichmondNorfolk
4798 conventional       2016     RichmondNorfolk
4799 conventional       2016     RichmondNorfolk
4800 conventional       2016     RichmondNorfolk
4801 conventional       2016     RichmondNorfolk
4802 conventional       2016     RichmondNorfolk
4803 conventional       2016     RichmondNorfolk
4804 conventional       2016     RichmondNorfolk
4805 conventional       2016     RichmondNorfolk
4806 conventional       2016     RichmondNorfolk
4807 conventional       2016     RichmondNorfolk
4808 conventional       2016     RichmondNorfolk
4809 conventional       2016     RichmondNorfolk
4810 conventional       2016     RichmondNorfolk
4811 conventional       2016     RichmondNorfolk
4812 conventional       2016     RichmondNorfolk
4813 conventional       2016     RichmondNorfolk
4814 conventional       2016     RichmondNorfolk
4815 conventional       2016     RichmondNorfolk
4816 conventional       2016     RichmondNorfolk
4817 conventional       2016     RichmondNorfolk
4818 conventional       2016     RichmondNorfolk
4819 conventional       2016     RichmondNorfolk
4820 conventional       2016     RichmondNorfolk
4821 conventional       2016     RichmondNorfolk
4822 conventional       2016     RichmondNorfolk
4823 conventional       2016     RichmondNorfolk
4824 conventional       2016     RichmondNorfolk
4825 conventional       2016     RichmondNorfolk
4826 conventional       2016     RichmondNorfolk
4827 conventional       2016     RichmondNorfolk
4828 conventional       2016     RichmondNorfolk
4829 conventional       2016     RichmondNorfolk
4830 conventional       2016     RichmondNorfolk
4831 conventional       2016     RichmondNorfolk
4832 conventional       2016     RichmondNorfolk
4833 conventional       2016     RichmondNorfolk
4834 conventional       2016     RichmondNorfolk
4835 conventional       2016     RichmondNorfolk
4836 conventional       2016     RichmondNorfolk
4837 conventional       2016             Roanoke
4838 conventional       2016             Roanoke
4839 conventional       2016             Roanoke
4840 conventional       2016             Roanoke
4841 conventional       2016             Roanoke
4842 conventional       2016             Roanoke
4843 conventional       2016             Roanoke
4844 conventional       2016             Roanoke
4845 conventional       2016             Roanoke
4846 conventional       2016             Roanoke
4847 conventional       2016             Roanoke
4848 conventional       2016             Roanoke
4849 conventional       2016             Roanoke
4850 conventional       2016             Roanoke
4851 conventional       2016             Roanoke
4852 conventional       2016             Roanoke
4853 conventional       2016             Roanoke
4854 conventional       2016             Roanoke
4855 conventional       2016             Roanoke
4856 conventional       2016             Roanoke
4857 conventional       2016             Roanoke
4858 conventional       2016             Roanoke
4859 conventional       2016             Roanoke
4860 conventional       2016             Roanoke
4861 conventional       2016             Roanoke
4862 conventional       2016             Roanoke
4863 conventional       2016             Roanoke
4864 conventional       2016             Roanoke
4865 conventional       2016             Roanoke
4866 conventional       2016             Roanoke
4867 conventional       2016             Roanoke
4868 conventional       2016             Roanoke
4869 conventional       2016             Roanoke
4870 conventional       2016             Roanoke
4871 conventional       2016             Roanoke
4872 conventional       2016             Roanoke
4873 conventional       2016             Roanoke
4874 conventional       2016             Roanoke
4875 conventional       2016             Roanoke
4876 conventional       2016             Roanoke
4877 conventional       2016             Roanoke
4878 conventional       2016             Roanoke
4879 conventional       2016             Roanoke
4880 conventional       2016             Roanoke
4881 conventional       2016             Roanoke
4882 conventional       2016             Roanoke
4883 conventional       2016             Roanoke
4884 conventional       2016             Roanoke
4885 conventional       2016             Roanoke
4886 conventional       2016             Roanoke
4887 conventional       2016             Roanoke
4888 conventional       2016             Roanoke
4889 conventional       2016          Sacramento
4890 conventional       2016          Sacramento
4891 conventional       2016          Sacramento
4892 conventional       2016          Sacramento
4893 conventional       2016          Sacramento
4894 conventional       2016          Sacramento
4895 conventional       2016          Sacramento
4896 conventional       2016          Sacramento
4897 conventional       2016          Sacramento
4898 conventional       2016          Sacramento
4899 conventional       2016          Sacramento
4900 conventional       2016          Sacramento
4901 conventional       2016          Sacramento
4902 conventional       2016          Sacramento
4903 conventional       2016          Sacramento
4904 conventional       2016          Sacramento
4905 conventional       2016          Sacramento
4906 conventional       2016          Sacramento
4907 conventional       2016          Sacramento
4908 conventional       2016          Sacramento
4909 conventional       2016          Sacramento
4910 conventional       2016          Sacramento
4911 conventional       2016          Sacramento
4912 conventional       2016          Sacramento
4913 conventional       2016          Sacramento
4914 conventional       2016          Sacramento
4915 conventional       2016          Sacramento
4916 conventional       2016          Sacramento
4917 conventional       2016          Sacramento
4918 conventional       2016          Sacramento
4919 conventional       2016          Sacramento
4920 conventional       2016          Sacramento
4921 conventional       2016          Sacramento
4922 conventional       2016          Sacramento
4923 conventional       2016          Sacramento
4924 conventional       2016          Sacramento
4925 conventional       2016          Sacramento
4926 conventional       2016          Sacramento
4927 conventional       2016          Sacramento
4928 conventional       2016          Sacramento
4929 conventional       2016          Sacramento
4930 conventional       2016          Sacramento
4931 conventional       2016          Sacramento
4932 conventional       2016          Sacramento
4933 conventional       2016          Sacramento
4934 conventional       2016          Sacramento
4935 conventional       2016          Sacramento
4936 conventional       2016          Sacramento
4937 conventional       2016          Sacramento
4938 conventional       2016          Sacramento
4939 conventional       2016          Sacramento
4940 conventional       2016          Sacramento
4941 conventional       2016            SanDiego
4942 conventional       2016            SanDiego
4943 conventional       2016            SanDiego
4944 conventional       2016            SanDiego
4945 conventional       2016            SanDiego
4946 conventional       2016            SanDiego
4947 conventional       2016            SanDiego
4948 conventional       2016            SanDiego
4949 conventional       2016            SanDiego
4950 conventional       2016            SanDiego
4951 conventional       2016            SanDiego
4952 conventional       2016            SanDiego
4953 conventional       2016            SanDiego
4954 conventional       2016            SanDiego
4955 conventional       2016            SanDiego
4956 conventional       2016            SanDiego
4957 conventional       2016            SanDiego
4958 conventional       2016            SanDiego
4959 conventional       2016            SanDiego
4960 conventional       2016            SanDiego
4961 conventional       2016            SanDiego
4962 conventional       2016            SanDiego
4963 conventional       2016            SanDiego
4964 conventional       2016            SanDiego
4965 conventional       2016            SanDiego
4966 conventional       2016            SanDiego
4967 conventional       2016            SanDiego
4968 conventional       2016            SanDiego
4969 conventional       2016            SanDiego
4970 conventional       2016            SanDiego
4971 conventional       2016            SanDiego
4972 conventional       2016            SanDiego
4973 conventional       2016            SanDiego
4974 conventional       2016            SanDiego
4975 conventional       2016            SanDiego
4976 conventional       2016            SanDiego
4977 conventional       2016            SanDiego
4978 conventional       2016            SanDiego
4979 conventional       2016            SanDiego
4980 conventional       2016            SanDiego
4981 conventional       2016            SanDiego
4982 conventional       2016            SanDiego
4983 conventional       2016            SanDiego
4984 conventional       2016            SanDiego
4985 conventional       2016            SanDiego
4986 conventional       2016            SanDiego
4987 conventional       2016            SanDiego
4988 conventional       2016            SanDiego
4989 conventional       2016            SanDiego
4990 conventional       2016            SanDiego
4991 conventional       2016            SanDiego
4992 conventional       2016            SanDiego
4993 conventional       2016        SanFrancisco
4994 conventional       2016        SanFrancisco
4995 conventional       2016        SanFrancisco
4996 conventional       2016        SanFrancisco
4997 conventional       2016        SanFrancisco
4998 conventional       2016        SanFrancisco
4999 conventional       2016        SanFrancisco
5000 conventional       2016        SanFrancisco
5001 conventional       2016        SanFrancisco
5002 conventional       2016        SanFrancisco
5003 conventional       2016        SanFrancisco
5004 conventional       2016        SanFrancisco
5005 conventional       2016        SanFrancisco
5006 conventional       2016        SanFrancisco
5007 conventional       2016        SanFrancisco
5008 conventional       2016        SanFrancisco
5009 conventional       2016        SanFrancisco
5010 conventional       2016        SanFrancisco
5011 conventional       2016        SanFrancisco
5012 conventional       2016        SanFrancisco
5013 conventional       2016        SanFrancisco
5014 conventional       2016        SanFrancisco
5015 conventional       2016        SanFrancisco
5016 conventional       2016        SanFrancisco
5017 conventional       2016        SanFrancisco
5018 conventional       2016        SanFrancisco
5019 conventional       2016        SanFrancisco
5020 conventional       2016        SanFrancisco
5021 conventional       2016        SanFrancisco
5022 conventional       2016        SanFrancisco
5023 conventional       2016        SanFrancisco
5024 conventional       2016        SanFrancisco
5025 conventional       2016        SanFrancisco
5026 conventional       2016        SanFrancisco
5027 conventional       2016        SanFrancisco
5028 conventional       2016        SanFrancisco
5029 conventional       2016        SanFrancisco
5030 conventional       2016        SanFrancisco
5031 conventional       2016        SanFrancisco
5032 conventional       2016        SanFrancisco
5033 conventional       2016        SanFrancisco
5034 conventional       2016        SanFrancisco
5035 conventional       2016        SanFrancisco
5036 conventional       2016        SanFrancisco
5037 conventional       2016        SanFrancisco
5038 conventional       2016        SanFrancisco
5039 conventional       2016        SanFrancisco
5040 conventional       2016        SanFrancisco
5041 conventional       2016        SanFrancisco
5042 conventional       2016        SanFrancisco
5043 conventional       2016        SanFrancisco
5044 conventional       2016        SanFrancisco
5045 conventional       2016             Seattle
5046 conventional       2016             Seattle
5047 conventional       2016             Seattle
5048 conventional       2016             Seattle
5049 conventional       2016             Seattle
5050 conventional       2016             Seattle
5051 conventional       2016             Seattle
5052 conventional       2016             Seattle
5053 conventional       2016             Seattle
5054 conventional       2016             Seattle
5055 conventional       2016             Seattle
5056 conventional       2016             Seattle
5057 conventional       2016             Seattle
5058 conventional       2016             Seattle
5059 conventional       2016             Seattle
5060 conventional       2016             Seattle
5061 conventional       2016             Seattle
5062 conventional       2016             Seattle
5063 conventional       2016             Seattle
5064 conventional       2016             Seattle
5065 conventional       2016             Seattle
5066 conventional       2016             Seattle
5067 conventional       2016             Seattle
5068 conventional       2016             Seattle
5069 conventional       2016             Seattle
5070 conventional       2016             Seattle
5071 conventional       2016             Seattle
5072 conventional       2016             Seattle
5073 conventional       2016             Seattle
5074 conventional       2016             Seattle
5075 conventional       2016             Seattle
5076 conventional       2016             Seattle
5077 conventional       2016             Seattle
5078 conventional       2016             Seattle
5079 conventional       2016             Seattle
5080 conventional       2016             Seattle
5081 conventional       2016             Seattle
5082 conventional       2016             Seattle
5083 conventional       2016             Seattle
5084 conventional       2016             Seattle
5085 conventional       2016             Seattle
5086 conventional       2016             Seattle
5087 conventional       2016             Seattle
5088 conventional       2016             Seattle
5089 conventional       2016             Seattle
5090 conventional       2016             Seattle
5091 conventional       2016             Seattle
5092 conventional       2016             Seattle
5093 conventional       2016             Seattle
5094 conventional       2016             Seattle
5095 conventional       2016             Seattle
5096 conventional       2016             Seattle
5097 conventional       2016       SouthCarolina
5098 conventional       2016       SouthCarolina
5099 conventional       2016       SouthCarolina
5100 conventional       2016       SouthCarolina
5101 conventional       2016       SouthCarolina
5102 conventional       2016       SouthCarolina
5103 conventional       2016       SouthCarolina
5104 conventional       2016       SouthCarolina
5105 conventional       2016       SouthCarolina
5106 conventional       2016       SouthCarolina
5107 conventional       2016       SouthCarolina
5108 conventional       2016       SouthCarolina
5109 conventional       2016       SouthCarolina
5110 conventional       2016       SouthCarolina
5111 conventional       2016       SouthCarolina
5112 conventional       2016       SouthCarolina
5113 conventional       2016       SouthCarolina
5114 conventional       2016       SouthCarolina
5115 conventional       2016       SouthCarolina
5116 conventional       2016       SouthCarolina
5117 conventional       2016       SouthCarolina
5118 conventional       2016       SouthCarolina
5119 conventional       2016       SouthCarolina
5120 conventional       2016       SouthCarolina
5121 conventional       2016       SouthCarolina
5122 conventional       2016       SouthCarolina
5123 conventional       2016       SouthCarolina
5124 conventional       2016       SouthCarolina
5125 conventional       2016       SouthCarolina
5126 conventional       2016       SouthCarolina
5127 conventional       2016       SouthCarolina
5128 conventional       2016       SouthCarolina
5129 conventional       2016       SouthCarolina
5130 conventional       2016       SouthCarolina
5131 conventional       2016       SouthCarolina
5132 conventional       2016       SouthCarolina
5133 conventional       2016       SouthCarolina
5134 conventional       2016       SouthCarolina
5135 conventional       2016       SouthCarolina
5136 conventional       2016       SouthCarolina
5137 conventional       2016       SouthCarolina
5138 conventional       2016       SouthCarolina
5139 conventional       2016       SouthCarolina
5140 conventional       2016       SouthCarolina
5141 conventional       2016       SouthCarolina
5142 conventional       2016       SouthCarolina
5143 conventional       2016       SouthCarolina
5144 conventional       2016       SouthCarolina
5145 conventional       2016       SouthCarolina
5146 conventional       2016       SouthCarolina
5147 conventional       2016       SouthCarolina
5148 conventional       2016       SouthCarolina
5149 conventional       2016        SouthCentral
5150 conventional       2016        SouthCentral
5151 conventional       2016        SouthCentral
5152 conventional       2016        SouthCentral
5153 conventional       2016        SouthCentral
5154 conventional       2016        SouthCentral
5155 conventional       2016        SouthCentral
5156 conventional       2016        SouthCentral
5157 conventional       2016        SouthCentral
5158 conventional       2016        SouthCentral
5159 conventional       2016        SouthCentral
5160 conventional       2016        SouthCentral
5161 conventional       2016        SouthCentral
5162 conventional       2016        SouthCentral
5163 conventional       2016        SouthCentral
5164 conventional       2016        SouthCentral
5165 conventional       2016        SouthCentral
5166 conventional       2016        SouthCentral
5167 conventional       2016        SouthCentral
5168 conventional       2016        SouthCentral
5169 conventional       2016        SouthCentral
5170 conventional       2016        SouthCentral
5171 conventional       2016        SouthCentral
5172 conventional       2016        SouthCentral
5173 conventional       2016        SouthCentral
5174 conventional       2016        SouthCentral
5175 conventional       2016        SouthCentral
5176 conventional       2016        SouthCentral
5177 conventional       2016        SouthCentral
5178 conventional       2016        SouthCentral
5179 conventional       2016        SouthCentral
5180 conventional       2016        SouthCentral
5181 conventional       2016        SouthCentral
5182 conventional       2016        SouthCentral
5183 conventional       2016        SouthCentral
5184 conventional       2016        SouthCentral
5185 conventional       2016        SouthCentral
5186 conventional       2016        SouthCentral
5187 conventional       2016        SouthCentral
5188 conventional       2016        SouthCentral
5189 conventional       2016        SouthCentral
5190 conventional       2016        SouthCentral
5191 conventional       2016        SouthCentral
5192 conventional       2016        SouthCentral
5193 conventional       2016        SouthCentral
5194 conventional       2016        SouthCentral
5195 conventional       2016        SouthCentral
5196 conventional       2016        SouthCentral
5197 conventional       2016        SouthCentral
5198 conventional       2016        SouthCentral
5199 conventional       2016        SouthCentral
5200 conventional       2016        SouthCentral
5201 conventional       2016           Southeast
5202 conventional       2016           Southeast
5203 conventional       2016           Southeast
5204 conventional       2016           Southeast
5205 conventional       2016           Southeast
5206 conventional       2016           Southeast
5207 conventional       2016           Southeast
5208 conventional       2016           Southeast
5209 conventional       2016           Southeast
5210 conventional       2016           Southeast
5211 conventional       2016           Southeast
5212 conventional       2016           Southeast
5213 conventional       2016           Southeast
5214 conventional       2016           Southeast
5215 conventional       2016           Southeast
5216 conventional       2016           Southeast
5217 conventional       2016           Southeast
5218 conventional       2016           Southeast
5219 conventional       2016           Southeast
5220 conventional       2016           Southeast
5221 conventional       2016           Southeast
5222 conventional       2016           Southeast
5223 conventional       2016           Southeast
5224 conventional       2016           Southeast
5225 conventional       2016           Southeast
5226 conventional       2016           Southeast
5227 conventional       2016           Southeast
5228 conventional       2016           Southeast
5229 conventional       2016           Southeast
5230 conventional       2016           Southeast
5231 conventional       2016           Southeast
5232 conventional       2016           Southeast
5233 conventional       2016           Southeast
5234 conventional       2016           Southeast
5235 conventional       2016           Southeast
5236 conventional       2016           Southeast
5237 conventional       2016           Southeast
5238 conventional       2016           Southeast
5239 conventional       2016           Southeast
5240 conventional       2016           Southeast
5241 conventional       2016           Southeast
5242 conventional       2016           Southeast
5243 conventional       2016           Southeast
5244 conventional       2016           Southeast
5245 conventional       2016           Southeast
5246 conventional       2016           Southeast
5247 conventional       2016           Southeast
5248 conventional       2016           Southeast
5249 conventional       2016           Southeast
5250 conventional       2016           Southeast
5251 conventional       2016           Southeast
5252 conventional       2016           Southeast
5253 conventional       2016             Spokane
5254 conventional       2016             Spokane
5255 conventional       2016             Spokane
5256 conventional       2016             Spokane
5257 conventional       2016             Spokane
5258 conventional       2016             Spokane
5259 conventional       2016             Spokane
5260 conventional       2016             Spokane
5261 conventional       2016             Spokane
5262 conventional       2016             Spokane
5263 conventional       2016             Spokane
5264 conventional       2016             Spokane
5265 conventional       2016             Spokane
5266 conventional       2016             Spokane
5267 conventional       2016             Spokane
5268 conventional       2016             Spokane
5269 conventional       2016             Spokane
5270 conventional       2016             Spokane
5271 conventional       2016             Spokane
5272 conventional       2016             Spokane
5273 conventional       2016             Spokane
5274 conventional       2016             Spokane
5275 conventional       2016             Spokane
5276 conventional       2016             Spokane
5277 conventional       2016             Spokane
5278 conventional       2016             Spokane
5279 conventional       2016             Spokane
5280 conventional       2016             Spokane
5281 conventional       2016             Spokane
5282 conventional       2016             Spokane
5283 conventional       2016             Spokane
5284 conventional       2016             Spokane
5285 conventional       2016             Spokane
5286 conventional       2016             Spokane
5287 conventional       2016             Spokane
5288 conventional       2016             Spokane
5289 conventional       2016             Spokane
5290 conventional       2016             Spokane
5291 conventional       2016             Spokane
5292 conventional       2016             Spokane
5293 conventional       2016             Spokane
5294 conventional       2016             Spokane
5295 conventional       2016             Spokane
5296 conventional       2016             Spokane
5297 conventional       2016             Spokane
5298 conventional       2016             Spokane
5299 conventional       2016             Spokane
5300 conventional       2016             Spokane
5301 conventional       2016             Spokane
5302 conventional       2016             Spokane
5303 conventional       2016             Spokane
5304 conventional       2016             Spokane
5305 conventional       2016             StLouis
5306 conventional       2016             StLouis
5307 conventional       2016             StLouis
5308 conventional       2016             StLouis
5309 conventional       2016             StLouis
5310 conventional       2016             StLouis
5311 conventional       2016             StLouis
5312 conventional       2016             StLouis
5313 conventional       2016             StLouis
5314 conventional       2016             StLouis
5315 conventional       2016             StLouis
5316 conventional       2016             StLouis
5317 conventional       2016             StLouis
5318 conventional       2016             StLouis
5319 conventional       2016             StLouis
5320 conventional       2016             StLouis
5321 conventional       2016             StLouis
5322 conventional       2016             StLouis
5323 conventional       2016             StLouis
5324 conventional       2016             StLouis
5325 conventional       2016             StLouis
5326 conventional       2016             StLouis
5327 conventional       2016             StLouis
5328 conventional       2016             StLouis
5329 conventional       2016             StLouis
5330 conventional       2016             StLouis
5331 conventional       2016             StLouis
5332 conventional       2016             StLouis
5333 conventional       2016             StLouis
5334 conventional       2016             StLouis
5335 conventional       2016             StLouis
5336 conventional       2016             StLouis
5337 conventional       2016             StLouis
5338 conventional       2016             StLouis
5339 conventional       2016             StLouis
5340 conventional       2016             StLouis
5341 conventional       2016             StLouis
5342 conventional       2016             StLouis
5343 conventional       2016             StLouis
5344 conventional       2016             StLouis
5345 conventional       2016             StLouis
5346 conventional       2016             StLouis
5347 conventional       2016             StLouis
5348 conventional       2016             StLouis
5349 conventional       2016             StLouis
5350 conventional       2016             StLouis
5351 conventional       2016             StLouis
5352 conventional       2016             StLouis
5353 conventional       2016             StLouis
5354 conventional       2016             StLouis
5355 conventional       2016             StLouis
5356 conventional       2016             StLouis
5357 conventional       2016            Syracuse
5358 conventional       2016            Syracuse
5359 conventional       2016            Syracuse
5360 conventional       2016            Syracuse
5361 conventional       2016            Syracuse
5362 conventional       2016            Syracuse
5363 conventional       2016            Syracuse
5364 conventional       2016            Syracuse
5365 conventional       2016            Syracuse
5366 conventional       2016            Syracuse
5367 conventional       2016            Syracuse
5368 conventional       2016            Syracuse
5369 conventional       2016            Syracuse
5370 conventional       2016            Syracuse
5371 conventional       2016            Syracuse
5372 conventional       2016            Syracuse
5373 conventional       2016            Syracuse
5374 conventional       2016            Syracuse
5375 conventional       2016            Syracuse
5376 conventional       2016            Syracuse
5377 conventional       2016            Syracuse
5378 conventional       2016            Syracuse
5379 conventional       2016            Syracuse
5380 conventional       2016            Syracuse
5381 conventional       2016            Syracuse
5382 conventional       2016            Syracuse
5383 conventional       2016            Syracuse
5384 conventional       2016            Syracuse
5385 conventional       2016            Syracuse
5386 conventional       2016            Syracuse
5387 conventional       2016            Syracuse
5388 conventional       2016            Syracuse
5389 conventional       2016            Syracuse
5390 conventional       2016            Syracuse
5391 conventional       2016            Syracuse
5392 conventional       2016            Syracuse
5393 conventional       2016            Syracuse
5394 conventional       2016            Syracuse
5395 conventional       2016            Syracuse
5396 conventional       2016            Syracuse
5397 conventional       2016            Syracuse
5398 conventional       2016            Syracuse
5399 conventional       2016            Syracuse
5400 conventional       2016            Syracuse
5401 conventional       2016            Syracuse
5402 conventional       2016            Syracuse
5403 conventional       2016            Syracuse
5404 conventional       2016            Syracuse
5405 conventional       2016            Syracuse
5406 conventional       2016            Syracuse
5407 conventional       2016            Syracuse
5408 conventional       2016            Syracuse
5409 conventional       2016               Tampa
5410 conventional       2016               Tampa
5411 conventional       2016               Tampa
5412 conventional       2016               Tampa
5413 conventional       2016               Tampa
5414 conventional       2016               Tampa
5415 conventional       2016               Tampa
5416 conventional       2016               Tampa
5417 conventional       2016               Tampa
5418 conventional       2016               Tampa
5419 conventional       2016               Tampa
5420 conventional       2016               Tampa
5421 conventional       2016               Tampa
5422 conventional       2016               Tampa
5423 conventional       2016               Tampa
5424 conventional       2016               Tampa
5425 conventional       2016               Tampa
5426 conventional       2016               Tampa
5427 conventional       2016               Tampa
5428 conventional       2016               Tampa
5429 conventional       2016               Tampa
5430 conventional       2016               Tampa
5431 conventional       2016               Tampa
5432 conventional       2016               Tampa
5433 conventional       2016               Tampa
5434 conventional       2016               Tampa
5435 conventional       2016               Tampa
5436 conventional       2016               Tampa
5437 conventional       2016               Tampa
5438 conventional       2016               Tampa
5439 conventional       2016               Tampa
5440 conventional       2016               Tampa
5441 conventional       2016               Tampa
5442 conventional       2016               Tampa
5443 conventional       2016               Tampa
5444 conventional       2016               Tampa
5445 conventional       2016               Tampa
5446 conventional       2016               Tampa
5447 conventional       2016               Tampa
5448 conventional       2016               Tampa
5449 conventional       2016               Tampa
5450 conventional       2016               Tampa
5451 conventional       2016               Tampa
5452 conventional       2016               Tampa
5453 conventional       2016               Tampa
5454 conventional       2016               Tampa
5455 conventional       2016               Tampa
5456 conventional       2016               Tampa
5457 conventional       2016               Tampa
5458 conventional       2016               Tampa
5459 conventional       2016               Tampa
5460 conventional       2016               Tampa
5461 conventional       2016             TotalUS
5462 conventional       2016             TotalUS
5463 conventional       2016             TotalUS
5464 conventional       2016             TotalUS
5465 conventional       2016             TotalUS
5466 conventional       2016             TotalUS
5467 conventional       2016             TotalUS
5468 conventional       2016             TotalUS
5469 conventional       2016             TotalUS
5470 conventional       2016             TotalUS
5471 conventional       2016             TotalUS
5472 conventional       2016             TotalUS
5473 conventional       2016             TotalUS
5474 conventional       2016             TotalUS
5475 conventional       2016             TotalUS
5476 conventional       2016             TotalUS
5477 conventional       2016             TotalUS
5478 conventional       2016             TotalUS
5479 conventional       2016             TotalUS
5480 conventional       2016             TotalUS
5481 conventional       2016             TotalUS
5482 conventional       2016             TotalUS
5483 conventional       2016             TotalUS
5484 conventional       2016             TotalUS
5485 conventional       2016             TotalUS
5486 conventional       2016             TotalUS
5487 conventional       2016             TotalUS
5488 conventional       2016             TotalUS
5489 conventional       2016             TotalUS
5490 conventional       2016             TotalUS
5491 conventional       2016             TotalUS
5492 conventional       2016             TotalUS
5493 conventional       2016             TotalUS
5494 conventional       2016             TotalUS
5495 conventional       2016             TotalUS
5496 conventional       2016             TotalUS
5497 conventional       2016             TotalUS
5498 conventional       2016             TotalUS
5499 conventional       2016             TotalUS
5500 conventional       2016             TotalUS
5501 conventional       2016             TotalUS
5502 conventional       2016             TotalUS
5503 conventional       2016             TotalUS
5504 conventional       2016             TotalUS
5505 conventional       2016             TotalUS
5506 conventional       2016             TotalUS
5507 conventional       2016             TotalUS
5508 conventional       2016             TotalUS
5509 conventional       2016             TotalUS
5510 conventional       2016             TotalUS
5511 conventional       2016             TotalUS
5512 conventional       2016             TotalUS
5513 conventional       2016                West
5514 conventional       2016                West
5515 conventional       2016                West
5516 conventional       2016                West
5517 conventional       2016                West
5518 conventional       2016                West
5519 conventional       2016                West
5520 conventional       2016                West
5521 conventional       2016                West
5522 conventional       2016                West
5523 conventional       2016                West
5524 conventional       2016                West
5525 conventional       2016                West
5526 conventional       2016                West
5527 conventional       2016                West
5528 conventional       2016                West
5529 conventional       2016                West
5530 conventional       2016                West
5531 conventional       2016                West
5532 conventional       2016                West
5533 conventional       2016                West
5534 conventional       2016                West
5535 conventional       2016                West
5536 conventional       2016                West
5537 conventional       2016                West
5538 conventional       2016                West
5539 conventional       2016                West
5540 conventional       2016                West
5541 conventional       2016                West
5542 conventional       2016                West
5543 conventional       2016                West
5544 conventional       2016                West
5545 conventional       2016                West
5546 conventional       2016                West
5547 conventional       2016                West
5548 conventional       2016                West
5549 conventional       2016                West
5550 conventional       2016                West
5551 conventional       2016                West
5552 conventional       2016                West
5553 conventional       2016                West
5554 conventional       2016                West
5555 conventional       2016                West
5556 conventional       2016                West
5557 conventional       2016                West
5558 conventional       2016                West
5559 conventional       2016                West
5560 conventional       2016                West
5561 conventional       2016                West
5562 conventional       2016                West
5563 conventional       2016                West
5564 conventional       2016                West
5565 conventional       2016    WestTexNewMexico
5566 conventional       2016    WestTexNewMexico
5567 conventional       2016    WestTexNewMexico
5568 conventional       2016    WestTexNewMexico
5569 conventional       2016    WestTexNewMexico
5570 conventional       2016    WestTexNewMexico
5571 conventional       2016    WestTexNewMexico
5572 conventional       2016    WestTexNewMexico
5573 conventional       2016    WestTexNewMexico
5574 conventional       2016    WestTexNewMexico
5575 conventional       2016    WestTexNewMexico
5576 conventional       2016    WestTexNewMexico
5577 conventional       2016    WestTexNewMexico
5578 conventional       2016    WestTexNewMexico
5579 conventional       2016    WestTexNewMexico
5580 conventional       2016    WestTexNewMexico
5581 conventional       2016    WestTexNewMexico
5582 conventional       2016    WestTexNewMexico
5583 conventional       2016    WestTexNewMexico
5584 conventional       2016    WestTexNewMexico
5585 conventional       2016    WestTexNewMexico
5586 conventional       2016    WestTexNewMexico
5587 conventional       2016    WestTexNewMexico
5588 conventional       2016    WestTexNewMexico
5589 conventional       2016    WestTexNewMexico
5590 conventional       2016    WestTexNewMexico
5591 conventional       2016    WestTexNewMexico
5592 conventional       2016    WestTexNewMexico
5593 conventional       2016    WestTexNewMexico
5594 conventional       2016    WestTexNewMexico
5595 conventional       2016    WestTexNewMexico
5596 conventional       2016    WestTexNewMexico
5597 conventional       2016    WestTexNewMexico
5598 conventional       2016    WestTexNewMexico
5599 conventional       2016    WestTexNewMexico
5600 conventional       2016    WestTexNewMexico
5601 conventional       2016    WestTexNewMexico
5602 conventional       2016    WestTexNewMexico
5603 conventional       2016    WestTexNewMexico
5604 conventional       2016    WestTexNewMexico
5605 conventional       2016    WestTexNewMexico
5606 conventional       2016    WestTexNewMexico
5607 conventional       2016    WestTexNewMexico
5608 conventional       2016    WestTexNewMexico
5609 conventional       2016    WestTexNewMexico
5610 conventional       2016    WestTexNewMexico
5611 conventional       2016    WestTexNewMexico
5612 conventional       2016    WestTexNewMexico
5613 conventional       2016    WestTexNewMexico
5614 conventional       2016    WestTexNewMexico
5615 conventional       2016    WestTexNewMexico
5616 conventional       2016    WestTexNewMexico
5617 conventional       2017              Albany
5618 conventional       2017              Albany
5619 conventional       2017              Albany
5620 conventional       2017              Albany
5621 conventional       2017              Albany
5622 conventional       2017              Albany
5623 conventional       2017              Albany
5624 conventional       2017              Albany
5625 conventional       2017              Albany
5626 conventional       2017              Albany
5627 conventional       2017              Albany
5628 conventional       2017              Albany
5629 conventional       2017              Albany
5630 conventional       2017              Albany
5631 conventional       2017              Albany
5632 conventional       2017              Albany
5633 conventional       2017              Albany
5634 conventional       2017              Albany
5635 conventional       2017              Albany
5636 conventional       2017              Albany
5637 conventional       2017              Albany
5638 conventional       2017              Albany
5639 conventional       2017              Albany
5640 conventional       2017              Albany
5641 conventional       2017              Albany
5642 conventional       2017              Albany
5643 conventional       2017              Albany
5644 conventional       2017              Albany
5645 conventional       2017              Albany
5646 conventional       2017              Albany
5647 conventional       2017              Albany
5648 conventional       2017              Albany
5649 conventional       2017              Albany
5650 conventional       2017              Albany
5651 conventional       2017              Albany
5652 conventional       2017              Albany
5653 conventional       2017              Albany
5654 conventional       2017              Albany
5655 conventional       2017              Albany
5656 conventional       2017              Albany
5657 conventional       2017              Albany
5658 conventional       2017              Albany
5659 conventional       2017              Albany
5660 conventional       2017              Albany
5661 conventional       2017              Albany
5662 conventional       2017              Albany
5663 conventional       2017              Albany
5664 conventional       2017              Albany
5665 conventional       2017              Albany
5666 conventional       2017              Albany
5667 conventional       2017              Albany
5668 conventional       2017              Albany
5669 conventional       2017              Albany
5670 conventional       2017             Atlanta
5671 conventional       2017             Atlanta
5672 conventional       2017             Atlanta
5673 conventional       2017             Atlanta
5674 conventional       2017             Atlanta
5675 conventional       2017             Atlanta
5676 conventional       2017             Atlanta
5677 conventional       2017             Atlanta
5678 conventional       2017             Atlanta
5679 conventional       2017             Atlanta
5680 conventional       2017             Atlanta
5681 conventional       2017             Atlanta
5682 conventional       2017             Atlanta
5683 conventional       2017             Atlanta
5684 conventional       2017             Atlanta
5685 conventional       2017             Atlanta
5686 conventional       2017             Atlanta
5687 conventional       2017             Atlanta
5688 conventional       2017             Atlanta
5689 conventional       2017             Atlanta
5690 conventional       2017             Atlanta
5691 conventional       2017             Atlanta
5692 conventional       2017             Atlanta
5693 conventional       2017             Atlanta
5694 conventional       2017             Atlanta
5695 conventional       2017             Atlanta
5696 conventional       2017             Atlanta
5697 conventional       2017             Atlanta
5698 conventional       2017             Atlanta
5699 conventional       2017             Atlanta
5700 conventional       2017             Atlanta
5701 conventional       2017             Atlanta
5702 conventional       2017             Atlanta
5703 conventional       2017             Atlanta
5704 conventional       2017             Atlanta
5705 conventional       2017             Atlanta
5706 conventional       2017             Atlanta
5707 conventional       2017             Atlanta
5708 conventional       2017             Atlanta
5709 conventional       2017             Atlanta
5710 conventional       2017             Atlanta
5711 conventional       2017             Atlanta
5712 conventional       2017             Atlanta
5713 conventional       2017             Atlanta
5714 conventional       2017             Atlanta
5715 conventional       2017             Atlanta
5716 conventional       2017             Atlanta
5717 conventional       2017             Atlanta
5718 conventional       2017             Atlanta
5719 conventional       2017             Atlanta
5720 conventional       2017             Atlanta
5721 conventional       2017             Atlanta
5722 conventional       2017             Atlanta
5723 conventional       2017 BaltimoreWashington
5724 conventional       2017 BaltimoreWashington
5725 conventional       2017 BaltimoreWashington
5726 conventional       2017 BaltimoreWashington
5727 conventional       2017 BaltimoreWashington
5728 conventional       2017 BaltimoreWashington
5729 conventional       2017 BaltimoreWashington
5730 conventional       2017 BaltimoreWashington
5731 conventional       2017 BaltimoreWashington
5732 conventional       2017 BaltimoreWashington
5733 conventional       2017 BaltimoreWashington
5734 conventional       2017 BaltimoreWashington
5735 conventional       2017 BaltimoreWashington
5736 conventional       2017 BaltimoreWashington
5737 conventional       2017 BaltimoreWashington
5738 conventional       2017 BaltimoreWashington
5739 conventional       2017 BaltimoreWashington
5740 conventional       2017 BaltimoreWashington
5741 conventional       2017 BaltimoreWashington
5742 conventional       2017 BaltimoreWashington
5743 conventional       2017 BaltimoreWashington
5744 conventional       2017 BaltimoreWashington
5745 conventional       2017 BaltimoreWashington
5746 conventional       2017 BaltimoreWashington
5747 conventional       2017 BaltimoreWashington
5748 conventional       2017 BaltimoreWashington
5749 conventional       2017 BaltimoreWashington
5750 conventional       2017 BaltimoreWashington
5751 conventional       2017 BaltimoreWashington
5752 conventional       2017 BaltimoreWashington
5753 conventional       2017 BaltimoreWashington
5754 conventional       2017 BaltimoreWashington
5755 conventional       2017 BaltimoreWashington
5756 conventional       2017 BaltimoreWashington
5757 conventional       2017 BaltimoreWashington
5758 conventional       2017 BaltimoreWashington
5759 conventional       2017 BaltimoreWashington
5760 conventional       2017 BaltimoreWashington
5761 conventional       2017 BaltimoreWashington
5762 conventional       2017 BaltimoreWashington
5763 conventional       2017 BaltimoreWashington
5764 conventional       2017 BaltimoreWashington
5765 conventional       2017 BaltimoreWashington
5766 conventional       2017 BaltimoreWashington
5767 conventional       2017 BaltimoreWashington
5768 conventional       2017 BaltimoreWashington
5769 conventional       2017 BaltimoreWashington
5770 conventional       2017 BaltimoreWashington
5771 conventional       2017 BaltimoreWashington
5772 conventional       2017 BaltimoreWashington
5773 conventional       2017 BaltimoreWashington
5774 conventional       2017 BaltimoreWashington
5775 conventional       2017 BaltimoreWashington
5776 conventional       2017               Boise
5777 conventional       2017               Boise
5778 conventional       2017               Boise
5779 conventional       2017               Boise
5780 conventional       2017               Boise
5781 conventional       2017               Boise
5782 conventional       2017               Boise
5783 conventional       2017               Boise
5784 conventional       2017               Boise
5785 conventional       2017               Boise
5786 conventional       2017               Boise
5787 conventional       2017               Boise
5788 conventional       2017               Boise
5789 conventional       2017               Boise
5790 conventional       2017               Boise
5791 conventional       2017               Boise
5792 conventional       2017               Boise
5793 conventional       2017               Boise
5794 conventional       2017               Boise
5795 conventional       2017               Boise
5796 conventional       2017               Boise
5797 conventional       2017               Boise
5798 conventional       2017               Boise
5799 conventional       2017               Boise
5800 conventional       2017               Boise
5801 conventional       2017               Boise
5802 conventional       2017               Boise
5803 conventional       2017               Boise
5804 conventional       2017               Boise
5805 conventional       2017               Boise
5806 conventional       2017               Boise
5807 conventional       2017               Boise
5808 conventional       2017               Boise
5809 conventional       2017               Boise
5810 conventional       2017               Boise
5811 conventional       2017               Boise
5812 conventional       2017               Boise
5813 conventional       2017               Boise
5814 conventional       2017               Boise
5815 conventional       2017               Boise
5816 conventional       2017               Boise
5817 conventional       2017               Boise
5818 conventional       2017               Boise
5819 conventional       2017               Boise
5820 conventional       2017               Boise
5821 conventional       2017               Boise
5822 conventional       2017               Boise
5823 conventional       2017               Boise
5824 conventional       2017               Boise
5825 conventional       2017               Boise
5826 conventional       2017               Boise
5827 conventional       2017               Boise
5828 conventional       2017               Boise
5829 conventional       2017              Boston
5830 conventional       2017              Boston
5831 conventional       2017              Boston
5832 conventional       2017              Boston
5833 conventional       2017              Boston
5834 conventional       2017              Boston
5835 conventional       2017              Boston
5836 conventional       2017              Boston
5837 conventional       2017              Boston
5838 conventional       2017              Boston
5839 conventional       2017              Boston
5840 conventional       2017              Boston
5841 conventional       2017              Boston
5842 conventional       2017              Boston
5843 conventional       2017              Boston
5844 conventional       2017              Boston
5845 conventional       2017              Boston
5846 conventional       2017              Boston
5847 conventional       2017              Boston
5848 conventional       2017              Boston
5849 conventional       2017              Boston
5850 conventional       2017              Boston
5851 conventional       2017              Boston
5852 conventional       2017              Boston
5853 conventional       2017              Boston
5854 conventional       2017              Boston
5855 conventional       2017              Boston
5856 conventional       2017              Boston
5857 conventional       2017              Boston
5858 conventional       2017              Boston
5859 conventional       2017              Boston
5860 conventional       2017              Boston
5861 conventional       2017              Boston
5862 conventional       2017              Boston
5863 conventional       2017              Boston
5864 conventional       2017              Boston
5865 conventional       2017              Boston
5866 conventional       2017              Boston
5867 conventional       2017              Boston
5868 conventional       2017              Boston
5869 conventional       2017              Boston
5870 conventional       2017              Boston
5871 conventional       2017              Boston
5872 conventional       2017              Boston
5873 conventional       2017              Boston
5874 conventional       2017              Boston
5875 conventional       2017              Boston
5876 conventional       2017              Boston
5877 conventional       2017              Boston
5878 conventional       2017              Boston
5879 conventional       2017              Boston
5880 conventional       2017              Boston
5881 conventional       2017              Boston
5882 conventional       2017    BuffaloRochester
5883 conventional       2017    BuffaloRochester
5884 conventional       2017    BuffaloRochester
5885 conventional       2017    BuffaloRochester
5886 conventional       2017    BuffaloRochester
5887 conventional       2017    BuffaloRochester
5888 conventional       2017    BuffaloRochester
5889 conventional       2017    BuffaloRochester
5890 conventional       2017    BuffaloRochester
5891 conventional       2017    BuffaloRochester
5892 conventional       2017    BuffaloRochester
5893 conventional       2017    BuffaloRochester
5894 conventional       2017    BuffaloRochester
5895 conventional       2017    BuffaloRochester
5896 conventional       2017    BuffaloRochester
5897 conventional       2017    BuffaloRochester
5898 conventional       2017    BuffaloRochester
5899 conventional       2017    BuffaloRochester
5900 conventional       2017    BuffaloRochester
5901 conventional       2017    BuffaloRochester
5902 conventional       2017    BuffaloRochester
5903 conventional       2017    BuffaloRochester
5904 conventional       2017    BuffaloRochester
5905 conventional       2017    BuffaloRochester
5906 conventional       2017    BuffaloRochester
5907 conventional       2017    BuffaloRochester
5908 conventional       2017    BuffaloRochester
5909 conventional       2017    BuffaloRochester
5910 conventional       2017    BuffaloRochester
5911 conventional       2017    BuffaloRochester
5912 conventional       2017    BuffaloRochester
5913 conventional       2017    BuffaloRochester
5914 conventional       2017    BuffaloRochester
5915 conventional       2017    BuffaloRochester
5916 conventional       2017    BuffaloRochester
5917 conventional       2017    BuffaloRochester
5918 conventional       2017    BuffaloRochester
5919 conventional       2017    BuffaloRochester
5920 conventional       2017    BuffaloRochester
5921 conventional       2017    BuffaloRochester
5922 conventional       2017    BuffaloRochester
5923 conventional       2017    BuffaloRochester
5924 conventional       2017    BuffaloRochester
5925 conventional       2017    BuffaloRochester
5926 conventional       2017    BuffaloRochester
5927 conventional       2017    BuffaloRochester
5928 conventional       2017    BuffaloRochester
5929 conventional       2017    BuffaloRochester
5930 conventional       2017    BuffaloRochester
5931 conventional       2017    BuffaloRochester
5932 conventional       2017    BuffaloRochester
5933 conventional       2017    BuffaloRochester
5934 conventional       2017    BuffaloRochester
5935 conventional       2017          California
5936 conventional       2017          California
5937 conventional       2017          California
5938 conventional       2017          California
5939 conventional       2017          California
5940 conventional       2017          California
5941 conventional       2017          California
5942 conventional       2017          California
5943 conventional       2017          California
5944 conventional       2017          California
5945 conventional       2017          California
5946 conventional       2017          California
5947 conventional       2017          California
5948 conventional       2017          California
5949 conventional       2017          California
5950 conventional       2017          California
5951 conventional       2017          California
5952 conventional       2017          California
5953 conventional       2017          California
5954 conventional       2017          California
5955 conventional       2017          California
5956 conventional       2017          California
5957 conventional       2017          California
5958 conventional       2017          California
5959 conventional       2017          California
5960 conventional       2017          California
5961 conventional       2017          California
5962 conventional       2017          California
5963 conventional       2017          California
5964 conventional       2017          California
5965 conventional       2017          California
5966 conventional       2017          California
5967 conventional       2017          California
5968 conventional       2017          California
5969 conventional       2017          California
5970 conventional       2017          California
5971 conventional       2017          California
5972 conventional       2017          California
5973 conventional       2017          California
5974 conventional       2017          California
5975 conventional       2017          California
5976 conventional       2017          California
5977 conventional       2017          California
5978 conventional       2017          California
5979 conventional       2017          California
5980 conventional       2017          California
5981 conventional       2017          California
5982 conventional       2017          California
5983 conventional       2017          California
5984 conventional       2017          California
5985 conventional       2017          California
5986 conventional       2017          California
5987 conventional       2017          California
5988 conventional       2017           Charlotte
5989 conventional       2017           Charlotte
5990 conventional       2017           Charlotte
5991 conventional       2017           Charlotte
5992 conventional       2017           Charlotte
5993 conventional       2017           Charlotte
5994 conventional       2017           Charlotte
5995 conventional       2017           Charlotte
5996 conventional       2017           Charlotte
5997 conventional       2017           Charlotte
5998 conventional       2017           Charlotte
5999 conventional       2017           Charlotte
6000 conventional       2017           Charlotte
6001 conventional       2017           Charlotte
6002 conventional       2017           Charlotte
6003 conventional       2017           Charlotte
6004 conventional       2017           Charlotte
6005 conventional       2017           Charlotte
6006 conventional       2017           Charlotte
6007 conventional       2017           Charlotte
6008 conventional       2017           Charlotte
6009 conventional       2017           Charlotte
6010 conventional       2017           Charlotte
6011 conventional       2017           Charlotte
6012 conventional       2017           Charlotte
6013 conventional       2017           Charlotte
6014 conventional       2017           Charlotte
6015 conventional       2017           Charlotte
6016 conventional       2017           Charlotte
6017 conventional       2017           Charlotte
6018 conventional       2017           Charlotte
6019 conventional       2017           Charlotte
6020 conventional       2017           Charlotte
6021 conventional       2017           Charlotte
6022 conventional       2017           Charlotte
6023 conventional       2017           Charlotte
6024 conventional       2017           Charlotte
6025 conventional       2017           Charlotte
6026 conventional       2017           Charlotte
6027 conventional       2017           Charlotte
6028 conventional       2017           Charlotte
6029 conventional       2017           Charlotte
6030 conventional       2017           Charlotte
6031 conventional       2017           Charlotte
6032 conventional       2017           Charlotte
6033 conventional       2017           Charlotte
6034 conventional       2017           Charlotte
6035 conventional       2017           Charlotte
6036 conventional       2017           Charlotte
6037 conventional       2017           Charlotte
6038 conventional       2017           Charlotte
6039 conventional       2017           Charlotte
6040 conventional       2017           Charlotte
6041 conventional       2017             Chicago
6042 conventional       2017             Chicago
6043 conventional       2017             Chicago
6044 conventional       2017             Chicago
6045 conventional       2017             Chicago
6046 conventional       2017             Chicago
6047 conventional       2017             Chicago
6048 conventional       2017             Chicago
6049 conventional       2017             Chicago
6050 conventional       2017             Chicago
6051 conventional       2017             Chicago
6052 conventional       2017             Chicago
6053 conventional       2017             Chicago
6054 conventional       2017             Chicago
6055 conventional       2017             Chicago
6056 conventional       2017             Chicago
6057 conventional       2017             Chicago
6058 conventional       2017             Chicago
6059 conventional       2017             Chicago
6060 conventional       2017             Chicago
6061 conventional       2017             Chicago
6062 conventional       2017             Chicago
6063 conventional       2017             Chicago
6064 conventional       2017             Chicago
6065 conventional       2017             Chicago
6066 conventional       2017             Chicago
6067 conventional       2017             Chicago
6068 conventional       2017             Chicago
6069 conventional       2017             Chicago
6070 conventional       2017             Chicago
6071 conventional       2017             Chicago
6072 conventional       2017             Chicago
6073 conventional       2017             Chicago
6074 conventional       2017             Chicago
6075 conventional       2017             Chicago
6076 conventional       2017             Chicago
6077 conventional       2017             Chicago
6078 conventional       2017             Chicago
6079 conventional       2017             Chicago
6080 conventional       2017             Chicago
6081 conventional       2017             Chicago
6082 conventional       2017             Chicago
6083 conventional       2017             Chicago
6084 conventional       2017             Chicago
6085 conventional       2017             Chicago
6086 conventional       2017             Chicago
6087 conventional       2017             Chicago
6088 conventional       2017             Chicago
6089 conventional       2017             Chicago
6090 conventional       2017             Chicago
6091 conventional       2017             Chicago
6092 conventional       2017             Chicago
6093 conventional       2017             Chicago
6094 conventional       2017    CincinnatiDayton
6095 conventional       2017    CincinnatiDayton
6096 conventional       2017    CincinnatiDayton
6097 conventional       2017    CincinnatiDayton
6098 conventional       2017    CincinnatiDayton
6099 conventional       2017    CincinnatiDayton
6100 conventional       2017    CincinnatiDayton
6101 conventional       2017    CincinnatiDayton
6102 conventional       2017    CincinnatiDayton
6103 conventional       2017    CincinnatiDayton
6104 conventional       2017    CincinnatiDayton
6105 conventional       2017    CincinnatiDayton
6106 conventional       2017    CincinnatiDayton
6107 conventional       2017    CincinnatiDayton
6108 conventional       2017    CincinnatiDayton
6109 conventional       2017    CincinnatiDayton
6110 conventional       2017    CincinnatiDayton
6111 conventional       2017    CincinnatiDayton
6112 conventional       2017    CincinnatiDayton
6113 conventional       2017    CincinnatiDayton
6114 conventional       2017    CincinnatiDayton
6115 conventional       2017    CincinnatiDayton
6116 conventional       2017    CincinnatiDayton
6117 conventional       2017    CincinnatiDayton
6118 conventional       2017    CincinnatiDayton
6119 conventional       2017    CincinnatiDayton
6120 conventional       2017    CincinnatiDayton
6121 conventional       2017    CincinnatiDayton
6122 conventional       2017    CincinnatiDayton
6123 conventional       2017    CincinnatiDayton
6124 conventional       2017    CincinnatiDayton
6125 conventional       2017    CincinnatiDayton
6126 conventional       2017    CincinnatiDayton
6127 conventional       2017    CincinnatiDayton
6128 conventional       2017    CincinnatiDayton
6129 conventional       2017    CincinnatiDayton
6130 conventional       2017    CincinnatiDayton
6131 conventional       2017    CincinnatiDayton
6132 conventional       2017    CincinnatiDayton
6133 conventional       2017    CincinnatiDayton
6134 conventional       2017    CincinnatiDayton
6135 conventional       2017    CincinnatiDayton
6136 conventional       2017    CincinnatiDayton
6137 conventional       2017    CincinnatiDayton
6138 conventional       2017    CincinnatiDayton
6139 conventional       2017    CincinnatiDayton
6140 conventional       2017    CincinnatiDayton
6141 conventional       2017    CincinnatiDayton
6142 conventional       2017    CincinnatiDayton
6143 conventional       2017    CincinnatiDayton
6144 conventional       2017    CincinnatiDayton
6145 conventional       2017    CincinnatiDayton
6146 conventional       2017    CincinnatiDayton
6147 conventional       2017            Columbus
6148 conventional       2017            Columbus
6149 conventional       2017            Columbus
6150 conventional       2017            Columbus
6151 conventional       2017            Columbus
6152 conventional       2017            Columbus
6153 conventional       2017            Columbus
6154 conventional       2017            Columbus
6155 conventional       2017            Columbus
6156 conventional       2017            Columbus
6157 conventional       2017            Columbus
6158 conventional       2017            Columbus
6159 conventional       2017            Columbus
6160 conventional       2017            Columbus
6161 conventional       2017            Columbus
6162 conventional       2017            Columbus
6163 conventional       2017            Columbus
6164 conventional       2017            Columbus
6165 conventional       2017            Columbus
6166 conventional       2017            Columbus
6167 conventional       2017            Columbus
6168 conventional       2017            Columbus
6169 conventional       2017            Columbus
6170 conventional       2017            Columbus
6171 conventional       2017            Columbus
6172 conventional       2017            Columbus
6173 conventional       2017            Columbus
6174 conventional       2017            Columbus
6175 conventional       2017            Columbus
6176 conventional       2017            Columbus
6177 conventional       2017            Columbus
6178 conventional       2017            Columbus
6179 conventional       2017            Columbus
6180 conventional       2017            Columbus
6181 conventional       2017            Columbus
6182 conventional       2017            Columbus
6183 conventional       2017            Columbus
6184 conventional       2017            Columbus
6185 conventional       2017            Columbus
6186 conventional       2017            Columbus
6187 conventional       2017            Columbus
6188 conventional       2017            Columbus
6189 conventional       2017            Columbus
6190 conventional       2017            Columbus
6191 conventional       2017            Columbus
6192 conventional       2017            Columbus
6193 conventional       2017            Columbus
6194 conventional       2017            Columbus
6195 conventional       2017            Columbus
6196 conventional       2017            Columbus
6197 conventional       2017            Columbus
6198 conventional       2017            Columbus
6199 conventional       2017            Columbus
6200 conventional       2017       DallasFtWorth
6201 conventional       2017       DallasFtWorth
6202 conventional       2017       DallasFtWorth
6203 conventional       2017       DallasFtWorth
6204 conventional       2017       DallasFtWorth
6205 conventional       2017       DallasFtWorth
6206 conventional       2017       DallasFtWorth
6207 conventional       2017       DallasFtWorth
6208 conventional       2017       DallasFtWorth
6209 conventional       2017       DallasFtWorth
6210 conventional       2017       DallasFtWorth
6211 conventional       2017       DallasFtWorth
6212 conventional       2017       DallasFtWorth
6213 conventional       2017       DallasFtWorth
6214 conventional       2017       DallasFtWorth
6215 conventional       2017       DallasFtWorth
6216 conventional       2017       DallasFtWorth
6217 conventional       2017       DallasFtWorth
6218 conventional       2017       DallasFtWorth
6219 conventional       2017       DallasFtWorth
6220 conventional       2017       DallasFtWorth
6221 conventional       2017       DallasFtWorth
6222 conventional       2017       DallasFtWorth
6223 conventional       2017       DallasFtWorth
6224 conventional       2017       DallasFtWorth
6225 conventional       2017       DallasFtWorth
6226 conventional       2017       DallasFtWorth
6227 conventional       2017       DallasFtWorth
6228 conventional       2017       DallasFtWorth
6229 conventional       2017       DallasFtWorth
6230 conventional       2017       DallasFtWorth
6231 conventional       2017       DallasFtWorth
6232 conventional       2017       DallasFtWorth
6233 conventional       2017       DallasFtWorth
6234 conventional       2017       DallasFtWorth
6235 conventional       2017       DallasFtWorth
6236 conventional       2017       DallasFtWorth
6237 conventional       2017       DallasFtWorth
6238 conventional       2017       DallasFtWorth
6239 conventional       2017       DallasFtWorth
6240 conventional       2017       DallasFtWorth
6241 conventional       2017       DallasFtWorth
6242 conventional       2017       DallasFtWorth
6243 conventional       2017       DallasFtWorth
6244 conventional       2017       DallasFtWorth
6245 conventional       2017       DallasFtWorth
6246 conventional       2017       DallasFtWorth
6247 conventional       2017       DallasFtWorth
6248 conventional       2017       DallasFtWorth
6249 conventional       2017       DallasFtWorth
6250 conventional       2017       DallasFtWorth
6251 conventional       2017       DallasFtWorth
6252 conventional       2017       DallasFtWorth
6253 conventional       2017              Denver
6254 conventional       2017              Denver
6255 conventional       2017              Denver
6256 conventional       2017              Denver
6257 conventional       2017              Denver
6258 conventional       2017              Denver
6259 conventional       2017              Denver
6260 conventional       2017              Denver
6261 conventional       2017              Denver
6262 conventional       2017              Denver
6263 conventional       2017              Denver
6264 conventional       2017              Denver
6265 conventional       2017              Denver
6266 conventional       2017              Denver
6267 conventional       2017              Denver
6268 conventional       2017              Denver
6269 conventional       2017              Denver
6270 conventional       2017              Denver
6271 conventional       2017              Denver
6272 conventional       2017              Denver
6273 conventional       2017              Denver
6274 conventional       2017              Denver
6275 conventional       2017              Denver
6276 conventional       2017              Denver
6277 conventional       2017              Denver
6278 conventional       2017              Denver
6279 conventional       2017              Denver
6280 conventional       2017              Denver
6281 conventional       2017              Denver
6282 conventional       2017              Denver
6283 conventional       2017              Denver
6284 conventional       2017              Denver
6285 conventional       2017              Denver
6286 conventional       2017              Denver
6287 conventional       2017              Denver
6288 conventional       2017              Denver
6289 conventional       2017              Denver
6290 conventional       2017              Denver
6291 conventional       2017              Denver
6292 conventional       2017              Denver
6293 conventional       2017              Denver
6294 conventional       2017              Denver
6295 conventional       2017              Denver
6296 conventional       2017              Denver
6297 conventional       2017              Denver
6298 conventional       2017              Denver
6299 conventional       2017              Denver
6300 conventional       2017              Denver
6301 conventional       2017              Denver
6302 conventional       2017              Denver
6303 conventional       2017              Denver
6304 conventional       2017              Denver
6305 conventional       2017              Denver
6306 conventional       2017             Detroit
6307 conventional       2017             Detroit
6308 conventional       2017             Detroit
6309 conventional       2017             Detroit
6310 conventional       2017             Detroit
6311 conventional       2017             Detroit
6312 conventional       2017             Detroit
6313 conventional       2017             Detroit
6314 conventional       2017             Detroit
6315 conventional       2017             Detroit
6316 conventional       2017             Detroit
6317 conventional       2017             Detroit
6318 conventional       2017             Detroit
6319 conventional       2017             Detroit
6320 conventional       2017             Detroit
6321 conventional       2017             Detroit
6322 conventional       2017             Detroit
6323 conventional       2017             Detroit
6324 conventional       2017             Detroit
6325 conventional       2017             Detroit
6326 conventional       2017             Detroit
6327 conventional       2017             Detroit
6328 conventional       2017             Detroit
6329 conventional       2017             Detroit
6330 conventional       2017             Detroit
6331 conventional       2017             Detroit
6332 conventional       2017             Detroit
6333 conventional       2017             Detroit
6334 conventional       2017             Detroit
6335 conventional       2017             Detroit
6336 conventional       2017             Detroit
6337 conventional       2017             Detroit
6338 conventional       2017             Detroit
6339 conventional       2017             Detroit
6340 conventional       2017             Detroit
6341 conventional       2017             Detroit
6342 conventional       2017             Detroit
6343 conventional       2017             Detroit
6344 conventional       2017             Detroit
6345 conventional       2017             Detroit
6346 conventional       2017             Detroit
6347 conventional       2017             Detroit
6348 conventional       2017             Detroit
6349 conventional       2017             Detroit
6350 conventional       2017             Detroit
6351 conventional       2017             Detroit
6352 conventional       2017             Detroit
6353 conventional       2017             Detroit
6354 conventional       2017             Detroit
6355 conventional       2017             Detroit
6356 conventional       2017             Detroit
6357 conventional       2017             Detroit
6358 conventional       2017             Detroit
6359 conventional       2017         GrandRapids
6360 conventional       2017         GrandRapids
6361 conventional       2017         GrandRapids
6362 conventional       2017         GrandRapids
6363 conventional       2017         GrandRapids
6364 conventional       2017         GrandRapids
6365 conventional       2017         GrandRapids
6366 conventional       2017         GrandRapids
6367 conventional       2017         GrandRapids
6368 conventional       2017         GrandRapids
6369 conventional       2017         GrandRapids
6370 conventional       2017         GrandRapids
6371 conventional       2017         GrandRapids
6372 conventional       2017         GrandRapids
6373 conventional       2017         GrandRapids
6374 conventional       2017         GrandRapids
6375 conventional       2017         GrandRapids
6376 conventional       2017         GrandRapids
6377 conventional       2017         GrandRapids
6378 conventional       2017         GrandRapids
6379 conventional       2017         GrandRapids
6380 conventional       2017         GrandRapids
6381 conventional       2017         GrandRapids
6382 conventional       2017         GrandRapids
6383 conventional       2017         GrandRapids
6384 conventional       2017         GrandRapids
6385 conventional       2017         GrandRapids
6386 conventional       2017         GrandRapids
6387 conventional       2017         GrandRapids
6388 conventional       2017         GrandRapids
6389 conventional       2017         GrandRapids
6390 conventional       2017         GrandRapids
6391 conventional       2017         GrandRapids
6392 conventional       2017         GrandRapids
6393 conventional       2017         GrandRapids
6394 conventional       2017         GrandRapids
6395 conventional       2017         GrandRapids
6396 conventional       2017         GrandRapids
6397 conventional       2017         GrandRapids
6398 conventional       2017         GrandRapids
6399 conventional       2017         GrandRapids
6400 conventional       2017         GrandRapids
6401 conventional       2017         GrandRapids
6402 conventional       2017         GrandRapids
6403 conventional       2017         GrandRapids
6404 conventional       2017         GrandRapids
6405 conventional       2017         GrandRapids
6406 conventional       2017         GrandRapids
6407 conventional       2017         GrandRapids
6408 conventional       2017         GrandRapids
6409 conventional       2017         GrandRapids
6410 conventional       2017         GrandRapids
6411 conventional       2017         GrandRapids
6412 conventional       2017          GreatLakes
6413 conventional       2017          GreatLakes
6414 conventional       2017          GreatLakes
6415 conventional       2017          GreatLakes
6416 conventional       2017          GreatLakes
6417 conventional       2017          GreatLakes
6418 conventional       2017          GreatLakes
6419 conventional       2017          GreatLakes
6420 conventional       2017          GreatLakes
6421 conventional       2017          GreatLakes
6422 conventional       2017          GreatLakes
6423 conventional       2017          GreatLakes
6424 conventional       2017          GreatLakes
6425 conventional       2017          GreatLakes
6426 conventional       2017          GreatLakes
6427 conventional       2017          GreatLakes
6428 conventional       2017          GreatLakes
6429 conventional       2017          GreatLakes
6430 conventional       2017          GreatLakes
6431 conventional       2017          GreatLakes
6432 conventional       2017          GreatLakes
6433 conventional       2017          GreatLakes
6434 conventional       2017          GreatLakes
6435 conventional       2017          GreatLakes
6436 conventional       2017          GreatLakes
6437 conventional       2017          GreatLakes
6438 conventional       2017          GreatLakes
6439 conventional       2017          GreatLakes
6440 conventional       2017          GreatLakes
6441 conventional       2017          GreatLakes
6442 conventional       2017          GreatLakes
6443 conventional       2017          GreatLakes
6444 conventional       2017          GreatLakes
6445 conventional       2017          GreatLakes
6446 conventional       2017          GreatLakes
6447 conventional       2017          GreatLakes
6448 conventional       2017          GreatLakes
6449 conventional       2017          GreatLakes
6450 conventional       2017          GreatLakes
6451 conventional       2017          GreatLakes
6452 conventional       2017          GreatLakes
6453 conventional       2017          GreatLakes
6454 conventional       2017          GreatLakes
6455 conventional       2017          GreatLakes
6456 conventional       2017          GreatLakes
6457 conventional       2017          GreatLakes
6458 conventional       2017          GreatLakes
6459 conventional       2017          GreatLakes
6460 conventional       2017          GreatLakes
6461 conventional       2017          GreatLakes
6462 conventional       2017          GreatLakes
6463 conventional       2017          GreatLakes
6464 conventional       2017          GreatLakes
6465 conventional       2017  HarrisburgScranton
6466 conventional       2017  HarrisburgScranton
6467 conventional       2017  HarrisburgScranton
6468 conventional       2017  HarrisburgScranton
6469 conventional       2017  HarrisburgScranton
6470 conventional       2017  HarrisburgScranton
6471 conventional       2017  HarrisburgScranton
6472 conventional       2017  HarrisburgScranton
6473 conventional       2017  HarrisburgScranton
6474 conventional       2017  HarrisburgScranton
6475 conventional       2017  HarrisburgScranton
6476 conventional       2017  HarrisburgScranton
6477 conventional       2017  HarrisburgScranton
6478 conventional       2017  HarrisburgScranton
6479 conventional       2017  HarrisburgScranton
6480 conventional       2017  HarrisburgScranton
6481 conventional       2017  HarrisburgScranton
6482 conventional       2017  HarrisburgScranton
6483 conventional       2017  HarrisburgScranton
6484 conventional       2017  HarrisburgScranton
6485 conventional       2017  HarrisburgScranton
6486 conventional       2017  HarrisburgScranton
6487 conventional       2017  HarrisburgScranton
6488 conventional       2017  HarrisburgScranton
6489 conventional       2017  HarrisburgScranton
6490 conventional       2017  HarrisburgScranton
6491 conventional       2017  HarrisburgScranton
6492 conventional       2017  HarrisburgScranton
6493 conventional       2017  HarrisburgScranton
6494 conventional       2017  HarrisburgScranton
6495 conventional       2017  HarrisburgScranton
6496 conventional       2017  HarrisburgScranton
6497 conventional       2017  HarrisburgScranton
6498 conventional       2017  HarrisburgScranton
6499 conventional       2017  HarrisburgScranton
6500 conventional       2017  HarrisburgScranton
6501 conventional       2017  HarrisburgScranton
6502 conventional       2017  HarrisburgScranton
6503 conventional       2017  HarrisburgScranton
6504 conventional       2017  HarrisburgScranton
6505 conventional       2017  HarrisburgScranton
6506 conventional       2017  HarrisburgScranton
6507 conventional       2017  HarrisburgScranton
6508 conventional       2017  HarrisburgScranton
6509 conventional       2017  HarrisburgScranton
6510 conventional       2017  HarrisburgScranton
6511 conventional       2017  HarrisburgScranton
6512 conventional       2017  HarrisburgScranton
6513 conventional       2017  HarrisburgScranton
6514 conventional       2017  HarrisburgScranton
6515 conventional       2017  HarrisburgScranton
6516 conventional       2017  HarrisburgScranton
6517 conventional       2017  HarrisburgScranton
6518 conventional       2017 HartfordSpringfield
6519 conventional       2017 HartfordSpringfield
6520 conventional       2017 HartfordSpringfield
6521 conventional       2017 HartfordSpringfield
6522 conventional       2017 HartfordSpringfield
6523 conventional       2017 HartfordSpringfield
6524 conventional       2017 HartfordSpringfield
6525 conventional       2017 HartfordSpringfield
6526 conventional       2017 HartfordSpringfield
6527 conventional       2017 HartfordSpringfield
6528 conventional       2017 HartfordSpringfield
6529 conventional       2017 HartfordSpringfield
6530 conventional       2017 HartfordSpringfield
6531 conventional       2017 HartfordSpringfield
6532 conventional       2017 HartfordSpringfield
6533 conventional       2017 HartfordSpringfield
6534 conventional       2017 HartfordSpringfield
6535 conventional       2017 HartfordSpringfield
6536 conventional       2017 HartfordSpringfield
6537 conventional       2017 HartfordSpringfield
6538 conventional       2017 HartfordSpringfield
6539 conventional       2017 HartfordSpringfield
6540 conventional       2017 HartfordSpringfield
6541 conventional       2017 HartfordSpringfield
6542 conventional       2017 HartfordSpringfield
6543 conventional       2017 HartfordSpringfield
6544 conventional       2017 HartfordSpringfield
6545 conventional       2017 HartfordSpringfield
6546 conventional       2017 HartfordSpringfield
6547 conventional       2017 HartfordSpringfield
6548 conventional       2017 HartfordSpringfield
6549 conventional       2017 HartfordSpringfield
6550 conventional       2017 HartfordSpringfield
6551 conventional       2017 HartfordSpringfield
6552 conventional       2017 HartfordSpringfield
6553 conventional       2017 HartfordSpringfield
6554 conventional       2017 HartfordSpringfield
6555 conventional       2017 HartfordSpringfield
6556 conventional       2017 HartfordSpringfield
6557 conventional       2017 HartfordSpringfield
6558 conventional       2017 HartfordSpringfield
6559 conventional       2017 HartfordSpringfield
6560 conventional       2017 HartfordSpringfield
6561 conventional       2017 HartfordSpringfield
6562 conventional       2017 HartfordSpringfield
6563 conventional       2017 HartfordSpringfield
6564 conventional       2017 HartfordSpringfield
6565 conventional       2017 HartfordSpringfield
6566 conventional       2017 HartfordSpringfield
6567 conventional       2017 HartfordSpringfield
6568 conventional       2017 HartfordSpringfield
6569 conventional       2017 HartfordSpringfield
6570 conventional       2017 HartfordSpringfield
6571 conventional       2017             Houston
6572 conventional       2017             Houston
6573 conventional       2017             Houston
6574 conventional       2017             Houston
6575 conventional       2017             Houston
6576 conventional       2017             Houston
6577 conventional       2017             Houston
6578 conventional       2017             Houston
6579 conventional       2017             Houston
6580 conventional       2017             Houston
6581 conventional       2017             Houston
6582 conventional       2017             Houston
6583 conventional       2017             Houston
6584 conventional       2017             Houston
6585 conventional       2017             Houston
6586 conventional       2017             Houston
6587 conventional       2017             Houston
6588 conventional       2017             Houston
6589 conventional       2017             Houston
6590 conventional       2017             Houston
6591 conventional       2017             Houston
6592 conventional       2017             Houston
6593 conventional       2017             Houston
6594 conventional       2017             Houston
6595 conventional       2017             Houston
6596 conventional       2017             Houston
6597 conventional       2017             Houston
6598 conventional       2017             Houston
6599 conventional       2017             Houston
6600 conventional       2017             Houston
6601 conventional       2017             Houston
6602 conventional       2017             Houston
6603 conventional       2017             Houston
6604 conventional       2017             Houston
6605 conventional       2017             Houston
6606 conventional       2017             Houston
6607 conventional       2017             Houston
6608 conventional       2017             Houston
6609 conventional       2017             Houston
6610 conventional       2017             Houston
6611 conventional       2017             Houston
6612 conventional       2017             Houston
6613 conventional       2017             Houston
6614 conventional       2017             Houston
6615 conventional       2017             Houston
6616 conventional       2017             Houston
6617 conventional       2017             Houston
6618 conventional       2017             Houston
6619 conventional       2017             Houston
6620 conventional       2017             Houston
6621 conventional       2017             Houston
6622 conventional       2017             Houston
6623 conventional       2017             Houston
6624 conventional       2017        Indianapolis
6625 conventional       2017        Indianapolis
6626 conventional       2017        Indianapolis
6627 conventional       2017        Indianapolis
6628 conventional       2017        Indianapolis
6629 conventional       2017        Indianapolis
6630 conventional       2017        Indianapolis
6631 conventional       2017        Indianapolis
6632 conventional       2017        Indianapolis
6633 conventional       2017        Indianapolis
6634 conventional       2017        Indianapolis
6635 conventional       2017        Indianapolis
6636 conventional       2017        Indianapolis
6637 conventional       2017        Indianapolis
6638 conventional       2017        Indianapolis
6639 conventional       2017        Indianapolis
6640 conventional       2017        Indianapolis
6641 conventional       2017        Indianapolis
6642 conventional       2017        Indianapolis
6643 conventional       2017        Indianapolis
6644 conventional       2017        Indianapolis
6645 conventional       2017        Indianapolis
6646 conventional       2017        Indianapolis
6647 conventional       2017        Indianapolis
6648 conventional       2017        Indianapolis
6649 conventional       2017        Indianapolis
6650 conventional       2017        Indianapolis
6651 conventional       2017        Indianapolis
6652 conventional       2017        Indianapolis
6653 conventional       2017        Indianapolis
6654 conventional       2017        Indianapolis
6655 conventional       2017        Indianapolis
6656 conventional       2017        Indianapolis
6657 conventional       2017        Indianapolis
6658 conventional       2017        Indianapolis
6659 conventional       2017        Indianapolis
6660 conventional       2017        Indianapolis
6661 conventional       2017        Indianapolis
6662 conventional       2017        Indianapolis
6663 conventional       2017        Indianapolis
6664 conventional       2017        Indianapolis
6665 conventional       2017        Indianapolis
6666 conventional       2017        Indianapolis
6667 conventional       2017        Indianapolis
6668 conventional       2017        Indianapolis
6669 conventional       2017        Indianapolis
6670 conventional       2017        Indianapolis
6671 conventional       2017        Indianapolis
6672 conventional       2017        Indianapolis
6673 conventional       2017        Indianapolis
6674 conventional       2017        Indianapolis
6675 conventional       2017        Indianapolis
6676 conventional       2017        Indianapolis
6677 conventional       2017        Jacksonville
6678 conventional       2017        Jacksonville
6679 conventional       2017        Jacksonville
6680 conventional       2017        Jacksonville
6681 conventional       2017        Jacksonville
6682 conventional       2017        Jacksonville
6683 conventional       2017        Jacksonville
6684 conventional       2017        Jacksonville
6685 conventional       2017        Jacksonville
6686 conventional       2017        Jacksonville
6687 conventional       2017        Jacksonville
6688 conventional       2017        Jacksonville
6689 conventional       2017        Jacksonville
6690 conventional       2017        Jacksonville
6691 conventional       2017        Jacksonville
6692 conventional       2017        Jacksonville
6693 conventional       2017        Jacksonville
6694 conventional       2017        Jacksonville
6695 conventional       2017        Jacksonville
6696 conventional       2017        Jacksonville
6697 conventional       2017        Jacksonville
6698 conventional       2017        Jacksonville
6699 conventional       2017        Jacksonville
6700 conventional       2017        Jacksonville
6701 conventional       2017        Jacksonville
6702 conventional       2017        Jacksonville
6703 conventional       2017        Jacksonville
6704 conventional       2017        Jacksonville
6705 conventional       2017        Jacksonville
6706 conventional       2017        Jacksonville
6707 conventional       2017        Jacksonville
6708 conventional       2017        Jacksonville
6709 conventional       2017        Jacksonville
6710 conventional       2017        Jacksonville
6711 conventional       2017        Jacksonville
6712 conventional       2017        Jacksonville
6713 conventional       2017        Jacksonville
6714 conventional       2017        Jacksonville
6715 conventional       2017        Jacksonville
6716 conventional       2017        Jacksonville
6717 conventional       2017        Jacksonville
6718 conventional       2017        Jacksonville
6719 conventional       2017        Jacksonville
6720 conventional       2017        Jacksonville
6721 conventional       2017        Jacksonville
6722 conventional       2017        Jacksonville
6723 conventional       2017        Jacksonville
6724 conventional       2017        Jacksonville
6725 conventional       2017        Jacksonville
6726 conventional       2017        Jacksonville
6727 conventional       2017        Jacksonville
6728 conventional       2017        Jacksonville
6729 conventional       2017        Jacksonville
6730 conventional       2017            LasVegas
6731 conventional       2017            LasVegas
6732 conventional       2017            LasVegas
6733 conventional       2017            LasVegas
6734 conventional       2017            LasVegas
6735 conventional       2017            LasVegas
6736 conventional       2017            LasVegas
6737 conventional       2017            LasVegas
6738 conventional       2017            LasVegas
6739 conventional       2017            LasVegas
6740 conventional       2017            LasVegas
6741 conventional       2017            LasVegas
6742 conventional       2017            LasVegas
6743 conventional       2017            LasVegas
6744 conventional       2017            LasVegas
6745 conventional       2017            LasVegas
6746 conventional       2017            LasVegas
6747 conventional       2017            LasVegas
6748 conventional       2017            LasVegas
6749 conventional       2017            LasVegas
6750 conventional       2017            LasVegas
6751 conventional       2017            LasVegas
6752 conventional       2017            LasVegas
6753 conventional       2017            LasVegas
6754 conventional       2017            LasVegas
6755 conventional       2017            LasVegas
6756 conventional       2017            LasVegas
6757 conventional       2017            LasVegas
6758 conventional       2017            LasVegas
6759 conventional       2017            LasVegas
6760 conventional       2017            LasVegas
6761 conventional       2017            LasVegas
6762 conventional       2017            LasVegas
6763 conventional       2017            LasVegas
6764 conventional       2017            LasVegas
6765 conventional       2017            LasVegas
6766 conventional       2017            LasVegas
6767 conventional       2017            LasVegas
6768 conventional       2017            LasVegas
6769 conventional       2017            LasVegas
6770 conventional       2017            LasVegas
6771 conventional       2017            LasVegas
6772 conventional       2017            LasVegas
6773 conventional       2017            LasVegas
6774 conventional       2017            LasVegas
6775 conventional       2017            LasVegas
6776 conventional       2017            LasVegas
6777 conventional       2017            LasVegas
6778 conventional       2017            LasVegas
6779 conventional       2017            LasVegas
6780 conventional       2017            LasVegas
6781 conventional       2017            LasVegas
6782 conventional       2017            LasVegas
6783 conventional       2017          LosAngeles
6784 conventional       2017          LosAngeles
6785 conventional       2017          LosAngeles
6786 conventional       2017          LosAngeles
6787 conventional       2017          LosAngeles
6788 conventional       2017          LosAngeles
6789 conventional       2017          LosAngeles
6790 conventional       2017          LosAngeles
6791 conventional       2017          LosAngeles
6792 conventional       2017          LosAngeles
6793 conventional       2017          LosAngeles
6794 conventional       2017          LosAngeles
6795 conventional       2017          LosAngeles
6796 conventional       2017          LosAngeles
6797 conventional       2017          LosAngeles
6798 conventional       2017          LosAngeles
6799 conventional       2017          LosAngeles
6800 conventional       2017          LosAngeles
6801 conventional       2017          LosAngeles
6802 conventional       2017          LosAngeles
6803 conventional       2017          LosAngeles
6804 conventional       2017          LosAngeles
6805 conventional       2017          LosAngeles
6806 conventional       2017          LosAngeles
6807 conventional       2017          LosAngeles
6808 conventional       2017          LosAngeles
6809 conventional       2017          LosAngeles
6810 conventional       2017          LosAngeles
6811 conventional       2017          LosAngeles
6812 conventional       2017          LosAngeles
6813 conventional       2017          LosAngeles
6814 conventional       2017          LosAngeles
6815 conventional       2017          LosAngeles
6816 conventional       2017          LosAngeles
6817 conventional       2017          LosAngeles
6818 conventional       2017          LosAngeles
6819 conventional       2017          LosAngeles
6820 conventional       2017          LosAngeles
6821 conventional       2017          LosAngeles
6822 conventional       2017          LosAngeles
6823 conventional       2017          LosAngeles
6824 conventional       2017          LosAngeles
6825 conventional       2017          LosAngeles
6826 conventional       2017          LosAngeles
6827 conventional       2017          LosAngeles
6828 conventional       2017          LosAngeles
6829 conventional       2017          LosAngeles
6830 conventional       2017          LosAngeles
6831 conventional       2017          LosAngeles
6832 conventional       2017          LosAngeles
6833 conventional       2017          LosAngeles
6834 conventional       2017          LosAngeles
6835 conventional       2017          LosAngeles
6836 conventional       2017          Louisville
6837 conventional       2017          Louisville
6838 conventional       2017          Louisville
6839 conventional       2017          Louisville
6840 conventional       2017          Louisville
6841 conventional       2017          Louisville
6842 conventional       2017          Louisville
6843 conventional       2017          Louisville
6844 conventional       2017          Louisville
6845 conventional       2017          Louisville
6846 conventional       2017          Louisville
6847 conventional       2017          Louisville
6848 conventional       2017          Louisville
6849 conventional       2017          Louisville
6850 conventional       2017          Louisville
6851 conventional       2017          Louisville
6852 conventional       2017          Louisville
6853 conventional       2017          Louisville
6854 conventional       2017          Louisville
6855 conventional       2017          Louisville
6856 conventional       2017          Louisville
6857 conventional       2017          Louisville
6858 conventional       2017          Louisville
6859 conventional       2017          Louisville
6860 conventional       2017          Louisville
6861 conventional       2017          Louisville
6862 conventional       2017          Louisville
6863 conventional       2017          Louisville
6864 conventional       2017          Louisville
6865 conventional       2017          Louisville
6866 conventional       2017          Louisville
6867 conventional       2017          Louisville
6868 conventional       2017          Louisville
6869 conventional       2017          Louisville
6870 conventional       2017          Louisville
6871 conventional       2017          Louisville
6872 conventional       2017          Louisville
6873 conventional       2017          Louisville
6874 conventional       2017          Louisville
6875 conventional       2017          Louisville
6876 conventional       2017          Louisville
6877 conventional       2017          Louisville
6878 conventional       2017          Louisville
6879 conventional       2017          Louisville
6880 conventional       2017          Louisville
6881 conventional       2017          Louisville
6882 conventional       2017          Louisville
6883 conventional       2017          Louisville
6884 conventional       2017          Louisville
6885 conventional       2017          Louisville
6886 conventional       2017          Louisville
6887 conventional       2017          Louisville
6888 conventional       2017          Louisville
6889 conventional       2017   MiamiFtLauderdale
6890 conventional       2017   MiamiFtLauderdale
6891 conventional       2017   MiamiFtLauderdale
6892 conventional       2017   MiamiFtLauderdale
6893 conventional       2017   MiamiFtLauderdale
6894 conventional       2017   MiamiFtLauderdale
6895 conventional       2017   MiamiFtLauderdale
6896 conventional       2017   MiamiFtLauderdale
6897 conventional       2017   MiamiFtLauderdale
6898 conventional       2017   MiamiFtLauderdale
6899 conventional       2017   MiamiFtLauderdale
6900 conventional       2017   MiamiFtLauderdale
6901 conventional       2017   MiamiFtLauderdale
6902 conventional       2017   MiamiFtLauderdale
6903 conventional       2017   MiamiFtLauderdale
6904 conventional       2017   MiamiFtLauderdale
6905 conventional       2017   MiamiFtLauderdale
6906 conventional       2017   MiamiFtLauderdale
6907 conventional       2017   MiamiFtLauderdale
6908 conventional       2017   MiamiFtLauderdale
6909 conventional       2017   MiamiFtLauderdale
6910 conventional       2017   MiamiFtLauderdale
6911 conventional       2017   MiamiFtLauderdale
6912 conventional       2017   MiamiFtLauderdale
6913 conventional       2017   MiamiFtLauderdale
6914 conventional       2017   MiamiFtLauderdale
6915 conventional       2017   MiamiFtLauderdale
6916 conventional       2017   MiamiFtLauderdale
6917 conventional       2017   MiamiFtLauderdale
6918 conventional       2017   MiamiFtLauderdale
6919 conventional       2017   MiamiFtLauderdale
6920 conventional       2017   MiamiFtLauderdale
6921 conventional       2017   MiamiFtLauderdale
6922 conventional       2017   MiamiFtLauderdale
6923 conventional       2017   MiamiFtLauderdale
6924 conventional       2017   MiamiFtLauderdale
6925 conventional       2017   MiamiFtLauderdale
6926 conventional       2017   MiamiFtLauderdale
6927 conventional       2017   MiamiFtLauderdale
6928 conventional       2017   MiamiFtLauderdale
6929 conventional       2017   MiamiFtLauderdale
6930 conventional       2017   MiamiFtLauderdale
6931 conventional       2017   MiamiFtLauderdale
6932 conventional       2017   MiamiFtLauderdale
6933 conventional       2017   MiamiFtLauderdale
6934 conventional       2017   MiamiFtLauderdale
6935 conventional       2017   MiamiFtLauderdale
6936 conventional       2017   MiamiFtLauderdale
6937 conventional       2017   MiamiFtLauderdale
6938 conventional       2017   MiamiFtLauderdale
6939 conventional       2017   MiamiFtLauderdale
6940 conventional       2017   MiamiFtLauderdale
6941 conventional       2017   MiamiFtLauderdale
6942 conventional       2017            Midsouth
6943 conventional       2017            Midsouth
6944 conventional       2017            Midsouth
6945 conventional       2017            Midsouth
6946 conventional       2017            Midsouth
6947 conventional       2017            Midsouth
6948 conventional       2017            Midsouth
6949 conventional       2017            Midsouth
6950 conventional       2017            Midsouth
6951 conventional       2017            Midsouth
6952 conventional       2017            Midsouth
6953 conventional       2017            Midsouth
6954 conventional       2017            Midsouth
6955 conventional       2017            Midsouth
6956 conventional       2017            Midsouth
6957 conventional       2017            Midsouth
6958 conventional       2017            Midsouth
6959 conventional       2017            Midsouth
6960 conventional       2017            Midsouth
6961 conventional       2017            Midsouth
6962 conventional       2017            Midsouth
6963 conventional       2017            Midsouth
6964 conventional       2017            Midsouth
6965 conventional       2017            Midsouth
6966 conventional       2017            Midsouth
6967 conventional       2017            Midsouth
6968 conventional       2017            Midsouth
6969 conventional       2017            Midsouth
6970 conventional       2017            Midsouth
6971 conventional       2017            Midsouth
6972 conventional       2017            Midsouth
6973 conventional       2017            Midsouth
6974 conventional       2017            Midsouth
6975 conventional       2017            Midsouth
6976 conventional       2017            Midsouth
6977 conventional       2017            Midsouth
6978 conventional       2017            Midsouth
6979 conventional       2017            Midsouth
6980 conventional       2017            Midsouth
6981 conventional       2017            Midsouth
6982 conventional       2017            Midsouth
6983 conventional       2017            Midsouth
6984 conventional       2017            Midsouth
6985 conventional       2017            Midsouth
6986 conventional       2017            Midsouth
6987 conventional       2017            Midsouth
6988 conventional       2017            Midsouth
6989 conventional       2017            Midsouth
6990 conventional       2017            Midsouth
6991 conventional       2017            Midsouth
6992 conventional       2017            Midsouth
6993 conventional       2017            Midsouth
6994 conventional       2017            Midsouth
6995 conventional       2017           Nashville
6996 conventional       2017           Nashville
6997 conventional       2017           Nashville
6998 conventional       2017           Nashville
6999 conventional       2017           Nashville
7000 conventional       2017           Nashville
7001 conventional       2017           Nashville
7002 conventional       2017           Nashville
7003 conventional       2017           Nashville
7004 conventional       2017           Nashville
7005 conventional       2017           Nashville
7006 conventional       2017           Nashville
7007 conventional       2017           Nashville
7008 conventional       2017           Nashville
7009 conventional       2017           Nashville
7010 conventional       2017           Nashville
7011 conventional       2017           Nashville
7012 conventional       2017           Nashville
7013 conventional       2017           Nashville
7014 conventional       2017           Nashville
7015 conventional       2017           Nashville
7016 conventional       2017           Nashville
7017 conventional       2017           Nashville
7018 conventional       2017           Nashville
7019 conventional       2017           Nashville
7020 conventional       2017           Nashville
7021 conventional       2017           Nashville
7022 conventional       2017           Nashville
7023 conventional       2017           Nashville
7024 conventional       2017           Nashville
7025 conventional       2017           Nashville
7026 conventional       2017           Nashville
7027 conventional       2017           Nashville
7028 conventional       2017           Nashville
7029 conventional       2017           Nashville
7030 conventional       2017           Nashville
7031 conventional       2017           Nashville
7032 conventional       2017           Nashville
7033 conventional       2017           Nashville
7034 conventional       2017           Nashville
7035 conventional       2017           Nashville
7036 conventional       2017           Nashville
7037 conventional       2017           Nashville
7038 conventional       2017           Nashville
7039 conventional       2017           Nashville
7040 conventional       2017           Nashville
7041 conventional       2017           Nashville
7042 conventional       2017           Nashville
7043 conventional       2017           Nashville
7044 conventional       2017           Nashville
7045 conventional       2017           Nashville
7046 conventional       2017           Nashville
7047 conventional       2017           Nashville
7048 conventional       2017    NewOrleansMobile
7049 conventional       2017    NewOrleansMobile
7050 conventional       2017    NewOrleansMobile
7051 conventional       2017    NewOrleansMobile
7052 conventional       2017    NewOrleansMobile
7053 conventional       2017    NewOrleansMobile
7054 conventional       2017    NewOrleansMobile
7055 conventional       2017    NewOrleansMobile
7056 conventional       2017    NewOrleansMobile
7057 conventional       2017    NewOrleansMobile
7058 conventional       2017    NewOrleansMobile
7059 conventional       2017    NewOrleansMobile
7060 conventional       2017    NewOrleansMobile
7061 conventional       2017    NewOrleansMobile
7062 conventional       2017    NewOrleansMobile
7063 conventional       2017    NewOrleansMobile
7064 conventional       2017    NewOrleansMobile
7065 conventional       2017    NewOrleansMobile
7066 conventional       2017    NewOrleansMobile
7067 conventional       2017    NewOrleansMobile
7068 conventional       2017    NewOrleansMobile
7069 conventional       2017    NewOrleansMobile
7070 conventional       2017    NewOrleansMobile
7071 conventional       2017    NewOrleansMobile
7072 conventional       2017    NewOrleansMobile
7073 conventional       2017    NewOrleansMobile
7074 conventional       2017    NewOrleansMobile
7075 conventional       2017    NewOrleansMobile
7076 conventional       2017    NewOrleansMobile
7077 conventional       2017    NewOrleansMobile
7078 conventional       2017    NewOrleansMobile
7079 conventional       2017    NewOrleansMobile
7080 conventional       2017    NewOrleansMobile
7081 conventional       2017    NewOrleansMobile
7082 conventional       2017    NewOrleansMobile
7083 conventional       2017    NewOrleansMobile
7084 conventional       2017    NewOrleansMobile
7085 conventional       2017    NewOrleansMobile
7086 conventional       2017    NewOrleansMobile
7087 conventional       2017    NewOrleansMobile
7088 conventional       2017    NewOrleansMobile
7089 conventional       2017    NewOrleansMobile
7090 conventional       2017    NewOrleansMobile
7091 conventional       2017    NewOrleansMobile
7092 conventional       2017    NewOrleansMobile
7093 conventional       2017    NewOrleansMobile
7094 conventional       2017    NewOrleansMobile
7095 conventional       2017    NewOrleansMobile
7096 conventional       2017    NewOrleansMobile
7097 conventional       2017    NewOrleansMobile
7098 conventional       2017    NewOrleansMobile
7099 conventional       2017    NewOrleansMobile
7100 conventional       2017    NewOrleansMobile
7101 conventional       2017             NewYork
7102 conventional       2017             NewYork
7103 conventional       2017             NewYork
7104 conventional       2017             NewYork
7105 conventional       2017             NewYork
7106 conventional       2017             NewYork
7107 conventional       2017             NewYork
7108 conventional       2017             NewYork
7109 conventional       2017             NewYork
7110 conventional       2017             NewYork
7111 conventional       2017             NewYork
7112 conventional       2017             NewYork
7113 conventional       2017             NewYork
7114 conventional       2017             NewYork
7115 conventional       2017             NewYork
7116 conventional       2017             NewYork
7117 conventional       2017             NewYork
7118 conventional       2017             NewYork
7119 conventional       2017             NewYork
7120 conventional       2017             NewYork
7121 conventional       2017             NewYork
7122 conventional       2017             NewYork
7123 conventional       2017             NewYork
7124 conventional       2017             NewYork
7125 conventional       2017             NewYork
7126 conventional       2017             NewYork
7127 conventional       2017             NewYork
7128 conventional       2017             NewYork
7129 conventional       2017             NewYork
7130 conventional       2017             NewYork
7131 conventional       2017             NewYork
7132 conventional       2017             NewYork
7133 conventional       2017             NewYork
7134 conventional       2017             NewYork
7135 conventional       2017             NewYork
7136 conventional       2017             NewYork
7137 conventional       2017             NewYork
7138 conventional       2017             NewYork
7139 conventional       2017             NewYork
7140 conventional       2017             NewYork
7141 conventional       2017             NewYork
7142 conventional       2017             NewYork
 [ reached 'max' / getOption("max.print") -- omitted 11107 rows ]

🥑MANIPULACION DE DATOS EN R

 # FILTRO PARA REGIONES
 # Atlanta  BaltimoreWashington Boise   Boston
 # BuffaloRochester California  Charlotte   Chicago
 # CincinnatiDayton Columbus    DallasFtWorth   Denver  
 # Detroit  GrandRapids GreatLakes  HarrisburgScranton
 # HartfordSpringfield  Houston Indianapolis    Jacksonville
 # LasVegas LosAngeles  Louisville  MiamiFtLauderdale   Midsouth
 # Nashville    NewOrleansMobile    NewYork Northeast   NorthernNewEngland
 # Orlando  Philadelphia    PhoenixTucson   Pittsburgh  Plains  Portland    
 # RaleighGreensboro    RichmondNorfolk Roanoke Sacramento  SanDiego
 # SanFrancisco Seattle SouthCarolina   SouthCentral    Southeast   Spokane
 # StLouis  Syracuse    Tampa   TotalUS West    WestTexNewMexico
 

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

ALBANY

 FRAME_ALBANY<- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Albany",])
 FRAME_ALBANY
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   1.33
2                                   1.35
3                                   0.93
4                                   1.08
5                                   1.28
6                                   1.26
7                                   0.99
8                                   0.98
9                                   1.02
10                                  1.07
11                                  1.12
12                                  1.28
13                                  1.31
14                                  0.99
15                                  1.33
16                                  1.28
17                                  1.11
18                                  1.07
19                                  1.34
20                                  1.33
21                                  1.12
22                                  1.45
23                                  1.11
24                                  1.26
25                                  1.05
26                                  1.35
27                                  1.37
28                                  1.27
29                                  1.32
30                                  1.07
31                                  1.23
32                                  1.19
33                                  1.43
34                                  1.26
35                                  1.20
36                                  1.22
37                                  1.19
38                                  1.13
39                                  1.16
40                                  1.02
41                                  1.12
42                                  1.11
43                                  1.07
44                                  0.99
45                                  1.07
46                                  1.06
47                                  0.99
48                                  0.99
49                                  1.06
50                                  1.17
51                                  1.24
52                                  1.22
53                                  1.52
54                                  1.53
55                                  1.49
56                                  1.48
57                                  1.52
58                                  1.56
59                                  1.62
60                                  1.63
61                                  1.46
62                                  1.19
63                                  1.40
64                                  1.13
65                                  1.51
66                                  1.62
67                                  1.39
68                                  1.37
69                                  1.44
70                                  1.18
71                                  1.43
72                                  1.20
73                                  1.48
74                                  1.61
75                                  1.46
76                                  1.31
77                                  1.11
78                                  1.42
79                                  1.50
80                                  1.42
81                                  1.38
82                                  1.47
83                                  1.49
84                                  1.34
85                                  1.36
86                                  1.27
87                                  1.03
88                                  1.18
89                                  1.22
90                                  1.46
91                                  0.85
92                                  1.49
93                                  1.32
94                                  1.18
95                                  1.27
96                                  1.26
97                                  1.28
98                                  1.13
99                                  1.07
100                                 1.16
101                                 1.22
102                                 1.26
103                                 1.28
104                                 1.03
105                                 1.47
106                                 1.45
107                                 1.43
108                                 1.29
109                                 1.39
110                                 1.50
111                                 1.65
112                                 1.26
113                                 1.62
114                                 1.67
115                                 1.56
116                                 1.65
117                                 1.78
118                                 1.69
119                                 1.64
120                                 1.41
121                                 1.78
122                                 1.76
123                                 1.61
124                                 1.61
125                                 1.52
126                                 1.53
127                                 1.61
128                                 1.49
129                                 1.39
130                                 1.52
131                                 1.56
132                                 1.53
133                                 1.58
134                                 1.65
135                                 1.70
136                                 1.80
137                                 1.38
138                                 1.77
139                                 1.47
140                                 1.13
141                                 1.34
142                                 1.62
143                                 1.54
144                                 1.62
145                                 1.16
146                                 1.60
147                                 1.54
148                                 1.18
149                                 1.40
150                                 1.67
151                                 1.42
152                                 1.49
153                                 1.31
154                                 1.59
155                                 1.55
156                                 1.55
157                                 1.47
158                                 1.57
159                                 1.35
160                                 1.12
161                                 1.08
162                                 1.28
163                                 1.43
164                                 1.45
165                                 1.03
166                                 1.57
167                                 1.69
168                                 1.42
169                                 1.13
170                                 1.83
171                                 1.89
172                                 1.85
173                                 1.84
174                                 1.94
175                                 1.94
176                                 1.89
177                                 1.88
178                                 1.88
179                                 1.83
180                                 1.97
181                                 1.90
182                                 1.98
183                                 1.98
184                                 1.98
185                                 1.99
186                                 1.86
187                                 1.88
188                                 1.87
189                                 2.00
190                                 1.88
191                                 2.00
192                                 2.01
193                                 2.08
194                                 2.01
195                                 2.04
196                                 2.02
197                                 2.09
198                                 2.03
199                                 1.93
200                                 1.90
201                                 1.93
202                                 1.87
203                                 1.98
204                                 2.03
205                                 1.90
206                                 1.96
207                                 1.76
208                                 1.93
209                                 1.93
210                                 1.86
211                                 1.79
212                                 1.79
213                                 1.76
214                                 1.82
215                                 1.81
216                                 1.59
217                                 1.83
218                                 1.89
219                                 1.93
220                                 1.77
221                                 1.79
222                                 1.93
223                                 1.86
224                                 1.90
225                                 1.97
226                                 1.97
227                                 1.93
228                                 2.00
229                                 1.93
230                                 1.96
231                                 1.86
232                                 1.75
233                                 1.75
234                                 1.73
235                                 1.68
236                                 1.69
237                                 1.68
238                                 1.73
239                                 1.66
240                                 1.67
241                                 1.72
242                                 1.67
243                                 1.43
244                                 1.42
245                                 1.57
246                                 1.58
247                                 1.43
248                                 1.53
249                                 1.45
250                                 1.43
251                                 1.47
252                                 1.49
253                                 1.55
254                                 1.59
255                                 1.83
256                                 1.78
257                                 1.77
258                                 1.82
259                                 1.62
260                                 1.56
261                                 1.65
262                                 1.76
263                                 1.79
264                                 1.92
265                                 1.79
266                                 1.79
267                                 1.81
268                                 1.81
269                                 1.79
270                                 1.83
271                                 1.67
272                                 1.83
273                                 1.75
274                                 1.46
275                                 1.58
276                                 1.43
277                                 1.45
278                                 1.44
279                                 1.57
280                                 1.75
281                                 1.71
282                                 1.50
283                                 1.38
284                                 1.49
285                                 1.47
286                                 1.40
287                                 1.59
288                                 1.42
289                                 1.55
290                                 1.78
291                                 2.00
292                                 1.91
293                                 1.86
294                                 1.90
295                                 1.98
296                                 1.67
297                                 1.42
298                                 1.87
299                                 2.00
300                                 2.03
301                                 2.13
302                                 2.03
303                                 2.04
304                                 1.63
305                                 1.87
306                                 1.84
307                                 1.57
308                                 1.79
309                                 1.74
310                                 1.92
311                                 1.85
312                                 1.92
313                                 1.86
314                                 2.02
315                                 1.87
316                                 1.97
317                                 1.84
318                                 1.71
319                                 1.67
320                                 1.78
321                                 1.72
322                                 1.86
323                                 1.82
324                                 1.84
325                                 1.94
326                                 1.87
327                                 1.71
328                                 1.66
329                                 1.68
330                                 1.48
331                                 1.56
332                                 1.43
333                                 1.43
334                                 1.52
335                                 1.32
336                                 1.54
337                                 1.47
338                                 1.54
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                    64237
2                                                    54877
3                                                   118220
4                                                    78992
5                                                    51040
6                                                    55980
7                                                    83454
8                                                   109428
9                                                    99811
10                                                   74339
11                                                   84843
12                                                   64489
13                                                   61007
14                                                  106803
15                                                   69759
16                                                   76111
17                                                   99173
18                                                  105694
19                                                   79992
20                                                   80044
21                                                  111141
22                                                   75133
23                                                  106757
24                                                   96617
25                                                  124055
26                                                  109252
27                                                   89535
28                                                  104849
29                                                   89631
30                                                  122743
31                                                   95124
32                                                  101471
33                                                  109857
34                                                  120428
35                                                   59198
36                                                   49585
37                                                   49065
38                                                   48364
39                                                   47362
40                                                   67799
41                                                   46347
42                                                   43046
43                                                   40507
44                                                   55596
45                                                   45675
46                                                   41568
47                                                   51254
48                                                   70874
49                                                   45148
50                                                   44511
51                                                   41195
52                                                   40873
53                                                   73342
54                                                   68939
55                                                   71778
56                                                  113032
57                                                   58172
58                                                   70090
59                                                   63608
60                                                   57178
61                                                   58375
62                                                   92080
63                                                   69061
64                                                  101088
65                                                   75480
66                                                   96853
67                                                   79514
68                                                   81473
69                                                   95456
70                                                  145323
71                                                   94883
72                                                  110528
73                                                   99683
74                                                  125587
75                                                   98321
76                                                   89228
77                                                  131630
78                                                  115908
79                                                  133087
80                                                  112818
81                                                  111395
82                                                  115857
83                                                  127812
84                                                   98864
85                                                   96924
86                                                  120194
87                                                  173782
88                                                  102490
89                                                   86434
90                                                   70253
91                                                   81694
92                                                   92529
93                                                  110402
94                                                  108265
95                                                   90634
96                                                   87822
97                                                   99817
98                                                   98008
99                                                  169614
100                                                 102038
101                                                  96089
102                                                 119972
103                                                  79122
104                                                 149038
105                                                 113514
106                                                  77039
107                                                  70678
108                                                  92326
109                                                 139970
110                                                  62977
111                                                  97273
112                                                 113586
113                                                  71077
114                                                  69432
115                                                  69704
116                                                  73575
117                                                  55369
118                                                  71205
119                                                  68540
120                                                  80109
121                                                  99646
122                                                  74298
123                                                  75472
124                                                  74620
125                                                 133070
126                                                  92938
127                                                  83600
128                                                  84417
129                                                 102462
130                                                 101331
131                                                  98282
132                                                  89303
133                                                  97079
134                                                  91949
135                                                  84843
136                                                 121869
137                                                 100257
138                                                  96751
139                                                 127193
140                                                 124926
141                                                  89327
142                                                  90487
143                                                 105436
144                                                  92621
145                                                 122952
146                                                  92775
147                                                  95713
148                                                 107354
149                                                  88371
150                                                  95475
151                                                  97216
152                                                 183549
153                                                  95425
154                                                 128679
155                                                  88526
156                                                  91728
157                                                 129948
158                                                 149397
159                                                 105305
160                                                 144649
161                                                 139521
162                                                 104279
163                                                  85630
164                                                 121804
165                                                 216738
166                                                  93625
167                                                 135196
168                                                  95246
169                                                  98540
170                                                    990
171                                                   1163
172                                                    996
173                                                   1158
174                                                    832
175                                                    859
176                                                   1209
177                                                   1332
178                                                   1022
179                                                   1162
180                                                    969
181                                                   1170
182                                                   1146
183                                                    814
184                                                    774
185                                                    903
186                                                   1169
187                                                   1239
188                                                   1276
189                                                   1467
190                                                   1421
191                                                   1224
192                                                   1449
193                                                   1076
194                                                   1175
195                                                   1573
196                                                   1201
197                                                   1054
198                                                   1542
199                                                   1547
200                                                   1752
201                                                   1629
202                                                   1881
203                                                   2117
204                                                   1799
205                                                    930
206                                                   1516
207                                                   1635
208                                                   1526
209                                                   1082
210                                                   1375
211                                                   1474
212                                                   1626
213                                                   1663
214                                                   1152
215                                                   1182
216                                                   1771
217                                                   1229
218                                                   1116
219                                                   1118
220                                                   1183
221                                                   1374
222                                                   1715
223                                                   1473
224                                                   1887
225                                                   1365
226                                                   1647
227                                                   1863
228                                                   2084
229                                                   2674
230                                                   1327
231                                                   1914
232                                                   1940
233                                                   2179
234                                                   2493
235                                                   2020
236                                                   2138
237                                                   3501
238                                                   2195
239                                                   1922
240                                                   1926
241                                                   1609
242                                                   1546
243                                                   1553
244                                                   1811
245                                                   2400
246                                                   2173
247                                                   3529
248                                                   1923
249                                                    974
250                                                    887
251                                                   1007
252                                                   1117
253                                                   1193
254                                                   1260
255                                                   2104
256                                                   1604
257                                                   2329
258                                                   2059
259                                                   2162
260                                                   1903
261                                                   1705
262                                                   1733
263                                                   1823
264                                                   1704
265                                                   1486
266                                                   1283
267                                                   1248
268                                                   1253
269                                                   1306
270                                                   1507
271                                                   1497
272                                                   1676
273                                                   1146
274                                                   3464
275                                                   3694
276                                                   3514
277                                                   3780
278                                                   3577
279                                                   2841
280                                                   2506
281                                                   2665
282                                                   3426
283                                                   5584
284                                                   4338
285                                                   4523
286                                                   5229
287                                                   3424
288                                                   3627
289                                                   3431
290                                                   3140
291                                                   2022
292                                                   2525
293                                                   2584
294                                                   2260
295                                                   2576
296                                                   2504
297                                                   4234
298                                                   2889
299                                                   1883
300                                                   2269
301                                                   2899
302                                                   3185
303                                                   2719
304                                                   3771
305                                                   3365
306                                                   3184
307                                                   4270
308                                                   2897
309                                                   3047
310                                                   2088
311                                                   2886
312                                                   2210
313                                                   3493
314                                                   2250
315                                                   2763
316                                                   2002
317                                                   2228
318                                                   2186
319                                                   2524
320                                                   1806
321                                                   1753
322                                                   1796
323                                                   1897
324                                                   1983
325                                                   2230
326                                                   1377
327                                                   2322
328                                                   3154
329                                                   2571
330                                                   3851
331                                                   5357
332                                                   7566
333                                                   3818
334                                                   4125
335                                                   6988
336                                                   3347
337                                                   4141
338                                                   4817
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                     1037
2                                                      674
3                                                      795
4                                                     1132
5                                                      941
6                                                     1184
7                                                     1369
8                                                      704
9                                                     1022
10                                                     842
11                                                     925
12                                                    1582
13                                                    2268
14                                                    1205
15                                                    1028
16                                                     986
17                                                     879
18                                                     689
19                                                     733
20                                                     540
21                                                     585
22                                                     510
23                                                     649
24                                                    1042
25                                                     672
26                                                     869
27                                                     664
28                                                     804
29                                                     851
30                                                     657
31                                                     922
32                                                     680
33                                                    1151
34                                                    1420
35                                                     920
36                                                     876
37                                                     774
38                                                     864
39                                                     962
40                                                    1402
41                                                    2142
42                                                    2128
43                                                     796
44                                                     629
45                                                    1088
46                                                     987
47                                                    1357
48                                                    1354
49                                                     941
50                                                     914
51                                                    1003
52                                                    2820
53                                                    3202
54                                                    3345
55                                                    2323
56                                                    6531
57                                                    2794
58                                                    3676
59                                                    3524
60                                                    3212
61                                                    3187
62                                                    4223
63                                                    4027
64                                                    3641
65                                                    4109
66                                                    7659
67                                                    6624
68                                                    6259
69                                                   14741
70                                                   34913
71                                                   14520
72                                                   24001
73                                                   14671
74                                                    9294
75                                                   11581
76                                                    9274
77                                                   20970
78                                                    8374
79                                                    7923
80                                                    6767
81                                                    7531
82                                                    4288
83                                                    2581
84                                                     929
85                                                     902
86                                                    1042
87                                                     884
88                                                     955
89                                                     899
90                                                     972
91                                                     676
92                                                     809
93                                                     765
94                                                     848
95                                                     972
96                                                     805
97                                                     869
98                                                    1641
99                                                    2032
100                                                   1386
101                                                    545
102                                                   1203
103                                                    848
104                                                    940
105                                                   2623
106                                                   2812
107                                                   2579
108                                                   3220
109                                                   3772
110                                                   2413
111                                                   2695
112                                                   4509
113                                                   2483
114                                                   2960
115                                                   3759
116                                                   3383
117                                                   3680
118                                                   4411
119                                                   2509
120                                                   3986
121                                                   3368
122                                                   4738
123                                                   2156
124                                                   1554
125                                                   1947
126                                                   2457
127                                                   1916
128                                                   1906
129                                                   2469
130                                                   2899
131                                                   2808
132                                                   2225
133                                                   2454
134                                                   1990
135                                                   1923
136                                                   2346
137                                                   2307
138                                                   2805
139                                                   2474
140                                                   2573
141                                                   4438
142                                                   4363
143                                                   3708
144                                                   4531
145                                                   3184
146                                                   2333
147                                                   2047
148                                                   3123
149                                                   3190
150                                                   2703
151                                                   3808
152                                                   5667
153                                                   3845
154                                                   4120
155                                                   3328
156                                                   3355
157                                                   4846
158                                                  16362
159                                                  13235
160                                                  15823
161                                                  12002
162                                                  10369
163                                                   5500
164                                                   8183
165                                                   7626
166                                                   3101
167                                                   3133
168                                                   2897
169                                                   2941
170                                                      8
171                                                     30
172                                                     10
173                                                     90
174                                                      0
175                                                     14
176                                                     21
177                                                     20
178                                                     11
179                                                     49
180                                                     10
181                                                     29
182                                                      6
183                                                     14
184                                                     43
185                                                     14
186                                                     30
187                                                     17
188                                                     24
189                                                     25
190                                                     80
191                                                     18
192                                                     99
193                                                     51
194                                                     34
195                                                     51
196                                                     22
197                                                     18
198                                                     79
199                                                     26
200                                                     82
201                                                     24
202                                                     20
203                                                     47
204                                                     58
205                                                     27
206                                                     18
207                                                     52
208                                                     16
209                                                     25
210                                                     41
211                                                     19
212                                                     50
213                                                     33
214                                                     11
215                                                     23
216                                                     27
217                                                     33
218                                                     15
219                                                      8
220                                                     39
221                                                     57
222                                                     78
223                                                    111
224                                                     42
225                                                    100
226                                                     51
227                                                    123
228                                                     76
229                                                     60
230                                                     58
231                                                     38
232                                                     72
233                                                     77
234                                                     52
235                                                     33
236                                                     47
237                                                    129
238                                                     52
239                                                     17
240                                                     20
241                                                     29
242                                                     54
243                                                     30
244                                                     24
245                                                     17
246                                                     32
247                                                     12
248                                                      0
249                                                     11
250                                                      5
251                                                      2
252                                                      6
253                                                     27
254                                                     17
255                                                      0
256                                                      6
257                                                     20
258                                                      0
259                                                      7
260                                                     36
261                                                     14
262                                                     14
263                                                     26
264                                                     66
265                                                      9
266                                                     24
267                                                     51
268                                                     33
269                                                     34
270                                                     23
271                                                     67
272                                                     35
273                                                      7
274                                                     18
275                                                     32
276                                                     37
277                                                     18
278                                                    119
279                                                     28
280                                                      0
281                                                      0
282                                                      4
283                                                     13
284                                                      4
285                                                     19
286                                                     23
287                                                     31
288                                                     57
289                                                     30
290                                                     46
291                                                    112
292                                                     44
293                                                     61
294                                                     43
295                                                     39
296                                                     55
297                                                     93
298                                                    155
299                                                     38
300                                                     59
301                                                    142
302                                                    367
303                                                     21
304                                                     54
305                                                     12
306                                                     20
307                                                     44
308                                                     90
309                                                    389
310                                                    110
311                                                    266
312                                                    160
313                                                    885
314                                                    166
315                                                    503
316                                                    124
317                                                    241
318                                                    508
319                                                   1050
320                                                    120
321                                                     27
322                                                     33
323                                                     79
324                                                     82
325                                                     63
326                                                     72
327                                                     43
328                                                    276
329                                                    132
330                                                    312
331                                                    817
332                                                   4314
333                                                     59
334                                                    118
335                                                    434
336                                                     15
337                                                      7
338                                                     44
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  54455
2                                                  44639
3                                                 109150
4                                                  71976
5                                                  43838
6                                                  48068
7                                                  73673
8                                                 101815
9                                                  87316
10                                                 64757
11                                                 75596
12                                                 52678
13                                                 49881
14                                                 99409
15                                                 59313
16                                                 65697
17                                                 90063
18                                                 94363
19                                                 67934
20                                                 68666
21                                                100961
22                                                 62035
23                                                 91949
24                                                 82049
25                                                 94694
26                                                 72601
27                                                 57546
28                                                 76689
29                                                 55401
30                                                 99221
31                                                 70470
32                                                 71377
33                                                 81955
34                                                102001
35                                                 45490
36                                                 35842
37                                                 33942
38                                                 30374
39                                                 35578
40                                                 58623
41                                                 34314
42                                                 30447
43                                                 30371
44                                                 45633
45                                                 35056
46                                                 30046
47                                                 39112
48                                                 60017
49                                                 33196
50                                                 31540
51                                                 31640
52                                                 28287
53                                                 58280
54                                                 55950
55                                                 56546
56                                                 99746
57                                                 47106
58                                                 56899
59                                                 49838
60                                                 43024
61                                                 45899
62                                                 77537
63                                                 54187
64                                                 87174
65                                                 57516
66                                                 79426
67                                                 63385
68                                                 63512
69                                                 64967
70                                                 94929
71                                                 63417
72                                                 72970
73                                                 69054
74                                                 96915
75                                                 65196
76                                                 64261
77                                                 96582
78                                                 82122
79                                                106657
80                                                 85374
81                                                 83771
82                                                 92056
83                                                104877
84                                                 74678
85                                                 75848
86                                                 96138
87                                                163570
88                                                 87571
89                                                 70043
90                                                 56129
91                                                 70460
92                                                 78146
93                                                 97082
94                                                 96117
95                                                 74693
96                                                 72160
97                                                 84485
98                                                 77133
99                                                157272
100                                                79882
101                                                70803
102                                               100613
103                                                66697
104                                               139736
105                                               101136
106                                                58592
107                                                50812
108                                                75148
109                                               126551
110                                                49076
111                                                80596
112                                                96748
113                                                55509
114                                                57585
115                                                57340
116                                                63355
117                                                45844
118                                                57416
119                                                56023
120                                                66935
121                                                87155
122                                                59299
123                                                59832
124                                                59028
125                                               118605
126                                                76509
127                                                73288
128                                                72533
129                                                86708
130                                                81929
131                                                79968
132                                                74283
133                                                82154
134                                                76737
135                                                72573
136                                               106690
137                                                86818
138                                                80469
139                                                87792
140                                                99452
141                                                61513
142                                                71958
143                                                87776
144                                                68015
145                                               100854
146                                                72033
147                                                67163
148                                                90784
149                                                73960
150                                                81692
151                                                81070
152                                               165530
153                                                78315
154                                               111173
155                                                71957
156                                                75641
157                                               117027
158                                               109045
159                                                61038
160                                               110951
161                                               105070
162                                                59723
163                                                61662
164                                                95548
165                                               195725
166                                                74627
167                                               116521
168                                                76571
169                                                76193
170                                                   89
171                                                  172
172                                                  179
173                                                  104
174                                                   95
175                                                   84
176                                                  238
177                                                  351
178                                                  138
179                                                  149
180                                                  158
181                                                   88
182                                                  165
183                                                  140
184                                                  228
185                                                  105
186                                                   96
187                                                   65
188                                                   98
189                                                  168
190                                                  107
191                                                  104
192                                                  165
193                                                  112
194                                                   92
195                                                  184
196                                                  125
197                                                  108
198                                                  211
199                                                  126
200                                                  105
201                                                  184
202                                                  213
203                                                  524
204                                                  131
205                                                   31
206                                                  102
207                                                   93
208                                                  203
209                                                  173
210                                                  327
211                                                  165
212                                                  331
213                                                  105
214                                                   32
215                                                   83
216                                                  153
217                                                   99
218                                                  149
219                                                  179
220                                                  305
221                                                  154
222                                                  250
223                                                  198
224                                                  157
225                                                   99
226                                                  177
227                                                  197
228                                                  191
229                                                  194
230                                                   93
231                                                   81
232                                                  112
233                                                  156
234                                                  140
235                                                  191
236                                                  195
237                                                  228
238                                                  182
239                                                  201
240                                                  233
241                                                  253
242                                                  206
243                                                  205
244                                                  175
245                                                  201
246                                                  114
247                                                  261
248                                                  163
249                                                  150
250                                                  150
251                                                  204
252                                                  219
253                                                  346
254                                                  368
255                                                  536
256                                                  240
257                                                  430
258                                                  374
259                                                  162
260                                                  193
261                                                   99
262                                                  258
263                                                  303
264                                                  402
265                                                  144
266                                                  214
267                                                  264
268                                                  255
269                                                  186
270                                                  295
271                                                  430
272                                                  329
273                                                  188
274                                                  198
275                                                  327
276                                                  209
277                                                  262
278                                                  307
279                                                  182
280                                                  253
281                                                  246
282                                                   64
283                                                  181
284                                                  269
285                                                  237
286                                                  342
287                                                  150
288                                                   95
289                                                  215
290                                                  196
291                                                  254
292                                                  211
293                                                  144
294                                                  207
295                                                  332
296                                                   93
297                                                   93
298                                                  275
299                                                  188
300                                                  278
301                                                  296
302                                                  267
303                                                  249
304                                                  353
305                                                  345
306                                                  385
307                                                  451
308                                                  315
309                                                  280
310                                                  183
311                                                  204
312                                                  190
313                                                  362
314                                                  263
315                                                  176
316                                                  207
317                                                  209
318                                                  240
319                                                  141
320                                                  171
321                                                  223
322                                                  123
323                                                  128
324                                                  328
325                                                  478
326                                                  193
327                                                  272
328                                                  298
329                                                  230
330                                                  297
331                                                  533
332                                                  252
333                                                  290
334                                                  420
335                                                  375
336                                                  253
337                                                  302
338                                                  412
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                      48
2                                                      58
3                                                     131
4                                                      73
5                                                      76
6                                                      44
7                                                      93
8                                                      80
9                                                      85
10                                                    113
11                                                    117
12                                                    105
13                                                    101
14                                                    155
15                                                    151
16                                                    142
17                                                    241
18                                                    335
19                                                    445
20                                                    395
21                                                    369
22                                                    741
23                                                    967
24                                                   2238
25                                                   4258
26                                                   5883
27                                                   4663
28                                                   5481
29                                                   4377
30                                                     90
31                                                     51
32                                                     59
33                                                     94
34                                                    186
35                                                    217
36                                                     90
37                                                     47
38                                                     22
39                                                     94
40                                                     90
41                                                    142
42                                                    100
43                                                    159
44                                                    181
45                                                    151
46                                                    222
47                                                    163
48                                                    179
49                                                    164
50                                                    136
51                                                    127
52                                                     50
53                                                    427
54                                                    139
55                                                     87
56                                                     51
57                                                     18
58                                                     11
59                                                     34
60                                                     36
61                                                     54
62                                                     46
63                                                     54
64                                                    102
65                                                     84
66                                                     43
67                                                     37
68                                                     42
69                                                     88
70                                                     54
71                                                     28
72                                                     27
73                                                     11
74                                                     25
75                                                     14
76                                                     80
77                                                     46
78                                                    147
79                                                     37
80                                                     30
81                                                     81
82                                                     54
83                                                    104
84                                                     59
85                                                     83
86                                                     85
87                                                     38
88                                                     43
89                                                     25
90                                                     38
91                                                     31
92                                                     37
93                                                     70
94                                                     61
95                                                     56
96                                                     63
97                                                     25
98                                                     12
99                                                    110
100                                                    69
101                                                    68
102                                                    51
103                                                   109
104                                                   132
105                                                    20
106                                                    19
107                                                    79
108                                                   104
109                                                   136
110                                                    62
111                                                    43
112                                                   213
113                                                    34
114                                                    58
115                                                    35
116                                                    62
117                                                    43
118                                                    78
119                                                    75
120                                                    34
121                                                   137
122                                                   122
123                                                    71
124                                                   130
125                                                   187
126                                                   336
127                                                   322
128                                                   941
129                                                  2546
130                                                   495
131                                                   741
132                                                   130
133                                                   723
134                                                   365
135                                                   100
136                                                   106
137                                                   334
138                                                   196
139                                                   121
140                                                    82
141                                                    84
142                                                   161
143                                                    44
144                                                    97
145                                                    70
146                                                   141
147                                                    89
148                                                    58
149                                                    71
150                                                   125
151                                                   176
152                                                  2119
153                                                   485
154                                                  2192
155                                                   607
156                                                    57
157                                                   200
158                                                    65
159                                                    55
160                                                    70
161                                                    96
162                                                    48
163                                                    75
164                                                    61
165                                                   144
166                                                    56
167                                                    89
168                                                    44
169                                                    43
170                                                     0
171                                                     0
172                                                     0
173                                                     0
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                           8697                         8604
2                           9506                         9408
3                           8145                         8042
4                           5811                         5677
5                           6184                         5986
6                           6684                         6556
7                           8319                         8197
8                           6829                         6267
9                          11388                        11105
10                          8626                         8061
11                          8206                         7878
12                         10124                         9866
13                          8757                         8380
14                          6034                         5889
15                          9267                         8489
16                          9287                         8665
17                          7990                         7763
18                         10307                        10219
19                         10880                        10746
20                         10443                        10298
21                          9226                         9116
22                         11847                        11769
23                         13193                        13062
24                         11287                        11103
25                         24432                        24290
26                         29899                        29663
27                         26662                        26312
28                         21876                        21662
29                         29003                        28343
30                         22775                        22315
31                         23681                        23222
32                         29355                        28762
33                         26657                        26285
34                         16821                        16536
35                         12571                        12202
36                         12778                        12077
37                         14302                        13603
38                         17104                        16438
39                         10729                         9869
40                          7684                         7208
41                          9750                         9253
42                         10371                         9990
43                          9182                         8828
44                          9151                         8986
45                          9380                         9000
46                         10313                         9980
47                         10622                        10113
48                          9323                         9171
49                         10846                        10103
50                         11921                        11651
51                          8425                         8036
52                          9716                         9187
53                         11432                        11017
54                          9505                         8877
55                         12822                        12177
56                          6704                         6476
57                          8254                         7974
58                          9504                         9238
59                         10213                         9791
60                         10905                        10474
61                          9235                         9153
62                         10274                        10160
63                         10793                        10434
64                         10170                         9744
65                         13771                        13346
66                          9726                         9587
67                          9467                         8958
68                         11660                        10839
69                         15660                        15340
70                         15428                        14368
71                         16918                        15811
72                         13530                        12435
73                         15947                        14597
74                         19352                        18803
75                         21531                        18639
76                         15614                        13440
77                         14032                        10876
78                         25265                        21873
79                         18469                        16480
80                         20647                        18527
81                         20011                        18368
82                         19459                        17386
83                         20251                        19520
84                         23197                        22571
85                         20092                        19803
86                         22930                        22698
87                          9289                         8919
88                         13921                        13464
89                         15467                        14643
90                         13114                        12671
91                         10527                        10058
92                         13538                        13037
93                         12484                        12286
94                         11239                        10818
95                         14912                        14476
96                         14794                        13740
97                         14438                        12281
98                         19222                        17663
99                         10201                         9350
100                        20701                        19789
101                        24673                        23926
102                        18105                        17981
103                        11468                        11294
104                         8230                         8056
105                         9736                         5557
106                        15616                         6863
107                        17208                         8914
108                        13854                         7268
109                         9511                         7061
110                        11426                         5059
111                        13940                         7536
112                        12115                         8006
113                        13050                         9877
114                         8829                         5051
115                         8570                         5102
116                         6774                         3882
117                         5802                         2148
118                         9300                         5070
119                         9933                         5391
120                         9155                         5290
121                         8985                         4559
122                        10139                         4615
123                        13412                         9396
124                        13908                         8599
125                        12331                         8302
126                        13636                         5918
127                         8075                         5553
128                         9037                         3250
129                        10739                         4950
130                        16008                         8213
131                        14764                         6549
132                        12666                         4686
133                        11748                         3875
134                        12858                         2704
135                        10247                         2834
136                        12728                         6142
137                        10798                         5339
138                        13280                         5728
139                        36807                         9601
140                        22820                        10547
141                        23292                         8236
142                        14005                         7180
143                        13908                         7122
144                        19978                         6332
145                        18843                         7253
146                        18268                         8302
147                        26415                        10990
148                        13389                        13277
149                        11150                        10910
150                        10955                        10784
151                        12161                        11651
152                        10233                        10047
153                        12780                        12394
154                        11195                        11060
155                        12635                        12575
156                        12675                        12607
157                         7875                         7867
158                        23924                        19274
159                        30977                        26756
160                        17805                        14481
161                        22353                        16129
162                        34139                        30126
163                        18394                        15678
164                        18011                        13265
165                        13244                        10572
166                        15841                        11615
167                        15453                        10024
168                        15734                        10013
169                        19364                         8633
170                          893                          893
171                          961                          961
172                          807                          807
173                          964                          949
174                          737                          737
175                          761                          756
176                          950                          950
177                          961                          961
178                          873                          873
179                          964                          964
180                          801                          801
181                         1053                         1035
182                          975                          965
183                          660                          660
184                          503                          503
185                          784                          784
186                         1043                         1043
187                         1157                         1157
188                         1153                         1153
189                         1274                         1274
190                         1235                         1235
191                         1103                         1103
192                         1185                         1185
193                          913                          913
194                         1049                         1049
195                         1339                         1339
196                         1054                         1054
197                          928                          928
198                         1252                         1252
199                         1396                         1396
200                         1564                         1564
201                         1421                         1421
202                         1648                         1648
203                         1547                         1547
204                         1610                         1610
205                          872                          872
206                         1396                         1396
207                         1489                         1489
208                         1308                         1308
209                          884                          884
210                         1008                         1008
211                         1290                         1290
212                         1245                         1245
213                         1525                         1525
214                         1109                         1109
215                         1077                         1077
216                         1591                         1591
217                         1096                         1096
218                          952                          952
219                          932                          932
220                          838                          838
221                         1163                         1163
222                         1387                         1387
223                         1163                         1163
224                         1688                         1688
225                         1166                         1166
226                         1419                         1419
227                         1543                         1543
228                         1818                         1818
229                         2420                         2420
230                         1176                         1176
231                         1795                         1795
232                         1757                         1757
233                         1946                         1946
234                         2301                         2301
235                         1796                         1796
236                         1896                         1896
237                         3145                         3145
238                         1961                         1961
239                         1704                         1704
240                         1673                         1673
241                         1327                         1327
242                         1285                         1285
243                         1319                         1319
244                         1613                         1613
245                         2182                         2182
246                         2028                         2028
247                         3256                         3256
248                         1760                         1760
249                          814                          814
250                          732                          732
251                          801                          801
252                          893                          893
253                          820                          820
254                          875                          875
255                         1567                         1567
256                         1358                         1358
257                         1878                         1878
258                         1685                         1685
259                         1993                         1993
260                         1674                         1674
261                         1593                         1593
262                         1461                         1461
263                         1493                         1493
264                         1237                         1237
265                         1333                         1327
266                         1046                         1046
267                          933                          933
268                          965                          963
269                         1085                         1085
270                         1189                         1181
271                         1000                          992
272                         1312                         1312
273                          951                          951
274                         3248                         3248
275                         3335                         3335
276                         3267                         3267
277                         3500                         3500
278                         3152                         3152
279                         2631                         2631
280                         2253                         2250
281                         2419                         2419
282                         3358                         3358
283                         5390                         5390
284                         4065                         4062
285                         4267                         4267
286                         4865                         4865
287                         3243                         3243
288                         3475                         3475
289                         3186                         3186
290                         2898                         2895
291                         1655                         1655
292                         2271                         2271
293                         2379                         2379
294                         2010                         2010
295                         2205                         2205
296                         2356                         2356
297                         4047                         4047
298                         2459                         2459
299                         1657                         1657
300                         1931                         1931
301                         2461                         2461
302                         2552                         2552
303                         2449                         2449
304                         3364                         3364
305                         3009                         3009
306                         2779                         2779
307                         3775                         3775
308                         2493                         2493
309                         2378                         2378
310                         1795                         1795
311                         2417                         2417
312                         1861                         1861
313                         2245                         2245
314                         1820                         1820
315                         2084                         2084
316                         1672                         1672
317                         1778                         1778
318                         1438                         1438
319                         1333                         1333
320                         1516                         1516
321                         1503                         1503
322                         1640                         1640
323                         1690                         1690
324                         1572                         1572
325                         1688                         1688
326                         1112                         1112
327                         2006                         1996
328                         2581                         2577
329                         2209                         2209
330                         3243                         3240
331                         4007                         4007
332                         3000                         3000
333                         3469                         3469
334                         3586                         3586
335                         6179                         6179
336                         3079                         3079
337                         3832                         3832
338                         4361                         4358
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                             93                              0.00 conventional
2                             97                              0.00 conventional
3                            103                              0.00 conventional
4                            134                              0.00 conventional
5                            198                              0.00 conventional
6                            127                              0.00 conventional
7                            122                              0.00 conventional
8                            562                              0.00 conventional
9                            284                              0.00 conventional
10                           564                              0.00 conventional
11                           328                              0.00 conventional
12                           258                              0.00 conventional
13                           377                              0.00 conventional
14                           146                              0.00 conventional
15                           778                              0.00 conventional
16                           621                              0.00 conventional
17                           227                              0.00 conventional
18                            88                              0.00 conventional
19                           135                              0.00 conventional
20                           146                              0.00 conventional
21                           110                              0.00 conventional
22                            79                              0.00 conventional
23                           131                              0.00 conventional
24                           184                              0.00 conventional
25                           108                             33.33 conventional
26                           236                              0.00 conventional
27                           350                              0.00 conventional
28                           214                              0.00 conventional
29                           659                              0.00 conventional
30                           460                              0.00 conventional
31                           459                              0.00 conventional
32                           593                              0.00 conventional
33                           372                              0.00 conventional
34                           286                              0.00 conventional
35                           369                              0.00 conventional
36                           702                              0.00 conventional
37                           699                              0.00 conventional
38                           666                              0.00 conventional
39                           756                            104.17 conventional
40                           476                              0.00 conventional
41                           497                              0.00 conventional
42                           381                              0.00 conventional
43                           354                              0.00 conventional
44                           165                              0.00 conventional
45                           379                              0.00 conventional
46                           333                              0.00 conventional
47                           508                              0.00 conventional
48                           152                              0.00 conventional
49                           742                              0.00 conventional
50                           270                              0.00 conventional
51                           389                              0.00 conventional
52                           530                              0.00 conventional
53                           412                              2.94 conventional
54                           588                             40.28 conventional
55                           645                              0.00 conventional
56                           228                              0.00 conventional
57                           280                              0.00 conventional
58                           209                             56.94 conventional
59                           422                              0.00 conventional
60                           431                              0.00 conventional
61                            82                              0.00 conventional
62                           114                              0.00 conventional
63                           359                              0.00 conventional
64                           425                              0.00 conventional
65                           426                              0.00 conventional
66                           139                              0.00 conventional
67                           509                              0.00 conventional
68                           816                              5.00 conventional
69                           220                            100.00 conventional
70                           270                            790.00 conventional
71                           287                            820.00 conventional
72                           350                            745.56 conventional
73                           178                           1171.67 conventional
74                            79                            470.00 conventional
75                           242                           2650.00 conventional
76                           689                           1485.00 conventional
77                           471                           2685.00 conventional
78                           492                           2900.00 conventional
79                           420                           1570.00 conventional
80                           390                           1730.00 conventional
81                           282                           1360.00 conventional
82                           398                           1675.00 conventional
83                           181                            550.00 conventional
84                            21                            605.00 conventional
85                           289                              0.00 conventional
86                           232                              0.00 conventional
87                           322                             48.61 conventional
88                           338                            119.44 conventional
89                           712                            112.50 conventional
90                           443                              0.00 conventional
91                           469                              0.00 conventional
92                           500                              0.00 conventional
93                           198                              0.00 conventional
94                           422                              0.00 conventional
95                           436                              0.00 conventional
96                          1054                              0.00 conventional
97                          2158                              0.00 conventional
98                          1559                              0.00 conventional
99                           851                              0.00 conventional
100                          912                              0.00 conventional
101                          746                              0.00 conventional
102                          125                              0.00 conventional
103                          174                              0.00 conventional
104                          174                              0.00 conventional
105                         4179                              0.00 conventional
106                         8753                              0.00 conventional
107                         8294                              0.00 conventional
108                         6585                              0.00 conventional
109                         2450                              0.00 conventional
110                         6368                              0.00 conventional
111                         6404                              0.00 conventional
112                         4109                              0.00 conventional
113                         3173                              0.00 conventional
114                         3778                              0.00 conventional
115                         3468                              0.00 conventional
116                         2892                              0.00 conventional
117                         3654                              0.00 conventional
118                         4230                              0.00 conventional
119                         4542                              0.00 conventional
120                         3852                             13.33 conventional
121                         3673                            753.33 conventional
122                         3647                           1876.67 conventional
123                         3709                            306.67 conventional
124                         4156                           1153.33 conventional
125                         3133                            896.66 conventional
126                         6845                            873.33 conventional
127                         1932                            590.00 conventional
128                         4897                            890.00 conventional
129                         4789                           1000.00 conventional
130                         5210                           2585.00 conventional
131                         6585                           1630.00 conventional
132                         6875                           1105.00 conventional
133                         6698                           1175.00 conventional
134                         8235                           1918.33 conventional
135                         6343                           1070.00 conventional
136                         6029                            556.67 conventional
137                         5203                            256.67 conventional
138                         7552                              0.00 conventional
139                        27206                              0.00 conventional
140                        12273                              0.00 conventional
141                        15056                              0.00 conventional
142                         6825                              0.00 conventional
143                         6786                              0.00 conventional
144                        13645                              0.00 conventional
145                        11590                              0.00 conventional
146                         9966                              0.00 conventional
147                        15424                              0.00 conventional
148                          111                              0.00 conventional
149                          239                              0.00 conventional
150                          171                              0.00 conventional
151                          511                              0.00 conventional
152                          186                              0.00 conventional
153                          382                              4.36 conventional
154                          126                              8.82 conventional
155                           60                              0.00 conventional
156                           68                              0.00 conventional
157                            8                              0.00 conventional
158                         4271                            380.00 conventional
159                         3721                            500.00 conventional
160                         3033                            291.11 conventional
161                         5941                            283.33 conventional
162                         3702                            310.00 conventional
163                         2336                            380.00 conventional
164                         4295                            451.11 conventional
165                         2423                            250.00 conventional
166                         4160                             66.67 conventional
167                         5430                              0.00 conventional
168                         5722                              0.00 conventional
169                        10708                             23.33 conventional
170                            0                              0.00      organic
171                            0                              0.00      organic
172                            0                              0.00      organic
173                           15                              0.00      organic
174                            0                              0.00      organic
175                            5                              0.00      organic
176                            0                              0.00      organic
177                            0                              0.00      organic
178                            0                              0.00      organic
179                            0                              0.00      organic
180                            0                              0.00      organic
181                           18                              0.00      organic
182                           10                              0.00      organic
183                            0                              0.00      organic
184                            0                              0.00      organic
185                            0                              0.00      organic
186                            0                              0.00      organic
187                            0                              0.00      organic
188                            0                              0.00      organic
189                            0                              0.00      organic
190                            0                              0.00      organic
191                            0                              0.00      organic
192                            0                              0.00      organic
193                            0                              0.00      organic
194                            0                              0.00      organic
195                            0                              0.00      organic
196                            0                              0.00      organic
197                            0                              0.00      organic
198                            0                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                            0                              0.00      organic
202                            0                              0.00      organic
203                            0                              0.00      organic
204                            0                              0.00      organic
205                            0                              0.00      organic
206                            0                              0.00      organic
207                            0                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                            0                              0.00      organic
214                            0                              0.00      organic
215                            0                              0.00      organic
216                            0                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                            0                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                            0                              0.00      organic
223                            0                              0.00      organic
224                            0                              0.00      organic
225                            0                              0.00      organic
226                            0                              0.00      organic
227                            0                              0.00      organic
228                            0                              0.00      organic
229                            0                              0.00      organic
230                            0                              0.00      organic
231                            0                              0.00      organic
232                            0                              0.00      organic
233                            0                              0.00      organic
234                            0                              0.00      organic
235                            0                              0.00      organic
236                            0                              0.00      organic
237                            0                              0.00      organic
238                            0                              0.00      organic
239                            0                              0.00      organic
240                            0                              0.00      organic
241                            0                              0.00      organic
242                            0                              0.00      organic
243                            0                              0.00      organic
244                            0                              0.00      organic
245                            0                              0.00      organic
246                            0                              0.00      organic
247                            0                              0.00      organic
248                            0                              0.00      organic
249                            0                              0.00      organic
250                            0                              0.00      organic
251                            0                              0.00      organic
252                            0                              0.00      organic
253                            0                              0.00      organic
254                            0                              0.00      organic
255                            0                              0.00      organic
256                            0                              0.00      organic
257                            0                              0.00      organic
258                            0                              0.00      organic
259                            0                              0.00      organic
260                            0                              0.00      organic
261                            0                              0.00      organic
262                            0                              0.00      organic
263                            0                              0.00      organic
264                            0                              0.00      organic
265                            5                              0.00      organic
266                            0                              0.00      organic
267                            0                              0.00      organic
268                            3                              0.00      organic
269                            0                              0.00      organic
270                            8                              0.00      organic
271                            8                              0.00      organic
272                            0                              0.00      organic
273                            0                              0.00      organic
274                            0                              0.00      organic
275                            0                              0.00      organic
276                            0                              0.00      organic
277                            0                              0.00      organic
278                            0                              0.00      organic
279                            0                              0.00      organic
280                            3                              0.00      organic
281                            0                              0.00      organic
282                            0                              0.00      organic
283                            0                              0.00      organic
284                            3                              0.00      organic
285                            0                              0.00      organic
286                            0                              0.00      organic
287                            0                              0.00      organic
288                            0                              0.00      organic
289                            0                              0.00      organic
290                            3                              0.00      organic
291                            0                              0.00      organic
292                            0                              0.00      organic
293                            0                              0.00      organic
294                            0                              0.00      organic
295                            0                              0.00      organic
296                            0                              0.00      organic
297                            0                              0.00      organic
298                            0                              0.00      organic
299                            0                              0.00      organic
300                            0                              0.00      organic
301                            0                              0.00      organic
302                            0                              0.00      organic
303                            0                              0.00      organic
304                            0                              0.00      organic
305                            0                              0.00      organic
306                            0                              0.00      organic
307                            0                              0.00      organic
308                            0                              0.00      organic
309                            0                              0.00      organic
310                            0                              0.00      organic
311                            0                              0.00      organic
312                            0                              0.00      organic
313                            0                              0.00      organic
314                            0                              0.00      organic
315                            0                              0.00      organic
316                            0                              0.00      organic
317                            0                              0.00      organic
318                            0                              0.00      organic
319                            0                              0.00      organic
320                            0                              0.00      organic
321                            0                              0.00      organic
322                            0                              0.00      organic
323                            0                              0.00      organic
324                            0                              0.00      organic
325                            0                              0.00      organic
326                            0                              0.00      organic
327                           10                              0.00      organic
328                            3                              0.00      organic
329                            0                              0.00      organic
330                            3                              0.00      organic
331                            0                              0.00      organic
332                            0                              0.00      organic
333                            0                              0.00      organic
334                            0                              0.00      organic
335                            0                              0.00      organic
336                            0                              0.00      organic
337                            0                              0.00      organic
338                            3                              0.00      organic
    year (AÑO) region (REGION)
1         2015          Albany
2         2015          Albany
3         2015          Albany
4         2015          Albany
5         2015          Albany
6         2015          Albany
7         2015          Albany
8         2015          Albany
9         2015          Albany
10        2015          Albany
11        2015          Albany
12        2015          Albany
13        2015          Albany
14        2015          Albany
15        2015          Albany
16        2015          Albany
17        2015          Albany
18        2015          Albany
19        2015          Albany
20        2015          Albany
21        2015          Albany
22        2015          Albany
23        2015          Albany
24        2015          Albany
25        2015          Albany
26        2015          Albany
27        2015          Albany
28        2015          Albany
29        2015          Albany
30        2015          Albany
31        2015          Albany
32        2015          Albany
33        2015          Albany
34        2015          Albany
35        2015          Albany
36        2015          Albany
37        2015          Albany
38        2015          Albany
39        2015          Albany
40        2015          Albany
41        2015          Albany
42        2015          Albany
43        2015          Albany
44        2015          Albany
45        2015          Albany
46        2015          Albany
47        2015          Albany
48        2015          Albany
49        2015          Albany
50        2015          Albany
51        2015          Albany
52        2015          Albany
53        2016          Albany
54        2016          Albany
55        2016          Albany
56        2016          Albany
57        2016          Albany
58        2016          Albany
59        2016          Albany
60        2016          Albany
61        2016          Albany
62        2016          Albany
63        2016          Albany
64        2016          Albany
65        2016          Albany
66        2016          Albany
67        2016          Albany
68        2016          Albany
69        2016          Albany
70        2016          Albany
71        2016          Albany
72        2016          Albany
73        2016          Albany
74        2016          Albany
75        2016          Albany
76        2016          Albany
77        2016          Albany
78        2016          Albany
79        2016          Albany
80        2016          Albany
81        2016          Albany
82        2016          Albany
83        2016          Albany
84        2016          Albany
85        2016          Albany
86        2016          Albany
87        2016          Albany
88        2016          Albany
89        2016          Albany
90        2016          Albany
91        2016          Albany
92        2016          Albany
93        2016          Albany
94        2016          Albany
95        2016          Albany
96        2016          Albany
97        2016          Albany
98        2016          Albany
99        2016          Albany
100       2016          Albany
101       2016          Albany
102       2016          Albany
103       2016          Albany
104       2016          Albany
105       2017          Albany
106       2017          Albany
107       2017          Albany
108       2017          Albany
109       2017          Albany
110       2017          Albany
111       2017          Albany
112       2017          Albany
113       2017          Albany
114       2017          Albany
115       2017          Albany
116       2017          Albany
117       2017          Albany
118       2017          Albany
119       2017          Albany
120       2017          Albany
121       2017          Albany
122       2017          Albany
123       2017          Albany
124       2017          Albany
125       2017          Albany
126       2017          Albany
127       2017          Albany
128       2017          Albany
129       2017          Albany
130       2017          Albany
131       2017          Albany
132       2017          Albany
133       2017          Albany
134       2017          Albany
135       2017          Albany
136       2017          Albany
137       2017          Albany
138       2017          Albany
139       2017          Albany
140       2017          Albany
141       2017          Albany
142       2017          Albany
143       2017          Albany
144       2017          Albany
145       2017          Albany
146       2017          Albany
147       2017          Albany
148       2017          Albany
149       2017          Albany
150       2017          Albany
151       2017          Albany
152       2017          Albany
153       2017          Albany
154       2017          Albany
155       2017          Albany
156       2017          Albany
157       2017          Albany
158       2018          Albany
159       2018          Albany
160       2018          Albany
161       2018          Albany
162       2018          Albany
163       2018          Albany
164       2018          Albany
165       2018          Albany
166       2018          Albany
167       2018          Albany
168       2018          Albany
169       2018          Albany
170       2015          Albany
171       2015          Albany
172       2015          Albany
173       2015          Albany
174       2015          Albany
175       2015          Albany
176       2015          Albany
177       2015          Albany
178       2015          Albany
179       2015          Albany
180       2015          Albany
181       2015          Albany
182       2015          Albany
183       2015          Albany
184       2015          Albany
185       2015          Albany
186       2015          Albany
187       2015          Albany
188       2015          Albany
189       2015          Albany
190       2015          Albany
191       2015          Albany
192       2015          Albany
193       2015          Albany
194       2015          Albany
195       2015          Albany
196       2015          Albany
197       2015          Albany
198       2015          Albany
199       2015          Albany
200       2015          Albany
201       2015          Albany
202       2015          Albany
203       2015          Albany
204       2015          Albany
205       2015          Albany
206       2015          Albany
207       2015          Albany
208       2015          Albany
209       2015          Albany
210       2015          Albany
211       2015          Albany
212       2015          Albany
213       2015          Albany
214       2015          Albany
215       2015          Albany
216       2015          Albany
217       2015          Albany
218       2015          Albany
219       2015          Albany
220       2015          Albany
221       2015          Albany
222       2016          Albany
223       2016          Albany
224       2016          Albany
225       2016          Albany
226       2016          Albany
227       2016          Albany
228       2016          Albany
229       2016          Albany
230       2016          Albany
231       2016          Albany
232       2016          Albany
233       2016          Albany
234       2016          Albany
235       2016          Albany
236       2016          Albany
237       2016          Albany
238       2016          Albany
239       2016          Albany
240       2016          Albany
241       2016          Albany
242       2016          Albany
243       2016          Albany
244       2016          Albany
245       2016          Albany
246       2016          Albany
247       2016          Albany
248       2016          Albany
249       2016          Albany
250       2016          Albany
251       2016          Albany
252       2016          Albany
253       2016          Albany
254       2016          Albany
255       2016          Albany
256       2016          Albany
257       2016          Albany
258       2016          Albany
259       2016          Albany
260       2016          Albany
261       2016          Albany
262       2016          Albany
263       2016          Albany
264       2016          Albany
265       2016          Albany
266       2016          Albany
267       2016          Albany
268       2016          Albany
269       2016          Albany
270       2016          Albany
271       2016          Albany
272       2016          Albany
273       2016          Albany
274       2017          Albany
275       2017          Albany
276       2017          Albany
277       2017          Albany
278       2017          Albany
279       2017          Albany
280       2017          Albany
281       2017          Albany
282       2017          Albany
283       2017          Albany
284       2017          Albany
285       2017          Albany
286       2017          Albany
287       2017          Albany
288       2017          Albany
289       2017          Albany
290       2017          Albany
291       2017          Albany
292       2017          Albany
293       2017          Albany
294       2017          Albany
295       2017          Albany
296       2017          Albany
297       2017          Albany
298       2017          Albany
299       2017          Albany
300       2017          Albany
301       2017          Albany
302       2017          Albany
303       2017          Albany
304       2017          Albany
305       2017          Albany
306       2017          Albany
307       2017          Albany
308       2017          Albany
309       2017          Albany
310       2017          Albany
311       2017          Albany
312       2017          Albany
313       2017          Albany
314       2017          Albany
315       2017          Albany
316       2017          Albany
317       2017          Albany
318       2017          Albany
319       2017          Albany
320       2017          Albany
321       2017          Albany
322       2017          Albany
323       2017          Albany
324       2017          Albany
325       2017          Albany
326       2017          Albany
327       2018          Albany
328       2018          Albany
329       2018          Albany
330       2018          Albany
331       2018          Albany
332       2018          Albany
333       2018          Albany
334       2018          Albany
335       2018          Albany
336       2018          Albany
337       2018          Albany
338       2018          Albany

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

ATLANTA

 FRAME_Atlanta <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Atlanta",]) 
 FRAME_Atlanta
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.99
2                                   1.08
3                                   0.96
4                                   1.07
5                                   0.99
6                                   1.00
7                                   1.13
8                                   1.12
9                                   0.99
10                                  1.09
11                                  1.09
12                                  0.95
13                                  0.96
14                                  1.07
15                                  0.93
16                                  1.07
17                                  0.97
18                                  1.15
19                                  1.12
20                                  1.09
21                                  1.01
22                                  1.15
23                                  1.08
24                                  0.97
25                                  1.14
26                                  1.01
27                                  1.13
28                                  0.99
29                                  1.10
30                                  0.99
31                                  1.10
32                                  0.96
33                                  1.11
34                                  1.10
35                                  1.00
36                                  1.12
37                                  1.12
38                                  0.99
39                                  1.04
40                                  1.11
41                                  1.00
42                                  1.12
43                                  1.10
44                                  0.99
45                                  1.10
46                                  1.06
47                                  1.03
48                                  0.96
49                                  1.10
50                                  1.11
51                                  1.11
52                                  1.00
53                                  0.91
54                                  0.94
55                                  1.06
56                                  1.03
57                                  1.22
58                                  1.14
59                                  1.25
60                                  1.29
61                                  1.26
62                                  1.23
63                                  1.16
64                                  1.23
65                                  1.26
66                                  1.26
67                                  1.01
68                                  0.90
69                                  0.89
70                                  0.95
71                                  0.94
72                                  0.87
73                                  1.04
74                                  0.98
75                                  1.00
76                                  1.01
77                                  0.92
78                                  0.77
79                                  0.85
80                                  0.78
81                                  0.78
82                                  0.75
83                                  0.78
84                                  0.79
85                                  0.68
86                                  0.81
87                                  0.77
88                                  0.79
89                                  0.89
90                                  0.83
91                                  1.03
92                                  0.98
93                                  0.98
94                                  0.90
95                                  1.03
96                                  0.90
97                                  1.04
98                                  0.97
99                                  0.76
100                                 1.04
101                                 0.92
102                                 1.04
103                                 0.93
104                                 1.05
105                                 0.95
106                                 1.11
107                                 1.00
108                                 0.99
109                                 1.07
110                                 1.12
111                                 1.13
112                                 1.11
113                                 1.08
114                                 1.28
115                                 1.49
116                                 1.64
117                                 1.60
118                                 1.55
119                                 1.50
120                                 1.59
121                                 1.54
122                                 1.53
123                                 1.49
124                                 1.43
125                                 1.37
126                                 1.36
127                                 1.34
128                                 1.24
129                                 1.20
130                                 1.19
131                                 1.16
132                                 1.12
133                                 1.20
134                                 1.13
135                                 1.08
136                                 1.23
137                                 1.20
138                                 1.18
139                                 1.10
140                                 1.17
141                                 1.21
142                                 1.15
143                                 1.23
144                                 1.26
145                                 1.32
146                                 1.25
147                                 1.21
148                                 1.08
149                                 0.85
150                                 0.86
151                                 0.79
152                                 0.83
153                                 0.95
154                                 0.84
155                                 0.99
156                                 0.98
157                                 0.93
158                                 1.04
159                                 0.95
160                                 0.96
161                                 1.08
162                                 1.06
163                                 1.04
164                                 0.87
165                                 0.86
166                                 1.08
167                                 1.10
168                                 1.10
169                                 0.98
170                                 1.84
171                                 1.89
172                                 1.78
173                                 1.48
174                                 1.37
175                                 1.88
176                                 1.85
177                                 1.74
178                                 1.79
179                                 1.87
180                                 1.94
181                                 1.75
182                                 1.79
183                                 2.01
184                                 2.04
185                                 2.00
186                                 1.98
187                                 1.53
188                                 1.52
189                                 1.83
190                                 2.01
191                                 1.80
192                                 1.56
193                                 1.29
194                                 1.60
195                                 1.50
196                                 1.39
197                                 1.83
198                                 1.85
199                                 1.74
200                                 1.84
201                                 1.74
202                                 1.78
203                                 1.82
204                                 2.03
205                                 2.01
206                                 1.63
207                                 1.79
208                                 1.74
209                                 1.88
210                                 1.62
211                                 1.19
212                                 1.22
213                                 1.22
214                                 1.38
215                                 1.46
216                                 1.29
217                                 1.44
218                                 1.87
219                                 1.86
220                                 1.84
221                                 1.76
222                                 1.76
223                                 1.19
224                                 1.06
225                                 1.22
226                                 1.41
227                                 1.56
228                                 1.63
229                                 1.64
230                                 2.25
231                                 1.25
232                                 1.15
233                                 1.07
234                                 2.29
235                                 2.02
236                                 1.91
237                                 1.43
238                                 1.38
239                                 1.14
240                                 1.62
241                                 1.58
242                                 1.06
243                                 1.62
244                                 1.91
245                                 1.21
246                                 1.13
247                                 0.85
248                                 0.92
249                                 0.81
250                                 0.97
251                                 1.04
252                                 1.35
253                                 1.27
254                                 1.29
255                                 1.42
256                                 1.25
257                                 1.38
258                                 1.36
259                                 1.50
260                                 1.51
261                                 1.48
262                                 1.44
263                                 1.52
264                                 1.66
265                                 1.78
266                                 1.74
267                                 1.59
268                                 1.72
269                                 1.71
270                                 1.65
271                                 1.84
272                                 1.66
273                                 1.48
274                                 1.28
275                                 1.59
276                                 1.59
277                                 1.63
278                                 1.62
279                                 1.66
280                                 1.62
281                                 1.80
282                                 1.86
283                                 2.04
284                                 2.06
285                                 2.23
286                                 2.55
287                                 2.75
288                                 2.56
289                                 2.54
290                                 2.59
291                                 2.59
292                                 2.59
293                                 2.18
294                                 2.14
295                                 1.97
296                                 1.78
297                                 1.85
298                                 1.89
299                                 1.61
300                                 1.53
301                                 1.31
302                                 1.49
303                                 1.06
304                                 1.44
305                                 1.59
306                                 1.38
307                                 1.46
308                                 1.37
309                                 1.59
310                                 1.63
311                                 1.27
312                                 0.91
313                                 1.26
314                                 1.27
315                                 1.23
316                                 0.90
317                                 0.62
318                                 0.64
319                                 1.06
320                                 1.07
321                                 1.28
322                                 1.53
323                                 1.62
324                                 1.62
325                                 1.74
326                                 1.81
327                                 1.56
328                                 1.48
329                                 1.43
330                                 1.66
331                                 1.55
332                                 1.56
333                                 1.55
334                                 1.62
335                                 1.67
336                                 1.64
337                                 1.56
338                                 1.53
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   386100
2                                                   331378
3                                                   417772
4                                                   357637
5                                                   333281
6                                                   356415
7                                                   339861
8                                                   334042
9                                                   419089
10                                                  358478
11                                                  349072
12                                                  433874
13                                                  418682
14                                                  370321
15                                                  516433
16                                                  417232
17                                                  472137
18                                                  382973
19                                                  379054
20                                                  465214
21                                                  503792
22                                                  405898
23                                                  437378
24                                                  557213
25                                                  407205
26                                                  562462
27                                                  435211
28                                                  554764
29                                                  465805
30                                                  551009
31                                                  454702
32                                                  623212
33                                                  451251
34                                                  480071
35                                                  634213
36                                                  448597
37                                                  430966
38                                                  451102
39                                                  383139
40                                                  365722
41                                                  479591
42                                                  399566
43                                                  420826
44                                                  512532
45                                                  431309
46                                                  427391
47                                                  433884
48                                                  636771
49                                                  449333
50                                                  431491
51                                                  397543
52                                                  435021
53                                                  502787
54                                                  463483
55                                                  422027
56                                                  475815
57                                                  372144
58                                                  448936
59                                                  408261
60                                                  393826
61                                                  408315
62                                                  422281
63                                                  459565
64                                                  452109
65                                                  440044
66                                                  435757
67                                                  527701
68                                                  597759
69                                                  614657
70                                                  539643
71                                                  549139
72                                                  666493
73                                                  508354
74                                                  537633
75                                                  495687
76                                                  474064
77                                                  560865
78                                                  789398
79                                                  606857
80                                                  692767
81                                                  608386
82                                                  691201
83                                                  691344
84                                                  585352
85                                                  755307
86                                                  643700
87                                                  735635
88                                                  654019
89                                                  512348
90                                                  590002
91                                                  423486
92                                                  458635
93                                                  496191
94                                                  588657
95                                                  458837
96                                                  555471
97                                                  417206
98                                                  481484
99                                                  722211
100                                                 437491
101                                                 528777
102                                                 445090
103                                                 558349
104                                                 449263
105                                                 649353
106                                                 444782
107                                                 484327
108                                                 543619
109                                                 504933
110                                                 412213
111                                                 453755
112                                                 518209
113                                                 567573
114                                                 493921
115                                                 406009
116                                                 406111
117                                                 411520
118                                                 421235
119                                                 403780
120                                                 392935
121                                                 466989
122                                                 433455
123                                                 458036
124                                                 475922
125                                                 534059
126                                                 518140
127                                                 472013
128                                                 518683
129                                                 582069
130                                                 507338
131                                                 528298
132                                                 501274
133                                                 492836
134                                                 572839
135                                                 710039
136                                                 523994
137                                                 526840
138                                                 568924
139                                                 726727
140                                                 595540
141                                                 530031
142                                                 543228
143                                                 465350
144                                                 481934
145                                                 443515
146                                                 460991
147                                                 469278
148                                                 511363
149                                                 631508
150                                                 563019
151                                                 666871
152                                                 888095
153                                                 627696
154                                                 755472
155                                                 557378
156                                                 601546
157                                                 547566
158                                                 624645
159                                                 730450
160                                                 695821
161                                                 594552
162                                                 586240
163                                                 538448
164                                                 723928
165                                                 957792
166                                                 559460
167                                                 639421
168                                                 670766
169                                                 713916
170                                                   3195
171                                                   3974
172                                                   3611
173                                                   4400
174                                                   5206
175                                                   4016
176                                                   3888
177                                                   5318
178                                                   5445
179                                                   5477
180                                                   5658
181                                                   7280
182                                                   7424
183                                                   5393
184                                                   5705
185                                                   5892
186                                                   6736
187                                                   9298
188                                                  10342
189                                                   6627
190                                                   5579
191                                                   5793
192                                                   7888
193                                                   7642
194                                                   5946
195                                                   5744
196                                                   6314
197                                                   5003
198                                                   4485
199                                                   4096
200                                                   4803
201                                                   5464
202                                                   5158
203                                                   5068
204                                                   3976
205                                                   4447
206                                                   6705
207                                                   6687
208                                                   5559
209                                                   5077
210                                                   6484
211                                                  13986
212                                                  16027
213                                                  16228
214                                                  10970
215                                                   7783
216                                                  13288
217                                                   7666
218                                                   3047
219                                                   4294
220                                                   3744
221                                                   3847
222                                                   5456
223                                                   9421
224                                                  13254
225                                                   9990
226                                                   7754
227                                                   9756
228                                                  11118
229                                                  12411
230                                                   7568
231                                                  16791
232                                                  17664
233                                                  19265
234                                                   7057
235                                                   7915
236                                                   8231
237                                                  13017
238                                                  15107
239                                                  18482
240                                                  12433
241                                                  13049
242                                                  24308
243                                                  14463
244                                                  11620
245                                                  16805
246                                                  17311
247                                                  20324
248                                                  16159
249                                                  16578
250                                                  16463
251                                                  12827
252                                                   8849
253                                                  11405
254                                                  10861
255                                                   9663
256                                                  11050
257                                                   9859
258                                                   8352
259                                                   7131
260                                                   9284
261                                                   8927
262                                                   7436
263                                                   6968
264                                                   6619
265                                                   5070
266                                                   5259
267                                                   5738
268                                                   5421
269                                                   6592
270                                                   6194
271                                                   5227
272                                                   5614
273                                                   7953
274                                                  17218
275                                                  15311
276                                                  11548
277                                                  13301
278                                                  10609
279                                                  11835
280                                                  10394
281                                                  12116
282                                                  11588
283                                                  15731
284                                                  14352
285                                                  11405
286                                                  12276
287                                                  13558
288                                                  18912
289                                                  17292
290                                                  13956
291                                                  17991
292                                                  13910
293                                                  17338
294                                                  14534
295                                                  13999
296                                                  15501
297                                                  17588
298                                                  14396
299                                                  22123
300                                                  23108
301                                                  30581
302                                                  23486
303                                                  33969
304                                                  20445
305                                                  19502
306                                                  21858
307                                                  15467
308                                                  18230
309                                                  15042
310                                                  13269
311                                                  16411
312                                                  24439
313                                                  16943
314                                                  16209
315                                                  11754
316                                                  18563
317                                                  32292
318                                                  24323
319                                                  11867
320                                                  11073
321                                                   9685
322                                                   7331
323                                                   7485
324                                                   6291
325                                                   8244
326                                                   5343
327                                                  18717
328                                                  19015
329                                                  23043
330                                                  17082
331                                                  15348
332                                                  11166
333                                                  14844
334                                                  11900
335                                                  14446
336                                                  18555
337                                                  16152
338                                                  15714
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                   292097
2                                                   251774
3                                                   324932
4                                                   283024
5                                                   250289
6                                                   269799
7                                                   263916
8                                                   250441
9                                                   290458
10                                                  236814
11                                                  228710
12                                                  255933
13                                                  265797
14                                                  262107
15                                                  346119
16                                                  278048
17                                                  303113
18                                                  275818
19                                                  274462
20                                                  362580
21                                                  385028
22                                                  306588
23                                                  335372
24                                                  446100
25                                                  310080
26                                                  436378
27                                                  331353
28                                                  449311
29                                                  386371
30                                                  455566
31                                                  382901
32                                                  538127
33                                                  386401
34                                                  413453
35                                                  538403
36                                                  387677
37                                                  368710
38                                                  377578
39                                                  318473
40                                                  305029
41                                                  393591
42                                                  336172
43                                                  361559
44                                                  441544
45                                                  369316
46                                                  364447
47                                                  377256
48                                                  553199
49                                                  393408
50                                                  372237
51                                                  330411
52                                                  364302
53                                                  205856
54                                                  191753
55                                                  186344
56                                                  210602
57                                                  161632
58                                                  189207
59                                                  185966
60                                                  167083
61                                                  162368
62                                                  171215
63                                                  188793
64                                                  187261
65                                                  182418
66                                                  174532
67                                                  233801
68                                                  286406
69                                                  356593
70                                                  294241
71                                                  293240
72                                                  362924
73                                                  252172
74                                                  232641
75                                                  215523
76                                                  202639
77                                                  240109
78                                                  310551
79                                                  272203
80                                                  361698
81                                                  313216
82                                                  341028
83                                                  267461
84                                                  206761
85                                                  292233
86                                                  199995
87                                                  241665
88                                                  233878
89                                                  190570
90                                                  258662
91                                                  253541
92                                                  286918
93                                                  323217
94                                                  336351
95                                                  299983
96                                                  325884
97                                                  270173
98                                                  313342
99                                                  415641
100                                                 290451
101                                                 318373
102                                                 308723
103                                                 377245
104                                                 350316
105                                                 341061
106                                                 212414
107                                                 231133
108                                                 274346
109                                                 263807
110                                                 211077
111                                                 239860
112                                                 251896
113                                                 275750
114                                                 256989
115                                                 219172
116                                                 197443
117                                                 213443
118                                                 222684
119                                                 222498
120                                                 204375
121                                                 241057
122                                                 235646
123                                                 230032
124                                                 230253
125                                                 251178
126                                                 252436
127                                                 247039
128                                                 285746
129                                                 301472
130                                                 233476
131                                                 248096
132                                                 249204
133                                                 269329
134                                                 318335
135                                                 361266
136                                                 273538
137                                                 253793
138                                                 265556
139                                                 377225
140                                                 304669
141                                                 249318
142                                                 237538
143                                                 223170
144                                                 226290
145                                                 222457
146                                                 215046
147                                                 217625
148                                                 237307
149                                                 302620
150                                                 279494
151                                                 355571
152                                                 442153
153                                                 285148
154                                                 320378
155                                                 249160
156                                                 279266
157                                                 224074
158                                                 281209
159                                                 323508
160                                                 320199
161                                                 272245
162                                                 257878
163                                                 229256
164                                                 349355
165                                                 474888
166                                                 267126
167                                                 288132
168                                                 298976
169                                                 364463
170                                                   1366
171                                                   2001
172                                                   1589
173                                                   1359
174                                                   1341
175                                                   1766
176                                                   1643
177                                                   1905
178                                                   2074
179                                                   2441
180                                                   2169
181                                                   2388
182                                                   2744
183                                                   2233
184                                                   2379
185                                                   2340
186                                                   2522
187                                                   2350
188                                                   2494
189                                                   1954
190                                                   2291
191                                                   1982
192                                                   2287
193                                                   1571
194                                                   1501
195                                                   1577
196                                                   1897
197                                                   1805
198                                                   1647
199                                                   1468
200                                                   1745
201                                                   1705
202                                                   2076
203                                                   1878
204                                                   1326
205                                                   1628
206                                                   1820
207                                                   1900
208                                                   1595
209                                                   2016
210                                                   1891
211                                                   2005
212                                                   1579
213                                                   1683
214                                                   1781
215                                                   1450
216                                                   1716
217                                                   1565
218                                                   1579
219                                                   2139
220                                                   1614
221                                                   1500
222                                                    896
223                                                    825
224                                                    917
225                                                    739
226                                                    706
227                                                    918
228                                                    925
229                                                   1268
230                                                   1127
231                                                    979
232                                                   1142
233                                                   1673
234                                                   1715
235                                                   1400
236                                                   1393
237                                                   1356
238                                                   1586
239                                                   1480
240                                                   2213
241                                                   2514
242                                                   2266
243                                                   2799
244                                                   2683
245                                                   2094
246                                                   2276
247                                                   2065
248                                                   2096
249                                                   1602
250                                                   2080
251                                                   1892
252                                                   1867
253                                                   2304
254                                                   1970
255                                                   2106
256                                                   2004
257                                                   2237
258                                                   2435
259                                                   2789
260                                                   3529
261                                                   2454
262                                                   2263
263                                                   2393
264                                                   2602
265                                                   2040
266                                                   2035
267                                                   1825
268                                                   1932
269                                                   2689
270                                                   2193
271                                                   2280
272                                                   2123
273                                                   3971
274                                                    331
275                                                    443
276                                                    344
277                                                    332
278                                                    381
279                                                    344
280                                                    186
281                                                    199
282                                                    447
283                                                    319
284                                                    390
285                                                    345
286                                                    371
287                                                    544
288                                                    507
289                                                    521
290                                                    599
291                                                    538
292                                                    639
293                                                    588
294                                                    517
295                                                    452
296                                                    432
297                                                    610
298                                                    472
299                                                    565
300                                                    674
301                                                    608
302                                                    852
303                                                   1251
304                                                   1464
305                                                   1302
306                                                   1307
307                                                    988
308                                                    339
309                                                   1488
310                                                   1705
311                                                   1593
312                                                   1359
313                                                   1253
314                                                   1653
315                                                   1756
316                                                   2141
317                                                   2078
318                                                   1111
319                                                   1388
320                                                   1085
321                                                   1418
322                                                   1103
323                                                   1122
324                                                   1129
325                                                   1456
326                                                    957
327                                                    469
328                                                    626
329                                                    590
330                                                    597
331                                                    530
332                                                    430
333                                                    385
334                                                    384
335                                                    390
336                                                    349
337                                                    292
338                                                    405
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  27351
2                                                  20702
3                                                  31019
4                                                  23741
5                                                  28890
6                                                  29732
7                                                  28442
8                                                  34483
9                                                  62980
10                                                 64608
11                                                 59732
12                                                 91047
13                                                 92780
14                                                 61871
15                                                 82763
16                                                 62486
17                                                 73676
18                                                 44839
19                                                 46224
20                                                 41992
21                                                 47040
22                                                 41907
23                                                 44087
24                                                 47838
25                                                 37953
26                                                 54675
27                                                 37699
28                                                 30232
29                                                 17701
30                                                 22414
31                                                 19543
32                                                 27284
33                                                 18619
34                                                 18861
35                                                 28568
36                                                 18366
37                                                 18041
38                                                 22420
39                                                 19254
40                                                 16652
41                                                 23420
42                                                 16508
43                                                 15789
44                                                 21184
45                                                 18325
46                                                 17420
47                                                 17163
48                                                 31583
49                                                 18718
50                                                 18702
51                                                 18958
52                                                 23821
53                                                 86015
54                                                 80565
55                                                 56200
56                                                 93415
57                                                 55595
58                                                 58006
59                                                 63349
60                                                 65208
61                                                 69366
62                                                 67824
63                                                 82089
64                                                 69425
65                                                 69411
66                                                 77099
67                                                 70931
68                                                 54348
69                                                 55476
70                                                 42109
71                                                 48350
72                                                 60913
73                                                 63197
74                                                 76302
75                                                 92726
76                                                 82942
77                                                 95457
78                                                150340
79                                                 82764
80                                                 96388
81                                                 61564
82                                                123406
83                                                154239
84                                                110884
85                                                166131
86                                                159037
87                                                211777
88                                                189043
89                                                124409
90                                                141606
91                                                 69327
92                                                 59290
93                                                 61128
94                                                110106
95                                                 61770
96                                                106312
97                                                 61591
98                                                 57925
99                                                134517
100                                                58974
101                                                86817
102                                                45916
103                                                67316
104                                                32958
105                                                41818
106                                                30835
107                                                33482
108                                                38434
109                                                32457
110                                                27773
111                                                31169
112                                                31719
113                                                32495
114                                                36335
115                                                35959
116                                                34761
117                                                32020
118                                                45066
119                                                45025
120                                                47136
121                                                47619
122                                                47493
123                                                48133
124                                                49200
125                                                62181
126                                                60585
127                                                60150
128                                                65016
129                                                63898
130                                                57936
131                                                56275
132                                                46343
133                                                49178
134                                                51386
135                                                55628
136                                                50237
137                                                49347
138                                                49123
139                                                72058
140                                                74961
141                                                55046
142                                                48908
143                                                48913
144                                                48770
145                                                50731
146                                                50085
147                                                48170
148                                                52012
149                                                53783
150                                                52644
151                                                77241
152                                               167182
153                                                86150
154                                               135921
155                                                86964
156                                                77758
157                                               118926
158                                                33188
159                                                36770
160                                                36357
161                                                37136
162                                                35084
163                                                30083
164                                                39349
165                                                55158
166                                                37574
167                                                56732
168                                                60229
169                                                47869
170                                                 1653
171                                                 1926
172                                                 1582
173                                                 1736
174                                                 2104
175                                                 2096
176                                                 1662
177                                                 2048
178                                                 2537
179                                                 2685
180                                                 2870
181                                                 3378
182                                                 3551
183                                                 3021
184                                                 3304
185                                                 3396
186                                                 3852
187                                                 3534
188                                                 3862
189                                                 3336
190                                                 2855
191                                                 2628
192                                                 2469
193                                                 2222
194                                                 2209
195                                                 2748
196                                                 2307
197                                                 2661
198                                                 2236
199                                                 1865
200                                                 2485
201                                                 2707
202                                                 2105
203                                                 2479
204                                                 2651
205                                                 2752
206                                                 4095
207                                                 4739
208                                                 3073
209                                                 2847
210                                                 4197
211                                                 9249
212                                                11705
213                                                12003
214                                                 7973
215                                                 5216
216                                                 8656
217                                                 4211
218                                                  735
219                                                  989
220                                                 1208
221                                                  938
222                                                 2981
223                                                 2790
224                                                 2803
225                                                 2945
226                                                 2516
227                                                 3156
228                                                 3867
229                                                 5724
230                                                 5374
231                                                 5629
232                                                 4640
233                                                 4500
234                                                 4946
235                                                 4568
236                                                 4819
237                                                 4532
238                                                 5389
239                                                 4894
240                                                 4514
241                                                 4567
242                                                 5919
243                                                 5879
244                                                 6193
245                                                 4552
246                                                 6735
247                                                 6670
248                                                 5308
249                                                 5022
250                                                 5831
251                                                 4901
252                                                 4019
253                                                 3734
254                                                 3792
255                                                 3560
256                                                 4137
257                                                 4002
258                                                 3185
259                                                 3539
260                                                 3855
261                                                 3701
262                                                 2990
263                                                 3421
264                                                 3440
265                                                 2747
266                                                 2318
267                                                 2428
268                                                 2613
269                                                 2148
270                                                 2433
271                                                 2472
272                                                 2121
273                                                 2152
274                                                 3474
275                                                 4328
276                                                 3504
277                                                 3556
278                                                 3883
279                                                 3863
280                                                 4241
281                                                 4260
282                                                 3686
283                                                 3788
284                                                 4323
285                                                 4739
286                                                 4536
287                                                 4724
288                                                 5069
289                                                 5064
290                                                 5931
291                                                 5589
292                                                 6918
293                                                 6921
294                                                 5400
295                                                 5642
296                                                 6137
297                                                 7547
298                                                 7657
299                                                10264
300                                                 9001
301                                                 7833
302                                                 9300
303                                                 6518
304                                                 5927
305                                                 6521
306                                                 7475
307                                                 7008
308                                                 7980
309                                                 7557
310                                                 7074
311                                                 7034
312                                                 5782
313                                                 6360
314                                                 5804
315                                                 4657
316                                                 4783
317                                                 4175
318                                                 3495
319                                                 3402
320                                                 4062
321                                                 4209
322                                                 4182
323                                                 4739
324                                                 3583
325                                                 5317
326                                                 2863
327                                                 3943
328                                                 5412
329                                                 5225
330                                                 5315
331                                                 5123
332                                                 4037
333                                                 3958
334                                                 4043
335                                                 5130
336                                                 3968
337                                                 3583
338                                                 4195
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                     298
2                                                     103
3                                                     276
4                                                     182
5                                                     308
6                                                     501
7                                                     456
8                                                     488
9                                                     253
10                                                    304
11                                                    291
12                                                    600
13                                                    644
14                                                    681
15                                                   1349
16                                                    715
17                                                    911
18                                                   1034
19                                                    950
20                                                   1425
21                                                   4252
22                                                   3515
23                                                    708
24                                                   1982
25                                                    867
26                                                    849
27                                                    817
28                                                    678
29                                                    472
30                                                    739
31                                                    523
32                                                   1261
33                                                    839
34                                                   1089
35                                                   1060
36                                                   1042
37                                                    873
38                                                    219
39                                                    375
40                                                    261
41                                                    305
42                                                    311
43                                                    237
44                                                    348
45                                                    237
46                                                    638
47                                                    525
48                                                    295
49                                                    594
50                                                    512
51                                                   1135
52                                                     82
53                                                    185
54                                                    283
55                                                    172
56                                                    207
57                                                    167
58                                                    168
59                                                    181
60                                                    168
61                                                    160
62                                                    166
63                                                    104
64                                                    157
65                                                    141
66                                                    132
67                                                    132
68                                                    206
69                                                    131
70                                                    124
71                                                     83
72                                                     87
73                                                     58
74                                                     65
75                                                    111
76                                                    164
77                                                    256
78                                                    165
79                                                    174
80                                                    264
81                                                   1175
82                                                    562
83                                                    247
84                                                    175
85                                                     80
86                                                    254
87                                                     54
88                                                     67
89                                                    106
90                                                    433
91                                                   1349
92                                                   1320
93                                                   1727
94                                                   1907
95                                                   1499
96                                                   1137
97                                                   1996
98                                                   1008
99                                                    419
100                                                   412
101                                                   401
102                                                   654
103                                                   464
104                                                   397
105                                                   961
106                                                  1113
107                                                   916
108                                                  1302
109                                                  1390
110                                                   903
111                                                  1109
112                                                  1398
113                                                  1125
114                                                  1084
115                                                   894
116                                                   149
117                                                    51
118                                                   367
119                                                    34
120                                                    93
121                                                   111
122                                                   122
123                                                   100
124                                                    28
125                                                    65
126                                                    70
127                                                    87
128                                                   151
129                                                   101
130                                                   442
131                                                   110
132                                                   150
133                                                   145
134                                                   101
135                                                   131
136                                                   354
137                                                  1651
138                                                  3491
139                                                   249
140                                                   241
141                                                    96
142                                                   144
143                                                   124
144                                                   140
145                                                   133
146                                                   148
147                                                    98
148                                                    63
149                                                    97
150                                                   133
151                                                   326
152                                                   413
153                                                   220
154                                                   179
155                                                   170
156                                                   319
157                                                   337
158                                                  1831
159                                                  1828
160                                                  1629
161                                                  1764
162                                                  1579
163                                                  1326
164                                                  1608
165                                                  1755
166                                                  1662
167                                                  1613
168                                                  1605
169                                                  1460
170                                                     0
171                                                     0
172                                                     0
173                                                     0
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          66354                        48606
2                          58798                        46930
3                          61545                        38904
4                          50690                        37033
5                          53795                        33032
6                          56382                        36992
7                          47046                        33656
8                          48629                        35663
9                          65398                        39461
10                         56751                        31827
11                         60339                        36884
12                         86294                        41160
13                         59460                        14876
14                         45662                        20534
15                         86202                        33698
16                         75983                        46290
17                         94436                        49834
18                         61281                        47138
19                         57418                        45534
20                         59217                        45068
21                         67472                        45820
22                         53888                        42126
23                         57211                        45114
24                         61292                        45100
25                         58304                        46024
26                         70560                        50685
27                         65342                        52100
28                         74542                        55485
29                         61261                        48612
30                         72290                        50955
31                         51735                        40505
32                         56540                        33867
33                         45392                        33710
34                         46668                        34108
35                         66182                        32521
36                         41512                        31315
37                         43343                        29662
38                         50884                        25833
39                         45037                        28612
40                         43780                        29314
41                         62275                        40495
42                         46575                        34912
43                         43241                        33847
44                         49457                        32181
45                         43430                        33424
46                         44886                        26728
47                         38940                        18044
48                         51694                        10554
49                         36612                        13176
50                         40040                        16783
51                         47038                        21310
52                         46816                        16707
53                        210731                       118884
54                        190882                       114872
55                        179311                       112575
56                        171591                        67807
57                        154750                        89195
58                        201556                       128442
59                        158765                        92309
60                        161367                        82411
61                        176421                        94305
62                        183075                       110435
63                        188578                        87593
64                        195267                        95660
65                        188074                       104368
66                        183994                       109841
67                        222837                       139749
68                        256799                       194086
69                        202457                       126235
70                        203169                       132127
71                        207466                       160465
72                        242570                       182840
73                        192927                       131851
74                        228626                       161932
75                        187327                       120773
76                        188319                       108732
77                        225043                       146618
78                        328342                       216115
79                        251715                       199572
80                        234417                       148946
81                        232431                       169986
82                        226206                       112958
83                        269397                        77155
84                        267531                        91576
85                        296862                       126899
86                        284414                        77088
87                        282139                        64801
88                        231030                        71927
89                        197263                        66462
90                        189301                        69497
91                         99269                        62657
92                        111107                        78825
93                        110120                        75569
94                        140294                        73593
95                         95584                        62105
96                        122138                        60231
97                         83445                        55736
98                        109209                        74366
99                        171633                        77184
100                        87653                        54822
101                       123185                        64717
102                        89797                        56526
103                       113323                        54693
104                        65593                        43675
105                       265512                       173990
106                       200421                       130079
107                       218795                       153468
108                       229538                       158483
109                       207280                       137581
110                       172460                       113141
111                       181617                       118386
112                       233196                       154898
113                       258204                       189678
114                       199514                       131656
115                       149984                        95710
116                       173759                       110653
117                       166006                       100702
118                       153118                       101913
119                       136223                        88241
120                       141332                        90750
121                       178201                       116857
122                       150195                        92866
123                       179772                       116587
124                       196442                       132375
125                       220635                       148972
126                       205049                       137139
127                       164738                       105248
128                       167769                       115065
129                       216598                       154627
130                       215484                       138657
131                       223817                       136028
132                       205576                       102983
133                       174184                        94082
134                       203016                       117301
135                       293014                       174068
136                       199865                       131064
137                       222049                       142077
138                       250754                       171472
139                       277195                       148164
140                       215669                       131645
141                       225570                       138921
142                       256639                       170946
143                       193143                       107369
144                       206734                       150547
145                       170193                       108832
146                       195711                       120154
147                       203386                       126155
148                       221981                       143651
149                       275008                       222151
150                       230747                       171819
151                       233733                       176286
152                       278348                       180392
153                       256178                       177033
154                       298994                       177899
155                       221084                       145333
156                       244203                       172511
157                       204228                       111600
158                       308417                       227945
159                       368344                       267740
160                       337636                       260152
161                       283407                       178020
162                       291700                       201139
163                       277784                       198897
164                       333616                       241870
165                       425991                       292318
166                       253099                       165157
167                       292945                       158656
168                       309956                       171508
169                       300124                       217644
170                          176                          103
171                           47                           37
172                          440                          208
173                         1306                          130
174                         1761                          103
175                          154                           70
176                          583                          470
177                         1365                          843
178                          834                          290
179                          351                          180
180                          619                           63
181                         1514                            0
182                         1129                            0
183                          139                            0
184                           22                            0
185                          156                           11
186                          362                          148
187                         3415                         1578
188                         3986                         1841
189                         1338                         1088
190                          433                           50
191                         1183                          278
192                         3133                         1537
193                         3849                         1002
194                         2236                          609
195                         1419                            0
196                         2110                            0
197                          538                            0
198                          602                            3
199                          764                          147
200                          574                           98
201                         1052                          119
202                          976                          122
203                          711                            0
204                            0                            0
205                           68                            0
206                          790                          772
207                           49                           41
208                          890                           40
209                          213                           40
210                          396                            0
211                         2732                            0
212                         2743                            0
213                         2541                            0
214                         1216                           83
215                         1117                          700
216                         2916                         1317
217                         1889                         1133
218                          734                          533
219                         1166                         1019
220                          922                          865
221                         1408                         1071
222                         1580                            0
223                         5806                            6
224                         9534                           78
225                         6307                           20
226                         4533                          510
227                         5682                         1769
228                         6326                         2043
229                         5419                          197
230                         1068                            0
231                        10182                           11
232                        11882                           48
233                        13092                           65
234                          396                           23
235                         1946                           84
236                         2019                          113
237                         7128                         1772
238                         8132                         2065
239                        12108                         1774
240                         5706                         2479
241                         5968                         1855
242                        16123                         1332
243                         5785                         1372
244                         2744                         1668
245                        10159                         1996
246                         8300                         1524
247                        11589                         1466
248                         8755                         1076
249                         9954                          589
250                         8552                          895
251                         6034                          950
252                         2964                          884
253                         5367                         1263
254                         5099                         1442
255                         3998                         1349
256                         4909                          898
257                         3620                         1419
258                         2732                          892
259                          803                          715
260                         1900                          993
261                         2772                          820
262                         2183                          613
263                         1155                          563
264                          577                          247
265                          283                          223
266                          906                          503
267                         1484                          347
268                          875                          160
269                         1755                         1163
270                         1568                          713
271                          476                          203
272                         1369                          392
273                         1831                         1037
274                        13412                        11486
275                        10539                         9274
276                         7701                         5440
277                         9413                         5749
278                         6345                         5731
279                         7628                         6495
280                         5966                         5613
281                         7657                         6474
282                         7455                         5330
283                        11623                         5403
284                         9638                         5433
285                         6321                         5368
286                         7368                         6809
287                         8289                         4856
288                        13336                         4253
289                        11707                         4932
290                         7425                         4617
291                        11864                         3851
292                         6353                         2357
293                         9829                         8160
294                         8617                         8579
295                         7905                         5936
296                         8932                         4880
297                         9431                         4595
298                         6267                         2881
299                        11294                         4751
300                        13433                         3833
301                        22141                         4646
302                        13333                         4532
303                        26200                         4281
304                        13054                         2611
305                        11679                          980
306                        13076                         1011
307                         7471                          240
308                         9910                          239
309                         5997                          195
310                         4490                          147
311                         7784                          279
312                        17298                         1629
313                         9331                          636
314                         8752                          147
315                         5341                          125
316                        11640                          190
317                        26039                          342
318                        19716                          150
319                         7077                           86
320                         5926                          200
321                         4058                           36
322                         2047                            6
323                         1625                            3
324                         1579                            0
325                         1472                            0
326                         1523                            6
327                        14305                         9398
328                        12977                         9135
329                        17228                        16439
330                        11169                         9692
331                         9695                         9065
332                         6698                         5921
333                        10501                         7478
334                         7474                         5732
335                         8926                         5602
336                        14238                         6204
337                        12277                         7228
338                        11114                         7884
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                          17748                              0.00 conventional
2                          11868                              0.00 conventional
3                          22628                             13.53 conventional
4                          13655                              2.71 conventional
5                          20739                             24.41 conventional
6                          19390                              0.00 conventional
7                          13390                              0.00 conventional
8                          12941                             24.60 conventional
9                          25929                              8.22 conventional
10                         24925                              0.00 conventional
11                         23455                              0.00 conventional
12                         45134                              0.00 conventional
13                         44585                              0.00 conventional
14                         25126                              2.78 conventional
15                         52442                             61.28 conventional
16                         29679                             13.94 conventional
17                         44550                             52.97 conventional
18                         14113                             30.67 conventional
19                         11884                              0.00 conventional
20                         14149                              0.00 conventional
21                         21568                             83.27 conventional
22                         11720                             41.55 conventional
23                         12096                              0.00 conventional
24                         16193                              0.00 conventional
25                         12280                              0.00 conventional
26                         19851                             24.75 conventional
27                         13108                            134.40 conventional
28                         19011                             46.54 conventional
29                         12578                             71.03 conventional
30                         21330                              5.45 conventional
31                         11200                             29.91 conventional
32                         22651                             21.72 conventional
33                         11682                              0.00 conventional
34                         12560                              0.00 conventional
35                         33661                              0.00 conventional
36                         10197                              0.00 conventional
37                         13681                              0.00 conventional
38                         25051                              0.00 conventional
39                         16290                            134.72 conventional
40                         14466                              0.00 conventional
41                         21767                             13.44 conventional
42                         11626                             37.59 conventional
43                          9394                              0.00 conventional
44                         17273                              2.68 conventional
45                         10006                              0.00 conventional
46                         18158                              0.00 conventional
47                         20896                              0.00 conventional
48                         41141                              0.00 conventional
49                         23436                              0.00 conventional
50                         23258                              0.00 conventional
51                         25728                              0.00 conventional
52                         30109                              0.00 conventional
53                         91847                              0.00 conventional
54                         76010                              0.00 conventional
55                         66737                              0.00 conventional
56                        103784                              0.00 conventional
57                         65519                             36.39 conventional
58                         72236                            877.78 conventional
59                         66233                            223.33 conventional
60                         78956                              0.00 conventional
61                         82115                              0.00 conventional
62                         72640                              0.00 conventional
63                        100985                              0.00 conventional
64                         99114                            493.06 conventional
65                         83706                              0.00 conventional
66                         73830                            322.22 conventional
67                         82907                            180.56 conventional
68                         62713                              0.00 conventional
69                         75979                            243.06 conventional
70                         70394                            647.22 conventional
71                         47001                              0.00 conventional
72                         59730                              0.00 conventional
73                         61075                              0.00 conventional
74                         66694                              0.00 conventional
75                         66554                              0.00 conventional
76                         78959                            627.78 conventional
77                         78214                            211.11 conventional
78                        110545                           1681.94 conventional
79                         52123                             20.00 conventional
80                         84046                           1425.00 conventional
81                         55753                           6691.94 conventional
82                        105975                           7273.06 conventional
83                        186792                           5450.28 conventional
84                        171021                           4934.99 conventional
85                        169317                            646.59 conventional
86                        206445                            881.40 conventional
87                        217338                              0.00 conventional
88                        158920                            183.33 conventional
89                        130218                            583.26 conventional
90                        119038                            766.50 conventional
91                         36611                              0.00 conventional
92                         32268                             13.61 conventional
93                         34551                              0.00 conventional
94                         66700                              0.00 conventional
95                         33479                              0.00 conventional
96                         61907                              0.00 conventional
97                         27709                              0.00 conventional
98                         34842                              0.00 conventional
99                         94449                              0.00 conventional
100                        32831                              0.00 conventional
101                        58468                              0.00 conventional
102                        33271                              0.00 conventional
103                        58630                              0.00 conventional
104                        21907                             10.80 conventional
105                        88882                           2639.39 conventional
106                        66147                           4194.44 conventional
107                        62336                           2991.22 conventional
108                        67568                           3486.54 conventional
109                        66640                           3058.00 conventional
110                        55576                           3743.00 conventional
111                        61447                           1784.00 conventional
112                        75134                           3164.00 conventional
113                        66802                           1723.73 conventional
114                        66216                           1641.67 conventional
115                        54265                              8.13 conventional
116                        63067                             39.27 conventional
117                        65198                            106.12 conventional
118                        51197                              8.47 conventional
119                        47954                             26.89 conventional
120                        50426                            156.07 conventional
121                        58868                           2475.18 conventional
122                        54225                           3103.33 conventional
123                        56680                           6505.16 conventional
124                        62510                           1557.01 conventional
125                        66092                           5570.00 conventional
126                        60271                           7638.89 conventional
127                        53475                           6014.61 conventional
128                        45904                           6799.98 conventional
129                        55795                           6175.62 conventional
130                        69372                           7455.00 conventional
131                        77103                          10685.68 conventional
132                        95431                           7162.04 conventional
133                        69713                          10390.00 conventional
134                        78151                           7565.00 conventional
135                       113271                           5675.00 conventional
136                        57828                          10972.77 conventional
137                        70754                           9218.50 conventional
138                        69708                           9573.51 conventional
139                       121007                           8024.25 conventional
140                        75877                           8147.11 conventional
141                        84101                           2547.96 conventional
142                        80088                           5605.00 conventional
143                        78979                           6795.00 conventional
144                        52857                           3330.00 conventional
145                        56386                           4975.00 conventional
146                        72092                           3465.56 conventional
147                        75894                           1336.39 conventional
148                        77625                            705.00 conventional
149                        50372                           2485.00 conventional
150                        55460                           3468.06 conventional
151                        56911                            536.11 conventional
152                        97837                            118.06 conventional
153                        79144                              0.00 conventional
154                       121095                              0.00 conventional
155                        75751                              0.00 conventional
156                        71692                              0.00 conventional
157                        92629                              0.00 conventional
158                        77406                           3065.90 conventional
159                        97851                           2752.04 conventional
160                        74963                           2520.84 conventional
161                       103016                           2371.11 conventional
162                        88126                           2433.79 conventional
163                        76224                           2661.95 conventional
164                        89401                           2344.19 conventional
165                       131566                           2107.36 conventional
166                        83774                           4167.78 conventional
167                       128969                           5320.00 conventional
168                       134436                           4011.10 conventional
169                        78288                           4191.53 conventional
170                           73                              0.00      organic
171                           11                              0.00      organic
172                          231                              0.00      organic
173                         1176                              0.00      organic
174                         1657                              0.00      organic
175                           84                              0.00      organic
176                          113                              0.00      organic
177                          522                              0.00      organic
178                          544                              0.00      organic
179                          171                              0.00      organic
180                          555                              0.00      organic
181                         1514                              0.00      organic
182                         1129                              0.00      organic
183                          139                              0.00      organic
184                           22                              0.00      organic
185                          145                              0.00      organic
186                          215                              0.00      organic
187                         1837                              0.00      organic
188                         2145                              0.00      organic
189                          250                              0.00      organic
190                          383                              0.00      organic
191                          906                              0.00      organic
192                         1596                              0.00      organic
193                         2847                              0.00      organic
194                         1628                              0.00      organic
195                         1419                              0.00      organic
196                         2110                              0.00      organic
197                          538                              0.00      organic
198                          599                              0.00      organic
199                          617                              0.00      organic
200                          476                              0.00      organic
201                          932                              0.00      organic
202                          854                              0.00      organic
203                          711                              0.00      organic
204                            0                              0.00      organic
205                           68                              0.00      organic
206                           18                              0.00      organic
207                            8                              0.00      organic
208                          850                              0.00      organic
209                          173                              0.00      organic
210                          396                              0.00      organic
211                         2732                              0.00      organic
212                         2743                              0.00      organic
213                         2541                              0.00      organic
214                         1133                              0.00      organic
215                          417                              0.00      organic
216                         1599                              0.00      organic
217                          756                              0.00      organic
218                          200                              0.00      organic
219                          147                              0.00      organic
220                           57                              0.00      organic
221                          337                              0.00      organic
222                         1580                              0.00      organic
223                         5800                              0.00      organic
224                         9456                              0.00      organic
225                         6287                              0.00      organic
226                         4023                              0.00      organic
227                         3912                              0.00      organic
228                         4283                              0.00      organic
229                         5222                              0.00      organic
230                         1068                              0.00      organic
231                        10171                              0.00      organic
232                        11834                              0.00      organic
233                        13027                              0.00      organic
234                          374                              0.00      organic
235                         1863                              0.00      organic
236                         1906                              0.00      organic
237                         5356                              0.00      organic
238                         6068                              0.00      organic
239                        10334                              0.00      organic
240                         3228                              0.00      organic
241                         4113                              0.00      organic
242                        14791                              0.00      organic
243                         4414                              0.00      organic
244                         1075                              0.00      organic
245                         8163                              0.00      organic
246                         6776                              0.00      organic
247                        10123                              0.00      organic
248                         7680                              0.00      organic
249                         9365                              0.00      organic
250                         7657                              0.00      organic
251                         5083                              0.00      organic
252                         2080                              0.00      organic
253                         4105                              0.00      organic
254                         3657                              0.00      organic
255                         2650                              0.00      organic
256                         4011                              0.00      organic
257                         2202                              0.00      organic
258                         1840                              0.00      organic
259                           88                              0.00      organic
260                          906                              0.00      organic
261                         1952                              0.00      organic
262                         1569                              0.00      organic
263                          592                              0.00      organic
264                          331                              0.00      organic
265                           60                              0.00      organic
266                          402                              0.00      organic
267                         1137                              0.00      organic
268                          715                              0.00      organic
269                          591                              0.00      organic
270                          854                              0.00      organic
271                          273                              0.00      organic
272                          977                              0.00      organic
273                          794                              0.00      organic
274                         1926                              0.00      organic
275                         1266                              0.00      organic
276                         2260                              0.00      organic
277                         3664                              0.00      organic
278                          614                              0.00      organic
279                         1133                              0.00      organic
280                          353                              0.00      organic
281                         1183                              0.00      organic
282                         2124                              0.00      organic
283                         6220                              0.00      organic
284                         4206                              0.00      organic
285                          953                              0.00      organic
286                          559                              0.00      organic
287                         3433                              0.00      organic
288                         9083                              0.00      organic
289                         6774                              0.00      organic
290                         2808                              0.00      organic
291                         8013                              0.00      organic
292                         3996                              0.00      organic
293                         1670                              0.00      organic
294                           38                              0.00      organic
295                         1969                              0.00      organic
296                         4052                              0.00      organic
297                         4836                              0.00      organic
298                         3386                              0.00      organic
299                         6543                              0.00      organic
300                         9600                              0.00      organic
301                        17495                              0.00      organic
302                         8801                              0.00      organic
303                        21918                              0.00      organic
304                        10444                              0.00      organic
305                        10699                              0.00      organic
306                        12065                              0.00      organic
307                         7231                              0.00      organic
308                         9671                              0.00      organic
309                         5803                              0.00      organic
310                         4343                              0.00      organic
311                         7505                              0.00      organic
312                        15668                              0.00      organic
313                         8695                              0.00      organic
314                         8605                              0.00      organic
315                         5216                              0.00      organic
316                        11450                              0.00      organic
317                        25696                              0.00      organic
318                        19566                              0.00      organic
319                         6991                              0.00      organic
320                         5725                              0.00      organic
321                         4022                              0.00      organic
322                         2041                              0.00      organic
323                         1622                              0.00      organic
324                         1579                              0.00      organic
325                         1472                              0.00      organic
326                         1518                              0.00      organic
327                         4907                              0.00      organic
328                         3842                              0.00      organic
329                          790                              0.00      organic
330                         1477                              0.00      organic
331                          630                              0.00      organic
332                          777                              0.00      organic
333                         3023                              0.00      organic
334                         1742                              0.00      organic
335                         3323                              0.00      organic
336                         8034                              0.00      organic
337                         5049                              0.00      organic
338                         3230                              0.00      organic
    year (AÑO) region (REGION)
1         2015         Atlanta
2         2015         Atlanta
3         2015         Atlanta
4         2015         Atlanta
5         2015         Atlanta
6         2015         Atlanta
7         2015         Atlanta
8         2015         Atlanta
9         2015         Atlanta
10        2015         Atlanta
11        2015         Atlanta
12        2015         Atlanta
13        2015         Atlanta
14        2015         Atlanta
15        2015         Atlanta
16        2015         Atlanta
17        2015         Atlanta
18        2015         Atlanta
19        2015         Atlanta
20        2015         Atlanta
21        2015         Atlanta
22        2015         Atlanta
23        2015         Atlanta
24        2015         Atlanta
25        2015         Atlanta
26        2015         Atlanta
27        2015         Atlanta
28        2015         Atlanta
29        2015         Atlanta
30        2015         Atlanta
31        2015         Atlanta
32        2015         Atlanta
33        2015         Atlanta
34        2015         Atlanta
35        2015         Atlanta
36        2015         Atlanta
37        2015         Atlanta
38        2015         Atlanta
39        2015         Atlanta
40        2015         Atlanta
41        2015         Atlanta
42        2015         Atlanta
43        2015         Atlanta
44        2015         Atlanta
45        2015         Atlanta
46        2015         Atlanta
47        2015         Atlanta
48        2015         Atlanta
49        2015         Atlanta
50        2015         Atlanta
51        2015         Atlanta
52        2015         Atlanta
53        2016         Atlanta
54        2016         Atlanta
55        2016         Atlanta
56        2016         Atlanta
57        2016         Atlanta
58        2016         Atlanta
59        2016         Atlanta
60        2016         Atlanta
61        2016         Atlanta
62        2016         Atlanta
63        2016         Atlanta
64        2016         Atlanta
65        2016         Atlanta
66        2016         Atlanta
67        2016         Atlanta
68        2016         Atlanta
69        2016         Atlanta
70        2016         Atlanta
71        2016         Atlanta
72        2016         Atlanta
73        2016         Atlanta
74        2016         Atlanta
75        2016         Atlanta
76        2016         Atlanta
77        2016         Atlanta
78        2016         Atlanta
79        2016         Atlanta
80        2016         Atlanta
81        2016         Atlanta
82        2016         Atlanta
83        2016         Atlanta
84        2016         Atlanta
85        2016         Atlanta
86        2016         Atlanta
87        2016         Atlanta
88        2016         Atlanta
89        2016         Atlanta
90        2016         Atlanta
91        2016         Atlanta
92        2016         Atlanta
93        2016         Atlanta
94        2016         Atlanta
95        2016         Atlanta
96        2016         Atlanta
97        2016         Atlanta
98        2016         Atlanta
99        2016         Atlanta
100       2016         Atlanta
101       2016         Atlanta
102       2016         Atlanta
103       2016         Atlanta
104       2016         Atlanta
105       2017         Atlanta
106       2017         Atlanta
107       2017         Atlanta
108       2017         Atlanta
109       2017         Atlanta
110       2017         Atlanta
111       2017         Atlanta
112       2017         Atlanta
113       2017         Atlanta
114       2017         Atlanta
115       2017         Atlanta
116       2017         Atlanta
117       2017         Atlanta
118       2017         Atlanta
119       2017         Atlanta
120       2017         Atlanta
121       2017         Atlanta
122       2017         Atlanta
123       2017         Atlanta
124       2017         Atlanta
125       2017         Atlanta
126       2017         Atlanta
127       2017         Atlanta
128       2017         Atlanta
129       2017         Atlanta
130       2017         Atlanta
131       2017         Atlanta
132       2017         Atlanta
133       2017         Atlanta
134       2017         Atlanta
135       2017         Atlanta
136       2017         Atlanta
137       2017         Atlanta
138       2017         Atlanta
139       2017         Atlanta
140       2017         Atlanta
141       2017         Atlanta
142       2017         Atlanta
143       2017         Atlanta
144       2017         Atlanta
145       2017         Atlanta
146       2017         Atlanta
147       2017         Atlanta
148       2017         Atlanta
149       2017         Atlanta
150       2017         Atlanta
151       2017         Atlanta
152       2017         Atlanta
153       2017         Atlanta
154       2017         Atlanta
155       2017         Atlanta
156       2017         Atlanta
157       2017         Atlanta
158       2018         Atlanta
159       2018         Atlanta
160       2018         Atlanta
161       2018         Atlanta
162       2018         Atlanta
163       2018         Atlanta
164       2018         Atlanta
165       2018         Atlanta
166       2018         Atlanta
167       2018         Atlanta
168       2018         Atlanta
169       2018         Atlanta
170       2015         Atlanta
171       2015         Atlanta
172       2015         Atlanta
173       2015         Atlanta
174       2015         Atlanta
175       2015         Atlanta
176       2015         Atlanta
177       2015         Atlanta
178       2015         Atlanta
179       2015         Atlanta
180       2015         Atlanta
181       2015         Atlanta
182       2015         Atlanta
183       2015         Atlanta
184       2015         Atlanta
185       2015         Atlanta
186       2015         Atlanta
187       2015         Atlanta
188       2015         Atlanta
189       2015         Atlanta
190       2015         Atlanta
191       2015         Atlanta
192       2015         Atlanta
193       2015         Atlanta
194       2015         Atlanta
195       2015         Atlanta
196       2015         Atlanta
197       2015         Atlanta
198       2015         Atlanta
199       2015         Atlanta
200       2015         Atlanta
201       2015         Atlanta
202       2015         Atlanta
203       2015         Atlanta
204       2015         Atlanta
205       2015         Atlanta
206       2015         Atlanta
207       2015         Atlanta
208       2015         Atlanta
209       2015         Atlanta
210       2015         Atlanta
211       2015         Atlanta
212       2015         Atlanta
213       2015         Atlanta
214       2015         Atlanta
215       2015         Atlanta
216       2015         Atlanta
217       2015         Atlanta
218       2015         Atlanta
219       2015         Atlanta
220       2015         Atlanta
221       2015         Atlanta
222       2016         Atlanta
223       2016         Atlanta
224       2016         Atlanta
225       2016         Atlanta
226       2016         Atlanta
227       2016         Atlanta
228       2016         Atlanta
229       2016         Atlanta
230       2016         Atlanta
231       2016         Atlanta
232       2016         Atlanta
233       2016         Atlanta
234       2016         Atlanta
235       2016         Atlanta
236       2016         Atlanta
237       2016         Atlanta
238       2016         Atlanta
239       2016         Atlanta
240       2016         Atlanta
241       2016         Atlanta
242       2016         Atlanta
243       2016         Atlanta
244       2016         Atlanta
245       2016         Atlanta
246       2016         Atlanta
247       2016         Atlanta
248       2016         Atlanta
249       2016         Atlanta
250       2016         Atlanta
251       2016         Atlanta
252       2016         Atlanta
253       2016         Atlanta
254       2016         Atlanta
255       2016         Atlanta
256       2016         Atlanta
257       2016         Atlanta
258       2016         Atlanta
259       2016         Atlanta
260       2016         Atlanta
261       2016         Atlanta
262       2016         Atlanta
263       2016         Atlanta
264       2016         Atlanta
265       2016         Atlanta
266       2016         Atlanta
267       2016         Atlanta
268       2016         Atlanta
269       2016         Atlanta
270       2016         Atlanta
271       2016         Atlanta
272       2016         Atlanta
273       2016         Atlanta
274       2017         Atlanta
275       2017         Atlanta
276       2017         Atlanta
277       2017         Atlanta
278       2017         Atlanta
279       2017         Atlanta
280       2017         Atlanta
281       2017         Atlanta
282       2017         Atlanta
283       2017         Atlanta
284       2017         Atlanta
285       2017         Atlanta
286       2017         Atlanta
287       2017         Atlanta
288       2017         Atlanta
289       2017         Atlanta
290       2017         Atlanta
291       2017         Atlanta
292       2017         Atlanta
293       2017         Atlanta
294       2017         Atlanta
295       2017         Atlanta
296       2017         Atlanta
297       2017         Atlanta
298       2017         Atlanta
299       2017         Atlanta
300       2017         Atlanta
301       2017         Atlanta
302       2017         Atlanta
303       2017         Atlanta
304       2017         Atlanta
305       2017         Atlanta
306       2017         Atlanta
307       2017         Atlanta
308       2017         Atlanta
309       2017         Atlanta
310       2017         Atlanta
311       2017         Atlanta
312       2017         Atlanta
313       2017         Atlanta
314       2017         Atlanta
315       2017         Atlanta
316       2017         Atlanta
317       2017         Atlanta
318       2017         Atlanta
319       2017         Atlanta
320       2017         Atlanta
321       2017         Atlanta
322       2017         Atlanta
323       2017         Atlanta
324       2017         Atlanta
325       2017         Atlanta
326       2017         Atlanta
327       2018         Atlanta
328       2018         Atlanta
329       2018         Atlanta
330       2018         Atlanta
331       2018         Atlanta
332       2018         Atlanta
333       2018         Atlanta
334       2018         Atlanta
335       2018         Atlanta
336       2018         Atlanta
337       2018         Atlanta
338       2018         Atlanta

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

BALTIMOREWASHINGTON

    FRAME_BaltimoreWashington <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="BaltimoreWashington",]) 
    FRAME_BaltimoreWashington
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   1.17
2                                   1.11
3                                   1.15
4                                   1.04
5                                   1.16
6                                   1.12
7                                   1.04
8                                   1.05
9                                   1.12
10                                  1.19
11                                  0.99
12                                  1.24
13                                  1.28
14                                  1.19
15                                  1.17
16                                  1.09
17                                  1.18
18                                  1.24
19                                  1.16
20                                  1.14
21                                  1.16
22                                  1.17
23                                  1.20
24                                  1.18
25                                  1.10
26                                  1.16
27                                  1.15
28                                  1.16
29                                  1.09
30                                  1.26
31                                  1.19
32                                  1.18
33                                  1.27
34                                  1.26
35                                  1.17
36                                  1.29
37                                  1.28
38                                  1.15
39                                  1.29
40                                  1.25
41                                  1.10
42                                  1.24
43                                  1.26
44                                  1.16
45                                  1.11
46                                  1.25
47                                  1.09
48                                  1.06
49                                  1.20
50                                  1.23
51                                  1.17
52                                  1.08
53                                  1.47
54                                  1.21
55                                  1.35
56                                  1.41
57                                  1.49
58                                  1.60
59                                  1.73
60                                  1.80
61                                  1.86
62                                  1.85
63                                  1.69
64                                  1.59
65                                  1.66
66                                  1.58
67                                  1.50
68                                  1.34
69                                  1.51
70                                  1.57
71                                  1.48
72                                  1.52
73                                  1.52
74                                  1.65
75                                  1.64
76                                  1.47
77                                  1.37
78                                  1.38
79                                  1.36
80                                  1.37
81                                  1.34
82                                  1.33
83                                  1.19
84                                  1.19
85                                  1.12
86                                  0.95
87                                  1.07
88                                  1.13
89                                  1.13
90                                  1.12
91                                  1.14
92                                  1.19
93                                  1.10
94                                  1.18
95                                  1.21
96                                  1.12
97                                  1.20
98                                  1.11
99                                  1.10
100                                 1.11
101                                 1.09
102                                 1.17
103                                 1.17
104                                 1.11
105                                 1.15
106                                 1.41
107                                 1.44
108                                 1.13
109                                 1.43
110                                 1.43
111                                 1.45
112                                 1.49
113                                 1.41
114                                 1.55
115                                 1.60
116                                 1.66
117                                 1.71
118                                 1.59
119                                 1.59
120                                 1.58
121                                 1.57
122                                 1.62
123                                 1.66
124                                 1.57
125                                 1.48
126                                 1.47
127                                 1.47
128                                 1.48
129                                 1.48
130                                 1.64
131                                 1.60
132                                 1.65
133                                 1.67
134                                 1.65
135                                 1.80
136                                 1.75
137                                 1.67
138                                 1.59
139                                 1.37
140                                 1.69
141                                 1.67
142                                 1.70
143                                 1.64
144                                 1.50
145                                 1.60
146                                 1.58
147                                 1.60
148                                 1.33
149                                 1.48
150                                 1.38
151                                 1.24
152                                 1.09
153                                 1.46
154                                 1.42
155                                 1.48
156                                 1.14
157                                 1.47
158                                 1.23
159                                 1.16
160                                 1.36
161                                 1.25
162                                 1.37
163                                 1.42
164                                 1.41
165                                 1.12
166                                 1.12
167                                 1.18
168                                 1.49
169                                 1.50
170                                 1.51
171                                 1.67
172                                 1.72
173                                 1.46
174                                 1.32
175                                 1.39
176                                 1.64
177                                 1.65
178                                 1.60
179                                 1.59
180                                 1.54
181                                 1.53
182                                 1.63
183                                 1.70
184                                 1.35
185                                 1.60
186                                 1.58
187                                 1.60
188                                 1.72
189                                 1.75
190                                 1.66
191                                 1.72
192                                 1.72
193                                 1.81
194                                 1.70
195                                 1.69
196                                 1.70
197                                 1.69
198                                 1.61
199                                 1.71
200                                 1.69
201                                 1.69
202                                 1.42
203                                 1.70
204                                 1.66
205                                 1.70
206                                 1.64
207                                 1.66
208                                 1.63
209                                 1.63
210                                 1.25
211                                 1.59
212                                 1.56
213                                 1.58
214                                 1.19
215                                 1.56
216                                 1.43
217                                 1.15
218                                 1.41
219                                 1.41
220                                 1.22
221                                 1.29
222                                 1.83
223                                 1.86
224                                 1.97
225                                 2.15
226                                 2.17
227                                 2.03
228                                 2.20
229                                 2.28
230                                 1.85
231                                 1.81
232                                 1.95
233                                 1.87
234                                 2.15
235                                 2.06
236                                 2.06
237                                 2.14
238                                 2.03
239                                 2.05
240                                 1.77
241                                 1.76
242                                 1.87
243                                 2.02
244                                 2.08
245                                 1.98
246                                 1.96
247                                 1.99
248                                 1.89
249                                 1.75
250                                 1.73
251                                 1.75
252                                 1.70
253                                 1.87
254                                 1.70
255                                 1.52
256                                 1.77
257                                 1.65
258                                 1.49
259                                 1.73
260                                 1.71
261                                 1.65
262                                 1.61
263                                 1.54
264                                 1.41
265                                 1.62
266                                 1.54
267                                 1.82
268                                 1.66
269                                 1.47
270                                 1.58
271                                 1.59
272                                 1.37
273                                 1.56
274                                 1.53
275                                 1.56
276                                 1.58
277                                 1.51
278                                 1.58
279                                 1.69
280                                 1.80
281                                 1.81
282                                 1.84
283                                 1.81
284                                 1.64
285                                 1.60
286                                 1.50
287                                 1.62
288                                 1.53
289                                 1.54
290                                 1.59
291                                 1.68
292                                 1.82
293                                 1.75
294                                 1.66
295                                 1.65
296                                 1.60
297                                 1.51
298                                 1.57
299                                 2.26
300                                 2.20
301                                 2.21
302                                 2.20
303                                 2.17
304                                 2.15
305                                 2.18
306                                 2.20
307                                 2.11
308                                 2.13
309                                 2.15
310                                 2.14
311                                 1.96
312                                 1.89
313                                 1.97
314                                 1.97
315                                 2.06
316                                 2.12
317                                 1.97
318                                 1.93
319                                 1.81
320                                 1.85
321                                 1.85
322                                 1.85
323                                 1.85
324                                 1.82
325                                 1.85
326                                 1.92
327                                 1.33
328                                 1.41
329                                 1.44
330                                 1.43
331                                 1.47
332                                 1.52
333                                 1.53
334                                 1.59
335                                 1.55
336                                 1.66
337                                 1.39
338                                 1.15
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   596819
2                                                   642682
3                                                   619509
4                                                   649141
5                                                   545800
6                                                   572020
7                                                   718330
8                                                   830967
9                                                   742221
10                                                  656892
11                                                 1005604
12                                                  653560
13                                                  657444
14                                                  696282
15                                                  709269
16                                                  924994
17                                                  823623
18                                                  734721
19                                                  783935
20                                                  882755
21                                                  821523
22                                                  800603
23                                                  772926
24                                                  800194
25                                                  850932
26                                                  896299
27                                                  862262
28                                                  862841
29                                                  955047
30                                                  794310
31                                                  949177
32                                                  908662
33                                                  790854
34                                                  855206
35                                                  896972
36                                                  747841
37                                                  762863
38                                                  837630
39                                                  688065
40                                                  663677
41                                                  808897
42                                                  693698
43                                                  657746
44                                                  770115
45                                                  749846
46                                                  637319
47                                                  844931
48                                                 1007419
49                                                  692934
50                                                  657741
51                                                  670232
52                                                  788025
53                                                  550948
54                                                  691009
55                                                  599161
56                                                  566956
57                                                  539925
58                                                  566160
59                                                  559979
60                                                  537946
61                                                  522547
62                                                  584276
63                                                  638848
64                                                  676189
65                                                  672760
66                                                  678672
67                                                  732425
68                                                  885728
69                                                  762218
70                                                  732546
71                                                  727280
72                                                  742292
73                                                  746494
74                                                  698628
75                                                  719104
76                                                  730875
77                                                  831188
78                                                  844338
79                                                  830073
80                                                  850692
81                                                  850863
82                                                  860858
83                                                  890197
84                                                  837573
85                                                  901690
86                                                 1103888
87                                                  929492
88                                                  915500
89                                                  841840
90                                                  789348
91                                                  770877
92                                                  781628
93                                                  880239
94                                                  845575
95                                                  819707
96                                                  888570
97                                                  739486
98                                                  905145
99                                                  966321
100                                                 748107
101                                                1022653
102                                                 836226
103                                                 780979
104                                                 816760
105                                                 849488
106                                                 624269
107                                                 628735
108                                                 940851
109                                                 658939
110                                                 629719
111                                                 644740
112                                                 658693
113                                                 736468
114                                                 682237
115                                                 672067
116                                                 667770
117                                                 598837
118                                                 705452
119                                                 676499
120                                                 664502
121                                                 660104
122                                                 671505
123                                                 653599
124                                                 691636
125                                                 697321
126                                                 695849
127                                                 655426
128                                                 692873
129                                                 670476
130                                                 701870
131                                                 672614
132                                                 693972
133                                                 713471
134                                                 744159
135                                                 757910
136                                                 779184
137                                                 750140
138                                                 731953
139                                                1097981
140                                                 761925
141                                                 749187
142                                                 717940
143                                                 738255
144                                                 800802
145                                                 739376
146                                                 738957
147                                                 763784
148                                                 880326
149                                                 814377
150                                                 721257
151                                                 925575
152                                                1170445
153                                                 781539
154                                                 826942
155                                                 749511
156                                                1029280
157                                                 631761
158                                                 986039
159                                                1113243
160                                                 874780
161                                                 988573
162                                                 836295
163                                                 796516
164                                                 900558
165                                                1225103
166                                                1152539
167                                                1102213
168                                                 799727
169                                                 771314
170                                                  14201
171                                                   9296
172                                                  12404
173                                                   9718
174                                                  10962
175                                                   9577
176                                                   6884
177                                                   7159
178                                                   9421
179                                                  11223
180                                                  10216
181                                                   9453
182                                                   8858
183                                                   7552
184                                                  11150
185                                                  11772
186                                                  14380
187                                                  12626
188                                                  11556
189                                                  10281
190                                                  13133
191                                                  11938
192                                                   8503
193                                                   8670
194                                                   8904
195                                                  12481
196                                                  11718
197                                                  10940
198                                                  13924
199                                                  13809
200                                                  12641
201                                                  17042
202                                                  22470
203                                                  14499
204                                                  16396
205                                                  13467
206                                                  15853
207                                                  16000
208                                                  14552
209                                                  15848
210                                                  16507
211                                                  11586
212                                                  19054
213                                                  15923
214                                                  23920
215                                                  16335
216                                                  14898
217                                                  27930
218                                                  15388
219                                                  14057
220                                                  26009
221                                                  19137
222                                                  17061
223                                                  14031
224                                                  16246
225                                                  13989
226                                                  12676
227                                                  13148
228                                                  11635
229                                                  14538
230                                                  17148
231                                                  17435
232                                                  16844
233                                                  18613
234                                                  18289
235                                                  21534
236                                                  22736
237                                                  20396
238                                                  19198
239                                                  14071
240                                                  20526
241                                                  16890
242                                                  18072
243                                                  14789
244                                                  17267
245                                                  21633
246                                                  17214
247                                                  17235
248                                                  20251
249                                                  16906
250                                                  18801
251                                                  22921
252                                                  23435
253                                                  22054
254                                                  16936
255                                                  21296
256                                                  24201
257                                                  27336
258                                                  22368
259                                                  22013
260                                                  22271
261                                                  17018
262                                                  16333
263                                                  19068
264                                                  21611
265                                                  14556
266                                                  18004
267                                                  14927
268                                                  17201
269                                                  19026
270                                                  18288
271                                                  14368
272                                                  20518
273                                                  16107
274                                                  40942
275                                                  35540
276                                                  34582
277                                                  41451
278                                                  38754
279                                                  31689
280                                                  28942
281                                                  33641
282                                                  35882
283                                                  37155
284                                                  47487
285                                                  56559
286                                                  67233
287                                                  48973
288                                                  62465
289                                                  59453
290                                                  63284
291                                                  58736
292                                                  41524
293                                                  39134
294                                                  40536
295                                                  41701
296                                                  41847
297                                                  50323
298                                                  37981
299                                                  18665
300                                                  23687
301                                                  22446
302                                                  22845
303                                                  23607
304                                                  26346
305                                                  24731
306                                                  23209
307                                                  25182
308                                                  21753
309                                                  25697
310                                                  24139
311                                                  24455
312                                                  19115
313                                                  23194
314                                                  20770
315                                                  18538
316                                                  17418
317                                                  18083
318                                                  16773
319                                                  21624
320                                                  18596
321                                                  17975
322                                                  17293
323                                                  18486
324                                                  20759
325                                                  17989
326                                                  13901
327                                                  57606
328                                                  45505
329                                                  48045
330                                                  43301
331                                                  47421
332                                                  51565
333                                                  46356
334                                                  41616
335                                                  44059
336                                                  38098
337                                                  66149
338                                                  82283
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    40450
2                                                    44741
3                                                    44400
4                                                    51129
5                                                    41028
6                                                    40868
7                                                    47110
8                                                    58579
9                                                    51860
10                                                   53766
11                                                   59122
12                                                   34707
13                                                   35342
14                                                   34309
15                                                   39620
16                                                   55699
17                                                   63904
18                                                   48455
19                                                   59242
20                                                   86492
21                                                   56363
22                                                   53958
23                                                   52746
24                                                   52955
25                                                   58828
26                                                   66505
27                                                   65052
28                                                   58399
29                                                   64005
30                                                   62585
31                                                   67745
32                                                   63610
33                                                   63515
34                                                   79192
35                                                   73038
36                                                   58014
37                                                   67487
38                                                   70797
39                                                   53579
40                                                   58098
41                                                   65159
42                                                   53400
43                                                   55285
44                                                   59040
45                                                   50501
46                                                   49752
47                                                   71704
48                                                   93167
49                                                   49696
50                                                   49947
51                                                   51461
52                                                   53987
53                                                   50819
54                                                   57866
55                                                   49240
56                                                   52096
57                                                   46243
58                                                   51079
59                                                   64631
60                                                   61459
61                                                   58412
62                                                   56864
63                                                   63424
64                                                   72776
65                                                   78717
66                                                  129774
67                                                  151205
68                                                  202958
69                                                   97714
70                                                   72407
71                                                   68444
72                                                   68336
73                                                   71155
74                                                   64023
75                                                   62897
76                                                   50832
77                                                   64926
78                                                   63051
79                                                   62585
80                                                   61789
81                                                   73621
82                                                   61074
83                                                   61989
84                                                   60638
85                                                   58944
86                                                   75493
87                                                   67682
88                                                   61118
89                                                   59233
90                                                   64550
91                                                   61533
92                                                   59850
93                                                   65397
94                                                   59401
95                                                   62540
96                                                   61484
97                                                   51913
98                                                   72825
99                                                   73754
100                                                  52642
101                                                  69829
102                                                  58788
103                                                  60261
104                                                  54492
105                                                  66629
106                                                  66339
107                                                  67126
108                                                 103332
109                                                  69819
110                                                  59916
111                                                  64122
112                                                  78052
113                                                  93809
114                                                  62567
115                                                  60121
116                                                  57543
117                                                  58351
118                                                  57841
119                                                  58682
120                                                  55766
121                                                  52853
122                                                  58997
123                                                  51628
124                                                  58935
125                                                  61461
126                                                  60785
127                                                  57622
128                                                  65421
129                                                  64407
130                                                  64096
131                                                  57584
132                                                  57368
133                                                  62876
134                                                  65666
135                                                  62567
136                                                  66151
137                                                  70766
138                                                  67663
139                                                  75658
140                                                  74467
141                                                  69674
142                                                  67840
143                                                  71188
144                                                  82572
145                                                  70468
146                                                  70368
147                                                  72820
148                                                  84609
149                                                  82179
150                                                  96159
151                                                 190312
152                                                 174325
153                                                  81884
154                                                  81909
155                                                  76382
156                                                  83250
157                                                  54530
158                                                 108251
159                                                 114754
160                                                 104341
161                                                 102688
162                                                 104218
163                                                  92817
164                                                 112223
165                                                 139312
166                                                 115284
167                                                 129352
168                                                  91786
169                                                  89883
170                                                    364
171                                                    504
172                                                    551
173                                                    433
174                                                    536
175                                                    587
176                                                   1133
177                                                   2701
178                                                   3323
179                                                    999
180                                                    772
181                                                    460
182                                                    452
183                                                    429
184                                                   1462
185                                                   1450
186                                                   2635
187                                                   2524
188                                                   4289
189                                                   4473
190                                                   3947
191                                                   3888
192                                                   3682
193                                                   2231
194                                                   4829
195                                                   6640
196                                                   5562
197                                                   5224
198                                                   5819
199                                                   5561
200                                                   5803
201                                                   6716
202                                                   6095
203                                                   6024
204                                                   6667
205                                                   6339
206                                                   8223
207                                                   7671
208                                                   8145
209                                                   7578
210                                                  10884
211                                                   6527
212                                                   6590
213                                                   7387
214                                                  12845
215                                                   5710
216                                                   6050
217                                                  14635
218                                                   8097
219                                                   8149
220                                                  12258
221                                                   8041
222                                                    802
223                                                    969
224                                                    820
225                                                    947
226                                                    676
227                                                    639
228                                                    842
229                                                    816
230                                                    546
231                                                    368
232                                                    825
233                                                    692
234                                                    483
235                                                    538
236                                                    541
237                                                    633
238                                                    705
239                                                   1228
240                                                   2701
241                                                   2207
242                                                    644
243                                                    896
244                                                    740
245                                                    692
246                                                    673
247                                                    889
248                                                   1821
249                                                   1023
250                                                    720
251                                                    643
252                                                    754
253                                                    624
254                                                    685
255                                                   1620
256                                                   1081
257                                                    969
258                                                   2673
259                                                    891
260                                                    649
261                                                   1398
262                                                   1678
263                                                    851
264                                                    659
265                                                    503
266                                                    602
267                                                    626
268                                                    643
269                                                    680
270                                                    720
271                                                    528
272                                                    495
273                                                    581
274                                                   1177
275                                                    919
276                                                   1257
277                                                   1980
278                                                   1416
279                                                    883
280                                                    840
281                                                    823
282                                                   1135
283                                                    987
284                                                    815
285                                                    940
286                                                   2811
287                                                   2864
288                                                   2667
289                                                   2003
290                                                   2319
291                                                   4534
292                                                   4098
293                                                    925
294                                                   1100
295                                                   1373
296                                                   1117
297                                                    763
298                                                    846
299                                                   1270
300                                                   1028
301                                                    792
302                                                    964
303                                                   1138
304                                                   1030
305                                                   1010
306                                                   1035
307                                                   1026
308                                                    964
309                                                   1413
310                                                    809
311                                                   1248
312                                                    854
313                                                   1558
314                                                   1316
315                                                   1109
316                                                   1147
317                                                   1280
318                                                   1274
319                                                   1775
320                                                   1309
321                                                   1374
322                                                   1051
323                                                   1219
324                                                   1359
325                                                   1325
326                                                   1420
327                                                   2002
328                                                   2132
329                                                   1886
330                                                   2360
331                                                   1626
332                                                   2126
333                                                   1457
334                                                   1202
335                                                   1236
336                                                   1451
337                                                   1264
338                                                   1316
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                 394104
2                                                 434591
3                                                 399852
4                                                 453587
5                                                 379156
6                                                 386138
7                                                 503470
8                                                 576513
9                                                 473819
10                                                397911
11                                                745385
12                                                392009
13                                                407610
14                                                451061
15                                                450283
16                                                675524
17                                                522568
18                                                458207
19                                                499100
20                                                597185
21                                                557364
22                                                535167
23                                                496509
24                                                496206
25                                                547537
26                                                567641
27                                                534535
28                                                527867
29                                                593500
30                                                462951
31                                                617814
32                                                560740
33                                                455167
34                                                507104
35                                                536710
36                                                431533
37                                                427623
38                                                523170
39                                                401279
40                                                398051
41                                                524971
42                                                395837
43                                                367671
44                                                498873
45                                                445971
46                                                361677
47                                                554857
48                                                666010
49                                                386399
50                                                393360
51                                                420838
52                                                552906
53                                                344700
54                                                487110
55                                                375438
56                                                345132
57                                                336732
58                                                309529
59                                                311688
60                                                284547
61                                                304617
62                                                336434
63                                                363925
64                                                395481
65                                                381625
66                                                347949
67                                                367426
68                                                494756
69                                                442803
70                                                443668
71                                                413652
72                                                421189
73                                                432957
74                                                402053
75                                                422903
76                                                400288
77                                                489315
78                                                501970
79                                                509114
80                                                523095
81                                                507383
82                                                537896
83                                                577334
84                                                540988
85                                                629734
86                                                804252
87                                                648817
88                                                638834
89                                                576827
90                                                522216
91                                                523512
92                                                523532
93                                                614918
94                                                580134
95                                                541219
96                                                641585
97                                                446499
98                                                596869
99                                                621956
100                                               506188
101                                               689359
102                                               535245
103                                               511067
104                                               583418
105                                               519460
106                                               363593
107                                               369811
108                                               546810
109                                               407522
110                                               377227
111                                               365922
112                                               387453
113                                               458178
114                                               434269
115                                               418177
116                                               426158
117                                               380898
118                                               461605
119                                               451996
120                                               443693
121                                               424594
122                                               435941
123                                               402657
124                                               417108
125                                               431019
126                                               440986
127                                               399898
128                                               435764
129                                               415328
130                                               448758
131                                               397714
132                                               446949
133                                               462836
134                                               475096
135                                               482039
136                                               477778
137                                               467149
138                                               394707
139                                               722002
140                                               471826
141                                               458300
142                                               439898
143                                               438986
144                                               493953
145                                               462479
146                                               463108
147                                               476272
148                                               591422
149                                               531502
150                                               434568
151                                               538660
152                                               770463
153                                               489024
154                                               528126
155                                               472453
156                                               750034
157                                               408952
158                                               591935
159                                               505245
160                                               484253
161                                               619501
162                                               479773
163                                               487724
164                                               545366
165                                               708496
166                                               805041
167                                               659069
168                                               485963
169                                               466603
170                                                 5263
171                                                 4702
172                                                 4511
173                                                 4365
174                                                 5921
175                                                 6337
176                                                 4773
177                                                 2975
178                                                 4106
179                                                 6750
180                                                 6015
181                                                 5640
182                                                 6092
183                                                 4775
184                                                 6347
185                                                 5418
186                                                 5041
187                                                 5164
188                                                 3541
189                                                 3522
190                                                 4110
191                                                 3336
192                                                 3167
193                                                 2169
194                                                 2708
195                                                 3114
196                                                 2729
197                                                 2874
198                                                 2944
199                                                 3116
200                                                 3269
201                                                 3801
202                                                 7359
203                                                 2924
204                                                 3756
205                                                 3106
206                                                 3999
207                                                 3634
208                                                 3200
209                                                 3598
210                                                 4513
211                                                 3391
212                                                 3908
213                                                 4112
214                                                 5815
215                                                 3782
216                                                 4361
217                                                 8013
218                                                 5023
219                                                 4725
220                                                 7095
221                                                 6557
222                                                 5202
223                                                 5005
224                                                 6368
225                                                 6091
226                                                 6555
227                                                 6754
228                                                 6128
229                                                 7611
230                                                12485
231                                                12888
232                                                 9095
233                                                10306
234                                                 9803
235                                                10811
236                                                 7808
237                                                 6731
238                                                 9032
239                                                 8991
240                                                 8410
241                                                10856
242                                                10561
243                                                10096
244                                                 9009
245                                                 9120
246                                                 9092
247                                                 9005
248                                                 9002
249                                                10028
250                                                10079
251                                                 9974
252                                                10667
253                                                 9582
254                                                 8702
255                                                11267
256                                                10151
257                                                12046
258                                                11276
259                                                 9255
260                                                 9899
261                                                 7194
262                                                 6707
263                                                 8994
264                                                10332
265                                                 8253
266                                                10520
267                                                 7940
268                                                 7814
269                                                 7178
270                                                 5525
271                                                 7394
272                                                 6974
273                                                 6584
274                                                 7959
275                                                 5886
276                                                 7053
277                                                 6934
278                                                 7869
279                                                 6846
280                                                 7176
281                                                 7144
282                                                 8054
283                                                 9122
284                                                10255
285                                                 8822
286                                                 6844
287                                                 5844
288                                                 6252
289                                                 8037
290                                                 8702
291                                                 8345
292                                                 8674
293                                                 8273
294                                                 6739
295                                                10747
296                                                 8371
297                                                 8833
298                                                 4836
299                                                 7508
300                                                12583
301                                                11006
302                                                11778
303                                                11798
304                                                13921
305                                                13031
306                                                10983
307                                                12714
308                                                 9976
309                                                11979
310                                                11476
311                                                11854
312                                                10376
313                                                11581
314                                                 9686
315                                                 7239
316                                                 6981
317                                                 8000
318                                                 7291
319                                                10428
320                                                 7234
321                                                 6611
322                                                 7817
323                                                 8061
324                                                 8446
325                                                 7679
326                                                 6298
327                                                 5548
328                                                 6131
329                                                 6875
330                                                 6372
331                                                 7913
332                                                12402
333                                                 9061
334                                                 7408
335                                                 8807
336                                                 9262
337                                                10026
338                                                 9962
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                   17354
2                                                   19112
3                                                   24291
4                                                   25760
5                                                   20148
6                                                   23343
7                                                   37990
8                                                   51035
9                                                   58616
10                                                  49086
11                                                  49171
12                                                  58490
13                                                  42258
14                                                  59019
15                                                  45336
16                                                  42270
17                                                  68180
18                                                  42754
19                                                  47216
20                                                  43103
21                                                  42934
22                                                  44750
23                                                  45011
24                                                  50320
25                                                  50679
26                                                  56045
27                                                  51110
28                                                  51953
29                                                  48345
30                                                  43721
31                                                  45833
32                                                  49809
33                                                  44841
34                                                  44391
35                                                  77537
36                                                  39943
37                                                  42125
38                                                  42271
39                                                  41867
40                                                  43760
41                                                  42381
42                                                  46596
43                                                  42268
44                                                  40242
45                                                  62612
46                                                  45900
47                                                  37437
48                                                  83652
49                                                  39489
50                                                  40576
51                                                  42527
52                                                  39995
53                                                   8530
54                                                   8752
55                                                   9977
56                                                  10050
57                                                   8237
58                                                  13095
59                                                  28558
60                                                  41287
61                                                  27904
62                                                  27037
63                                                  19879
64                                                  20640
65                                                  19493
66                                                  19206
67                                                  18809
68                                                  19882
69                                                  20155
70                                                  15649
71                                                  21950
72                                                  24864
73                                                  28505
74                                                  31448
75                                                  30142
76                                                  32758
77                                                  44219
78                                                  50115
79                                                  48950
80                                                  54130
81                                                  55744
82                                                  46715
83                                                  44266
84                                                  19545
85                                                  16372
86                                                  16819
87                                                  15073
88                                                  15861
89                                                  15881
90                                                  13248
91                                                  12784
92                                                  15295
93                                                  16343
94                                                  18703
95                                                  21461
96                                                  20335
97                                                  54666
98                                                  60290
99                                                  48009
100                                                 24482
101                                                 24030
102                                                 25662
103                                                 26791
104                                                 27147
105                                                  4920
106                                                  2680
107                                                  2934
108                                                  3980
109                                                  3789
110                                                  3440
111                                                  3724
112                                                  3925
113                                                  4062
114                                                  4193
115                                                  4523
116                                                  4902
117                                                  4555
118                                                  4777
119                                                  4488
120                                                  4746
121                                                  5142
122                                                  5348
123                                                  5172
124                                                  5205
125                                                  5629
126                                                  5325
127                                                  5352
128                                                  5664
129                                                  5641
130                                                  6202
131                                                  6603
132                                                  6496
133                                                  6444
134                                                  7177
135                                                  7376
136                                                  7003
137                                                  7223
138                                                  6178
139                                                 10049
140                                                  7668
141                                                  7323
142                                                  6835
143                                                  6568
144                                                  7302
145                                                  7285
146                                                  6762
147                                                  9390
148                                                 12153
149                                                  9921
150                                                  9539
151                                                  8823
152                                                 29353
153                                                 10828
154                                                 22837
155                                                 10120
156                                                  9794
157                                                 14387
158                                                  4205
159                                                  5035
160                                                  4934
161                                                  5269
162                                                  4766
163                                                  4694
164                                                  4701
165                                                  5612
166                                                  4257
167                                                  4321
168                                                  4235
169                                                  4167
170                                                   318
171                                                   419
172                                                   337
173                                                   445
174                                                   432
175                                                   460
176                                                   459
177                                                   567
178                                                   688
179                                                   769
180                                                   685
181                                                   598
182                                                   667
183                                                   617
184                                                   520
185                                                   698
186                                                   718
187                                                   715
188                                                   635
189                                                   865
190                                                   836
191                                                   719
192                                                   600
193                                                   650
194                                                   760
195                                                   902
196                                                   882
197                                                   714
198                                                   956
199                                                  1042
200                                                  1061
201                                                   993
202                                                  3915
203                                                  1129
204                                                  1164
205                                                   816
206                                                   865
207                                                   864
208                                                   708
209                                                   787
210                                                   758
211                                                   745
212                                                   745
213                                                   733
214                                                   668
215                                                   778
216                                                   745
217                                                   668
218                                                   528
219                                                   660
220                                                   490
221                                                   657
222                                                   232
223                                                   303
224                                                   230
225                                                   267
226                                                   240
227                                                   330
228                                                   449
229                                                   462
230                                                   681
231                                                   756
232                                                   680
233                                                   576
234                                                   331
235                                                   286
236                                                   321
237                                                   316
238                                                   432
239                                                   301
240                                                   467
241                                                   367
242                                                   472
243                                                   496
244                                                   541
245                                                   716
246                                                   535
247                                                   454
248                                                   427
249                                                   406
250                                                   381
251                                                   313
252                                                   322
253                                                   278
254                                                   190
255                                                   322
256                                                   332
257                                                   255
258                                                   293
259                                                   352
260                                                   276
261                                                   301
262                                                   390
263                                                   282
264                                                   340
265                                                   309
266                                                   285
267                                                   269
268                                                   346
269                                                   385
270                                                   327
271                                                   316
272                                                   402
273                                                   507
274                                                   122
275                                                    89
276                                                    50
277                                                    74
278                                                    76
279                                                    64
280                                                    75
281                                                   106
282                                                    76
283                                                    99
284                                                    71
285                                                    69
286                                                    81
287                                                    56
288                                                    94
289                                                    72
290                                                   103
291                                                   134
292                                                    67
293                                                   115
294                                                   162
295                                                   148
296                                                   115
297                                                   131
298                                                   168
299                                                   197
300                                                   209
301                                                   180
302                                                   142
303                                                   140
304                                                   217
305                                                   181
306                                                   206
307                                                   263
308                                                   229
309                                                   193
310                                                   188
311                                                   399
312                                                   270
313                                                   276
314                                                   333
315                                                   227
316                                                   271
317                                                   235
318                                                   302
319                                                   262
320                                                   245
321                                                   203
322                                                   331
323                                                   346
324                                                   295
325                                                   445
326                                                   325
327                                                    83
328                                                    76
329                                                    97
330                                                    94
331                                                    49
332                                                    80
333                                                    68
334                                                    86
335                                                   147
336                                                    65
337                                                   106
338                                                   134
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                         144911                       142544
2                         144238                       141752
3                         150966                       149070
4                         118665                       117113
5                         105468                       103616
6                         121671                       119008
7                         129760                       125298
8                         144840                       138778
9                         157926                       152716
10                        156129                       149988
11                        151926                       146421
12                        168354                       163669
13                        172234                       167495
14                        151893                       146793
15                        174030                       168890
16                        151500                       145686
17                        168971                       165697
18                        185304                       181969
19                        178377                       175047
20                        155975                       153157
21                        164863                       161565
22                        166729                       163668
23                        178660                       174775
24                        200713                       196838
25                        193887                       189236
26                        206109                       200098
27                        211565                       207378
28                        224623                       220904
29                        249197                       244982
30                        225053                       221166
31                        217786                       211787
32                        234503                       228843
33                        227331                       222163
34                        224519                       215572
35                        209686                       201874
36                        218352                       212065
37                        225627                       219886
38                        201392                       196076
39                        191340                       184109
40                        163769                       158964
41                        176386                       171700
42                        197865                       193131
43                        192522                       188374
44                        171961                       168224
45                        190763                       186977
46                        179990                       174865
47                        180933                       175771
48                        164589                       159917
49                        217351                       209762
50                        173859                       169391
51                        155407                       151331
52                        141137                       137146
53                        146899                       142957
54                        137281                       133753
55                        164506                       153477
56                        159678                       157704
57                        148713                       146287
58                        192457                       189673
59                        155102                       153318
60                        150653                       149604
61                        131614                       130683
62                        163941                       163071
63                        191620                       190382
64                        187292                       185599
65                        192926                       190861
66                        181742                       180491
67                        194985                       191239
68                        168132                       162753
69                        201546                       198132
70                        200822                       194473
71                        223234                       203758
72                        227904                       219530
73                        213877                       210316
74                        201103                       197041
75                        203162                       194810
76                        246997                       233727
77                        232729                       217648
78                        229202                       214852
79                        209424                       202616
80                        211678                       203570
81                        214115                       207728
82                        215173                       203788
83                        206607                       200150
84                        216402                       211306
85                        196640                       189850
86                        207325                       204118
87                        197920                       194073
88                        199687                       196063
89                        189899                       185709
90                        189334                       186798
91                        173047                       170235
92                        182951                       179810
93                        183581                       180892
94                        187337                       184423
95                        194487                       191745
96                        165166                       162543
97                        186408                       180042
98                        175160                       168368
99                        222601                       217667
100                       164795                       161204
101                       239435                       233610
102                       216531                       213939
103                       182859                       180461
104                       151703                       149408
105                       258478                       245666
106                       191657                       184571
107                       188865                       177981
108                       286729                       263946
109                       177809                       173143
110                       189136                       157579
111                       210972                       167489
112                       189263                       178913
113                       180419                       173552
114                       181207                       179693
115                       189246                       184656
116                       179168                       166892
117                       155034                       147300
118                       181228                       167896
119                       161333                       158073
120                       160297                       158757
121                       177515                       169534
122                       171218                       168301
123                       194141                       192628
124                       210388                       198851
125                       199211                       186158
126                       188752                       182988
127                       192553                       187555
128                       186024                       181105
129                       185101                       177112
130                       182813                       170310
131                       210713                       182309
132                       183159                       167327
133                       181315                       169246
134                       196220                       184501
135                       205927                       201472
136                       228252                       221419
137                       205002                       202535
138                       263404                       259582
139                       290272                       282860
140                       207964                       202999
141                       213890                       197171
142                       203368                       182834
143                       221513                       218334
144                       216975                       213697
145                       199144                       196644
146                       198718                       179561
147                       205302                       202870
148                       192143                       190685
149                       190774                       185955
150                       180992                       169659
151                       187780                       166227
152                       196303                       187363
153                       199803                       193911
154                       194071                       187903
155                       190555                       188395
156                       186202                       183395
157                       153891                       151346
158                       281648                       277508
159                       488208                       483403
160                       281253                       278834
161                       261115                       256823
162                       247538                       243371
163                       211280                       206323
164                       238269                       233808
165                       371684                       369085
166                       227957                       225931
167                       309470                       304382
168                       217743                       212957
169                       210661                       189305
170                         8256                         2247
171                         3670                         1424
172                         7005                         2920
173                         4475                          715
174                         4072                          327
175                         2192                          602
176                          519                          481
177                          916                          847
178                         1305                          936
179                         2705                          927
180                         2744                          913
181                         2756                         1033
182                         1646                         1646
183                         1732                         1721
184                         2822                         2819
185                         4206                         4203
186                         5986                         5977
187                         4223                         4220
188                         3091                         3088
189                         1421                         1405
190                         4240                         4226
191                         3995                         3984
192                         1054                         1051
193                         3620                         3620
194                          608                          608
195                         1825                         1825
196                         2545                         2545
197                         2128                         2123
198                         4205                         4200
199                         4090                         4077
200                         2509                         2506
201                         5532                         5532
202                         5102                         5102
203                         4423                         4415
204                         4810                         4807
205                         3205                         3202
206                         2766                         2766
207                         3830                         3822
208                         2499                         2499
209                         3885                         3885
210                          352                          352
211                          923                          923
212                         7810                         7810
213                         3691                         3660
214                         4593                         4593
215                         6066                         6066
216                         3742                         3739
217                         4614                         4614
218                         1739                         1739
219                          524                          462
220                         6166                         6166
221                         3882                         3882
222                        10825                        10821
223                         7754                         7712
224                         8828                         8822
225                         6685                         6685
226                         5205                         5196
227                         5424                         5399
228                         4216                         4210
229                         5649                         5634
230                         3435                         3424
231                         3422                         3407
232                         6243                         6226
233                         7039                         7005
234                         7672                         7645
235                         9899                         9892
236                        14065                        14047
237                        12716                        12716
238                         9028                         9025
239                         3551                         3534
240                         8948                         8946
241                         3460                         3444
242                         6393                         6379
243                         3301                         3301
244                         6977                         6748
245                        11105                         8596
246                         6914                         6320
247                         6887                         5720
248                         9001                         7796
249                         5449                         4621
250                         7622                         6649
251                        11992                        11220
252                        11691                         9421
253                        11570                        11244
254                         7359                         6435
255                         8088                         6752
256                        12637                        12287
257                        14066                        13051
258                         8127                         7622
259                        11516                         9772
260                        11446                        10792
261                         8125                         7021
262                         7557                         6173
263                         8941                         5006
264                        10280                         2023
265                         5491                         1187
266                         6597                         1978
267                         6093                         3703
268                         8398                         2034
269                        10782                          788
270                        11715                         2472
271                         6129                          910
272                        12647                          916
273                         8434                         1212
274                        31683                        31680
275                        28645                        28640
276                        26221                        26218
277                        32463                        32437
278                        29392                        29383
279                        23896                        23890
280                        20852                        20844
281                        25568                        25558
282                        26618                        26614
283                        26947                        26934
284                        36345                        36344
285                        46729                        46729
286                        57497                        57494
287                        40209                        40203
288                        53452                        53452
289                        49340                        49340
290                        52160                        52160
291                        45723                        45723
292                        28685                        28685
293                        29821                        29817
294                        32535                        32535
295                        29434                        29420
296                        32243                        32243
297                        40595                        40588
298                        32132                        32132
299                         9689                         9685
300                         9867                         9864
301                        10468                        10461
302                         9961                         9958
303                        10531                        10531
304                        11178                        11175
305                        10509                        10504
306                        10985                        10985
307                        11179                        11171
308                        10584                        10562
309                        12112                        12104
310                        11665                        11662
311                        10954                        10926
312                         7615                         7605
313                         9779                         9769
314                         9434                         9418
315                         9962                         9944
316                         9020                         8998
317                         8568                         8562
318                         7906                         7898
319                         9159                         9075
320                         9809                         9707
321                         9788                         9782
322                         8095                         8091
323                         8860                         8827
324                        10659                        10651
325                         8540                         8534
326                         5857                         5857
327                        49973                        49958
328                        37166                        37157
329                        39187                        39177
330                        34475                        34475
331                        37832                        37822
332                        36957                        36928
333                        35770                        35770
334                        32920                        32905
335                        33869                        33860
336                        27320                        27315
337                        54753                        54747
338                        70870                        70864
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                           2367                              0.00 conventional
2                           2486                              0.00 conventional
3                           1896                              0.00 conventional
4                           1552                              0.00 conventional
5                           1852                              0.00 conventional
6                           2663                              0.00 conventional
7                           4463                              0.00 conventional
8                           6063                              0.00 conventional
9                           5209                              0.00 conventional
10                          6141                              0.00 conventional
11                          5505                              0.00 conventional
12                          4685                              0.00 conventional
13                          4739                              0.00 conventional
14                          5100                              0.00 conventional
15                          5140                              0.00 conventional
16                          5814                              0.00 conventional
17                          3269                              5.54 conventional
18                          3159                            176.55 conventional
19                          3060                            269.18 conventional
20                          2797                             21.90 conventional
21                          3298                              0.00 conventional
22                          3061                              0.00 conventional
23                          3880                              5.41 conventional
24                          3862                             13.47 conventional
25                          4406                            244.80 conventional
26                          5891                            120.33 conventional
27                          4023                            164.03 conventional
28                          3488                            230.01 conventional
29                          3668                            546.62 conventional
30                          3626                            260.58 conventional
31                          5730                            268.04 conventional
32                          5549                            111.28 conventional
33                          5152                             15.88 conventional
34                          8947                              0.00 conventional
35                          7767                             44.44 conventional
36                          6184                            102.78 conventional
37                          5741                              0.00 conventional
38                          5316                              0.00 conventional
39                          6357                            873.61 conventional
40                          4805                              0.00 conventional
41                          4686                              0.00 conventional
42                          4734                              0.00 conventional
43                          4148                              0.00 conventional
44                          3737                              0.00 conventional
45                          3786                              0.00 conventional
46                          5125                              0.00 conventional
47                          5162                              0.00 conventional
48                          4672                              0.00 conventional
49                          7589                              0.00 conventional
50                          4468                              0.00 conventional
51                          4076                              0.00 conventional
52                          3991                              0.00 conventional
53                          2630                           1312.32 conventional
54                          2846                            682.12 conventional
55                         11029                              0.00 conventional
56                          1738                            236.11 conventional
57                          1716                            709.72 conventional
58                          1883                            901.39 conventional
59                          1348                            436.11 conventional
60                          1049                              0.00 conventional
61                           566                            365.28 conventional
62                           383                            487.50 conventional
63                          1238                              0.00 conventional
64                          1332                            361.11 conventional
65                          1423                            641.67 conventional
66                          1252                              0.00 conventional
67                          3747                              0.00 conventional
68                          4043                           1335.28 conventional
69                          2898                            515.74 conventional
70                          3979                           2370.89 conventional
71                         15197                           4278.33 conventional
72                          6984                           1390.00 conventional
73                          2286                           1275.00 conventional
74                           707                           3355.56 conventional
75                          1006                           7346.67 conventional
76                          2258                          11012.27 conventional
77                          2448                          12632.65 conventional
78                          2969                          11381.14 conventional
79                          3059                           3748.07 conventional
80                          3085                           5022.92 conventional
81                          3452                           2935.00 conventional
82                          8329                           3056.11 conventional
83                          3716                           2741.11 conventional
84                          2951                           2145.00 conventional
85                          6195                            594.44 conventional
86                          2691                            515.28 conventional
87                          3244                            602.78 conventional
88                          3132                            491.67 conventional
89                          3034                           1155.56 conventional
90                          2537                              0.00 conventional
91                          2812                              0.00 conventional
92                          3141                              0.00 conventional
93                          2689                              0.00 conventional
94                          2913                              0.00 conventional
95                          2743                              0.00 conventional
96                          2622                              0.00 conventional
97                          6367                              0.00 conventional
98                          6791                              0.00 conventional
99                          4934                              0.00 conventional
100                         3591                              0.00 conventional
101                         5825                              0.00 conventional
102                         2592                              0.00 conventional
103                         2398                              0.00 conventional
104                         2295                              0.00 conventional
105                        12812                              0.00 conventional
106                         7086                              0.00 conventional
107                        10883                              0.00 conventional
108                        22783                              0.00 conventional
109                         4666                              0.00 conventional
110                        31556                              0.00 conventional
111                        43483                              0.00 conventional
112                        10350                              0.00 conventional
113                         6867                              0.00 conventional
114                         1510                              3.33 conventional
115                         4545                             44.44 conventional
116                        12272                              3.33 conventional
117                         7733                              0.00 conventional
118                        13332                              0.00 conventional
119                         3261                              0.00 conventional
120                         1466                             73.33 conventional
121                         3198                           4783.33 conventional
122                          548                           2370.00 conventional
123                          800                            713.33 conventional
124                         1722                           9815.56 conventional
125                         8885                           4168.89 conventional
126                         1831                           3933.34 conventional
127                         1284                           3714.44 conventional
128                         1047                           3872.22 conventional
129                          886                           7102.22 conventional
130                         3725                           8778.06 conventional
131                        14660                          13745.00 conventional
132                         7352                           8481.11 conventional
133                         2475                           9595.00 conventional
134                         4299                           7420.83 conventional
135                         2167                           2288.33 conventional
136                         2459                           4373.61 conventional
137                         2203                            263.05 conventional
138                         2476                           1345.83 conventional
139                         6801                            611.11 conventional
140                         4607                            358.48 conventional
141                        16073                            645.83 conventional
142                        20215                            318.06 conventional
143                         2511                            668.06 conventional
144                         1724                           1553.33 conventional
145                         1950                            550.00 conventional
146                        18502                            655.56 conventional
147                         2051                            379.72 conventional
148                         1458                              0.00 conventional
149                         4350                            469.44 conventional
150                        10734                            598.61 conventional
151                        19425                           2127.39 conventional
152                         6286                           2654.19 conventional
153                         2724                           3167.74 conventional
154                         5694                            473.57 conventional
155                         2152                              7.78 conventional
156                         2282                            525.55 conventional
157                         2542                              3.12 conventional
158                         2777                           1363.33 conventional
159                         2919                           1886.67 conventional
160                         2349                             70.00 conventional
161                         4225                             66.67 conventional
162                         3931                            236.66 conventional
163                         4031                            926.67 conventional
164                         4288                            173.33 conventional
165                         2512                             86.66 conventional
166                         2019                              6.67 conventional
167                         5088                              0.00 conventional
168                         4783                              3.33 conventional
169                        21356                              0.00 conventional
170                         6009                              0.00      organic
171                         2246                              0.00      organic
172                         4085                              0.00      organic
173                         3760                              0.00      organic
174                         3745                              0.00      organic
175                         1590                              0.00      organic
176                           39                              0.00      organic
177                           70                              0.00      organic
178                          369                              0.00      organic
179                         1779                              0.00      organic
180                         1831                              0.00      organic
181                         1722                              0.00      organic
182                            0                              0.00      organic
183                           11                              0.00      organic
184                            3                              0.00      organic
185                            3                              0.00      organic
186                            8                              0.00      organic
187                            3                              0.00      organic
188                            3                              0.00      organic
189                           16                              0.00      organic
190                           14                              0.00      organic
191                           11                              0.00      organic
192                            3                              0.00      organic
193                            0                              0.00      organic
194                            0                              0.00      organic
195                            0                              0.00      organic
196                            0                              0.00      organic
197                            5                              0.00      organic
198                            5                              0.00      organic
199                           13                              0.00      organic
200                            3                              0.00      organic
201                            0                              0.00      organic
202                            0                              0.00      organic
203                            8                              0.00      organic
204                            3                              0.00      organic
205                            3                              0.00      organic
206                            0                              0.00      organic
207                            8                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                           31                              0.00      organic
214                            0                              0.00      organic
215                            0                              0.00      organic
216                            3                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                           62                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                            3                              0.00      organic
223                           42                              0.00      organic
224                            6                              0.00      organic
225                            0                              0.00      organic
226                            9                              0.00      organic
227                           25                              0.00      organic
228                            6                              0.00      organic
229                           16                              0.00      organic
230                           11                              0.00      organic
231                           15                              0.00      organic
232                           17                              0.00      organic
233                           34                              0.00      organic
234                           27                              0.00      organic
235                            7                              0.00      organic
236                           18                              0.00      organic
237                            0                              0.00      organic
238                            3                              0.00      organic
239                           17                              0.00      organic
240                            3                              0.00      organic
241                           17                              0.00      organic
242                           14                              0.00      organic
243                            0                              0.00      organic
244                          229                              0.00      organic
245                         2509                              0.00      organic
246                          594                              0.00      organic
247                         1166                              0.00      organic
248                         1205                              0.00      organic
249                          828                              0.00      organic
250                          973                              0.00      organic
251                          772                              0.00      organic
252                         2270                              0.00      organic
253                          326                              0.00      organic
254                          924                              0.00      organic
255                         1336                              0.00      organic
256                          350                              0.00      organic
257                         1015                              0.00      organic
258                          504                              0.00      organic
259                         1744                              0.00      organic
260                          654                              0.00      organic
261                         1104                              0.00      organic
262                         1385                              0.00      organic
263                         3936                              0.00      organic
264                         8256                              0.00      organic
265                         4303                              0.00      organic
266                         4619                              0.00      organic
267                         2390                              0.00      organic
268                         6364                              0.00      organic
269                         9994                              0.00      organic
270                         9243                              0.00      organic
271                         5219                              0.00      organic
272                        11732                              0.00      organic
273                         7221                              0.00      organic
274                            3                              0.00      organic
275                            6                              0.00      organic
276                            3                              0.00      organic
277                           26                              0.00      organic
278                           10                              0.00      organic
279                            6                              0.00      organic
280                            8                              0.00      organic
281                           10                              0.00      organic
282                            3                              0.00      organic
283                           13                              0.00      organic
284                            1                              0.00      organic
285                            0                              0.00      organic
286                            3                              0.00      organic
287                            6                              0.00      organic
288                            0                              0.00      organic
289                            0                              0.00      organic
290                            0                              0.00      organic
291                            0                              0.00      organic
292                            0                              0.00      organic
293                            4                              0.00      organic
294                            0                              0.00      organic
295                           13                              0.00      organic
296                            0                              0.00      organic
297                            7                              0.00      organic
298                            0                              0.00      organic
299                            4                              0.00      organic
300                            3                              0.00      organic
301                            7                              0.00      organic
302                            3                              0.00      organic
303                            0                              0.00      organic
304                            3                              0.00      organic
305                            6                              0.00      organic
306                            0                              0.00      organic
307                            8                              0.00      organic
308                           22                              0.00      organic
309                            8                              0.00      organic
310                            3                              0.00      organic
311                           28                              0.00      organic
312                           11                              0.00      organic
313                           11                              0.00      organic
314                           16                              0.00      organic
315                           18                              0.00      organic
316                           22                              0.00      organic
317                            6                              0.00      organic
318                            8                              0.00      organic
319                           84                              0.00      organic
320                          102                              0.00      organic
321                            6                              0.00      organic
322                            5                              0.00      organic
323                           34                              0.00      organic
324                            8                              0.00      organic
325                            6                              0.00      organic
326                            0                              0.00      organic
327                           16                              0.00      organic
328                            8                              0.00      organic
329                           10                              0.00      organic
330                            0                              0.00      organic
331                           10                              0.00      organic
332                           29                              0.00      organic
333                            0                              0.00      organic
334                           16                              0.00      organic
335                            9                              0.00      organic
336                            4                              0.00      organic
337                            7                              0.00      organic
338                            7                              0.00      organic
    year (AÑO)     region (REGION)
1         2015 BaltimoreWashington
2         2015 BaltimoreWashington
3         2015 BaltimoreWashington
4         2015 BaltimoreWashington
5         2015 BaltimoreWashington
6         2015 BaltimoreWashington
7         2015 BaltimoreWashington
8         2015 BaltimoreWashington
9         2015 BaltimoreWashington
10        2015 BaltimoreWashington
11        2015 BaltimoreWashington
12        2015 BaltimoreWashington
13        2015 BaltimoreWashington
14        2015 BaltimoreWashington
15        2015 BaltimoreWashington
16        2015 BaltimoreWashington
17        2015 BaltimoreWashington
18        2015 BaltimoreWashington
19        2015 BaltimoreWashington
20        2015 BaltimoreWashington
21        2015 BaltimoreWashington
22        2015 BaltimoreWashington
23        2015 BaltimoreWashington
24        2015 BaltimoreWashington
25        2015 BaltimoreWashington
26        2015 BaltimoreWashington
27        2015 BaltimoreWashington
28        2015 BaltimoreWashington
29        2015 BaltimoreWashington
30        2015 BaltimoreWashington
31        2015 BaltimoreWashington
32        2015 BaltimoreWashington
33        2015 BaltimoreWashington
34        2015 BaltimoreWashington
35        2015 BaltimoreWashington
36        2015 BaltimoreWashington
37        2015 BaltimoreWashington
38        2015 BaltimoreWashington
39        2015 BaltimoreWashington
40        2015 BaltimoreWashington
41        2015 BaltimoreWashington
42        2015 BaltimoreWashington
43        2015 BaltimoreWashington
44        2015 BaltimoreWashington
45        2015 BaltimoreWashington
46        2015 BaltimoreWashington
47        2015 BaltimoreWashington
48        2015 BaltimoreWashington
49        2015 BaltimoreWashington
50        2015 BaltimoreWashington
51        2015 BaltimoreWashington
52        2015 BaltimoreWashington
53        2016 BaltimoreWashington
54        2016 BaltimoreWashington
55        2016 BaltimoreWashington
56        2016 BaltimoreWashington
57        2016 BaltimoreWashington
58        2016 BaltimoreWashington
59        2016 BaltimoreWashington
60        2016 BaltimoreWashington
61        2016 BaltimoreWashington
62        2016 BaltimoreWashington
63        2016 BaltimoreWashington
64        2016 BaltimoreWashington
65        2016 BaltimoreWashington
66        2016 BaltimoreWashington
67        2016 BaltimoreWashington
68        2016 BaltimoreWashington
69        2016 BaltimoreWashington
70        2016 BaltimoreWashington
71        2016 BaltimoreWashington
72        2016 BaltimoreWashington
73        2016 BaltimoreWashington
74        2016 BaltimoreWashington
75        2016 BaltimoreWashington
76        2016 BaltimoreWashington
77        2016 BaltimoreWashington
78        2016 BaltimoreWashington
79        2016 BaltimoreWashington
80        2016 BaltimoreWashington
81        2016 BaltimoreWashington
82        2016 BaltimoreWashington
83        2016 BaltimoreWashington
84        2016 BaltimoreWashington
85        2016 BaltimoreWashington
86        2016 BaltimoreWashington
87        2016 BaltimoreWashington
88        2016 BaltimoreWashington
89        2016 BaltimoreWashington
90        2016 BaltimoreWashington
91        2016 BaltimoreWashington
92        2016 BaltimoreWashington
93        2016 BaltimoreWashington
94        2016 BaltimoreWashington
95        2016 BaltimoreWashington
96        2016 BaltimoreWashington
97        2016 BaltimoreWashington
98        2016 BaltimoreWashington
99        2016 BaltimoreWashington
100       2016 BaltimoreWashington
101       2016 BaltimoreWashington
102       2016 BaltimoreWashington
103       2016 BaltimoreWashington
104       2016 BaltimoreWashington
105       2017 BaltimoreWashington
106       2017 BaltimoreWashington
107       2017 BaltimoreWashington
108       2017 BaltimoreWashington
109       2017 BaltimoreWashington
110       2017 BaltimoreWashington
111       2017 BaltimoreWashington
112       2017 BaltimoreWashington
113       2017 BaltimoreWashington
114       2017 BaltimoreWashington
115       2017 BaltimoreWashington
116       2017 BaltimoreWashington
117       2017 BaltimoreWashington
118       2017 BaltimoreWashington
119       2017 BaltimoreWashington
120       2017 BaltimoreWashington
121       2017 BaltimoreWashington
122       2017 BaltimoreWashington
123       2017 BaltimoreWashington
124       2017 BaltimoreWashington
125       2017 BaltimoreWashington
126       2017 BaltimoreWashington
127       2017 BaltimoreWashington
128       2017 BaltimoreWashington
129       2017 BaltimoreWashington
130       2017 BaltimoreWashington
131       2017 BaltimoreWashington
132       2017 BaltimoreWashington
133       2017 BaltimoreWashington
134       2017 BaltimoreWashington
135       2017 BaltimoreWashington
136       2017 BaltimoreWashington
137       2017 BaltimoreWashington
138       2017 BaltimoreWashington
139       2017 BaltimoreWashington
140       2017 BaltimoreWashington
141       2017 BaltimoreWashington
142       2017 BaltimoreWashington
143       2017 BaltimoreWashington
144       2017 BaltimoreWashington
145       2017 BaltimoreWashington
146       2017 BaltimoreWashington
147       2017 BaltimoreWashington
148       2017 BaltimoreWashington
149       2017 BaltimoreWashington
150       2017 BaltimoreWashington
151       2017 BaltimoreWashington
152       2017 BaltimoreWashington
153       2017 BaltimoreWashington
154       2017 BaltimoreWashington
155       2017 BaltimoreWashington
156       2017 BaltimoreWashington
157       2017 BaltimoreWashington
158       2018 BaltimoreWashington
159       2018 BaltimoreWashington
160       2018 BaltimoreWashington
161       2018 BaltimoreWashington
162       2018 BaltimoreWashington
163       2018 BaltimoreWashington
164       2018 BaltimoreWashington
165       2018 BaltimoreWashington
166       2018 BaltimoreWashington
167       2018 BaltimoreWashington
168       2018 BaltimoreWashington
169       2018 BaltimoreWashington
170       2015 BaltimoreWashington
171       2015 BaltimoreWashington
172       2015 BaltimoreWashington
173       2015 BaltimoreWashington
174       2015 BaltimoreWashington
175       2015 BaltimoreWashington
176       2015 BaltimoreWashington
177       2015 BaltimoreWashington
178       2015 BaltimoreWashington
179       2015 BaltimoreWashington
180       2015 BaltimoreWashington
181       2015 BaltimoreWashington
182       2015 BaltimoreWashington
183       2015 BaltimoreWashington
184       2015 BaltimoreWashington
185       2015 BaltimoreWashington
186       2015 BaltimoreWashington
187       2015 BaltimoreWashington
188       2015 BaltimoreWashington
189       2015 BaltimoreWashington
190       2015 BaltimoreWashington
191       2015 BaltimoreWashington
192       2015 BaltimoreWashington
193       2015 BaltimoreWashington
194       2015 BaltimoreWashington
195       2015 BaltimoreWashington
196       2015 BaltimoreWashington
197       2015 BaltimoreWashington
198       2015 BaltimoreWashington
199       2015 BaltimoreWashington
200       2015 BaltimoreWashington
201       2015 BaltimoreWashington
202       2015 BaltimoreWashington
203       2015 BaltimoreWashington
204       2015 BaltimoreWashington
205       2015 BaltimoreWashington
206       2015 BaltimoreWashington
207       2015 BaltimoreWashington
208       2015 BaltimoreWashington
209       2015 BaltimoreWashington
210       2015 BaltimoreWashington
211       2015 BaltimoreWashington
212       2015 BaltimoreWashington
213       2015 BaltimoreWashington
214       2015 BaltimoreWashington
215       2015 BaltimoreWashington
216       2015 BaltimoreWashington
217       2015 BaltimoreWashington
218       2015 BaltimoreWashington
219       2015 BaltimoreWashington
220       2015 BaltimoreWashington
221       2015 BaltimoreWashington
222       2016 BaltimoreWashington
223       2016 BaltimoreWashington
224       2016 BaltimoreWashington
225       2016 BaltimoreWashington
226       2016 BaltimoreWashington
227       2016 BaltimoreWashington
228       2016 BaltimoreWashington
229       2016 BaltimoreWashington
230       2016 BaltimoreWashington
231       2016 BaltimoreWashington
232       2016 BaltimoreWashington
233       2016 BaltimoreWashington
234       2016 BaltimoreWashington
235       2016 BaltimoreWashington
236       2016 BaltimoreWashington
237       2016 BaltimoreWashington
238       2016 BaltimoreWashington
239       2016 BaltimoreWashington
240       2016 BaltimoreWashington
241       2016 BaltimoreWashington
242       2016 BaltimoreWashington
243       2016 BaltimoreWashington
244       2016 BaltimoreWashington
245       2016 BaltimoreWashington
246       2016 BaltimoreWashington
247       2016 BaltimoreWashington
248       2016 BaltimoreWashington
249       2016 BaltimoreWashington
250       2016 BaltimoreWashington
251       2016 BaltimoreWashington
252       2016 BaltimoreWashington
253       2016 BaltimoreWashington
254       2016 BaltimoreWashington
255       2016 BaltimoreWashington
256       2016 BaltimoreWashington
257       2016 BaltimoreWashington
258       2016 BaltimoreWashington
259       2016 BaltimoreWashington
260       2016 BaltimoreWashington
261       2016 BaltimoreWashington
262       2016 BaltimoreWashington
263       2016 BaltimoreWashington
264       2016 BaltimoreWashington
265       2016 BaltimoreWashington
266       2016 BaltimoreWashington
267       2016 BaltimoreWashington
268       2016 BaltimoreWashington
269       2016 BaltimoreWashington
270       2016 BaltimoreWashington
271       2016 BaltimoreWashington
272       2016 BaltimoreWashington
273       2016 BaltimoreWashington
274       2017 BaltimoreWashington
275       2017 BaltimoreWashington
276       2017 BaltimoreWashington
277       2017 BaltimoreWashington
278       2017 BaltimoreWashington
279       2017 BaltimoreWashington
280       2017 BaltimoreWashington
281       2017 BaltimoreWashington
282       2017 BaltimoreWashington
283       2017 BaltimoreWashington
284       2017 BaltimoreWashington
285       2017 BaltimoreWashington
286       2017 BaltimoreWashington
287       2017 BaltimoreWashington
288       2017 BaltimoreWashington
289       2017 BaltimoreWashington
290       2017 BaltimoreWashington
291       2017 BaltimoreWashington
292       2017 BaltimoreWashington
293       2017 BaltimoreWashington
294       2017 BaltimoreWashington
295       2017 BaltimoreWashington
296       2017 BaltimoreWashington
297       2017 BaltimoreWashington
298       2017 BaltimoreWashington
299       2017 BaltimoreWashington
300       2017 BaltimoreWashington
301       2017 BaltimoreWashington
302       2017 BaltimoreWashington
303       2017 BaltimoreWashington
304       2017 BaltimoreWashington
305       2017 BaltimoreWashington
306       2017 BaltimoreWashington
307       2017 BaltimoreWashington
308       2017 BaltimoreWashington
309       2017 BaltimoreWashington
310       2017 BaltimoreWashington
311       2017 BaltimoreWashington
312       2017 BaltimoreWashington
313       2017 BaltimoreWashington
314       2017 BaltimoreWashington
315       2017 BaltimoreWashington
316       2017 BaltimoreWashington
317       2017 BaltimoreWashington
318       2017 BaltimoreWashington
319       2017 BaltimoreWashington
320       2017 BaltimoreWashington
321       2017 BaltimoreWashington
322       2017 BaltimoreWashington
323       2017 BaltimoreWashington
324       2017 BaltimoreWashington
325       2017 BaltimoreWashington
326       2017 BaltimoreWashington
327       2018 BaltimoreWashington
328       2018 BaltimoreWashington
329       2018 BaltimoreWashington
330       2018 BaltimoreWashington
331       2018 BaltimoreWashington
332       2018 BaltimoreWashington
333       2018 BaltimoreWashington
334       2018 BaltimoreWashington
335       2018 BaltimoreWashington
336       2018 BaltimoreWashington
337       2018 BaltimoreWashington
338       2018 BaltimoreWashington

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

BOISE

   FRAME_Boise <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Boise",] )
   FRAME_Boise
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.97
2                                   1.03
3                                   0.99
4                                   0.71
5                                   1.06
6                                   1.09
7                                   1.01
8                                   1.11
9                                   1.14
10                                  1.11
11                                  1.16
12                                  0.94
13                                  1.12
14                                  0.99
15                                  1.03
16                                  1.08
17                                  1.16
18                                  1.19
19                                  1.05
20                                  1.12
21                                  1.10
22                                  1.07
23                                  1.07
24                                  1.09
25                                  1.05
26                                  1.15
27                                  1.04
28                                  1.06
29                                  0.99
30                                  1.12
31                                  0.97
32                                  1.03
33                                  0.96
34                                  1.06
35                                  1.00
36                                  0.96
37                                  0.99
38                                  1.19
39                                  1.09
40                                  0.98
41                                  1.17
42                                  1.00
43                                  1.14
44                                  1.06
45                                  0.99
46                                  1.14
47                                  1.07
48                                  0.91
49                                  1.03
50                                  1.08
51                                  1.18
52                                  1.01
53                                  1.03
54                                  1.02
55                                  0.80
56                                  1.01
57                                  1.22
58                                  1.27
59                                  1.28
60                                  1.37
61                                  1.34
62                                  1.17
63                                  1.09
64                                  1.03
65                                  0.90
66                                  0.91
67                                  0.97
68                                  0.89
69                                  1.01
70                                  0.99
71                                  0.90
72                                  0.93
73                                  0.76
74                                  0.78
75                                  0.74
76                                  0.70
77                                  0.75
78                                  0.77
79                                  0.69
80                                  0.70
81                                  0.67
82                                  0.63
83                                  0.63
84                                  0.65
85                                  0.58
86                                  0.61
87                                  0.63
88                                  0.65
89                                  0.67
90                                  0.82
91                                  0.82
92                                  0.81
93                                  0.94
94                                  0.83
95                                  0.86
96                                  0.89
97                                  0.74
98                                  0.94
99                                  0.82
100                                 0.94
101                                 0.90
102                                 0.92
103                                 0.93
104                                 0.77
105                                 1.13
106                                 1.18
107                                 1.29
108                                 1.08
109                                 1.14
110                                 1.44
111                                 1.42
112                                 1.23
113                                 1.21
114                                 1.44
115                                 1.43
116                                 1.83
117                                 1.89
118                                 1.80
119                                 1.78
120                                 1.73
121                                 1.76
122                                 1.68
123                                 1.30
124                                 1.37
125                                 1.51
126                                 1.54
127                                 1.54
128                                 1.51
129                                 1.49
130                                 0.98
131                                 1.17
132                                 1.20
133                                 1.21
134                                 1.21
135                                 1.19
136                                 1.21
137                                 1.29
138                                 1.20
139                                 1.09
140                                 1.03
141                                 1.14
142                                 1.15
143                                 1.21
144                                 1.20
145                                 1.16
146                                 1.15
147                                 0.98
148                                 1.11
149                                 0.91
150                                 0.94
151                                 0.98
152                                 0.90
153                                 0.93
154                                 1.01
155                                 1.00
156                                 1.02
157                                 0.92
158                                 1.28
159                                 1.03
160                                 1.26
161                                 1.22
162                                 1.09
163                                 1.25
164                                 1.14
165                                 1.07
166                                 1.12
167                                 1.25
168                                 1.15
169                                 1.30
170                                 0.91
171                                 1.17
172                                 0.87
173                                 1.36
174                                 1.34
175                                 1.54
176                                 1.78
177                                 1.50
178                                 1.16
179                                 1.95
180                                 2.05
181                                 1.95
182                                 1.83
183                                 2.02
184                                 1.93
185                                 2.28
186                                 2.35
187                                 1.47
188                                 2.29
189                                 1.69
190                                 1.91
191                                 2.15
192                                 2.08
193                                 1.45
194                                 2.05
195                                 2.18
196                                 1.58
197                                 1.49
198                                 2.18
199                                 2.24
200                                 1.54
201                                 1.97
202                                 1.92
203                                 1.71
204                                 1.55
205                                 1.36
206                                 1.69
207                                 1.41
208                                 1.83
209                                 1.52
210                                 1.51
211                                 1.63
212                                 1.50
213                                 1.68
214                                 1.75
215                                 1.62
216                                 1.35
217                                 1.43
218                                 1.82
219                                 1.44
220                                 1.44
221                                 1.64
222                                 0.77
223                                 1.14
224                                 1.52
225                                 1.48
226                                 1.38
227                                 1.46
228                                 1.92
229                                 2.00
230                                 1.87
231                                 1.76
232                                 1.33
233                                 1.50
234                                 1.33
235                                 1.39
236                                 1.76
237                                 1.29
238                                 1.47
239                                 2.24
240                                 1.64
241                                 1.87
242                                 1.26
243                                 1.42
244                                 1.92
245                                 1.54
246                                 1.34
247                                 1.20
248                                 1.26
249                                 1.05
250                                 1.59
251                                 1.65
252                                 1.38
253                                 1.43
254                                 1.55
255                                 1.11
256                                 0.92
257                                 1.46
258                                 1.56
259                                 1.00
260                                 1.08
261                                 1.41
262                                 0.82
263                                 0.95
264                                 1.15
265                                 1.84
266                                 1.67
267                                 0.87
268                                 0.84
269                                 1.24
270                                 1.77
271                                 1.37
272                                 1.04
273                                 1.28
274                                 1.72
275                                 1.44
276                                 1.79
277                                 1.76
278                                 1.77
279                                 1.47
280                                 1.85
281                                 1.88
282                                 2.33
283                                 2.34
284                                 2.41
285                                 2.62
286                                 2.78
287                                 2.79
288                                 2.64
289                                 2.65
290                                 2.63
291                                 2.71
292                                 2.75
293                                 2.62
294                                 2.32
295                                 2.21
296                                 2.21
297                                 2.23
298                                 2.26
299                                 1.58
300                                 1.92
301                                 2.09
302                                 1.55
303                                 1.27
304                                 1.27
305                                 1.22
306                                 1.27
307                                 1.27
308                                 1.17
309                                 1.22
310                                 1.23
311                                 1.23
312                                 1.18
313                                 0.82
314                                 0.81
315                                 1.25
316                                 1.16
317                                 0.72
318                                 1.15
319                                 1.65
320                                 1.58
321                                 0.95
322                                 1.06
323                                 1.06
324                                 1.06
325                                 1.04
326                                 1.05
327                                 1.81
328                                 1.85
329                                 1.80
330                                 1.79
331                                 1.82
332                                 1.82
333                                 1.80
334                                 1.80
335                                 1.78
336                                 1.81
337                                 1.81
338                                 1.77
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                    62910
2                                                    57504
3                                                    58461
4                                                    95295
5                                                    49069
6                                                    52876
7                                                    68648
8                                                    55848
9                                                    53586
10                                                   59874
11                                                   54191
12                                                   80904
13                                                   59496
14                                                   64188
15                                                   73953
16                                                   64209
17                                                   64465
18                                                   60100
19                                                   70774
20                                                   64002
21                                                   61287
22                                                   67764
23                                                   67826
24                                                   63958
25                                                   74678
26                                                   85044
27                                                   75280
28                                                   81397
29                                                   87608
30                                                   80751
31                                                   76689
32                                                   83210
33                                                   77988
34                                                   95789
35                                                   85467
36                                                   88111
37                                                   89695
38                                                   66246
39                                                   76704
40                                                   74544
41                                                   61419
42                                                   65918
43                                                   65350
44                                                   75046
45                                                   76836
46                                                   61222
47                                                   69971
48                                                  113578
49                                                   66069
50                                                   62870
51                                                   57356
52                                                   80034
53                                                   71169
54                                                   64422
55                                                   98347
56                                                   72472
57                                                   51941
58                                                   62527
59                                                   67212
60                                                   59587
61                                                   59789
62                                                   70652
63                                                   77805
64                                                   84235
65                                                  106260
66                                                   87557
67                                                   82378
68                                                   89823
69                                                   79683
70                                                   78600
71                                                   84013
72                                                   88787
73                                                   70711
74                                                   69620
75                                                   65580
76                                                   69053
77                                                  132511
78                                                  136378
79                                                  127962
80                                                  129020
81                                                   68722
82                                                   95948
83                                                   82549
84                                                   75997
85                                                   95144
86                                                  106410
87                                                   82586
88                                                   79562
89                                                  109590
90                                                   86898
91                                                   97650
92                                                  101268
93                                                   83081
94                                                  100145
95                                                   97421
96                                                   89982
97                                                   93951
98                                                   78070
99                                                  123715
100                                                  83755
101                                                  58434
102                                                  92385
103                                                  89881
104                                                 106107
105                                                  79647
106                                                  71004
107                                                  65090
108                                                  85496
109                                                  86646
110                                                  54681
111                                                  60602
112                                                  81827
113                                                  81105
114                                                  68521
115                                                  83843
116                                                  58062
117                                                  56087
118                                                  58603
119                                                  56672
120                                                  65336
121                                                  66479
122                                                  64355
123                                                  93804
124                                                  88031
125                                                  70717
126                                                  73710
127                                                  72021
128                                                  70784
129                                                  72245
130                                                 125786
131                                                  97408
132                                                  95071
133                                                  92906
134                                                  92547
135                                                  98460
136                                                 100416
137                                                  86533
138                                                  94466
139                                                 121483
140                                                 109119
141                                                  93656
142                                                  99411
143                                                  95508
144                                                  94905
145                                                  95293
146                                                  86727
147                                                 112776
148                                                  93814
149                                                 105024
150                                                 107722
151                                                  97785
152                                                 136091
153                                                 105133
154                                                  88318
155                                                  94156
156                                                 103788
157                                                 104510
158                                                  85840
159                                                 119045
160                                                  80611
161                                                  91071
162                                                 113183
163                                                  80833
164                                                  93106
165                                                 128702
166                                                 105025
167                                                  88728
168                                                 111113
169                                                  85698
170                                                   2272
171                                                   1808
172                                                   4054
173                                                   1287
174                                                   1047
175                                                   1001
176                                                    881
177                                                   1060
178                                                   2768
179                                                   1106
180                                                   1169
181                                                   1397
182                                                   1803
183                                                   1137
184                                                    957
185                                                    997
186                                                    909
187                                                   3104
188                                                    938
189                                                   2650
190                                                   1657
191                                                   1197
192                                                   1556
193                                                   3103
194                                                   1454
195                                                   1594
196                                                   2550
197                                                   1922
198                                                   1402
199                                                   1382
200                                                   2693
201                                                   1275
202                                                   1178
203                                                   1405
204                                                   1404
205                                                   2154
206                                                   1454
207                                                   3807
208                                                   1701
209                                                   3933
210                                                   3571
211                                                   1777
212                                                   4314
213                                                   1396
214                                                   1081
215                                                   1309
216                                                   3871
217                                                   1781
218                                                   1175
219                                                   2974
220                                                   2379
221                                                   1505
222                                                   6099
223                                                   2611
224                                                   1864
225                                                   2053
226                                                   2459
227                                                   2310
228                                                   1822
229                                                   1395
230                                                    872
231                                                   1048
232                                                   2840
233                                                   1458
234                                                   2675
235                                                   2157
236                                                   2138
237                                                   3538
238                                                   3101
239                                                   1836
240                                                   2485
241                                                   2142
242                                                   2650
243                                                   2233
244                                                   1498
245                                                   2947
246                                                   4729
247                                                   7239
248                                                   5744
249                                                   8908
250                                                   1783
251                                                   1830
252                                                   2206
253                                                   2779
254                                                   1755
255                                                   2482
256                                                   2440
257                                                   2907
258                                                   1229
259                                                   3469
260                                                   2910
261                                                   2565
262                                                   6093
263                                                   3340
264                                                   1382
265                                                    567
266                                                    563
267                                                   2863
268                                                   2073
269                                                   1660
270                                                   1117
271                                                   1728
272                                                   2374
273                                                   1200
274                                                   2017
275                                                   3029
276                                                   1797
277                                                   2237
278                                                   1829
279                                                   2741
280                                                   1863
281                                                   1869
282                                                   1886
283                                                   1963
284                                                   1632
285                                                   1563
286                                                   1656
287                                                   1373
288                                                   1412
289                                                   1492
290                                                   1600
291                                                   1855
292                                                   1643
293                                                   1662
294                                                   1817
295                                                   2091
296                                                   2033
297                                                   2198
298                                                   2647
299                                                   3526
300                                                   2765
301                                                   2373
302                                                   3263
303                                                   4376
304                                                   4580
305                                                   4468
306                                                   3897
307                                                   4104
308                                                   4484
309                                                   3943
310                                                   3316
311                                                   3493
312                                                   3515
313                                                   4768
314                                                   4449
315                                                   2665
316                                                   2918
317                                                   4667
318                                                   2949
319                                                   2104
320                                                   2376
321                                                   3144
322                                                   3212
323                                                   3083
324                                                   3072
325                                                   4137
326                                                   2824
327                                                   3119
328                                                   2551
329                                                   3447
330                                                   2981
331                                                   2430
332                                                   2276
333                                                   2855
334                                                   2595
335                                                   2420
336                                                   2446
337                                                   2130
338                                                   2554
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    30482
2                                                    25628
3                                                    27149
4                                                    35591
5                                                    24190
6                                                    25409
7                                                    24425
8                                                    31910
9                                                    30435
10                                                   29522
11                                                   29614
12                                                   26114
13                                                   35154
14                                                   47007
15                                                   34827
16                                                   45739
17                                                   44135
18                                                   40927
19                                                   44059
20                                                   46189
21                                                   44740
22                                                   51151
23                                                   50978
24                                                   45922
25                                                   51829
26                                                   61950
27                                                   59111
28                                                   52790
29                                                   58791
30                                                   61245
31                                                   57374
32                                                   54826
33                                                   61320
34                                                   62505
35                                                   66880
36                                                   69545
37                                                   56844
38                                                   44469
39                                                   57340
40                                                   59533
41                                                   44227
42                                                   51472
43                                                   45880
44                                                   40578
45                                                   50872
46                                                   41548
47                                                   54229
48                                                   67496
49                                                   51922
50                                                   50355
51                                                   38112
52                                                   44562
53                                                   27464
54                                                   28725
55                                                   30311
56                                                   34195
57                                                   23775
58                                                   28834
59                                                   32035
60                                                   24935
61                                                   25833
62                                                   27936
63                                                   35486
64                                                   38087
65                                                   27543
66                                                   39342
67                                                   39719
68                                                   41793
69                                                   37234
70                                                   36838
71                                                   40944
72                                                   43526
73                                                   32775
74                                                   30747
75                                                   26990
76                                                   27671
77                                                   39211
78                                                   36208
79                                                   34024
80                                                   36119
81                                                   34791
82                                                   31280
83                                                   29695
84                                                   32113
85                                                   34103
86                                                   43200
87                                                   32241
88                                                   36438
89                                                   41244
90                                                   44345
91                                                   45953
92                                                   40229
93                                                   41756
94                                                   45571
95                                                   41714
96                                                   38143
97                                                   37808
98                                                   38043
99                                                   42826
100                                                  36196
101                                                  18003
102                                                  34303
103                                                  31802
104                                                  43869
105                                                  38196
106                                                  39117
107                                                  31969
108                                                  53166
109                                                  38662
110                                                  28307
111                                                  31177
112                                                  37876
113                                                  40651
114                                                  33724
115                                                  49926
116                                                  30893
117                                                  28953
118                                                  33499
119                                                  29756
120                                                  35147
121                                                  36441
122                                                  30130
123                                                  45399
124                                                  42285
125                                                  36652
126                                                  37253
127                                                  36727
128                                                  36290
129                                                  35748
130                                                  47772
131                                                  41134
132                                                  41341
133                                                  40472
134                                                  40251
135                                                  42303
136                                                  40637
137                                                  35312
138                                                  38987
139                                                  60550
140                                                  41327
141                                                  41816
142                                                  43003
143                                                  39292
144                                                  41043
145                                                  43566
146                                                  33892
147                                                  33062
148                                                  29234
149                                                  31701
150                                                  33444
151                                                  41601
152                                                  36809
153                                                  35678
154                                                  34251
155                                                  36085
156                                                  35597
157                                                  27845
158                                                  40362
159                                                  49145
160                                                  28399
161                                                  44454
162                                                  42116
163                                                  39773
164                                                  48309
165                                                  39582
166                                                  66654
167                                                  49711
168                                                  49335
169                                                  45937
170                                                     16
171                                                     10
172                                                     26
173                                                     12
174                                                      3
175                                                      8
176                                                     17
177                                                     13
178                                                      3
179                                                     14
180                                                     10
181                                                      9
182                                                     12
183                                                     18
184                                                     19
185                                                     10
186                                                      9
187                                                      9
188                                                      8
189                                                      5
190                                                     22
191                                                     13
192                                                     27
193                                                     37
194                                                      8
195                                                     12
196                                                     16
197                                                      7
198                                                     20
199                                                      3
200                                                     19
201                                                     45
202                                                     23
203                                                     26
204                                                     22
205                                                      9
206                                                      5
207                                                      5
208                                                      6
209                                                      9
210                                                      1
211                                                      0
212                                                     10
213                                                      2
214                                                      1
215                                                     11
216                                                     14
217                                                      0
218                                                      1
219                                                      9
220                                                      0
221                                                      1
222                                                      3
223                                                      6
224                                                      0
225                                                      0
226                                                      0
227                                                      0
228                                                      0
229                                                      0
230                                                      0
231                                                      0
232                                                      0
233                                                      3
234                                                      0
235                                                      3
236                                                      4
237                                                      0
238                                                      0
239                                                      0
240                                                      0
241                                                      3
242                                                      0
243                                                     13
244                                                      0
245                                                      3
246                                                      0
247                                                      0
248                                                      0
249                                                      0
250                                                      0
251                                                      0
252                                                      5
253                                                      0
254                                                      3
255                                                      0
256                                                      0
257                                                      1
258                                                     12
259                                                      3
260                                                     16
261                                                     19
262                                                     14
263                                                     25
264                                                     16
265                                                     45
266                                                     35
267                                                     43
268                                                     15
269                                                     24
270                                                     13
271                                                     16
272                                                     37
273                                                     14
274                                                     78
275                                                     60
276                                                     28
277                                                     53
278                                                     35
279                                                     50
280                                                     56
281                                                     47
282                                                     45
283                                                     52
284                                                     41
285                                                     34
286                                                     63
287                                                     58
288                                                     64
289                                                     67
290                                                     76
291                                                    110
292                                                    111
293                                                    108
294                                                     71
295                                                     81
296                                                     52
297                                                     52
298                                                     74
299                                                     60
300                                                     42
301                                                     53
302                                                     48
303                                                     25
304                                                     72
305                                                     14
306                                                     16
307                                                      8
308                                                     12
309                                                     20
310                                                     12
311                                                     36
312                                                     17
313                                                     17
314                                                      9
315                                                      6
316                                                      8
317                                                     19
318                                                     21
319                                                     11
320                                                     20
321                                                     20
322                                                     15
323                                                      3
324                                                      0
325                                                      3
326                                                      0
327                                                     76
328                                                     89
329                                                     99
330                                                    110
331                                                     70
332                                                     73
333                                                     46
334                                                     77
335                                                     52
336                                                     41
337                                                     52
338                                                     43
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                   2972
2                                                   2546
3                                                   2986
4                                                  12527
5                                                   2790
6                                                   3256
7                                                  12086
8                                                   4652
9                                                   4360
10                                                 10090
11                                                  9069
12                                                 33416
13                                                 10822
14                                                  5754
15                                                 21592
16                                                  4394
17                                                  5402
18                                                  5810
19                                                 14861
20                                                  5258
21                                                  5034
22                                                  5141
23                                                  4856
24                                                  5300
25                                                  5803
26                                                  8022
27                                                  6573
28                                                 15445
29                                                 17880
30                                                  7238
31                                                  7421
32                                                 14839
33                                                  7394
34                                                 15897
35                                                  7942
36                                                  7985
37                                                 21631
38                                                  8506
39                                                  9060
40                                                  7120
41                                                  6590
42                                                  7018
43                                                  7206
44                                                 23739
45                                                 16375
46                                                  7840
47                                                  9647
48                                                 36532
49                                                  7556
50                                                  6342
51                                                 10998
52                                                 24964
53                                                  2893
54                                                  2337
55                                                 10383
56                                                  2996
57                                                  2187
58                                                  2463
59                                                  3042
60                                                  2894
61                                                  3018
62                                                  3769
63                                                  2007
64                                                  2089
65                                                  8194
66                                                  2342
67                                                  2199
68                                                  1784
69                                                  2056
70                                                  1982
71                                                  2078
72                                                  1959
73                                                  2002
74                                                  1921
75                                                  1685
76                                                  1614
77                                                  4977
78                                                  6422
79                                                  5853
80                                                  6692
81                                                  2579
82                                                  5423
83                                                  4570
84                                                  3221
85                                                  6201
86                                                  5397
87                                                  3928
88                                                  2850
89                                                  9076
90                                                  3304
91                                                  5362
92                                                  6891
93                                                  2698
94                                                  4921
95                                                  5373
96                                                  5361
97                                                  9085
98                                                  5303
99                                                 14822
100                                                 4791
101                                                 4208
102                                                 7884
103                                                 8347
104                                                10277
105                                                 1706
106                                                 2348
107                                                 1752
108                                                 1936
109                                                 1518
110                                                 1707
111                                                 2085
112                                                 2047
113                                                 1849
114                                                 2180
115                                                 2948
116                                                 2911
117                                                 2680
118                                                 2015
119                                                 1936
120                                                 2638
121                                                 2817
122                                                 3171
123                                                 2514
124                                                 2840
125                                                 3647
126                                                 3803
127                                                 3473
128                                                 3130
129                                                 3544
130                                                 3135
131                                                 3403
132                                                 3574
133                                                 3263
134                                                 2998
135                                                 3758
136                                                 3548
137                                                 3430
138                                                 2779
139                                                 3285
140                                                 2195
141                                                 2688
142                                                 3555
143                                                 4116
144                                                 3617
145                                                 4141
146                                                 3887
147                                                 9416
148                                                 5257
149                                                 5200
150                                                 7192
151                                                 4101
152                                                11334
153                                                 6533
154                                                 5627
155                                                 4774
156                                                 7163
157                                                 9409
158                                                 2027
159                                                 6655
160                                                 2280
161                                                 1836
162                                                 7519
163                                                 2363
164                                                 2816
165                                                 8511
166                                                 1972
167                                                 2157
168                                                 7415
169                                                 2658
170                                                  508
171                                                  409
172                                                  739
173                                                  534
174                                                  418
175                                                  724
176                                                  538
177                                                  733
178                                                 1412
179                                                  691
180                                                  836
181                                                 1161
182                                                 1456
183                                                  822
184                                                  723
185                                                  857
186                                                  814
187                                                 2789
188                                                  794
189                                                 1895
190                                                 1098
191                                                  972
192                                                 1201
193                                                 2527
194                                                 1091
195                                                 1359
196                                                 2465
197                                                 1658
198                                                 1161
199                                                 1262
200                                                 2374
201                                                 1108
202                                                 1010
203                                                  959
204                                                  738
205                                                 1579
206                                                 1138
207                                                 3290
208                                                 1216
209                                                 3776
210                                                 3429
211                                                 1210
212                                                 3799
213                                                  945
214                                                  813
215                                                  892
216                                                 2832
217                                                  999
218                                                  858
219                                                 2513
220                                                 1923
221                                                 1130
222                                                  611
223                                                  406
224                                                  462
225                                                  443
226                                                  296
227                                                  368
228                                                  654
229                                                  727
230                                                  350
231                                                  396
232                                                  384
233                                                  380
234                                                  409
235                                                  414
236                                                  815
237                                                  620
238                                                 1426
239                                                 1508
240                                                 1043
241                                                 1243
242                                                  548
243                                                  718
244                                                  992
245                                                 1238
246                                                 1495
247                                                 1730
248                                                 2174
249                                                 4080
250                                                 1093
251                                                 1432
252                                                 1132
253                                                 2320
254                                                 1152
255                                                  835
256                                                  496
257                                                 2511
258                                                  670
259                                                 1463
260                                                  773
261                                                 1334
262                                                 1604
263                                                  586
264                                                  491
265                                                  514
266                                                  426
267                                                  840
268                                                  461
269                                                  425
270                                                  498
271                                                  603
272                                                  685
273                                                  394
274                                                  646
275                                                  650
276                                                  552
277                                                  566
278                                                  387
279                                                  620
280                                                  539
281                                                  484
282                                                  505
283                                                  511
284                                                  543
285                                                  523
286                                                  574
287                                                  474
288                                                  535
289                                                  564
290                                                  540
291                                                  618
292                                                  504
293                                                  623
294                                                  603
295                                                  597
296                                                  722
297                                                  546
298                                                  680
299                                                  767
300                                                 1111
301                                                  935
302                                                  745
303                                                  637
304                                                  652
305                                                  684
306                                                  660
307                                                  681
308                                                  634
309                                                  603
310                                                  570
311                                                  568
312                                                  526
313                                                  677
314                                                  541
315                                                  539
316                                                  483
317                                                  604
318                                                  393
319                                                  404
320                                                  427
321                                                  322
322                                                  452
323                                                  451
324                                                  457
325                                                  585
326                                                  369
327                                                 1006
328                                                  898
329                                                  926
330                                                  904
331                                                  746
332                                                  810
333                                                  792
334                                                  590
335                                                  581
336                                                  577
337                                                  803
338                                                  949
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                    5894
2                                                    7394
3                                                    6458
4                                                    4086
5                                                    6031
6                                                    6663
7                                                    6502
8                                                    6286
9                                                    6428
10                                                   6552
11                                                   6586
12                                                   7604
13                                                   7552
14                                                   3663
15                                                   6640
16                                                   6593
17                                                   7992
18                                                   7923
19                                                   4433
20                                                   6457
21                                                   3931
22                                                   5435
23                                                   5480
24                                                   5565
25                                                   7474
26                                                   8435
27                                                   3975
28                                                   5876
29                                                   3136
30                                                   6656
31                                                   4028
32                                                   6037
33                                                   2920
34                                                   7891
35                                                   4290
36                                                   3402
37                                                   3260
38                                                   7523
39                                                   3790
40                                                   3102
41                                                   7290
42                                                   2982
43                                                   7404
44                                                   3492
45                                                   2122
46                                                   6493
47                                                   3047
48                                                   2905
49                                                   2061
50                                                   2257
51                                                   3322
52                                                   2752
53                                                   6681
54                                                   5563
55                                                   4088
56                                                   3772
57                                                   5526
58                                                   7123
59                                                   6079
60                                                   7688
61                                                   7312
62                                                   6919
63                                                   6689
64                                                   6562
65                                                   7083
66                                                   5737
67                                                   6951
68                                                   6412
69                                                   7067
70                                                   5919
71                                                   4695
72                                                   6569
73                                                      3
74                                                      3
75                                                      3
76                                                      6
77                                                      3
78                                                     12
79                                                      9
80                                                      2
81                                                      3
82                                                     12
83                                                      7
84                                                      3
85                                                     16
86                                                      7
87                                                      0
88                                                    591
89                                                   4730
90                                                   5341
91                                                   6316
92                                                   9114
93                                                   9201
94                                                   6448
95                                                   7307
96                                                   8767
97                                                   4891
98                                                   6617
99                                                  17989
100                                                  8441
101                                                  4714
102                                                  8901
103                                                  9065
104                                                  5432
105                                                  6263
106                                                  4751
107                                                  6656
108                                                  4746
109                                                  7094
110                                                  5116
111                                                  5660
112                                                  4630
113                                                  4629
114                                                  4757
115                                                  4056
116                                                  5020
117                                                  6108
118                                                  5128
119                                                  5659
120                                                  5499
121                                                  6160
122                                                  6523
123                                                  6034
124                                                  7323
125                                                  5544
126                                                  7645
127                                                  7264
128                                                  7062
129                                                  8951
130                                                  7817
131                                                  8607
132                                                  7668
133                                                  8415
134                                                  8103
135                                                  7950
136                                                 10210
137                                                 10331
138                                                  9358
139                                                  9702
140                                                  9317
141                                                  9754
142                                                  9549
143                                                 10281
144                                                  9920
145                                                  8899
146                                                  9034
147                                                  9975
148                                                 12115
149                                                 11563
150                                                  9936
151                                                  9261
152                                                 23346
153                                                  9559
154                                                  8314
155                                                 10057
156                                                 12144
157                                                 11342
158                                                  9200
159                                                  7738
160                                                 12281
161                                                 10102
162                                                 11798
163                                                  8576
164                                                 10559
165                                                 22490
166                                                  6962
167                                                  6343
168                                                  8299
169                                                  7511
170                                                     0
171                                                     0
172                                                     3
173                                                     0
174                                                     0
175                                                     3
176                                                     0
177                                                     0
178                                                     4
179                                                     4
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          23561                        23520
2                          21936                        21900
3                          21868                        21843
4                          43092                        42735
5                          16058                        15861
6                          17548                        17531
7                          25635                        25200
8                          13000                        12778
9                          12363                        12332
10                         13711                        13661
11                          8921                         8918
12                         13770                        13543
13                          5968                         5462
14                          7763                         7597
15                         10894                        10601
16                          7483                         7483
17                          6936                         6934
18                          5441                         5441
19                          7420                         7420
20                          6097                         6091
21                          7582                         7569
22                          6036                         5988
23                          6512                         6358
24                          7171                         6354
25                          9572                         8335
26                          6638                         6557
27                          5621                         5619
28                          7286                         7022
29                          7800                         7800
30                          5613                         5604
31                          7866                         7860
32                          7507                         7470
33                          6354                         6346
34                          9496                         9453
35                          6355                         6350
36                          7179                         7175
37                          7960                         7954
38                          5748                         5748
39                          6514                         6511
40                          4790                         4790
41                          3312                         3312
42                          4446                         4446
43                          4860                         4860
44                          7238                         6479
45                          7467                         7235
46                          5341                         3648
47                          3047                         1373
48                          6645                         4867
49                          4530                         2010
50                          3916                         1119
51                          4924                         3295
52                          7756                         6064
53                         34131                        33449
54                         27796                        27464
55                         53565                        53191
56                         31509                        31278
57                         20453                        20442
58                         24106                        24091
59                         26056                        25875
60                         24070                        23559
61                         23626                        22910
62                         32028                        30915
63                         33623                        32414
64                         37496                        28895
65                         63440                        55975
66                         40136                        34566
67                         33508                        28303
68                         39834                        38899
69                         33326                        31600
70                         33861                        32152
71                         36296                        34718
72                         36733                        36021
73                         35931                        35664
74                         36950                        36950
75                         36902                        36365
76                         39761                        37730
77                         88320                        87358
78                         93735                        93645
79                         88075                        88025
80                         86206                        86108
81                         31349                        31095
82                         59234                        59207
83                         48278                        47343
84                         40660                        40607
85                         54824                        52269
86                         57805                        57440
87                         46417                        46258
88                         39684                        39671
89                         54540                        53940
90                         33908                        33663
91                         40019                        39916
92                         45033                        44764
93                         29426                        29352
94                         43205                        42384
95                         43027                        42482
96                         37710                        37217
97                         42168                        42112
98                         28107                        28013
99                         48078                        47556
100                        34327                        33947
101                        31509                        29875
102                        41297                        40338
103                        40667                        40584
104                        46530                        46476
105                        33481                        28765
106                        24789                        18067
107                        24713                        18837
108                        25648                        19630
109                        39372                        35079
110                        19551                        14540
111                        21681                        14002
112                        37274                        32441
113                        33975                        29561
114                        27859                        22077
115                        26913                        23454
116                        19239                        13508
117                        18346                        13229
118                        17961                        12676
119                        19321                        13554
120                        22053                        15258
121                        21061                        13679
122                        24531                        18158
123                        39856                        35503
124                        35581                        29076
125                        24874                        16648
126                        25010                        16530
127                        24556                        15602
128                        24303                        15904
129                        24002                        15219
130                        67061                        66748
131                        44265                        44185
132                        42489                        42360
133                        40757                        40688
134                        41195                        41168
135                        44450                        44427
136                        46020                        45988
137                        37460                        37443
138                        43342                        41044
139                        47946                        45880
140                        56280                        56264
141                        39398                        39291
142                        43304                        43271
143                        41820                        41795
144                        40326                        40187
145                        38686                        38139
146                        39914                        39041
147                        60323                        58420
148                        47208                        32639
149                        56560                        38257
150                        57149                        45027
151                        42822                        41657
152                        64602                        61439
153                        53363                        36294
154                        40125                        34932
155                        43241                        38975
156                        48885                        40257
157                        55914                        53093
158                        34251                        24809
159                        55507                        20537
160                        37651                        28668
161                        34679                        26585
162                        51750                        17586
163                        30122                        21029
164                        31422                        19863
165                        58118                        17471
166                        29438                        20717
167                        30516                        22463
168                        46064                        19136
169                        29592                        21784
170                         1748                         1008
171                         1388                          689
172                         3287                         1147
173                          742                           73
174                          627                           20
175                          266                           13
176                          325                          140
177                          314                           43
178                         1350                          257
179                          397                          220
180                          323                          117
181                          227                            0
182                          335                            0
183                          297                           17
184                          215                           17
185                          130                          123
186                           86                            3
187                          305                           77
188                          136                           33
189                          750                           87
190                          537                          353
191                          211                          137
192                          328                          203
193                          539                          203
194                          355                          230
195                          223                          203
196                           70                           70
197                          258                          123
198                          221                          207
199                          117                          117
200                          300                          300
201                          121                          100
202                          145                           87
203                          420                          123
204                          644                          210
205                          566                          203
206                          310                          157
207                          512                           43
208                          479                          297
209                          148                          117
210                          140                           50
211                          567                          367
212                          505                          253
213                          449                          393
214                          267                          260
215                          406                          167
216                         1025                          323
217                          781                          283
218                          315                          133
219                          452                          143
220                          455                          170
221                          374                          187
222                         5485                          863
223                         2198                          552
224                         1403                          433
225                         1610                          405
226                         2162                          598
227                         1942                          490
228                         1168                          250
229                          668                           40
230                          522                            0
231                          652                          217
232                         2455                          443
233                         1074                          291
234                         2265                          472
235                         1739                          546
236                         1319                          705
237                         2918                         1239
238                         1675                          419
239                          327                          311
240                         1443                          378
241                          896                          336
242                         2102                         1144
243                         1502                          975
244                          507                          490
245                         1707                          761
246                         3234                          447
247                         5509                          472
248                         3571                          679
249                         4828                         2003
250                          690                          380
251                          398                          373
252                         1068                          473
253                          459                          390
254                          600                          360
255                         1646                          273
256                         1944                          177
257                          395                          337
258                          547                          307
259                         2003                          240
260                         2122                          226
261                         1212                          353
262                         4475                          217
263                         2729                           97
264                          874                            0
265                            7                            0
266                          102                           14
267                         1980                          205
268                         1597                          720
269                         1211                          223
270                          607                          183
271                         1109                          153
272                         1652                          212
273                          792                          250
274                         1293                          213
275                         2319                          389
276                         1217                          264
277                         1618                          463
278                         1407                          352
279                         2072                          402
280                         1268                           46
281                         1338                          356
282                         1337                          383
283                         1399                          382
284                         1047                          127
285                         1006                          120
286                         1019                           97
287                          841                           40
288                          813                           75
289                          861                          152
290                          984                          175
291                         1127                          133
292                         1029                          199
293                          931                           90
294                         1143                          186
295                         1413                          471
296                         1260                          409
297                         1599                          482
298                         1893                          440
299                         2699                          504
300                         1612                          540
301                         1384                          575
302                         2470                          474
303                         3714                          559
304                         3856                          635
305                         3770                          608
306                         3221                          558
307                         3415                          528
308                         3837                          387
309                         3320                          496
310                         2734                          341
311                         2890                          375
312                         2971                          370
313                         4074                          300
314                         3898                          233
315                         2120                          455
316                         2427                          241
317                         4045                          172
318                         2535                          659
319                         1689                         1167
320                         1929                         1245
321                         2802                          680
322                         2745                          624
323                         2630                          639
324                         2615                          508
325                         3549                          632
326                         2455                          578
327                         2037                          619
328                         1563                          288
329                         2422                          664
330                         1967                          527
331                         1615                          473
332                         1393                          725
333                         2017                          666
334                         1928                          493
335                         1787                          295
336                         1828                          284
337                         1275                          350
338                         1562                          552
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                              6                             35.22 conventional
2                             11                             24.12 conventional
3                              4                             20.96 conventional
4                              0                            357.07 conventional
5                              0                            197.36 conventional
6                              4                             12.96 conventional
7                              9                            426.51 conventional
8                            120                            102.29 conventional
9                              0                             30.91 conventional
10                             0                             50.50 conventional
11                             0                              3.26 conventional
12                           185                             40.71 conventional
13                           505                              1.62 conventional
14                           160                              6.47 conventional
15                           273                             19.37 conventional
16                             0                              0.00 conventional
17                             0                              1.61 conventional
18                             0                              0.00 conventional
19                             0                              0.00 conventional
20                             0                              6.40 conventional
21                            13                              0.00 conventional
22                            49                              0.00 conventional
23                           154                              0.00 conventional
24                           817                              0.00 conventional
25                          1237                              0.00 conventional
26                            81                              0.00 conventional
27                             0                              1.63 conventional
28                             0                            264.71 conventional
29                             0                              0.00 conventional
30                             9                              0.00 conventional
31                             6                              0.00 conventional
32                             0                             37.75 conventional
33                             0                              8.19 conventional
34                             0                             42.47 conventional
35                             0                              4.88 conventional
36                             0                              4.85 conventional
37                             0                              6.42 conventional
38                             0                              0.00 conventional
39                             0                              3.17 conventional
40                             0                              0.00 conventional
41                             0                              0.00 conventional
42                             0                              0.00 conventional
43                             0                              0.00 conventional
44                           759                              0.00 conventional
45                           232                              0.00 conventional
46                          1693                              0.00 conventional
47                          1674                              0.00 conventional
48                          1778                              0.00 conventional
49                          2521                              0.00 conventional
50                          2797                              0.00 conventional
51                          1629                              0.00 conventional
52                          1691                              0.00 conventional
53                           662                             19.25 conventional
54                           327                              4.82 conventional
55                           320                             54.68 conventional
56                           218                             12.88 conventional
57                             0                             11.27 conventional
58                             3                             11.27 conventional
59                           140                             40.30 conventional
60                           408                            103.26 conventional
61                           622                             93.61 conventional
62                          1098                             14.52 conventional
63                          1198                             11.29 conventional
64                          8576                             24.17 conventional
65                          7431                             33.80 conventional
66                          5565                              4.81 conventional
67                          5199                              6.39 conventional
68                           927                              7.98 conventional
69                          1719                              7.96 conventional
70                          1694                             15.88 conventional
71                          1578                              0.00 conventional
72                           671                             41.15 conventional
73                           247                             20.55 conventional
74                             0                              0.00 conventional
75                            17                            520.00 conventional
76                           800                           1231.57 conventional
77                            20                            941.47 conventional
78                            21                             69.26 conventional
79                            34                             15.50 conventional
80                            83                             15.57 conventional
81                           246                              8.23 conventional
82                             9                             18.16 conventional
83                           926                              8.27 conventional
84                            35                             18.20 conventional
85                          2490                             64.50 conventional
86                           330                             34.70 conventional
87                           141                             18.15 conventional
88                             6                              6.58 conventional
89                            15                            585.83 conventional
90                           156                             89.43 conventional
91                            95                              8.08 conventional
92                           242                             27.26 conventional
93                            63                             11.15 conventional
94                           784                             36.49 conventional
95                           528                             17.40 conventional
96                           472                             20.53 conventional
97                            50                              6.31 conventional
98                            85                              9.47 conventional
99                           453                             69.46 conventional
100                           47                            332.83 conventional
101                         1615                             18.96 conventional
102                          951                              7.92 conventional
103                           17                             65.13 conventional
104                           17                             36.67 conventional
105                         4677                             39.80 conventional
106                         6639                             83.26 conventional
107                         5849                             26.99 conventional
108                         5945                             72.39 conventional
109                         4261                             32.00 conventional
110                         4914                             96.00 conventional
111                         7421                            258.00 conventional
112                         4811                             21.00 conventional
113                         4360                             54.54 conventional
114                         5729                             53.17 conventional
115                         3437                             21.29 conventional
116                         5695                             34.92 conventional
117                         4987                            129.94 conventional
118                         5243                             42.10 conventional
119                         5756                             10.54 conventional
120                         6771                             23.97 conventional
121                         7242                            139.90 conventional
122                         6319                             53.73 conventional
123                         4336                             17.72 conventional
124                         6495                             10.35 conventional
125                         8222                              2.92 conventional
126                         8381                             98.96 conventional
127                         8947                              7.37 conventional
128                         8360                             39.18 conventional
129                         8708                             75.27 conventional
130                          309                              4.92 conventional
131                           24                             55.56 conventional
132                           52                             76.52 conventional
133                           27                             42.18 conventional
134                           19                              8.07 conventional
135                           11                             11.29 conventional
136                           20                             11.49 conventional
137                            9                              8.25 conventional
138                         2293                              4.96 conventional
139                         2055                              9.97 conventional
140                            3                             13.29 conventional
141                           85                             21.55 conventional
142                           29                              3.30 conventional
143                           16                              9.87 conventional
144                          116                             22.95 conventional
145                          518                             29.21 conventional
146                          834                             38.51 conventional
147                         1777                            126.14 conventional
148                        14551                             18.82 conventional
149                        18258                             44.99 conventional
150                        11989                            133.17 conventional
151                         1142                             23.75 conventional
152                         3116                             46.95 conventional
153                        17043                             25.33 conventional
154                         5155                             38.08 conventional
155                         4040                            225.99 conventional
156                         8607                             20.76 conventional
157                         2794                             27.20 conventional
158                         9434                              7.83 conventional
159                        34627                            343.56 conventional
160                         8932                             51.07 conventional
161                         8061                             32.41 conventional
162                        33807                            357.26 conventional
163                         9033                             59.29 conventional
164                        11540                             19.65 conventional
165                        40492                            155.78 conventional
166                         8682                             38.83 conventional
167                         8027                             26.48 conventional
168                        26830                             97.64 conventional
169                         7753                             54.72 conventional
170                          740                              0.00      organic
171                          699                              0.00      organic
172                         2139                              0.00      organic
173                          668                              0.00      organic
174                          607                              0.00      organic
175                          253                              0.00      organic
176                          185                              0.00      organic
177                          271                              0.00      organic
178                         1092                              0.00      organic
179                          177                              0.00      organic
180                          206                              0.00      organic
181                          227                              0.00      organic
182                          335                              0.00      organic
183                          281                              0.00      organic
184                          198                              0.00      organic
185                            6                              0.00      organic
186                           83                              0.00      organic
187                          229                              0.00      organic
188                          102                              0.00      organic
189                          663                              0.00      organic
190                          183                              0.00      organic
191                           75                              0.00      organic
192                          125                              0.00      organic
193                          335                              0.00      organic
194                          125                              0.00      organic
195                           20                              0.00      organic
196                            0                              0.00      organic
197                          134                              0.00      organic
198                           15                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                           21                              0.00      organic
202                           58                              0.00      organic
203                          296                              0.00      organic
204                          434                              0.00      organic
205                          363                              0.00      organic
206                          153                              0.00      organic
207                          469                              0.00      organic
208                          182                              0.00      organic
209                           32                              0.00      organic
210                           90                              0.00      organic
211                          201                              0.00      organic
212                          252                              0.00      organic
213                           55                              0.00      organic
214                            7                              0.00      organic
215                          239                              0.00      organic
216                          701                              0.00      organic
217                          498                              0.00      organic
218                          182                              0.00      organic
219                          308                              0.00      organic
220                          285                              0.00      organic
221                          188                              0.00      organic
222                         4622                              0.00      organic
223                         1646                              0.00      organic
224                          969                              0.00      organic
225                         1205                              0.00      organic
226                         1564                              0.00      organic
227                         1452                              0.00      organic
228                          918                              0.00      organic
229                          628                              0.00      organic
230                          522                              0.00      organic
231                          435                              0.00      organic
232                         2012                              0.00      organic
233                          783                              0.00      organic
234                         1794                              0.00      organic
235                         1194                              0.00      organic
236                          613                              0.00      organic
237                         1679                              0.00      organic
238                         1256                              0.00      organic
239                           16                              0.00      organic
240                         1064                              0.00      organic
241                          561                              0.00      organic
242                          958                              0.00      organic
243                          526                              0.00      organic
244                           17                              0.00      organic
245                          946                              0.00      organic
246                         2787                              0.00      organic
247                         5037                              0.00      organic
248                         2892                              0.00      organic
249                         2825                              0.00      organic
250                          310                              0.00      organic
251                           25                              0.00      organic
252                          595                              0.00      organic
253                           69                              0.00      organic
254                          240                              0.00      organic
255                         1373                              0.00      organic
256                         1767                              0.00      organic
257                           58                              0.00      organic
258                          240                              0.00      organic
259                         1763                              0.00      organic
260                         1896                              0.00      organic
261                          859                              0.00      organic
262                         4258                              0.00      organic
263                         2632                              0.00      organic
264                          874                              0.00      organic
265                            7                              0.00      organic
266                           88                              0.00      organic
267                         1775                              0.00      organic
268                          877                              0.00      organic
269                          988                              0.00      organic
270                          423                              0.00      organic
271                          956                              0.00      organic
272                         1440                              0.00      organic
273                          542                              0.00      organic
274                         1080                              0.00      organic
275                         1930                              0.00      organic
276                          952                              0.00      organic
277                         1155                              0.00      organic
278                         1055                              0.00      organic
279                         1662                              7.65      organic
280                         1222                              0.00      organic
281                          982                              0.00      organic
282                          954                              0.00      organic
283                         1017                              0.00      organic
284                          916                              4.56      organic
285                          886                              0.00      organic
286                          923                              0.00      organic
287                          801                              0.00      organic
288                          738                              0.00      organic
289                          707                              1.50      organic
290                          809                              0.00      organic
291                          994                              0.00      organic
292                          830                              0.00      organic
293                          841                              0.00      organic
294                          957                              0.00      organic
295                          942                              0.00      organic
296                          851                              0.00      organic
297                         1118                              0.00      organic
298                         1453                              0.00      organic
299                         2195                              0.00      organic
300                         1072                              0.00      organic
301                          809                              0.00      organic
302                         1996                              0.00      organic
303                         3156                              0.00      organic
304                         3220                              0.00      organic
305                         3161                              0.00      organic
306                         2664                              0.00      organic
307                         2887                              0.00      organic
308                         3450                              0.00      organic
309                         2824                              0.00      organic
310                         2393                              0.00      organic
311                         2515                              0.00      organic
312                         2601                              0.00      organic
313                         3774                              0.00      organic
314                         3665                              0.00      organic
315                         1665                              0.00      organic
316                         2186                              0.00      organic
317                         3873                              0.00      organic
318                         1875                              0.00      organic
319                          522                              0.00      organic
320                          684                              0.00      organic
321                         2123                              0.00      organic
322                         2121                              0.00      organic
323                         1991                              0.00      organic
324                         2106                              0.00      organic
325                         2917                              0.00      organic
326                         1877                              0.00      organic
327                         1418                              0.00      organic
328                         1258                             17.02      organic
329                         1758                              0.00      organic
330                         1440                              0.00      organic
331                         1142                              0.00      organic
332                          668                              0.00      organic
333                         1351                              0.00      organic
334                         1377                             58.42      organic
335                         1490                              1.49      organic
336                         1542                              1.47      organic
337                          925                              0.00      organic
338                         1010                              0.00      organic
    year (AÑO) region (REGION)
1         2015           Boise
2         2015           Boise
3         2015           Boise
4         2015           Boise
5         2015           Boise
6         2015           Boise
7         2015           Boise
8         2015           Boise
9         2015           Boise
10        2015           Boise
11        2015           Boise
12        2015           Boise
13        2015           Boise
14        2015           Boise
15        2015           Boise
16        2015           Boise
17        2015           Boise
18        2015           Boise
19        2015           Boise
20        2015           Boise
21        2015           Boise
22        2015           Boise
23        2015           Boise
24        2015           Boise
25        2015           Boise
26        2015           Boise
27        2015           Boise
28        2015           Boise
29        2015           Boise
30        2015           Boise
31        2015           Boise
32        2015           Boise
33        2015           Boise
34        2015           Boise
35        2015           Boise
36        2015           Boise
37        2015           Boise
38        2015           Boise
39        2015           Boise
40        2015           Boise
41        2015           Boise
42        2015           Boise
43        2015           Boise
44        2015           Boise
45        2015           Boise
46        2015           Boise
47        2015           Boise
48        2015           Boise
49        2015           Boise
50        2015           Boise
51        2015           Boise
52        2015           Boise
53        2016           Boise
54        2016           Boise
55        2016           Boise
56        2016           Boise
57        2016           Boise
58        2016           Boise
59        2016           Boise
60        2016           Boise
61        2016           Boise
62        2016           Boise
63        2016           Boise
64        2016           Boise
65        2016           Boise
66        2016           Boise
67        2016           Boise
68        2016           Boise
69        2016           Boise
70        2016           Boise
71        2016           Boise
72        2016           Boise
73        2016           Boise
74        2016           Boise
75        2016           Boise
76        2016           Boise
77        2016           Boise
78        2016           Boise
79        2016           Boise
80        2016           Boise
81        2016           Boise
82        2016           Boise
83        2016           Boise
84        2016           Boise
85        2016           Boise
86        2016           Boise
87        2016           Boise
88        2016           Boise
89        2016           Boise
90        2016           Boise
91        2016           Boise
92        2016           Boise
93        2016           Boise
94        2016           Boise
95        2016           Boise
96        2016           Boise
97        2016           Boise
98        2016           Boise
99        2016           Boise
100       2016           Boise
101       2016           Boise
102       2016           Boise
103       2016           Boise
104       2016           Boise
105       2017           Boise
106       2017           Boise
107       2017           Boise
108       2017           Boise
109       2017           Boise
110       2017           Boise
111       2017           Boise
112       2017           Boise
113       2017           Boise
114       2017           Boise
115       2017           Boise
116       2017           Boise
117       2017           Boise
118       2017           Boise
119       2017           Boise
120       2017           Boise
121       2017           Boise
122       2017           Boise
123       2017           Boise
124       2017           Boise
125       2017           Boise
126       2017           Boise
127       2017           Boise
128       2017           Boise
129       2017           Boise
130       2017           Boise
131       2017           Boise
132       2017           Boise
133       2017           Boise
134       2017           Boise
135       2017           Boise
136       2017           Boise
137       2017           Boise
138       2017           Boise
139       2017           Boise
140       2017           Boise
141       2017           Boise
142       2017           Boise
143       2017           Boise
144       2017           Boise
145       2017           Boise
146       2017           Boise
147       2017           Boise
148       2017           Boise
149       2017           Boise
150       2017           Boise
151       2017           Boise
152       2017           Boise
153       2017           Boise
154       2017           Boise
155       2017           Boise
156       2017           Boise
157       2017           Boise
158       2018           Boise
159       2018           Boise
160       2018           Boise
161       2018           Boise
162       2018           Boise
163       2018           Boise
164       2018           Boise
165       2018           Boise
166       2018           Boise
167       2018           Boise
168       2018           Boise
169       2018           Boise
170       2015           Boise
171       2015           Boise
172       2015           Boise
173       2015           Boise
174       2015           Boise
175       2015           Boise
176       2015           Boise
177       2015           Boise
178       2015           Boise
179       2015           Boise
180       2015           Boise
181       2015           Boise
182       2015           Boise
183       2015           Boise
184       2015           Boise
185       2015           Boise
186       2015           Boise
187       2015           Boise
188       2015           Boise
189       2015           Boise
190       2015           Boise
191       2015           Boise
192       2015           Boise
193       2015           Boise
194       2015           Boise
195       2015           Boise
196       2015           Boise
197       2015           Boise
198       2015           Boise
199       2015           Boise
200       2015           Boise
201       2015           Boise
202       2015           Boise
203       2015           Boise
204       2015           Boise
205       2015           Boise
206       2015           Boise
207       2015           Boise
208       2015           Boise
209       2015           Boise
210       2015           Boise
211       2015           Boise
212       2015           Boise
213       2015           Boise
214       2015           Boise
215       2015           Boise
216       2015           Boise
217       2015           Boise
218       2015           Boise
219       2015           Boise
220       2015           Boise
221       2015           Boise
222       2016           Boise
223       2016           Boise
224       2016           Boise
225       2016           Boise
226       2016           Boise
227       2016           Boise
228       2016           Boise
229       2016           Boise
230       2016           Boise
231       2016           Boise
232       2016           Boise
233       2016           Boise
234       2016           Boise
235       2016           Boise
236       2016           Boise
237       2016           Boise
238       2016           Boise
239       2016           Boise
240       2016           Boise
241       2016           Boise
242       2016           Boise
243       2016           Boise
244       2016           Boise
245       2016           Boise
246       2016           Boise
247       2016           Boise
248       2016           Boise
249       2016           Boise
250       2016           Boise
251       2016           Boise
252       2016           Boise
253       2016           Boise
254       2016           Boise
255       2016           Boise
256       2016           Boise
257       2016           Boise
258       2016           Boise
259       2016           Boise
260       2016           Boise
261       2016           Boise
262       2016           Boise
263       2016           Boise
264       2016           Boise
265       2016           Boise
266       2016           Boise
267       2016           Boise
268       2016           Boise
269       2016           Boise
270       2016           Boise
271       2016           Boise
272       2016           Boise
273       2016           Boise
274       2017           Boise
275       2017           Boise
276       2017           Boise
277       2017           Boise
278       2017           Boise
279       2017           Boise
280       2017           Boise
281       2017           Boise
282       2017           Boise
283       2017           Boise
284       2017           Boise
285       2017           Boise
286       2017           Boise
287       2017           Boise
288       2017           Boise
289       2017           Boise
290       2017           Boise
291       2017           Boise
292       2017           Boise
293       2017           Boise
294       2017           Boise
295       2017           Boise
296       2017           Boise
297       2017           Boise
298       2017           Boise
299       2017           Boise
300       2017           Boise
301       2017           Boise
302       2017           Boise
303       2017           Boise
304       2017           Boise
305       2017           Boise
306       2017           Boise
307       2017           Boise
308       2017           Boise
309       2017           Boise
310       2017           Boise
311       2017           Boise
312       2017           Boise
313       2017           Boise
314       2017           Boise
315       2017           Boise
316       2017           Boise
317       2017           Boise
318       2017           Boise
319       2017           Boise
320       2017           Boise
321       2017           Boise
322       2017           Boise
323       2017           Boise
324       2017           Boise
325       2017           Boise
326       2017           Boise
327       2018           Boise
328       2018           Boise
329       2018           Boise
330       2018           Boise
331       2018           Boise
332       2018           Boise
333       2018           Boise
334       2018           Boise
335       2018           Boise
336       2018           Boise
337       2018           Boise
338       2018           Boise

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

BUFFALOROCHESTER

    FRAME_BuffaloRochester <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="BuffaloRochester",]) 
    FRAME_BuffaloRochester
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   1.35
2                                   1.37
3                                   1.35
4                                   1.23
5                                   1.39
6                                   1.40
7                                   1.36
8                                   1.30
9                                   1.23
10                                  1.36
11                                  1.29
12                                  1.30
13                                  1.33
14                                  1.31
15                                  1.54
16                                  1.59
17                                  1.56
18                                  1.38
19                                  1.49
20                                  1.50
21                                  1.47
22                                  1.47
23                                  1.39
24                                  1.36
25                                  1.45
26                                  1.47
27                                  1.36
28                                  1.50
29                                  1.34
30                                  1.38
31                                  1.40
32                                  1.43
33                                  1.35
34                                  1.33
35                                  1.42
36                                  1.41
37                                  1.42
38                                  1.42
39                                  1.44
40                                  1.39
41                                  1.40
42                                  1.47
43                                  1.35
44                                  1.43
45                                  1.41
46                                  1.44
47                                  1.36
48                                  1.33
49                                  1.50
50                                  1.52
51                                  1.54
52                                  1.40
53                                  1.41
54                                  1.36
55                                  1.47
56                                  1.66
57                                  1.57
58                                  1.63
59                                  1.60
60                                  1.64
61                                  1.65
62                                  1.60
63                                  1.36
64                                  1.37
65                                  1.35
66                                  1.40
67                                  1.54
68                                  1.38
69                                  1.48
70                                  1.40
71                                  1.33
72                                  1.41
73                                  1.50
74                                  1.45
75                                  1.44
76                                  1.30
77                                  1.25
78                                  1.30
79                                  1.26
80                                  1.23
81                                  1.15
82                                  1.15
83                                  1.19
84                                  1.12
85                                  1.09
86                                  1.09
87                                  1.11
88                                  1.15
89                                  1.14
90                                  1.10
91                                  1.04
92                                  1.13
93                                  1.14
94                                  1.11
95                                  1.36
96                                  1.22
97                                  1.31
98                                  1.29
99                                  1.30
100                                 1.21
101                                 1.31
102                                 1.38
103                                 1.35
104                                 1.39
105                                 1.27
106                                 1.28
107                                 1.26
108                                 1.25
109                                 1.13
110                                 1.23
111                                 1.30
112                                 1.37
113                                 1.37
114                                 1.36
115                                 1.50
116                                 1.50
117                                 1.49
118                                 1.53
119                                 1.42
120                                 1.37
121                                 1.46
122                                 1.56
123                                 1.33
124                                 1.34
125                                 1.32
126                                 1.32
127                                 1.32
128                                 1.34
129                                 1.35
130                                 1.31
131                                 1.34
132                                 1.46
133                                 1.50
134                                 1.62
135                                 1.60
136                                 1.64
137                                 1.71
138                                 1.55
139                                 1.71
140                                 1.54
141                                 1.55
142                                 1.54
143                                 1.56
144                                 1.54
145                                 1.53
146                                 1.54
147                                 1.48
148                                 1.68
149                                 1.69
150                                 1.68
151                                 1.56
152                                 1.40
153                                 1.37
154                                 1.34
155                                 1.29
156                                 1.37
157                                 1.43
158                                 1.21
159                                 1.14
160                                 1.16
161                                 1.19
162                                 1.23
163                                 1.28
164                                 1.27
165                                 1.32
166                                 1.27
167                                 1.29
168                                 1.32
169                                 1.28
170                                 1.47
171                                 1.50
172                                 1.45
173                                 1.57
174                                 1.60
175                                 1.57
176                                 1.59
177                                 1.55
178                                 1.55
179                                 1.55
180                                 1.57
181                                 1.52
182                                 1.55
183                                 1.58
184                                 1.56
185                                 1.55
186                                 1.53
187                                 1.62
188                                 1.57
189                                 1.89
190                                 1.60
191                                 1.86
192                                 1.87
193                                 1.91
194                                 2.02
195                                 1.91
196                                 1.83
197                                 1.90
198                                 1.83
199                                 1.80
200                                 1.79
201                                 1.80
202                                 1.79
203                                 1.85
204                                 1.81
205                                 1.84
206                                 1.83
207                                 1.79
208                                 1.80
209                                 1.83
210                                 1.93
211                                 1.79
212                                 1.56
213                                 1.55
214                                 1.53
215                                 1.65
216                                 1.54
217                                 1.55
218                                 1.60
219                                 1.64
220                                 1.59
221                                 1.73
222                                 1.51
223                                 1.52
224                                 1.81
225                                 1.88
226                                 1.76
227                                 1.77
228                                 1.68
229                                 1.56
230                                 1.63
231                                 1.61
232                                 1.57
233                                 1.57
234                                 1.55
235                                 1.60
236                                 1.52
237                                 1.51
238                                 1.53
239                                 1.54
240                                 1.51
241                                 1.55
242                                 1.52
243                                 1.55
244                                 1.62
245                                 1.76
246                                 1.80
247                                 2.02
248                                 1.78
249                                 1.72
250                                 1.57
251                                 1.54
252                                 1.64
253                                 1.55
254                                 1.46
255                                 1.56
256                                 1.58
257                                 1.55
258                                 1.76
259                                 1.63
260                                 1.48
261                                 1.57
262                                 1.48
263                                 1.63
264                                 2.13
265                                 1.56
266                                 1.66
267                                 1.99
268                                 2.11
269                                 1.81
270                                 1.49
271                                 1.51
272                                 1.50
273                                 1.44
274                                 1.15
275                                 1.15
276                                 1.15
277                                 1.14
278                                 1.18
279                                 1.26
280                                 1.42
281                                 1.39
282                                 1.36
283                                 1.35
284                                 1.35
285                                 1.33
286                                 1.34
287                                 1.39
288                                 1.40
289                                 1.47
290                                 1.80
291                                 1.41
292                                 1.37
293                                 1.46
294                                 1.27
295                                 1.34
296                                 1.44
297                                 1.28
298                                 1.26
299                                 2.55
300                                 2.57
301                                 2.57
302                                 2.54
303                                 2.46
304                                 2.51
305                                 2.19
306                                 2.16
307                                 2.16
308                                 2.19
309                                 2.16
310                                 2.14
311                                 2.14
312                                 2.17
313                                 2.09
314                                 2.16
315                                 2.05
316                                 2.05
317                                 1.89
318                                 1.93
319                                 1.98
320                                 1.81
321                                 1.81
322                                 1.61
323                                 1.50
324                                 1.58
325                                 1.73
326                                 1.64
327                                 1.03
328                                 1.17
329                                 1.24
330                                 1.38
331                                 1.27
332                                 1.23
333                                 1.21
334                                 1.18
335                                 1.17
336                                 1.23
337                                 1.19
338                                 1.17
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                    96233
2                                                    90868
3                                                    98473
4                                                   108458
5                                                    79973
6                                                    90242
7                                                    99704
8                                                   111039
9                                                   118541
10                                                   99555
11                                                  106084
12                                                  109154
13                                                   98900
14                                                   90746
15                                                   60624
16                                                   73043
17                                                   76140
18                                                   83731
19                                                   68953
20                                                   69798
21                                                   81830
22                                                   78163
23                                                   91825
24                                                  128846
25                                                  127351
26                                                  140414
27                                                  137247
28                                                  108655
29                                                  149377
30                                                  130908
31                                                  130841
32                                                  121943
33                                                  137050
34                                                  170547
35                                                  136772
36                                                  136964
37                                                  139613
38                                                  118173
39                                                  124146
40                                                  119891
41                                                  119903
42                                                  103413
43                                                  125725
44                                                  112364
45                                                  109547
46                                                  100207
47                                                  132760
48                                                  153920
49                                                  114053
50                                                  107040
51                                                  106221
52                                                  116253
53                                                  103035
54                                                   85340
55                                                   89038
56                                                   72203
57                                                   73261
58                                                   78676
59                                                   87367
60                                                   81692
61                                                   71164
62                                                  110745
63                                                  131181
64                                                  135059
65                                                  132144
66                                                  134327
67                                                  122909
68                                                  124096
69                                                   95474
70                                                  114646
71                                                  119865
72                                                  114328
73                                                  104315
74                                                  108088
75                                                  104126
76                                                  141881
77                                                  183741
78                                                  180609
79                                                  160806
80                                                  169756
81                                                  182472
82                                                  173445
83                                                  147423
84                                                  168251
85                                                  164791
86                                                  201143
87                                                  171441
88                                                  171142
89                                                  169355
90                                                  152124
91                                                  154802
92                                                  149463
93                                                  140364
94                                                  163501
95                                                  141229
96                                                  154058
97                                                  126537
98                                                  137984
99                                                  177910
100                                                 164454
101                                                 147470
102                                                 132286
103                                                 134523
104                                                 130621
105                                                 115508
106                                                 127375
107                                                 108352
108                                                 127279
109                                                 153282
110                                                 102658
111                                                 112445
112                                                 118434
113                                                 115631
114                                                 121815
115                                                  90911
116                                                  86881
117                                                 102625
118                                                  96292
119                                                 121502
120                                                 140653
121                                                 142197
122                                                 135280
123                                                 147840
124                                                 142109
125                                                 144619
126                                                 155635
127                                                 146069
128                                                 148098
129                                                 144762
130                                                 166852
131                                                 144309
132                                                 115902
133                                                 129735
134                                                 114082
135                                                 145204
136                                                 160484
137                                                 139635
138                                                 152143
139                                                 174746
140                                                 178864
141                                                 147244
142                                                 166089
143                                                 172946
144                                                 167365
145                                                 156788
146                                                 151459
147                                                 165975
148                                                 140469
149                                                 122294
150                                                 109809
151                                                 135287
152                                                 188582
153                                                 163137
154                                                 160925
155                                                 168231
156                                                 158267
157                                                 105349
158                                                 163592
159                                                 166358
160                                                 185175
161                                                 168190
162                                                 151330
163                                                 144087
164                                                 151058
165                                                 188654
166                                                 158638
167                                                 161887
168                                                 159071
169                                                 161877
170                                                   5043
171                                                   5315
172                                                   4318
173                                                   2545
174                                                   2262
175                                                   2626
176                                                   1852
177                                                   4032
178                                                   2738
179                                                   3021
180                                                   3334
181                                                   4176
182                                                   3447
183                                                   1478
184                                                   3292
185                                                   4266
186                                                   5283
187                                                   1772
188                                                   3682
189                                                    716
190                                                   2743
191                                                   3348
192                                                   3414
193                                                   1729
194                                                    614
195                                                   1439
196                                                   3567
197                                                   1188
198                                                   3437
199                                                   4777
200                                                   5018
201                                                   5017
202                                                   5112
203                                                   2161
204                                                   3648
205                                                   2561
206                                                   2731
207                                                   3474
208                                                   2585
209                                                   1643
210                                                    531
211                                                    712
212                                                   2163
213                                                   3520
214                                                   5821
215                                                   1270
216                                                   3415
217                                                   2809
218                                                   1481
219                                                   1427
220                                                   2078
221                                                    380
222                                                   1099
223                                                   1859
224                                                   3303
225                                                   3713
226                                                   1221
227                                                   3047
228                                                   1146
229                                                   1186
230                                                    563
231                                                   1079
232                                                   1164
233                                                   1119
234                                                   1211
235                                                   1855
236                                                   4000
237                                                   1699
238                                                   5688
239                                                   2909
240                                                   5119
241                                                   1693
242                                                   4351
243                                                   1765
244                                                   2705
245                                                   4222
246                                                   5062
247                                                   5104
248                                                   5882
249                                                   7565
250                                                   6617
251                                                   5859
252                                                   7056
253                                                   8383
254                                                   7832
255                                                   7228
256                                                   7208
257                                                   6903
258                                                   4295
259                                                   6772
260                                                   6217
261                                                   5729
262                                                   6490
263                                                   4490
264                                                   3752
265                                                   6935
266                                                   5329
267                                                   4578
268                                                   5018
269                                                   4648
270                                                   2040
271                                                   3607
272                                                   4398
273                                                   5739
274                                                  10568
275                                                  11026
276                                                  10785
277                                                  11144
278                                                   7575
279                                                   5280
280                                                   7519
281                                                  12396
282                                                  12254
283                                                  12760
284                                                  10116
285                                                  12930
286                                                  15467
287                                                  11487
288                                                  10081
289                                                   7698
290                                                   4947
291                                                  11172
292                                                  11184
293                                                   8236
294                                                  10212
295                                                  12706
296                                                  10709
297                                                  14117
298                                                  12765
299                                                   5370
300                                                   4270
301                                                   5228
302                                                   5446
303                                                   5165
304                                                   5425
305                                                   5712
306                                                   4934
307                                                   5945
308                                                   7610
309                                                   3630
310                                                   5925
311                                                   5987
312                                                   5014
313                                                   3338
314                                                   4486
315                                                   3615
316                                                   2415
317                                                   3184
318                                                   2100
319                                                   4833
320                                                   3595
321                                                   5750
322                                                   2349
323                                                   2590
324                                                   4158
325                                                   3247
326                                                   3425
327                                                  38204
328                                                  16113
329                                                  12745
330                                                   8581
331                                                  11398
332                                                  12131
333                                                   9745
334                                                  14308
335                                                  13406
336                                                   7289
337                                                  10865
338                                                   9116
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                     1368
2                                                     1165
3                                                     1421
4                                                     1738
5                                                     1515
6                                                     1712
7                                                     1804
8                                                     1289
9                                                     2181
10                                                    1546
11                                                    1536
12                                                    2170
13                                                    3020
14                                                    1908
15                                                    1445
16                                                    1573
17                                                    1472
18                                                    1406
19                                                    1287
20                                                    1231
21                                                    1140
22                                                    1448
23                                                    1679
24                                                    1166
25                                                    1119
26                                                    1503
27                                                    1236
28                                                    1255
29                                                    1184
30                                                     779
31                                                    1039
32                                                    1034
33                                                     933
34                                                    1322
35                                                     946
36                                                    1118
37                                                    1022
38                                                     884
39                                                     969
40                                                    1353
41                                                    3091
42                                                    3500
43                                                    1072
44                                                    1033
45                                                    1709
46                                                    1521
47                                                    1822
48                                                    2118
49                                                    1321
50                                                    1625
51                                                    1642
52                                                    3268
53                                                    1197
54                                                    1276
55                                                     968
56                                                     960
57                                                    1006
58                                                    1426
59                                                    1892
60                                                    1322
61                                                    1130
62                                                    1172
63                                                    1283
64                                                    1117
65                                                    1120
66                                                    4198
67                                                    2693
68                                                    1658
69                                                    3090
70                                                    2682
71                                                    1543
72                                                    2646
73                                                    1782
74                                                    1792
75                                                    1157
76                                                    1389
77                                                    1425
78                                                    1425
79                                                    1327
80                                                    1777
81                                                    4629
82                                                    1451
83                                                    1442
84                                                    1533
85                                                    1411
86                                                    1613
87                                                    1248
88                                                    1391
89                                                    1167
90                                                    1278
91                                                    1164
92                                                    1512
93                                                    1111
94                                                    1394
95                                                    1473
96                                                    1659
97                                                    1500
98                                                    1922
99                                                    2262
100                                                   2015
101                                                    468
102                                                   1779
103                                                   1619
104                                                   1487
105                                                   5925
106                                                   7431
107                                                   7563
108                                                   7934
109                                                   7805
110                                                   6353
111                                                   8870
112                                                  10402
113                                                   9707
114                                                  11383
115                                                  24441
116                                                  26275
117                                                  25377
118                                                  22792
119                                                  11991
120                                                   7008
121                                                   2860
122                                                   2894
123                                                   1872
124                                                   2619
125                                                   2321
126                                                   2068
127                                                   1769
128                                                   1918
129                                                   1791
130                                                   2076
131                                                   1954
132                                                   1955
133                                                   2124
134                                                   1737
135                                                   1454
136                                                   1589
137                                                   1486
138                                                   1762
139                                                   1772
140                                                   1803
141                                                   2555
142                                                   3104
143                                                   1954
144                                                   3855
145                                                   2184
146                                                   1918
147                                                   1457
148                                                   1421
149                                                   1196
150                                                   1361
151                                                   1773
152                                                   1561
153                                                   1542
154                                                   1692
155                                                   2012
156                                                   1507
157                                                   1285
158                                                  18267
159                                                  16300
160                                                  18058
161                                                  13533
162                                                  12863
163                                                  10952
164                                                  12750
165                                                  13478
166                                                   8100
167                                                   8270
168                                                   8239
169                                                   8645
170                                                      0
171                                                      2
172                                                      0
173                                                     17
174                                                     17
175                                                     13
176                                                      2
177                                                      2
178                                                     14
179                                                     20
180                                                     14
181                                                     17
182                                                     30
183                                                     11
184                                                     33
185                                                     19
186                                                     14
187                                                     21
188                                                     19
189                                                     46
190                                                     31
191                                                     79
192                                                     80
193                                                     56
194                                                     90
195                                                     70
196                                                     50
197                                                     57
198                                                     72
199                                                     46
200                                                     43
201                                                     33
202                                                     31
203                                                     33
204                                                     63
205                                                     29
206                                                     38
207                                                     30
208                                                     16
209                                                     14
210                                                      0
211                                                      5
212                                                      9
213                                                     17
214                                                     33
215                                                     13
216                                                     25
217                                                     19
218                                                     16
219                                                     92
220                                                      0
221                                                      0
222                                                      1
223                                                     34
224                                                     24
225                                                     25
226                                                     10
227                                                      6
228                                                     21
229                                                     12
230                                                      4
231                                                     20
232                                                     30
233                                                     17
234                                                     11
235                                                     33
236                                                     41
237                                                     60
238                                                     84
239                                                     24
240                                                     24
241                                                     20
242                                                     51
243                                                     50
244                                                     38
245                                                     65
246                                                    119
247                                                     25
248                                                     51
249                                                     20
250                                                      8
251                                                     54
252                                                     33
253                                                     10
254                                                     31
255                                                      4
256                                                      5
257                                                     18
258                                                      0
259                                                      0
260                                                      4
261                                                      0
262                                                     13
263                                                      7
264                                                      0
265                                                      0
266                                                      0
267                                                      0
268                                                      0
269                                                      0
270                                                      1
271                                                      0
272                                                      1
273                                                      2
274                                                    177
275                                                    233
276                                                    196
277                                                    199
278                                                    102
279                                                    217
280                                                    257
281                                                    251
282                                                    175
283                                                    217
284                                                    231
285                                                    159
286                                                    324
287                                                    278
288                                                    278
289                                                    274
290                                                    408
291                                                    367
292                                                    193
293                                                     75
294                                                      5
295                                                      0
296                                                     10
297                                                      6
298                                                      5
299                                                      6
300                                                      4
301                                                     16
302                                                     28
303                                                      5
304                                                      4
305                                                      0
306                                                      7
307                                                      0
308                                                      0
309                                                      2
310                                                      7
311                                                      9
312                                                      0
313                                                      1
314                                                      0
315                                                      2
316                                                      0
317                                                     10
318                                                      5
319                                                      0
320                                                      0
321                                                      6
322                                                      2
323                                                      9
324                                                      7
325                                                     13
326                                                      9
327                                                    242
328                                                    559
329                                                    764
330                                                   1197
331                                                    762
332                                                    543
333                                                    169
334                                                    205
335                                                    232
336                                                    310
337                                                    319
338                                                    283
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  39543
2                                                  38431
3                                                  40783
4                                                  58197
5                                                  35683
6                                                  38781
7                                                  41457
8                                                  49507
9                                                  61875
10                                                 36646
11                                                 40702
12                                                 50862
13                                                 38353
14                                                 60293
15                                                 39832
16                                                 48469
17                                                 49388
18                                                 61601
19                                                 43655
20                                                 45938
21                                                 56289
22                                                 44621
23                                                 45615
24                                                 54493
25                                                 47295
26                                                 56925
27                                                 51802
28                                                 47846
29                                                 48287
30                                                 58000
31                                                 54249
32                                                 55019
33                                                 61668
34                                                 73754
35                                                 50266
36                                                 49557
37                                                 52955
38                                                 45444
39                                                 51024
40                                                 48430
41                                                 45420
42                                                 45689
43                                                 61974
44                                                 41685
45                                                 45394
46                                                 43272
47                                                 66262
48                                                 64771
49                                                 54007
50                                                 61860
51                                                 50985
52                                                 55693
53                                                 64435
54                                                 52115
55                                                 62963
56                                                 54243
57                                                 50582
58                                                 52281
59                                                 56518
60                                                 56678
61                                                 56077
62                                                 50974
63                                                 61796
64                                                 68717
65                                                 62757
66                                                 62356
67                                                 70019
68                                                 81284
69                                                 67791
70                                                 64246
71                                                 70785
72                                                 72837
73                                                 74561
74                                                 64652
75                                                 63921
76                                                 71782
77                                                 88106
78                                                 85759
79                                                 74747
80                                                 80407
81                                                 79865
82                                                 78923
83                                                 81631
84                                                 72247
85                                                 72074
86                                                 97493
87                                                 69914
88                                                 69261
89                                                 67585
90                                                 55802
91                                                 72025
92                                                 64644
93                                                 62344
94                                                 77325
95                                                 60517
96                                                 78721
97                                                 52666
98                                                 60453
99                                                 76309
100                                                81676
101                                                54309
102                                                49449
103                                                52034
104                                                57211
105                                                62632
106                                                72517
107                                                57326
108                                                63390
109                                                87461
110                                                50509
111                                                55800
112                                                55305
113                                                54119
114                                                53895
115                                                39989
116                                                40395
117                                                31577
118                                                42862
119                                                52357
120                                                59413
121                                                66980
122                                                67611
123                                                74398
124                                                71901
125                                                60730
126                                                78780
127                                                65452
128                                                67608
129                                                72329
130                                                80023
131                                                80411
132                                                77255
133                                                82873
134                                                75552
135                                                80513
136                                                75153
137                                                72164
138                                                66532
139                                                87260
140                                                83395
141                                                70195
142                                                70002
143                                                80633
144                                                73054
145                                                67001
146                                                72622
147                                                85677
148                                                75284
149                                                71329
150                                                62450
151                                                71051
152                                                97167
153                                                72001
154                                                70337
155                                                68322
156                                                83906
157                                                58532
158                                                82911
159                                                70321
160                                                83259
161                                                75345
162                                                69046
163                                                66056
164                                                74595
165                                                99364
166                                                76070
167                                                75966
168                                                80917
169                                                92303
170                                                  166
171                                                  152
172                                                  131
173                                                  103
174                                                  130
175                                                  120
176                                                  118
177                                                  141
178                                                   93
179                                                  124
180                                                  159
181                                                   47
182                                                  177
183                                                   71
184                                                  127
185                                                  140
186                                                   92
187                                                  124
188                                                  181
189                                                  154
190                                                  189
191                                                  154
192                                                  155
193                                                  123
194                                                  104
195                                                  150
196                                                  125
197                                                  127
198                                                  138
199                                                  167
200                                                  173
201                                                  170
202                                                  196
203                                                  184
204                                                  168
205                                                  205
206                                                  156
207                                                  145
208                                                  131
209                                                  128
210                                                  148
211                                                  130
212                                                   95
213                                                  126
214                                                   92
215                                                  124
216                                                  116
217                                                  102
218                                                   91
219                                                  137
220                                                  144
221                                                   60
222                                                  264
223                                                  240
224                                                  517
225                                                 1092
226                                                  210
227                                                  157
228                                                  247
229                                                  144
230                                                  126
231                                                  222
232                                                  144
233                                                  245
234                                                  207
235                                                  185
236                                                  156
237                                                  108
238                                                  196
239                                                  329
240                                                  188
241                                                  218
242                                                  215
243                                                  252
244                                                  258
245                                                  398
246                                                  170
247                                                  264
248                                                  225
249                                                  228
250                                                  294
251                                                  465
252                                                 1056
253                                                  994
254                                                  239
255                                                  152
256                                                  265
257                                                  203
258                                                  165
259                                                  175
260                                                  198
261                                                  214
262                                                  181
263                                                  127
264                                                  182
265                                                  224
266                                                  280
267                                                  247
268                                                  223
269                                                  227
270                                                  129
271                                                  155
272                                                  183
273                                                  160
274                                                   83
275                                                   65
276                                                  131
277                                                   71
278                                                   39
279                                                   58
280                                                   69
281                                                  105
282                                                   93
283                                                  115
284                                                  136
285                                                  154
286                                                  149
287                                                  111
288                                                  134
289                                                  140
290                                                  156
291                                                  160
292                                                  182
293                                                  228
294                                                  416
295                                                  312
296                                                  451
297                                                  427
298                                                  446
299                                                  393
300                                                  473
301                                                  440
302                                                  544
303                                                  645
304                                                  492
305                                                  711
306                                                  844
307                                                  548
308                                                  651
309                                                  508
310                                                  385
311                                                  526
312                                                  547
313                                                  924
314                                                  451
315                                                  293
316                                                  286
317                                                 1405
318                                                  606
319                                                 1112
320                                                  370
321                                                  258
322                                                  347
323                                                  139
324                                                  185
325                                                  175
326                                                  321
327                                                  425
328                                                  106
329                                                   91
330                                                  160
331                                                  169
332                                                  104
333                                                  138
334                                                  182
335                                                  150
336                                                  120
337                                                  133
338                                                   90
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                      86
2                                                     107
3                                                      66
4                                                     167
5                                                     113
6                                                     108
7                                                     107
8                                                      55
9                                                     186
10                                                     80
11                                                     58
12                                                     96
13                                                    101
14                                                    106
15                                                     89
16                                                    134
17                                                    173
18                                                    242
19                                                    170
20                                                    258
21                                                    349
22                                                    472
23                                                    742
24                                                   2205
25                                                   4715
26                                                   6708
27                                                   5397
28                                                   5425
29                                                   4433
30                                                    139
31                                                     79
32                                                    104
33                                                     57
34                                                    185
35                                                     82
36                                                    106
37                                                     59
38                                                     93
39                                                     96
40                                                     81
41                                                     48
42                                                     66
43                                                    102
44                                                    104
45                                                    132
46                                                     58
47                                                    162
48                                                    112
49                                                     75
50                                                    133
51                                                     80
52                                                    110
53                                                     42
54                                                     60
55                                                     54
56                                                     23
57                                                     12
58                                                     28
59                                                     84
60                                                     80
61                                                     82
62                                                     78
63                                                     51
64                                                    112
65                                                     90
66                                                     36
67                                                     52
68                                                     65
69                                                     69
70                                                     67
71                                                     44
72                                                     71
73                                                     43
74                                                     55
75                                                     62
76                                                    102
77                                                     46
78                                                     53
79                                                     83
80                                                     58
81                                                    107
82                                                    258
83                                                    354
84                                                    857
85                                                   1161
86                                                    765
87                                                   1641
88                                                   1785
89                                                     58
90                                                     54
91                                                     19
92                                                     44
93                                                     55
94                                                     25
95                                                     32
96                                                     36
97                                                     31
98                                                     40
99                                                    124
100                                                    89
101                                                   131
102                                                   121
103                                                   110
104                                                    99
105                                                    25
106                                                    27
107                                                    40
108                                                    62
109                                                    42
110                                                    26
111                                                    75
112                                                    48
113                                                    58
114                                                    38
115                                                    61
116                                                    33
117                                                    39
118                                                    37
119                                                    31
120                                                    48
121                                                    31
122                                                    40
123                                                    20
124                                                    11
125                                                    19
126                                                    43
127                                                    40
128                                                    37
129                                                    36
130                                                    56
131                                                   106
132                                                    60
133                                                   101
134                                                    79
135                                                    58
136                                                   109
137                                                    56
138                                                   134
139                                                   210
140                                                    46
141                                                    40
142                                                    36
143                                                    49
144                                                    42
145                                                    53
146                                                    74
147                                                    28
148                                                    46
149                                                    45
150                                                    33
151                                                   111
152                                                   116
153                                                   111
154                                                    56
155                                                    54
156                                                    66
157                                                   103
158                                                    81
159                                                    64
160                                                    57
161                                                    67
162                                                    65
163                                                    74
164                                                    84
165                                                    84
166                                                    96
167                                                    62
168                                                    40
169                                                    57
170                                                     0
171                                                     0
172                                                     0
173                                                     0
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          55237                        55237
2                          51165                        51165
3                          56202                        56202
4                          48356                        48356
5                          42662                        42662
6                          49642                        49642
7                          56335                        55593
8                          60188                        58886
9                          54299                        52956
10                         61283                        59381
11                         63787                        62627
12                         56025                        54830
13                         57426                        56141
14                         28438                        27767
15                         19259                        18438
16                         22867                        22422
17                         25106                        25093
18                         20483                        20483
19                         23840                        23840
20                         22372                        22372
21                         24052                        24052
22                         31623                        31623
23                         43789                        43789
24                         70982                        70982
25                         74223                        73796
26                         75277                        74371
27                         78812                        78750
28                         54130                        54130
29                         95474                        95474
30                         71991                        71991
31                         75473                        75473
32                         65786                        65742
33                         74393                        73415
34                         95286                        94833
35                         85477                        84332
36                         86183                        85503
37                         85577                        85057
38                         71752                        70938
39                         72057                        71409
40                         70027                        69919
41                         71344                        71289
42                         54158                        54046
43                         62577                        62217
44                         69542                        69480
45                         62312                        61765
46                         55357                        55233
47                         64514                        63918
48                         86920                        86848
49                         58650                        57910
50                         43422                        43420
51                         53514                        53514
52                         57183                        57183
53                         37361                        35701
54                         31888                        29697
55                         25053                        23316
56                         16977                        15683
57                         21661                        21641
58                         24940                        24940
59                         28873                        28873
60                         23613                        23400
61                         13875                        13875
62                         58521                        58521
63                         68051                        68051
64                         65113                        65113
65                         68176                        68176
66                         67737                        67732
67                         50144                        49338
68                         41089                        39987
69                         24524                        24296
70                         47650                        46025
71                         47493                        46013
72                         38774                        37629
73                         27930                        26110
74                         41589                        40894
75                         38987                        34597
76                         68608                        66178
77                         94164                        89912
78                         93373                        88473
79                         84649                        81949
80                         87514                        84829
81                         97870                        95730
82                         92813                        90283
83                         63996                        63441
84                         93614                        92304
85                         90144                        90144
86                        101271                       101271
87                         98639                        98639
88                         98706                        98706
89                        100546                       100546
90                         94989                        94766
91                         81594                        81543
92                         83262                        83262
93                         76855                        76855
94                         84758                        84758
95                         79206                        79197
96                         73642                        72862
97                         72341                        69018
98                         75569                        73329
99                         99215                        97444
100                        80673                        79715
101                        92562                        92435
102                        80938                        80938
103                        80759                        80759
104                        71824                        71824
105                        46927                        37398
106                        47400                        43236
107                        43423                        38801
108                        55893                        51673
109                        57974                        54677
110                        45769                        40451
111                        47700                        36898
112                        52678                        45324
113                        51746                        19895
114                        56499                        15585
115                        26419                        21740
116                        20178                        14837
117                        45633                        25279
118                        30601                        16986
119                        57123                        50015
120                        74184                        60985
121                        72325                        63253
122                        64736                        56628
123                        71550                        71041
124                        67578                        64906
125                        81549                        79458
126                        74744                        73066
127                        78808                        76952
128                        78536                        76394
129                        70606                        68147
130                        84698                        78261
131                        61839                        55196
132                        36633                        32338
133                        44636                        40583
134                        36714                        30261
135                        63179                        59569
136                        83633                        81517
137                        65929                        63240
138                        83714                        82649
139                        85504                        84213
140                        93620                        91173
141                        74454                        72229
142                        92947                        87097
143                        90311                        38344
144                        90414                        64654
145                        87549                        86728
146                        76846                        73724
147                        78812                        56757
148                        63718                        63653
149                        49724                        49518
150                        45965                        44232
151                        62352                        58032
152                        89738                        89665
153                        89483                        87724
154                        88840                        86198
155                        97843                        96320
156                        72788                        72703
157                        45429                        45155
158                        62334                        20542
159                        79674                        22589
160                        83801                        41027
161                        79245                        23485
162                        69357                        43442
163                        67006                        32090
164                        63629                        41236
165                        75727                        14935
166                        74371                        12061
167                        77590                        26340
168                        69874                        27693
169                        60872                        12248
170                         4877                         2752
171                         5160                         3672
172                         4187                         1503
173                         2425                         2299
174                         2115                         2097
175                         2493                         2493
176                         1732                         1732
177                         3888                         3888
178                         2631                         2631
179                         2878                         2871
180                         3161                         3161
181                         4112                         4109
182                         3240                         3240
183                         1396                         1396
184                         3131                         3131
185                         4107                         4107
186                         5177                         5177
187                         1626                         1621
188                         3481                         3479
189                          516                          516
190                         2524                         2511
191                         3116                         3116
192                         3179                         3176
193                         1550                         1550
194                          420                          418
195                         1220                         1217
196                         3392                         3389
197                         1004                          953
198                         3227                         3227
199                         4564                         4564
200                         4803                         4803
201                         4814                         4814
202                         4885                         4885
203                         1945                         1945
204                         3417                         3417
205                         2327                         2327
206                         2537                         2537
207                         3299                         3299
208                         2438                         2438
209                         1500                         1500
210                          383                          383
211                          577                          577
212                         2059                         2059
213                         3377                         3377
214                         5697                         5697
215                         1133                         1133
216                         3274                         3274
217                         2687                         2687
218                         1374                         1374
219                         1198                         1198
220                         1935                         1935
221                          320                          320
222                          833                          807
223                         1585                         1575
224                         2763                         2758
225                         2597                         2522
226                         1002                          940
227                         2884                         2884
228                          878                          878
229                         1030                         1030
230                          433                          433
231                          837                          837
232                          990                          990
233                          857                          857
234                          994                          988
235                         1637                         1637
236                         3803                         3800
237                         1532                         1529
238                         5409                         5409
239                         2556                         2552
240                         4906                         4882
241                         1455                         1455
242                         4084                         4084
243                         1463                         1101
244                         2409                         1446
245                         3759                         1882
246                         4773                         2553
247                         4815                         1055
248                         5607                         3174
249                         7316                         4116
250                         6315                         2595
251                         5341                         2678
252                         5966                         1973
253                         7379                         4217
254                         7562                         5027
255                         7072                         3334
256                         6938                         3226
257                         6682                         3428
258                         4130                          603
259                         6598                         1836
260                         6016                         3322
261                         5515                         2237
262                         6296                         3455
263                         4355                         1187
264                         3570                          387
265                         6711                          699
266                         5049                         1224
267                         4331                         2770
268                         4794                          854
269                         4421                         2750
270                         1909                         1703
271                         3453                         3139
272                         4214                         3059
273                         5576                         2336
274                        10309                         5005
275                        10727                         9440
276                        10457                         3560
277                        10874                         3942
278                         7435                         3656
279                         5006                         4509
280                         7194                         3938
281                        12040                         6031
282                        11986                        10352
283                        12428                        12428
284                         9749                         9744
285                        12617                        12617
286                        14994                        14994
287                        11098                        11092
288                         9670                         9642
289                         7284                         6095
290                         4382                         1515
291                        10645                         7804
292                        10809                         9102
293                         7933                         2470
294                         9792                         5319
295                        12394                         3182
296                        10248                         1433
297                        13684                         4223
298                        12314                         7112
299                         4970                          731
300                         3793                          487
301                         4773                          637
302                         4873                          830
303                         4516                         1073
304                         4930                          948
305                         5001                          980
306                         4083                         1050
307                         5397                         1203
308                         6959                         1220
309                         3119                          900
310                         5533                         1181
311                         5453                         1313
312                         4466                         1003
313                         2413                         1180
314                         4035                          739
315                         3320                          973
316                         2129                          637
317                         1770                          910
318                         1489                          966
319                         3721                         1261
320                         3225                         1951
321                         5486                         3201
322                         1999                         1830
323                         2443                         2440
324                         3966                         3417
325                         3059                         2001
326                         3096                         2585
327                        37537                        25743
328                        15449                         4271
329                        11890                         1124
330                         7224                          894
331                        10468                         2568
332                        11485                         5283
333                         9438                         2907
334                        13922                         4204
335                        13023                        11059
336                         6859                         3581
337                        10413                         3248
338                         8743                         4250
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                              0                              0.00 conventional
2                              0                              0.00 conventional
3                              0                              0.00 conventional
4                              0                              0.00 conventional
5                              0                              0.00 conventional
6                              0                              0.00 conventional
7                            742                              0.00 conventional
8                           1302                              0.00 conventional
9                           1342                              0.00 conventional
10                          1902                              0.00 conventional
11                          1160                              0.00 conventional
12                          1196                              0.00 conventional
13                          1284                              0.00 conventional
14                           671                              0.00 conventional
15                           821                              0.00 conventional
16                           446                              0.00 conventional
17                            13                              0.00 conventional
18                             0                              0.00 conventional
19                             0                              0.00 conventional
20                             0                              0.00 conventional
21                             0                              0.00 conventional
22                             0                              0.00 conventional
23                             0                              0.00 conventional
24                             0                              0.00 conventional
25                           427                              0.00 conventional
26                           907                              0.00 conventional
27                            62                              0.00 conventional
28                             0                              0.00 conventional
29                             0                              0.00 conventional
30                             0                              0.00 conventional
31                             0                              0.00 conventional
32                            44                              0.00 conventional
33                           978                              0.00 conventional
34                           453                              0.00 conventional
35                          1102                             43.06 conventional
36                           640                             40.28 conventional
37                           520                              0.00 conventional
38                           814                              0.00 conventional
39                           598                             50.00 conventional
40                           108                              0.00 conventional
41                            56                              0.00 conventional
42                           111                              0.00 conventional
43                           360                              0.00 conventional
44                            62                              0.00 conventional
45                           547                              0.00 conventional
46                           124                              0.00 conventional
47                           596                              0.00 conventional
48                            71                              0.00 conventional
49                           740                              0.00 conventional
50                             2                              0.00 conventional
51                             0                              0.00 conventional
52                             0                              0.00 conventional
53                          1660                              0.00 conventional
54                          2191                              0.00 conventional
55                          1737                              0.00 conventional
56                          1256                             37.50 conventional
57                             0                             19.44 conventional
58                             0                              0.00 conventional
59                             0                              0.00 conventional
60                             0                            212.50 conventional
61                             0                              0.00 conventional
62                             0                              0.00 conventional
63                             0                              0.00 conventional
64                             0                              0.00 conventional
65                             0                              0.00 conventional
66                             4                              0.00 conventional
67                           807                              0.00 conventional
68                          1102                              0.00 conventional
69                            53                            175.00 conventional
70                             0                           1625.00 conventional
71                             0                           1480.00 conventional
72                             0                           1145.00 conventional
73                             0                           1820.00 conventional
74                             0                            695.00 conventional
75                             0                           4390.00 conventional
76                             0                           2430.00 conventional
77                             0                           4252.50 conventional
78                             0                           4900.00 conventional
79                             0                           2700.00 conventional
80                             0                           2685.00 conventional
81                             0                           2140.00 conventional
82                             0                           2530.00 conventional
83                             0                            555.00 conventional
84                             0                           1310.00 conventional
85                             0                              0.00 conventional
86                             0                              0.00 conventional
87                             0                              0.00 conventional
88                             0                              0.00 conventional
89                             0                              0.00 conventional
90                           113                            109.72 conventional
91                            51                              0.00 conventional
92                             0                              0.00 conventional
93                             0                              0.00 conventional
94                             0                              0.00 conventional
95                             9                              0.00 conventional
96                           780                              0.00 conventional
97                          3322                              0.00 conventional
98                          2240                              0.00 conventional
99                          1771                              0.00 conventional
100                          958                              0.00 conventional
101                          127                              0.00 conventional
102                            0                              0.00 conventional
103                            0                              0.00 conventional
104                            0                              0.00 conventional
105                         9529                              0.00 conventional
106                         4164                              0.00 conventional
107                         4622                              0.00 conventional
108                         4221                              0.00 conventional
109                         3297                              0.00 conventional
110                         5319                              0.00 conventional
111                        10802                              0.00 conventional
112                         7354                              0.00 conventional
113                        31805                             46.67 conventional
114                        40914                              0.00 conventional
115                         4680                              0.00 conventional
116                         5341                              0.00 conventional
117                        20354                              0.00 conventional
118                        13616                              0.00 conventional
119                         7108                              0.00 conventional
120                        12842                            356.67 conventional
121                         6368                           2703.33 conventional
122                         6699                           1408.89 conventional
123                           19                            490.00 conventional
124                          102                           2570.00 conventional
125                          108                           1983.33 conventional
126                           84                           1593.33 conventional
127                          592                           1263.33 conventional
128                          331                           1810.00 conventional
129                           48                           2411.11 conventional
130                          641                           5795.00 conventional
131                         3168                           3475.00 conventional
132                          946                           3350.00 conventional
133                          700                           3352.50 conventional
134                         1938                           4515.00 conventional
135                         1657                           1953.33 conventional
136                         1153                            963.33 conventional
137                         2271                            418.05 conventional
138                         1065                              0.00 conventional
139                         1291                              0.00 conventional
140                         2447                              0.00 conventional
141                         2226                              0.00 conventional
142                         5850                              0.00 conventional
143                        51967                              0.00 conventional
144                        25760                              0.00 conventional
145                          821                              0.00 conventional
146                         3121                              0.00 conventional
147                        22055                              0.00 conventional
148                           65                              0.00 conventional
149                          206                              0.00 conventional
150                         1733                              0.00 conventional
151                         4320                              0.00 conventional
152                           73                              0.00 conventional
153                         1254                            505.56 conventional
154                         2642                              0.00 conventional
155                         1523                              0.00 conventional
156                           85                              0.00 conventional
157                          256                             18.06 conventional
158                        41090                            702.23 conventional
159                        56334                            750.00 conventional
160                        41959                            814.44 conventional
161                        55220                            540.00 conventional
162                        25219                            695.56 conventional
163                        34563                            353.34 conventional
164                        21391                           1001.11 conventional
165                        60229                            563.33 conventional
166                        62156                            154.44 conventional
167                        51250                              0.00 conventional
168                        42181                              0.00 conventional
169                        48624                              0.00 conventional
170                         2125                              0.00      organic
171                         1488                              0.00      organic
172                         2685                              0.00      organic
173                          126                              0.00      organic
174                           18                              0.00      organic
175                            0                              0.00      organic
176                            0                              0.00      organic
177                            0                              0.00      organic
178                            0                              0.00      organic
179                            7                              0.00      organic
180                            0                              0.00      organic
181                            3                              0.00      organic
182                            0                              0.00      organic
183                            0                              0.00      organic
184                            0                              0.00      organic
185                            0                              0.00      organic
186                            0                              0.00      organic
187                            5                              0.00      organic
188                            3                              0.00      organic
189                            0                              0.00      organic
190                           13                              0.00      organic
191                            0                              0.00      organic
192                            3                              0.00      organic
193                            0                              0.00      organic
194                            3                              0.00      organic
195                            3                              0.00      organic
196                            3                              0.00      organic
197                           51                              0.00      organic
198                            0                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                            0                              0.00      organic
202                            0                              0.00      organic
203                            0                              0.00      organic
204                            0                              0.00      organic
205                            0                              0.00      organic
206                            0                              0.00      organic
207                            0                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                            0                              0.00      organic
214                            0                              0.00      organic
215                            0                              0.00      organic
216                            0                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                            0                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                           26                              0.00      organic
223                           10                              0.00      organic
224                            4                              0.00      organic
225                           75                              0.00      organic
226                           61                              0.00      organic
227                            0                              0.00      organic
228                            0                              0.00      organic
229                            0                              0.00      organic
230                            0                              0.00      organic
231                            0                              0.00      organic
232                            0                              0.00      organic
233                            0                              0.00      organic
234                            6                              0.00      organic
235                            0                              0.00      organic
236                            3                              0.00      organic
237                            3                              0.00      organic
238                            0                              0.00      organic
239                            3                              0.00      organic
240                           24                              0.00      organic
241                            0                              0.00      organic
242                            0                              0.00      organic
243                          362                              0.00      organic
244                          963                              0.00      organic
245                         1878                              0.00      organic
246                         2220                              0.00      organic
247                         3760                              0.00      organic
248                         2433                              0.00      organic
249                         3200                              0.00      organic
250                         3719                              0.00      organic
251                         2663                              0.00      organic
252                         3994                              0.00      organic
253                         3162                              0.00      organic
254                         2535                              0.00      organic
255                         3738                              0.00      organic
256                         3712                              0.00      organic
257                         3254                              0.00      organic
258                         3527                              0.00      organic
259                         4762                              0.00      organic
260                         2694                              0.00      organic
261                         3277                              0.00      organic
262                         2842                              0.00      organic
263                         3169                              0.00      organic
264                         3183                              0.00      organic
265                         6012                              0.00      organic
266                         3826                              0.00      organic
267                         1561                              0.00      organic
268                         3940                              0.00      organic
269                         1671                              0.00      organic
270                          206                              0.00      organic
271                          314                              0.00      organic
272                         1155                              0.00      organic
273                         3240                              0.00      organic
274                         5305                              0.00      organic
275                         1288                              0.00      organic
276                         6897                              0.00      organic
277                         6933                              0.00      organic
278                         3779                              0.00      organic
279                          496                              0.00      organic
280                         3255                              0.00      organic
281                         6008                              0.00      organic
282                         1634                              0.00      organic
283                            0                              0.00      organic
284                            4                              0.00      organic
285                            0                              0.00      organic
286                            0                              0.00      organic
287                            5                              0.00      organic
288                           28                              0.00      organic
289                         1189                              0.00      organic
290                         2868                              0.00      organic
291                         2841                              0.00      organic
292                         1707                              0.00      organic
293                         5463                              0.00      organic
294                         4473                              0.00      organic
295                         9212                              0.00      organic
296                         8814                              0.00      organic
297                         9460                              0.00      organic
298                         5202                              0.00      organic
299                         4239                              0.00      organic
300                         3306                              0.00      organic
301                         4136                              0.00      organic
302                         4043                              0.00      organic
303                         3442                              0.00      organic
304                         3982                              0.00      organic
305                         4021                              0.00      organic
306                         3033                              0.00      organic
307                         4194                              0.00      organic
308                         5739                              0.00      organic
309                         2219                              0.00      organic
310                         4352                              0.00      organic
311                         4140                              0.00      organic
312                         3463                              0.00      organic
313                         1233                              0.00      organic
314                         3296                              0.00      organic
315                         2346                              0.00      organic
316                         1492                              0.00      organic
317                          860                              0.00      organic
318                          523                              0.00      organic
319                         2460                              0.00      organic
320                         1274                              0.00      organic
321                         2285                              0.00      organic
322                          169                              0.00      organic
323                            3                              0.00      organic
324                          550                              0.00      organic
325                         1058                              0.00      organic
326                          511                              0.00      organic
327                        11794                              0.00      organic
328                        11178                              0.00      organic
329                        10765                              0.00      organic
330                         6329                              0.00      organic
331                         7900                              0.00      organic
332                         6201                              0.00      organic
333                         6530                              0.00      organic
334                         9718                              0.00      organic
335                         1964                              0.00      organic
336                         3278                              0.00      organic
337                         7165                              0.00      organic
338                         4493                              0.00      organic
    year (AÑO)  region (REGION)
1         2015 BuffaloRochester
2         2015 BuffaloRochester
3         2015 BuffaloRochester
4         2015 BuffaloRochester
5         2015 BuffaloRochester
6         2015 BuffaloRochester
7         2015 BuffaloRochester
8         2015 BuffaloRochester
9         2015 BuffaloRochester
10        2015 BuffaloRochester
11        2015 BuffaloRochester
12        2015 BuffaloRochester
13        2015 BuffaloRochester
14        2015 BuffaloRochester
15        2015 BuffaloRochester
16        2015 BuffaloRochester
17        2015 BuffaloRochester
18        2015 BuffaloRochester
19        2015 BuffaloRochester
20        2015 BuffaloRochester
21        2015 BuffaloRochester
22        2015 BuffaloRochester
23        2015 BuffaloRochester
24        2015 BuffaloRochester
25        2015 BuffaloRochester
26        2015 BuffaloRochester
27        2015 BuffaloRochester
28        2015 BuffaloRochester
29        2015 BuffaloRochester
30        2015 BuffaloRochester
31        2015 BuffaloRochester
32        2015 BuffaloRochester
33        2015 BuffaloRochester
34        2015 BuffaloRochester
35        2015 BuffaloRochester
36        2015 BuffaloRochester
37        2015 BuffaloRochester
38        2015 BuffaloRochester
39        2015 BuffaloRochester
40        2015 BuffaloRochester
41        2015 BuffaloRochester
42        2015 BuffaloRochester
43        2015 BuffaloRochester
44        2015 BuffaloRochester
45        2015 BuffaloRochester
46        2015 BuffaloRochester
47        2015 BuffaloRochester
48        2015 BuffaloRochester
49        2015 BuffaloRochester
50        2015 BuffaloRochester
51        2015 BuffaloRochester
52        2015 BuffaloRochester
53        2016 BuffaloRochester
54        2016 BuffaloRochester
55        2016 BuffaloRochester
56        2016 BuffaloRochester
57        2016 BuffaloRochester
58        2016 BuffaloRochester
59        2016 BuffaloRochester
60        2016 BuffaloRochester
61        2016 BuffaloRochester
62        2016 BuffaloRochester
63        2016 BuffaloRochester
64        2016 BuffaloRochester
65        2016 BuffaloRochester
66        2016 BuffaloRochester
67        2016 BuffaloRochester
68        2016 BuffaloRochester
69        2016 BuffaloRochester
70        2016 BuffaloRochester
71        2016 BuffaloRochester
72        2016 BuffaloRochester
73        2016 BuffaloRochester
74        2016 BuffaloRochester
75        2016 BuffaloRochester
76        2016 BuffaloRochester
77        2016 BuffaloRochester
78        2016 BuffaloRochester
79        2016 BuffaloRochester
80        2016 BuffaloRochester
81        2016 BuffaloRochester
82        2016 BuffaloRochester
83        2016 BuffaloRochester
84        2016 BuffaloRochester
85        2016 BuffaloRochester
86        2016 BuffaloRochester
87        2016 BuffaloRochester
88        2016 BuffaloRochester
89        2016 BuffaloRochester
90        2016 BuffaloRochester
91        2016 BuffaloRochester
92        2016 BuffaloRochester
93        2016 BuffaloRochester
94        2016 BuffaloRochester
95        2016 BuffaloRochester
96        2016 BuffaloRochester
97        2016 BuffaloRochester
98        2016 BuffaloRochester
99        2016 BuffaloRochester
100       2016 BuffaloRochester
101       2016 BuffaloRochester
102       2016 BuffaloRochester
103       2016 BuffaloRochester
104       2016 BuffaloRochester
105       2017 BuffaloRochester
106       2017 BuffaloRochester
107       2017 BuffaloRochester
108       2017 BuffaloRochester
109       2017 BuffaloRochester
110       2017 BuffaloRochester
111       2017 BuffaloRochester
112       2017 BuffaloRochester
113       2017 BuffaloRochester
114       2017 BuffaloRochester
115       2017 BuffaloRochester
116       2017 BuffaloRochester
117       2017 BuffaloRochester
118       2017 BuffaloRochester
119       2017 BuffaloRochester
120       2017 BuffaloRochester
121       2017 BuffaloRochester
122       2017 BuffaloRochester
123       2017 BuffaloRochester
124       2017 BuffaloRochester
125       2017 BuffaloRochester
126       2017 BuffaloRochester
127       2017 BuffaloRochester
128       2017 BuffaloRochester
129       2017 BuffaloRochester
130       2017 BuffaloRochester
131       2017 BuffaloRochester
132       2017 BuffaloRochester
133       2017 BuffaloRochester
134       2017 BuffaloRochester
135       2017 BuffaloRochester
136       2017 BuffaloRochester
137       2017 BuffaloRochester
138       2017 BuffaloRochester
139       2017 BuffaloRochester
140       2017 BuffaloRochester
141       2017 BuffaloRochester
142       2017 BuffaloRochester
143       2017 BuffaloRochester
144       2017 BuffaloRochester
145       2017 BuffaloRochester
146       2017 BuffaloRochester
147       2017 BuffaloRochester
148       2017 BuffaloRochester
149       2017 BuffaloRochester
150       2017 BuffaloRochester
151       2017 BuffaloRochester
152       2017 BuffaloRochester
153       2017 BuffaloRochester
154       2017 BuffaloRochester
155       2017 BuffaloRochester
156       2017 BuffaloRochester
157       2017 BuffaloRochester
158       2018 BuffaloRochester
159       2018 BuffaloRochester
160       2018 BuffaloRochester
161       2018 BuffaloRochester
162       2018 BuffaloRochester
163       2018 BuffaloRochester
164       2018 BuffaloRochester
165       2018 BuffaloRochester
166       2018 BuffaloRochester
167       2018 BuffaloRochester
168       2018 BuffaloRochester
169       2018 BuffaloRochester
170       2015 BuffaloRochester
171       2015 BuffaloRochester
172       2015 BuffaloRochester
173       2015 BuffaloRochester
174       2015 BuffaloRochester
175       2015 BuffaloRochester
176       2015 BuffaloRochester
177       2015 BuffaloRochester
178       2015 BuffaloRochester
179       2015 BuffaloRochester
180       2015 BuffaloRochester
181       2015 BuffaloRochester
182       2015 BuffaloRochester
183       2015 BuffaloRochester
184       2015 BuffaloRochester
185       2015 BuffaloRochester
186       2015 BuffaloRochester
187       2015 BuffaloRochester
188       2015 BuffaloRochester
189       2015 BuffaloRochester
190       2015 BuffaloRochester
191       2015 BuffaloRochester
192       2015 BuffaloRochester
193       2015 BuffaloRochester
194       2015 BuffaloRochester
195       2015 BuffaloRochester
196       2015 BuffaloRochester
197       2015 BuffaloRochester
198       2015 BuffaloRochester
199       2015 BuffaloRochester
200       2015 BuffaloRochester
201       2015 BuffaloRochester
202       2015 BuffaloRochester
203       2015 BuffaloRochester
204       2015 BuffaloRochester
205       2015 BuffaloRochester
206       2015 BuffaloRochester
207       2015 BuffaloRochester
208       2015 BuffaloRochester
209       2015 BuffaloRochester
210       2015 BuffaloRochester
211       2015 BuffaloRochester
212       2015 BuffaloRochester
213       2015 BuffaloRochester
214       2015 BuffaloRochester
215       2015 BuffaloRochester
216       2015 BuffaloRochester
217       2015 BuffaloRochester
218       2015 BuffaloRochester
219       2015 BuffaloRochester
220       2015 BuffaloRochester
221       2015 BuffaloRochester
222       2016 BuffaloRochester
223       2016 BuffaloRochester
224       2016 BuffaloRochester
225       2016 BuffaloRochester
226       2016 BuffaloRochester
227       2016 BuffaloRochester
228       2016 BuffaloRochester
229       2016 BuffaloRochester
230       2016 BuffaloRochester
231       2016 BuffaloRochester
232       2016 BuffaloRochester
233       2016 BuffaloRochester
234       2016 BuffaloRochester
235       2016 BuffaloRochester
236       2016 BuffaloRochester
237       2016 BuffaloRochester
238       2016 BuffaloRochester
239       2016 BuffaloRochester
240       2016 BuffaloRochester
241       2016 BuffaloRochester
242       2016 BuffaloRochester
243       2016 BuffaloRochester
244       2016 BuffaloRochester
245       2016 BuffaloRochester
246       2016 BuffaloRochester
247       2016 BuffaloRochester
248       2016 BuffaloRochester
249       2016 BuffaloRochester
250       2016 BuffaloRochester
251       2016 BuffaloRochester
252       2016 BuffaloRochester
253       2016 BuffaloRochester
254       2016 BuffaloRochester
255       2016 BuffaloRochester
256       2016 BuffaloRochester
257       2016 BuffaloRochester
258       2016 BuffaloRochester
259       2016 BuffaloRochester
260       2016 BuffaloRochester
261       2016 BuffaloRochester
262       2016 BuffaloRochester
263       2016 BuffaloRochester
264       2016 BuffaloRochester
265       2016 BuffaloRochester
266       2016 BuffaloRochester
267       2016 BuffaloRochester
268       2016 BuffaloRochester
269       2016 BuffaloRochester
270       2016 BuffaloRochester
271       2016 BuffaloRochester
272       2016 BuffaloRochester
273       2016 BuffaloRochester
274       2017 BuffaloRochester
275       2017 BuffaloRochester
276       2017 BuffaloRochester
277       2017 BuffaloRochester
278       2017 BuffaloRochester
279       2017 BuffaloRochester
280       2017 BuffaloRochester
281       2017 BuffaloRochester
282       2017 BuffaloRochester
283       2017 BuffaloRochester
284       2017 BuffaloRochester
285       2017 BuffaloRochester
286       2017 BuffaloRochester
287       2017 BuffaloRochester
288       2017 BuffaloRochester
289       2017 BuffaloRochester
290       2017 BuffaloRochester
291       2017 BuffaloRochester
292       2017 BuffaloRochester
293       2017 BuffaloRochester
294       2017 BuffaloRochester
295       2017 BuffaloRochester
296       2017 BuffaloRochester
297       2017 BuffaloRochester
298       2017 BuffaloRochester
299       2017 BuffaloRochester
300       2017 BuffaloRochester
301       2017 BuffaloRochester
302       2017 BuffaloRochester
303       2017 BuffaloRochester
304       2017 BuffaloRochester
305       2017 BuffaloRochester
306       2017 BuffaloRochester
307       2017 BuffaloRochester
308       2017 BuffaloRochester
309       2017 BuffaloRochester
310       2017 BuffaloRochester
311       2017 BuffaloRochester
312       2017 BuffaloRochester
313       2017 BuffaloRochester
314       2017 BuffaloRochester
315       2017 BuffaloRochester
316       2017 BuffaloRochester
317       2017 BuffaloRochester
318       2017 BuffaloRochester
319       2017 BuffaloRochester
320       2017 BuffaloRochester
321       2017 BuffaloRochester
322       2017 BuffaloRochester
323       2017 BuffaloRochester
324       2017 BuffaloRochester
325       2017 BuffaloRochester
326       2017 BuffaloRochester
327       2018 BuffaloRochester
328       2018 BuffaloRochester
329       2018 BuffaloRochester
330       2018 BuffaloRochester
331       2018 BuffaloRochester
332       2018 BuffaloRochester
333       2018 BuffaloRochester
334       2018 BuffaloRochester
335       2018 BuffaloRochester
336       2018 BuffaloRochester
337       2018 BuffaloRochester
338       2018 BuffaloRochester

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

CALIFORNIA

    FRAME_California <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="California",] )
    FRAME_California
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.90
2                                   0.94
3                                   0.87
4                                   0.78
5                                   0.91
6                                   0.92
7                                   0.83
8                                   0.98
9                                   0.95
10                                  1.12
11                                  1.07
12                                  1.08
13                                  1.02
14                                  1.04
15                                  1.14
16                                  1.13
17                                  1.09
18                                  1.08
19                                  1.18
20                                  1.11
21                                  1.10
22                                  1.16
23                                  1.13
24                                  1.18
25                                  1.13
26                                  1.12
27                                  1.10
28                                  1.07
29                                  0.97
30                                  0.98
31                                  0.98
32                                  1.10
33                                  1.08
34                                  0.93
35                                  0.88
36                                  1.15
37                                  1.05
38                                  1.06
39                                  1.12
40                                  1.10
41                                  1.06
42                                  1.06
43                                  0.96
44                                  0.84
45                                  0.96
46                                  0.96
47                                  0.91
48                                  0.85
49                                  1.06
50                                  1.02
51                                  0.92
52                                  0.93
53                                  0.94
54                                  0.95
55                                  0.90
56                                  0.98
57                                  1.21
58                                  1.32
59                                  1.48
60                                  1.68
61                                  1.68
62                                  1.39
63                                  1.40
64                                  1.34
65                                  1.19
66                                  1.15
67                                  1.22
68                                  1.12
69                                  1.08
70                                  0.99
71                                  1.05
72                                  1.07
73                                  1.17
74                                  1.22
75                                  1.20
76                                  1.14
77                                  1.08
78                                  1.10
79                                  1.03
80                                  1.06
81                                  1.01
82                                  0.94
83                                  0.98
84                                  0.90
85                                  0.97
86                                  0.79
87                                  0.75
88                                  0.84
89                                  0.93
90                                  0.94
91                                  0.93
92                                  0.93
93                                  0.91
94                                  0.96
95                                  0.92
96                                  0.89
97                                  0.89
98                                  0.82
99                                  0.70
100                                 0.88
101                                 0.88
102                                 0.90
103                                 0.87
104                                 0.73
105                                 0.93
106                                 1.13
107                                 0.98
108                                 1.06
109                                 1.09
110                                 1.30
111                                 1.26
112                                 1.15
113                                 1.15
114                                 1.20
115                                 1.53
116                                 1.68
117                                 1.74
118                                 1.77
119                                 1.74
120                                 1.72
121                                 1.71
122                                 1.65
123                                 1.78
124                                 1.64
125                                 1.26
126                                 1.36
127                                 1.38
128                                 1.46
129                                 1.49
130                                 1.28
131                                 1.28
132                                 1.15
133                                 1.20
134                                 1.22
135                                 1.20
136                                 1.32
137                                 1.35
138                                 1.17
139                                 1.08
140                                 1.25
141                                 1.26
142                                 1.34
143                                 1.13
144                                 1.22
145                                 1.33
146                                 1.31
147                                 1.31
148                                 1.15
149                                 0.95
150                                 0.95
151                                 0.79
152                                 0.67
153                                 0.76
154                                 0.76
155                                 0.93
156                                 1.00
157                                 0.89
158                                 1.04
159                                 1.02
160                                 1.11
161                                 1.13
162                                 1.03
163                                 1.10
164                                 0.98
165                                 0.80
166                                 1.16
167                                 1.12
168                                 1.27
169                                 1.19
170                                 1.45
171                                 1.35
172                                 1.39
173                                 1.48
174                                 1.75
175                                 1.60
176                                 1.59
177                                 1.66
178                                 1.60
179                                 1.64
180                                 2.01
181                                 2.07
182                                 2.00
183                                 1.85
184                                 1.92
185                                 1.97
186                                 1.99
187                                 1.98
188                                 1.85
189                                 1.96
190                                 2.03
191                                 1.99
192                                 1.93
193                                 1.89
194                                 1.80
195                                 1.67
196                                 1.67
197                                 1.69
198                                 1.68
199                                 1.67
200                                 1.50
201                                 1.50
202                                 1.49
203                                 1.40
204                                 1.48
205                                 1.50
206                                 1.52
207                                 1.50
208                                 1.52
209                                 1.53
210                                 1.30
211                                 1.52
212                                 1.48
213                                 1.15
214                                 1.41
215                                 1.52
216                                 1.35
217                                 1.11
218                                 1.30
219                                 1.24
220                                 1.10
221                                 1.24
222                                 1.53
223                                 1.61
224                                 1.64
225                                 1.89
226                                 2.04
227                                 2.10
228                                 2.13
229                                 2.37
230                                 2.49
231                                 2.58
232                                 2.02
233                                 1.98
234                                 1.91
235                                 1.95
236                                 1.84
237                                 1.55
238                                 1.65
239                                 1.63
240                                 1.53
241                                 1.47
242                                 1.48
243                                 1.56
244                                 1.56
245                                 1.59
246                                 1.51
247                                 1.58
248                                 1.51
249                                 1.57
250                                 1.50
251                                 1.55
252                                 1.49
253                                 1.37
254                                 1.50
255                                 1.25
256                                 1.24
257                                 1.39
258                                 1.39
259                                 1.40
260                                 1.39
261                                 1.42
262                                 1.46
263                                 1.41
264                                 1.32
265                                 1.28
266                                 1.43
267                                 1.47
268                                 1.38
269                                 1.43
270                                 1.36
271                                 1.45
272                                 1.33
273                                 1.43
274                                 1.71
275                                 1.82
276                                 1.75
277                                 1.89
278                                 1.81
279                                 2.00
280                                 1.98
281                                 1.99
282                                 1.76
283                                 2.01
284                                 2.00
285                                 2.10
286                                 2.17
287                                 2.08
288                                 2.05
289                                 2.18
290                                 2.20
291                                 2.09
292                                 2.54
293                                 2.37
294                                 2.21
295                                 2.18
296                                 2.14
297                                 2.17
298                                 2.14
299                                 1.62
300                                 1.73
301                                 1.66
302                                 1.78
303                                 1.79
304                                 1.64
305                                 1.76
306                                 1.78
307                                 1.76
308                                 1.59
309                                 1.61
310                                 1.60
311                                 1.67
312                                 1.63
313                                 1.64
314                                 1.70
315                                 1.57
316                                 1.53
317                                 1.45
318                                 1.34
319                                 1.50
320                                 1.54
321                                 1.36
322                                 1.44
323                                 1.53
324                                 1.66
325                                 1.50
326                                 1.46
327                                 1.70
328                                 1.75
329                                 1.58
330                                 1.57
331                                 1.82
332                                 1.97
333                                 1.85
334                                 1.56
335                                 1.87
336                                 1.69
337                                 1.61
338                                 1.95
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                  5040365
2                                                  4695737
3                                                  5259354
4                                                  5775536
5                                                  4575711
6                                                  4804278
7                                                  5755191
8                                                  5148984
9                                                  5830428
10                                                 4592462
11                                                 4999032
12                                                 5063309
13                                                 4943781
14                                                 5216785
15                                                 4759791
16                                                 5106508
17                                                 5806393
18                                                 5647385
19                                                 5193221
20                                                 5616434
21                                                 6232081
22                                                 5428239
23                                                 5557616
24                                                 5225201
25                                                 5451637
26                                                 6718012
27                                                 5641742
28                                                 5952597
29                                                 6741662
30                                                 6374843
31                                                 6236903
32                                                 5621714
33                                                 5289139
34                                                 6650358
35                                                 8567534
36                                                 4923565
37                                                 5871081
38                                                 5636645
39                                                 5467156
40                                                 5341822
41                                                 5571813
42                                                 5557163
43                                                 5990244
44                                                 6700134
45                                                 5951871
46                                                 5699945
47                                                 5871225
48                                                 9032181
49                                                 4929884
50                                                 5570915
51                                                 6024932
52                                                 5777335
53                                                 5414937
54                                                 4922622
55                                                 5526646
56                                                 5062953
57                                                 4185901
58                                                 4253816
59                                                 3848128
60                                                 3395058
61                                                 3139834
62                                                 3899041
63                                                 4878038
64                                                 5375979
65                                                 5652496
66                                                 6075589
67                                                 5471565
68                                                 6059765
69                                                 6681646
70                                                 6696300
71                                                 6308000
72                                                 6538336
73                                                 6144828
74                                                 5947160
75                                                 6104047
76                                                 6200614
77                                                 6721691
78                                                 7087455
79                                                 6407277
80                                                 6528056
81                                                 6506235
82                                                 7365675
83                                                 6700986
84                                                 6501981
85                                                 6068873
86                                                 7808462
87                                                 7661483
88                                                 6933382
89                                                 6397813
90                                                 6509001
91                                                 6060844
92                                                 6603708
93                                                 6476207
94                                                 6017564
95                                                 6429870
96                                                 6588278
97                                                 6374019
98                                                 6807283
99                                                10361698
100                                                6506674
101                                                6246381
102                                                6000013
103                                                6303407
104                                                7730431
105                                                7132711
106                                                5346536
107                                                6205211
108                                                5715712
109                                                5544556
110                                                4392810
111                                                4782021
112                                                5637795
113                                                5663439
114                                                5714677
115                                                4420877
116                                                4066641
117                                                4151444
118                                                3870633
119                                                3937001
120                                                4167531
121                                                4380657
122                                                4648718
123                                                4360014
124                                                4524975
125                                                5862368
126                                                5655955
127                                                5571001
128                                                5188483
129                                                5405190
130                                                6499668
131                                                6607293
132                                                6999256
133                                                6599049
134                                                6177216
135                                                6507094
136                                                6160752
137                                                5599003
138                                                6370622
139                                                7872203
140                                                5889669
141                                                5637300
142                                                5442086
143                                                6249183
144                                                5719811
145                                                5073071
146                                                5328958
147                                                5208102
148                                                5634150
149                                                6342090
150                                                6194369
151                                                6862177
152                                               11213596
153                                                8055482
154                                                8153340
155                                                6656554
156                                                6653048
157                                                7175277
158                                                6687009
159                                                6802084
160                                                6488605
161                                                6295530
162                                                6750361
163                                                6379220
164                                                6718358
165                                               10894678
166                                                6134041
167                                                6610011
168                                                5927017
169                                                5756632
170                                                  98577
171                                                  99794
172                                                  98605
173                                                  91212
174                                                  83416
175                                                  89062
176                                                  97265
177                                                 101320
178                                                 104331
179                                                 103918
180                                                  73799
181                                                  70004
182                                                  81751
183                                                  80735
184                                                  94268
185                                                  95231
186                                                  88964
187                                                  90125
188                                                 107431
189                                                  90240
190                                                  86211
191                                                  89436
192                                                  98450
193                                                 103081
194                                                 115064
195                                                 135523
196                                                 116914
197                                                 116909
198                                                 116322
199                                                 114406
200                                                 119999
201                                                 135544
202                                                 133759
203                                                 160570
204                                                 119060
205                                                 128166
206                                                 123851
207                                                 119549
208                                                 120814
209                                                 111424
210                                                 112285
211                                                  94419
212                                                 108347
213                                                 250299
214                                                 136422
215                                                 116499
216                                                 132790
217                                                 196032
218                                                 121698
219                                                 195208
220                                                 158111
221                                                 142350
222                                                 132890
223                                                 122728
224                                                 128205
225                                                 116895
226                                                 111852
227                                                 107587
228                                                 122100
229                                                 119037
230                                                  96095
231                                                  75898
232                                                  95599
233                                                 128967
234                                                 138995
235                                                 123708
236                                                 139323
237                                                 187618
238                                                 178322
239                                                 175423
240                                                 176650
241                                                 208957
242                                                 210039
243                                                 188494
244                                                 185040
245                                                 192801
246                                                 213418
247                                                 209496
248                                                 204392
249                                                 196943
250                                                 192534
251                                                 182778
252                                                 203164
253                                                 211081
254                                                 202642
255                                                 256669
256                                                 225347
257                                                 208435
258                                                 187359
259                                                 193519
260                                                 206689
261                                                 184634
262                                                 172197
263                                                 199916
264                                                 198962
265                                                 214658
266                                                 161206
267                                                 158523
268                                                 156586
269                                                 155319
270                                                 154438
271                                                 125542
272                                                 138581
273                                                 122089
274                                                 160039
275                                                 138506
276                                                 126089
277                                                 125853
278                                                 125973
279                                                 115472
280                                                 122170
281                                                 122018
282                                                 145735
283                                                 129602
284                                                 132184
285                                                 115255
286                                                 124506
287                                                 132772
288                                                 138459
289                                                 152065
290                                                 140337
291                                                 142392
292                                                 121293
293                                                 140366
294                                                 139017
295                                                 118099
296                                                 113903
297                                                 128481
298                                                 127256
299                                                 169101
300                                                 163971
301                                                 167932
302                                                 181726
303                                                 179141
304                                                 206419
305                                                 197589
306                                                 183084
307                                                 167406
308                                                 211443
309                                                 199904
310                                                 197180
311                                                 194263
312                                                 186112
313                                                 191988
314                                                 194053
315                                                 209591
316                                                 210401
317                                                 220712
318                                                 215699
319                                                 183797
320                                                 151755
321                                                 169740
322                                                 165226
323                                                 136423
324                                                 142739
325                                                 177777
326                                                 164137
327                                                 190257
328                                                 202791
329                                                 236823
330                                                 239136
331                                                 179042
332                                                 167194
333                                                 168311
334                                                 188213
335                                                 170999
336                                                 181975
337                                                 216681
338                                                 156342
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                  1833947
2                                                  1676601
3                                                  1806690
4                                                  1943066
5                                                  1461699
6                                                  1602216
7                                                  2243013
8                                                  2317859
9                                                  2369825
10                                                 1733791
11                                                 1847991
12                                                 1757212
13                                                 1461112
14                                                 1860050
15                                                 1702965
16                                                 1863271
17                                                 2859326
18                                                 3104608
19                                                 2626978
20                                                 3098709
21                                                 3260776
22                                                 2940146
23                                                 3112922
24                                                 2805888
25                                                 2747300
26                                                 3581150
27                                                 3163840
28                                                 3328632
29                                                 4075881
30                                                 3614314
31                                                 3620440
32                                                 2978397
33                                                 2923674
34                                                 4085859
35                                                 4340117
36                                                 2421010
37                                                 3024466
38                                                 2848184
39                                                 2754465
40                                                 2609533
41                                                 2348618
42                                                 2962520
43                                                 3484275
44                                                 3516551
45                                                 3210177
46                                                 3315164
47                                                 2908845
48                                                 4794142
49                                                 2380956
50                                                 2780860
51                                                 2889591
52                                                 2843648
53                                                 1579235
54                                                 1575319
55                                                 1638639
56                                                 1916640
57                                                 1508447
58                                                 1513797
59                                                 1326907
60                                                 1111432
61                                                 1126017
62                                                 1397559
63                                                 1635631
64                                                 2021375
65                                                 2359102
66                                                 2357904
67                                                 1888694
68                                                 2297602
69                                                 2501655
70                                                 2683110
71                                                 2646368
72                                                 2200100
73                                                 2152079
74                                                 1922055
75                                                 2019597
76                                                 2196723
77                                                 2399361
78                                                 2409026
79                                                 2333532
80                                                 2409003
81                                                 2597934
82                                                 2921963
83                                                 2522305
84                                                 2238875
85                                                 2247484
86                                                 2716222
87                                                 2817406
88                                                 2507347
89                                                 2370403
90                                                 2248562
91                                                 1805556
92                                                 1935666
93                                                 1893618
94                                                 1750944
95                                                 1893787
96                                                 1873878
97                                                 1776499
98                                                 1998150
99                                                 2930343
100                                                2126067
101                                                1230068
102                                                1653348
103                                                1736168
104                                                2315175
105                                                2280934
106                                                1934362
107                                                1901831
108                                                2234102
109                                                2333912
110                                                1734281
111                                                1879513
112                                                2309785
113                                                2148627
114                                                1981731
115                                                1604917
116                                                1348029
117                                                1377101
118                                                1288267
119                                                1383480
120                                                1571530
121                                                1677368
122                                                1856634
123                                                1889887
124                                                1995269
125                                                2346711
126                                                2313743
127                                                2179200
128                                                2201005
129                                                2319570
130                                                2634902
131                                                2527124
132                                                2706875
133                                                2691572
134                                                2302945
135                                                2378539
136                                                2307940
137                                                2077114
138                                                2375685
139                                                2851510
140                                                2197824
141                                                2027855
142                                                2047142
143                                                1926188
144                                                1856673
145                                                1693589
146                                                1857645
147                                                1871004
148                                                1961188
149                                                2193500
150                                                1999799
151                                                2429385
152                                                3986430
153                                                3009291
154                                                3089604
155                                                2075030
156                                                1988635
157                                                2266313
158                                                1932162
159                                                2161038
160                                                2277437
161                                                2380724
162                                                2666133
163                                                2086479
164                                                2787034
165                                                4473812
166                                                2254632
167                                                2378177
168                                                2098763
169                                                2350839
170                                                  14307
171                                                  12746
172                                                  13609
173                                                  17840
174                                                  13195
175                                                  14803
176                                                  16245
177                                                  17075
178                                                  20050
179                                                  20903
180                                                  15960
181                                                  14400
182                                                  18415
183                                                  20639
184                                                  28490
185                                                  34761
186                                                  23876
187                                                  23449
188                                                  30455
189                                                  24631
190                                                  23147
191                                                  26068
192                                                  31604
193                                                  33422
194                                                  45483
195                                                  50368
196                                                  46841
197                                                  51295
198                                                  51608
199                                                  49302
200                                                  52847
201                                                  60598
202                                                  65831
203                                                  77104
204                                                  54177
205                                                  63540
206                                                  55948
207                                                  59861
208                                                  57082
209                                                  56829
210                                                  64969
211                                                  65441
212                                                  75016
213                                                 178034
214                                                 102232
215                                                  85445
216                                                  94441
217                                                 142332
218                                                  80952
219                                                 123138
220                                                 123713
221                                                 107491
222                                                  22780
223                                                  18006
224                                                  20011
225                                                  24443
226                                                  21468
227                                                  18290
228                                                  21826
229                                                  22140
230                                                  17621
231                                                   9139
232                                                  13352
233                                                  15488
234                                                  15506
235                                                  12971
236                                                  19980
237                                                  22135
238                                                  19885
239                                                  20282
240                                                  28269
241                                                  28111
242                                                  22202
243                                                  21895
244                                                  22033
245                                                  21165
246                                                  30507
247                                                  24660
248                                                  34450
249                                                  23135
250                                                  24728
251                                                  26378
252                                                  22713
253                                                  22353
254                                                  26936
255                                                  19170
256                                                  16748
257                                                  18891
258                                                  17320
259                                                  16938
260                                                  17841
261                                                  14745
262                                                  15752
263                                                  18236
264                                                  19796
265                                                  16584
266                                                  14702
267                                                  11345
268                                                  13085
269                                                  17863
270                                                  13659
271                                                  16081
272                                                  17521
273                                                  18211
274                                                  46373
275                                                  25276
276                                                  24044
277                                                  31271
278                                                  23984
279                                                  23310
280                                                  25969
281                                                  29124
282                                                  27876
283                                                  29243
284                                                  27493
285                                                  25514
286                                                  26222
287                                                  31037
288                                                  34599
289                                                  48806
290                                                  40795
291                                                  33579
292                                                  31150
293                                                  28993
294                                                  27835
295                                                  18668
296                                                  15244
297                                                  20884
298                                                  18861
299                                                  18593
300                                                  20970
301                                                  23368
302                                                  32418
303                                                  32283
304                                                  31579
305                                                  31706
306                                                  28908
307                                                  29347
308                                                  27955
309                                                  29040
310                                                  28028
311                                                  28602
312                                                  30319
313                                                  31382
314                                                  34619
315                                                  25435
316                                                  26373
317                                                  28614
318                                                  26444
319                                                  27932
320                                                  27368
321                                                  37220
322                                                  30959
323                                                  28035
324                                                  27811
325                                                  33563
326                                                  31268
327                                                  29644
328                                                  29398
329                                                  32766
330                                                  34245
331                                                  28991
332                                                  27895
333                                                  30354
334                                                  38079
335                                                  30071
336                                                  34411
337                                                  52253
338                                                  42993
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                1760956
2                                                1543281
3                                                1627241
4                                                2100246
5                                                1810203
6                                                1917125
7                                                2164099
8                                                1758965
9                                                2596785
10                                               2025016
11                                               2286236
12                                               2530023
13                                               2788318
14                                               2635028
15                                               2230694
16                                               2388023
17                                               2077194
18                                               1660274
19                                               1798911
20                                               1731349
21                                               2196705
22                                               1737846
23                                               1636660
24                                               1629872
25                                               1923893
26                                               2120303
27                                               1610910
28                                               1743509
29                                               1771909
30                                               1860329
31                                               1826497
32                                               1873206
33                                               1649624
34                                               1735132
35                                               3403145
36                                               1729487
37                                               2070974
38                                               1988818
39                                               1886169
40                                               1869271
41                                               2314394
42                                               1737354
43                                               1649936
44                                               2460932
45                                               1933699
46                                               1620462
47                                               2200394
48                                               3460744
49                                               1827783
50                                               2108450
51                                               2485720
52                                               2267755
53                                               2192461
54                                               1774200
55                                               2137291
56                                               1449672
57                                               1313001
58                                               1394929
59                                               1367685
60                                               1333387
61                                               1186844
62                                               1129206
63                                               1600568
64                                               1750075
65                                               1664176
66                                               1924934
67                                               1934688
68                                               1976499
69                                               2179345
70                                               1878140
71                                               1712067
72                                               2538994
73                                               2039791
74                                               2069410
75                                               2147541
76                                               2037094
77                                               2117397
78                                               2439612
79                                               1967325
80                                               2045112
81                                               1869930
82                                               2131717
83                                               2097509
84                                               2178821
85                                               1968269
86                                               2615648
87                                               2628579
88                                               2355999
89                                               1875910
90                                               1958359
91                                               2247248
92                                               2149392
93                                               2191468
94                                               1855263
95                                               1975668
96                                               2020328
97                                               2073957
98                                               1974912
99                                               3950852
100                                              2069193
101                                              2457752
102                                              2336705
103                                              2173554
104                                              2856102
105                                              3201737
106                                              1934711
107                                              2877209
108                                              2013200
109                                              1660573
110                                              1354966
111                                              1360694
112                                              1882561
113                                              2224529
114                                              2384846
115                                              1779178
116                                              1699673
117                                              1829531
118                                              1608863
119                                              1575761
120                                              1556656
121                                              1599511
122                                              1720931
123                                              1420373
124                                              1293180
125                                              2079376
126                                              1892140
127                                              2206571
128                                              1738865
129                                              1821613
130                                              1818683
131                                              1942683
132                                              1977950
133                                              1650089
134                                              1517908
135                                              1580024
136                                              1793496
137                                              1627754
138                                              1570245
139                                              2470795
140                                              1689226
141                                              1521895
142                                              1572972
143                                              2128867
144                                              1580307
145                                              1542979
146                                              1555271
147                                              1577127
148                                              1720073
149                                              2038285
150                                              2098407
151                                              1870885
152                                              3550403
153                                              2295856
154                                              2659661
155                                              2450277
156                                              2569566
157                                              2877688
158                                              2715164
159                                              2305253
160                                              1750119
161                                              1676630
162                                              1947660
163                                              2413235
164                                              1781592
165                                              4097592
166                                              2185496
167                                              2590302
168                                              2356360
169                                              1704810
170                                                50894
171                                                48196
172                                                46519
173                                                47528
174                                                48229
175                                                51283
176                                                59089
177                                                62469
178                                                63408
179                                                66867
180                                                48820
181                                                48933
182                                                57015
183                                                50992
184                                                60941
185                                                54822
186                                                56394
187                                                55879
188                                                63851
189                                                52035
190                                                52641
191                                                54133
192                                                57990
193                                                59795
194                                                60702
195                                                74572
196                                                61728
197                                                55597
198                                                54938
199                                                52704
200                                                53628
201                                                63560
202                                                56261
203                                                70435
204                                                51543
205                                                51224
206                                                57078
207                                                49554
208                                                51296
209                                                44391
210                                                40012
211                                                21855
212                                                21620
213                                                59787
214                                                25716
215                                                21690
216                                                24588
217                                                42000
218                                                28216
219                                                58616
220                                                25975
221                                                25712
222                                                56238
223                                                60994
224                                                59840
225                                                50936
226                                                49401
227                                                44679
228                                                51896
229                                                56358
230                                                52990
231                                                53304
232                                                54624
233                                                67538
234                                                70707
235                                                73572
236                                                76880
237                                                97386
238                                                82532
239                                                79272
240                                                67091
241                                                84313
242                                                79011
243                                                83895
244                                                82330
245                                                91337
246                                                89764
247                                               110483
248                                               103277
249                                               102745
250                                               101839
251                                                88668
252                                                99957
253                                               102703
254                                               102253
255                                               147865
256                                               132441
257                                               100138
258                                                84074
259                                                93769
260                                               115062
261                                                92064
262                                                89042
263                                               101107
264                                                86185
265                                                95085
266                                                81578
267                                                87140
268                                                84118
269                                                79185
270                                                86744
271                                                66399
272                                                60383
273                                                66433
274                                                55040
275                                                58177
276                                                55285
277                                                46281
278                                                47847
279                                                47380
280                                                47146
281                                                43953
282                                                67332
283                                                48087
284                                                48685
285                                                44390
286                                                53539
287                                                59949
288                                                63108
289                                                66115
290                                                62854
291                                                64299
292                                                48281
293                                                44771
294                                                44903
295                                                42687
296                                                40785
297                                                52053
298                                                52718
299                                                54586
300                                                58902
301                                                53252
302                                                60616
303                                                64309
304                                                80019
305                                                68967
306                                                67866
307                                                61178
308                                                80576
309                                                67607
310                                                69004
311                                                68759
312                                                66541
313                                                69458
314                                                71543
315                                                81224
316                                                73289
317                                                65742
318                                                69372
319                                                71026
320                                                55813
321                                                82017
322                                                65973
323                                                54343
324                                                58090
325                                                69672
326                                                65430
327                                                70982
328                                                70514
329                                                83573
330                                                67952
331                                                83730
332                                                73828
333                                                56581
334                                                60552
335                                                58358
336                                                64514
337                                                95354
338                                                56008
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                  232756
2                                                  266690
3                                                  232985
4                                                  221957
5                                                  222311
6                                                  215632
7                                                  195159
8                                                  216524
9                                                  211902
10                                                 215623
11                                                 217814
12                                                 221033
13                                                 222261
14                                                 206460
15                                                 273922
16                                                 270794
17                                                 240185
18                                                 233027
19                                                 222083
20                                                 208725
21                                                 193832
22                                                 183471
23                                                 209427
24                                                 188207
25                                                 157478
26                                                 254187
27                                                 212173
28                                                 218424
29                                                 210671
30                                                 221330
31                                                 209443
32                                                 195991
33                                                 168597
34                                                 194576
35                                                 192474
36                                                 196469
37                                                 177355
38                                                 185199
39                                                 225397
40                                                 193578
41                                                 195791
42                                                 194761
43                                                 184721
44                                                 170581
45                                                 172676
46                                                 169908
47                                                 149459
48                                                 177145
49                                                 150536
50                                                 121614
51                                                 103573
52                                                 137480
53                                                  99998
54                                                  90984
55                                                  96836
56                                                  86153
57                                                  81897
58                                                  93901
59                                                 112542
60                                                 120964
61                                                  92064
62                                                  82276
63                                                 108458
64                                                 123430
65                                                 121961
66                                                 117424
67                                                 112715
68                                                 114241
69                                                 107653
70                                                 133979
71                                                 171379
72                                                 218247
73                                                 211671
74                                                 244730
75                                                 302735
76                                                 278664
77                                                 292541
78                                                 356022
79                                                 328206
80                                                 319712
81                                                 328654
82                                                 373358
83                                                 341992
84                                                 329738
85                                                 353196
86                                                 336388
87                                                 291449
88                                                 325243
89                                                 382295
90                                                 358016
91                                                 334735
92                                                 311357
93                                                 299003
94                                                 317337
95                                                 325582
96                                                 302211
97                                                 267509
98                                                 278558
99                                                 424390
100                                                287234
101                                                272665
102                                                250106
103                                                261931
104                                                257268
105                                                111845
106                                                116855
107                                                115250
108                                                 90168
109                                                100234
110                                                121946
111                                                107055
112                                                108415
113                                                108334
114                                                125817
115                                                123891
116                                                137027
117                                                138380
118                                                120405
119                                                119703
120                                                128019
121                                                141899
122                                                168178
123                                                157338
124                                                165218
125                                                190313
126                                                159763
127                                                152942
128                                                151425
129                                                178446
130                                                207945
131                                                224121
132                                                191069
133                                                191313
134                                                188258
135                                                141320
136                                                153502
137                                                137755
138                                                134826
139                                                150595
140                                                157509
141                                                162007
142                                                163002
143                                                161909
144                                                150682
145                                                138133
146                                                143587
147                                                156630
148                                                161252
149                                                155642
150                                                177817
151                                                158535
152                                                214138
153                                                148336
154                                                106559
155                                                 95138
156                                                109029
157                                                 90900
158                                                 92955
159                                                 94088
160                                                108244
161                                                116797
162                                                110662
163                                                114573
164                                                119593
165                                                146358
166                                                121091
167                                                122951
168                                                151045
169                                                135053
170                                                     0
171                                                     2
172                                                     3
173                                                     2
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     3
181                                                     3
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     3
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     3
195                                                    19
196                                                     0
197                                                     3
198                                                    43
199                                                     6
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     1
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     3
218                                                     0
219                                                     0
220                                                     1
221                                                     3
222                                                    11
223                                                   177
224                                                    49
225                                                    11
226                                                     9
227                                                    12
228                                                     8
229                                                     0
230                                                     2
231                                                     6
232                                                     8
233                                                    12
234                                                    22
235                                                    11
236                                                     3
237                                                    28
238                                                     0
239                                                     9
240                                                     3
241                                                    36
242                                                     0
243                                                    12
244                                                    26
245                                                     8
246                                                    11
247                                                    22
248                                                    19
249                                                    36
250                                                     3
251                                                     8
252                                                     0
253                                                     5
254                                                     0
255                                                     0
256                                                     0
257                                                     3
258                                                     6
259                                                     0
260                                                     0
261                                                     8
262                                                     8
263                                                     0
264                                                     3
265                                                     5
266                                                    12
267                                                    97
268                                                    79
269                                                   124
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     2
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     2
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     2
294                                                     0
295                                                     0
296                                                     0
297                                                     5
298                                                     9
299                                                     5
300                                                     9
301                                                     0
302                                                     0
303                                                     6
304                                                    12
305                                                    13
306                                                     8
307                                                     8
308                                                     2
309                                                     8
310                                                     5
311                                                     8
312                                                     8
313                                                    17
314                                                     8
315                                                    39
316                                                     9
317                                                     6
318                                                     3
319                                                     3
320                                                    20
321                                                     9
322                                                    23
323                                                     6
324                                                     3
325                                                     5
326                                                     6
327                                                     0
328                                                     8
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                        1212707                      1090140
2                        1209165                      1061704
3                        1592438                      1404012
4                        1510267                      1376641
5                        1081497                       991569
6                        1069306                       979613
7                        1152919                      1091769
8                         855637                       813006
9                         651916                       626994
10                        618032                       606393
11                        646991                       633894
12                        555042                       533478
13                        472090                       442924
14                        515246                       496868
15                        552210                       529779
16                        584420                       502057
17                        629688                       591630
18                        649476                       640601
19                        545249                       535184
20                        577652                       572197
21                        580769                       570729
22                        566776                       559588
23                        598608                       590750
24                        601234                       577737
25                        622966                       601359
26                        762371                       731692
27                        654819                       630301
28                        662032                       634245
29                        683201                       657421
30                        678869                       651945
31                        580523                       554225
32                        574120                       546421
33                        547244                       525805
34                        634791                       613601
35                        631798                       609389
36                        576600                       548252
37                        598286                       524768
38                        614444                       532714
39                        601125                       539258
40                        669440                       605995
41                        713009                       681404
42                        662527                       632904
43                        671313                       642307
44                        552070                       515386
45                        635319                       596185
46                        594412                       544991
47                        612526                       553683
48                        600149                       556205
49                        570610                       521004
50                        559991                       520299
51                        546048                       510560
52                        528452                       477193
53                       1543244                      1405420
54                       1482119                      1313839
55                       1653880                      1451476
56                       1610488                      1553052
57                       1282556                      1202939
58                       1251188                      1161050
59                       1040994                       952497
60                        829275                       763935
61                        734908                       686375
62                       1289999                      1201529
63                       1533380                      1423671
64                       1481099                      1379624
65                       1507257                      1420424
66                       1675327                      1583962
67                       1535468                      1434870
68                       1671422                      1576950
69                       1892992                      1819642
70                       2001072                      1924480
71                       1778186                      1679257
72                       1580995                      1476928
73                       1741286                      1616257
74                       1710965                      1581211
75                       1634174                      1526434
76                       1688132                      1563979
77                       1912392                      1771310
78                       1882796                      1722082
79                       1778214                      1641401
80                       1754229                      1622057
81                       1709717                      1571460
82                       1938636                      1739148
83                       1739179                      1546212
84                       1754547                      1594507
85                       1499923                      1325206
86                       2140204                      1606312
87                       1924049                      1421240
88                       1744793                      1467255
89                       1769205                      1659338
90                       1944064                      1740557
91                       1673304                      1454479
92                       2207293                      1926354
93                       2092118                      1883192
94                       2094020                      1888086
95                       2234833                      1981931
96                       2391861                      2091748
97                       2256054                      2073467
98                       2555663                      2207055
99                       3056113                      2693843
100                      2024180                      1874982
101                      2285896                      2122673
102                      1759854                      1579234
103                      2131754                      1793640
104                      2301885                      1950429
105                      1538195                      1461095
106                      1360608                      1277612
107                      1310921                      1229947
108                      1378241                      1291299
109                      1449838                      1365781
110                      1181616                      1093008
111                      1434759                      1328429
112                      1337035                      1248089
113                      1181948                      1105520
114                      1222284                      1165131
115                       912892                       856749
116                       881912                       822315
117                       806432                       747128
118                       853098                       794746
119                       858056                       801573
120                       911326                       860705
121                       961878                       904618
122                       902975                       839520
123                       892415                       830646
124                      1071307                       986593
125                      1245968                      1160556
126                      1290309                      1201487
127                      1032288                       948516
128                      1097188                      1018813
129                      1085561                      1007608
130                      1838138                      1767977
131                      1913364                      1844798
132                      2123362                      2061235
133                      2066074                      1989159
134                      2168105                      2095827
135                      2407209                      2348868
136                      1905813                      1829396
137                      1756380                      1685047
138                      2289867                      2216400
139                      2399302                      2314634
140                      1845111                      1770414
141                      1925543                      1849563
142                      1658970                      1585488
143                      2032219                      1957059
144                      2132149                      2059479
145                      1698370                      1629800
146                      1772455                      1709046
147                      1603341                      1528140
148                      1791637                      1727385
149                      1954663                      1870563
150                      1918345                      1728825
151                      2403372                      2247565
152                      3462626                      3403581
153                      2601999                      2504422
154                      2297516                      2207075
155                      2036110                      1910596
156                      1985818                      1807927
157                      1940375                      1762034
158                      1946729                      1827363
159                      2241705                      2116308
160                      2352805                      2230913
161                      2121379                      1992549
162                      2025906                      1908897
163                      1764933                      1640897
164                      2030139                      1930312
165                      2176917                      2072478
166                      1572822                      1480528
167                      1518581                      1431899
168                      1320849                      1226559
169                      1565930                      1465321
170                        33376                        29507
171                        38850                        25536
172                        38475                        24360
173                        25842                        25661
174                        21991                        21672
175                        22976                        22516
176                        21931                        21274
177                        21777                        20005
178                        20873                        20159
179                        16148                        15175
180                         9016                         7989
181                         6668                         6608
182                         6321                         6281
183                         9103                         9093
184                         4836                         4803
185                         5648                         5608
186                         8694                         8694
187                        10797                        10797
188                        13122                        13122
189                        13574                        13574
190                        10423                        10423
191                         9235                         9235
192                         8856                         8856
193                         9864                         9864
194                         8876                         8867
195                        10565                        10565
196                         8345                         8341
197                        10013                        10010
198                         9734                         9734
199                        12394                        12394
200                        13524                        13524
201                        11386                        11386
202                        11667                        11667
203                        13032                        13032
204                        13340                        13340
205                        13403                        13403
206                        10824                        10824
207                        10134                        10134
208                        12436                        12436
209                        10204                        10204
210                         7303                         7303
211                         7123                         7123
212                        11711                        11711
213                        12478                        12478
214                         8474                         8471
215                         9365                         9365
216                        13762                        13762
217                        11697                        11697
218                        12530                        12530
219                        13453                        13453
220                         8421                         8421
221                         9144                         9144
222                        53862                        43478
223                        43552                        37872
224                        48304                        37234
225                        41506                        38051
226                        40973                        34502
227                        44606                        39261
228                        48370                        38872
229                        40540                        27969
230                        25483                        17096
231                        13448                        13409
232                        27615                        27404
233                        45928                        45197
234                        52760                        46875
235                        37154                        32297
236                        42460                        36712
237                        68068                        65804
238                        75905                        72625
239                        75859                        74992
240                        81288                        80495
241                        96496                        88975
242                       108825                        81490
243                        82692                        78992
244                        80650                        70511
245                        80290                        80259
246                        93136                        92966
247                        74330                        72414
248                        66646                        66565
249                        71027                        70936
250                        65963                        65924
251                        67725                        67139
252                        80494                        79987
253                        86021                        86007
254                        73453                        73429
255                        89635                        89475
256                        76158                        76043
257                        89403                        89320
258                        85959                        85340
259                        82812                        78413
260                        73786                        63389
261                        77817                        62301
262                        67395                        60109
263                        80573                        67515
264                        92977                        92548
265                       102985                       102375
266                        64914                        62864
267                        59941                        48969
268                        59304                        42734
269                        58148                        44999
270                        54036                        17414
271                        43062                        22826
272                        60677                        45418
273                        37445                        30530
274                        58626                        58527
275                        55053                        54985
276                        46760                        46698
277                        48302                        48263
278                        54142                        54090
279                        44781                        44757
280                        49055                        49022
281                        48939                        48886
282                        50527                        50479
283                        52273                        52248
284                        56007                        55961
285                        45352                        45271
286                        44744                        44692
287                        41786                        41755
288                        40750                        40700
289                        37143                        37121
290                        36688                        36679
291                        44514                        44485
292                        41863                        41815
293                        66600                        66546
294                        66279                        66110
295                        56744                        55680
296                        57875                        57767
297                        55539                        55471
298                        55667                        55589
299                        95917                        95827
300                        84090                        83873
301                        91312                        89271
302                        88692                        82117
303                        82543                        82389
304                        94809                        94662
305                        96903                        96714
306                        86301                        86037
307                        76873                        75430
308                       102909                       102120
309                       103249                        99212
310                       100143                        86815
311                        96894                        87694
312                        89244                        82025
313                        91131                        87216
314                        87884                        84717
315                       102893                        81020
316                       110730                        96032
317                       126350                        89589
318                       119880                       102261
319                        84835                        83854
320                        68554                        66790
321                        50493                        49406
322                        68271                        52929
323                        54039                        49913
324                        56834                        55364
325                        74538                        69842
326                        67433                        50964
327                        89631                        89424
328                       102871                       102718
329                       120484                       120465
330                       136938                       136877
331                        66320                        66274
332                        65471                        65435
333                        81376                        81344
334                        89582                        89528
335                        82570                        82563
336                        83050                        83023
337                        69074                        69055
338                        57341                        57271
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                         110737                          11829.59 conventional
2                         136747                          10714.52 conventional
3                         180150                           8275.96 conventional
4                         126664                           6962.06 conventional
5                          82338                           7590.24 conventional
6                          82444                           7249.07 conventional
7                          53798                           7352.34 conventional
8                          36306                           6324.22 conventional
9                          19805                           5117.73 conventional
10                          7596                           4042.59 conventional
11                         10780                           2316.59 conventional
12                         18373                           3190.67 conventional
13                         25572                           3594.34 conventional
14                         13336                           5041.79 conventional
15                         17304                           5126.49 conventional
16                         76298                           6065.20 conventional
17                         33545                           4513.07 conventional
18                          5989                           2885.76 conventional
19                          6574                           3491.36 conventional
20                          2082                           3372.38 conventional
21                          7357                           2683.59 conventional
22                          4954                           2234.75 conventional
23                          5181                           2676.28 conventional
24                         20674                           2822.80 conventional
25                         18032                           3574.73 conventional
26                         27317                           3362.15 conventional
27                         21862                           2656.02 conventional
28                         24278                           3510.13 conventional
29                         22961                           2818.56 conventional
30                         23422                           3501.78 conventional
31                         23083                           3215.29 conventional
32                         24486                           3213.40 conventional
33                         18497                           2941.83 conventional
34                         18366                           2823.53 conventional
35                         19736                           2673.97 conventional
36                         26484                           1863.18 conventional
37                         71989                           1529.08 conventional
38                         79865                           1864.19 conventional
39                         59212                           2654.56 conventional
40                         61959                           1486.34 conventional
41                         30059                           1546.29 conventional
42                         27625                           1998.56 conventional
43                         27241                           1764.61 conventional
44                         34846                           1838.10 conventional
45                         36941                           2193.32 conventional
46                         47018                           2403.05 conventional
47                         56311                           2532.59 conventional
48                         41203                           2740.84 conventional
49                         46809                           2796.24 conventional
50                         36501                           3190.49 conventional
51                         31874                           3613.09 conventional
52                         47883                           3375.80 conventional
53                         99070                          38754.60 conventional
54                        135368                          32911.64 conventional
55                        177400                          25004.38 conventional
56                         27830                          29605.75 conventional
57                         49697                          29919.69 conventional
58                         61429                          28709.03 conventional
59                         60542                          27954.84 conventional
60                         35998                          29342.75 conventional
61                         25242                          23290.74 conventional
62                         55800                          32670.58 conventional
63                         73118                          36591.19 conventional
64                         74895                          26579.43 conventional
65                         58294                          28538.34 conventional
66                         53653                          37712.62 conventional
67                         59481                          41117.01 conventional
68                         66072                          28399.83 conventional
69                         47477                          25873.30 conventional
70                         46602                          29990.19 conventional
71                         61140                          37788.55 conventional
72                         73033                          31034.45 conventional
73                         89290                          35738.22 conventional
74                         95426                          34328.61 conventional
75                         82026                          25714.93 conventional
76                         97435                          26718.84 conventional
77                        107540                          33541.91 conventional
78                        119871                          40842.24 conventional
79                        107904                          28909.54 conventional
80                        101883                          30289.93 conventional
81                        110755                          27501.39 conventional
82                        171242                          28247.08 conventional
83                        160781                          32186.13 conventional
84                        129666                          30374.15 conventional
85                        155366                          19350.79 conventional
86                        508756                          25136.12 conventional
87                        485685                          17124.03 conventional
88                        257015                          20523.37 conventional
89                         88791                          21076.61 conventional
90                        183826                          19681.74 conventional
91                        201547                          17277.53 conventional
92                        259875                          21064.41 conventional
93                        189928                          18996.98 conventional
94                        186808                          19126.71 conventional
95                        230049                          22853.11 conventional
96                        282243                          17870.86 conventional
97                        167309                          15277.68 conventional
98                        333030                          15578.37 conventional
99                        344775                          17495.30 conventional
100                       134693                          14505.17 conventional
101                       147882                          15340.52 conventional
102                       162290                          18330.90 conventional
103                       321614                          16499.43 conventional
104                       340852                          10604.73 conventional
105                        20554                          56546.16 conventional
106                        21328                          61667.46 conventional
107                        21221                          59752.84 conventional
108                        27354                          59588.87 conventional
109                        30856                          53201.00 conventional
110                        27254                          61354.00 conventional
111                        47615                          58715.00 conventional
112                        30662                          58284.00 conventional
113                        20488                          55940.33 conventional
114                        22762                          34390.82 conventional
115                        21482                          34660.62 conventional
116                        22734                          36862.63 conventional
117                        25532                          33772.40 conventional
118                        25612                          32739.56 conventional
119                        24212                          32271.85 conventional
120                        18473                          32148.41 conventional
121                        19580                          37680.03 conventional
122                        21358                          42096.79 conventional
123                        19482                          42286.86 conventional
124                        33842                          50872.74 conventional
125                        32819                          52592.72 conventional
126                        30453                          58369.11 conventional
127                        28337                          55434.68 conventional
128                        20424                          57950.82 conventional
129                        22434                          55518.85 conventional
130                         5215                          64946.25 conventional
131                         4337                          64228.75 conventional
132                         5203                          56923.82 conventional
133                         5913                          71002.81 conventional
134                         5599                          66679.22 conventional
135                         4428                          53913.50 conventional
136                         3224                          73193.24 conventional
137                         3943                          67390.65 conventional
138                         4799                          68667.52 conventional
139                         3602                          81066.26 conventional
140                         2533                          72163.82 conventional
141                         6323                          69657.83 conventional
142                         1756                          71725.09 conventional
143                        13133                          62027.18 conventional
144                        16199                          56470.26 conventional
145                         1992                          66577.51 conventional
146                         5147                          58261.10 conventional
147                         7224                          67977.20 conventional
148                         9179                          55073.37 conventional
149                        42309                          41791.54 conventional
150                       145455                          44065.49 conventional
151                       101368                          54438.63 conventional
152                         7839                          51205.38 conventional
153                        48343                          49233.88 conventional
154                        61563                          28878.04 conventional
155                        99913                          25601.06 conventional
156                       144376                          33515.09 conventional
157                       151334                          27007.76 conventional
158                        37434                          81932.07 conventional
159                        38597                          86800.09 conventional
160                        41105                          80786.25 conventional
161                        47127                          81702.86 conventional
162                        42064                          74944.05 conventional
163                        47010                          77026.30 conventional
164                        31302                          68525.54 conventional
165                        34196                          70242.80 conventional
166                        24546                          67748.62 conventional
167                        24802                          61880.70 conventional
168                        25391                          68898.86 conventional
169                        25951                          74657.62 conventional
170                         3869                              0.00      organic
171                        13314                              0.00      organic
172                        14115                              0.00      organic
173                          181                              0.00      organic
174                          319                              0.00      organic
175                          460                              0.00      organic
176                          657                              0.00      organic
177                         1771                              0.00      organic
178                          714                              0.00      organic
179                          973                              0.00      organic
180                         1027                              0.00      organic
181                           60                              0.00      organic
182                           40                              0.00      organic
183                           10                              0.00      organic
184                           33                              0.00      organic
185                           40                              0.00      organic
186                            0                              0.00      organic
187                            0                              0.00      organic
188                            0                              0.00      organic
189                            0                              0.00      organic
190                            0                              0.00      organic
191                            0                              0.00      organic
192                            0                              0.00      organic
193                            0                              0.00      organic
194                            9                              0.00      organic
195                            0                              0.00      organic
196                            3                              0.00      organic
197                            3                              0.00      organic
198                            0                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                            0                              0.00      organic
202                            0                              0.00      organic
203                            0                              0.00      organic
204                            0                              0.00      organic
205                            0                              0.00      organic
206                            0                              0.00      organic
207                            0                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                            0                              0.00      organic
214                            3                              0.00      organic
215                            0                              0.00      organic
216                            0                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                            0                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                        10384                              0.00      organic
223                         5680                              0.00      organic
224                        11070                              0.00      organic
225                         3455                              0.00      organic
226                         6471                              0.00      organic
227                         5346                              0.00      organic
228                         9498                              0.00      organic
229                        12571                              0.00      organic
230                         8387                              0.00      organic
231                           39                              0.00      organic
232                          210                              0.00      organic
233                          731                              0.00      organic
234                         5885                              0.00      organic
235                         4858                              0.00      organic
236                         5749                              0.00      organic
237                         2265                              0.00      organic
238                         3280                              0.00      organic
239                          867                              0.00      organic
240                          792                              0.00      organic
241                         7522                              0.00      organic
242                        27335                              0.00      organic
243                         3700                              0.00      organic
244                        10139                              0.00      organic
245                           32                              0.00      organic
246                          170                              0.00      organic
247                         1916                              0.00      organic
248                           81                              0.00      organic
249                           91                              0.00      organic
250                           39                              0.00      organic
251                          587                              0.00      organic
252                          507                              0.00      organic
253                           14                              0.00      organic
254                           24                              0.00      organic
255                          160                              0.00      organic
256                          115                              0.00      organic
257                           83                              0.00      organic
258                          619                              0.00      organic
259                         4400                              0.00      organic
260                        10397                              0.00      organic
261                        15517                              0.00      organic
262                         7286                              0.00      organic
263                        13058                              0.00      organic
264                          430                              0.00      organic
265                          610                              0.00      organic
266                         2050                              0.00      organic
267                        10972                              0.00      organic
268                        16569                              0.00      organic
269                        13149                              0.00      organic
270                        36622                              0.00      organic
271                        20236                              0.00      organic
272                        15259                              0.00      organic
273                         6915                              0.00      organic
274                           99                              0.00      organic
275                           68                              0.00      organic
276                           62                              0.00      organic
277                           38                              0.00      organic
278                           53                              0.00      organic
279                           25                              0.00      organic
280                           33                              0.00      organic
281                           54                              0.00      organic
282                           48                              0.00      organic
283                           25                              0.00      organic
284                           45                              0.00      organic
285                           81                              0.00      organic
286                           52                              0.00      organic
287                           31                              0.00      organic
288                           50                              0.00      organic
289                           22                              0.00      organic
290                            9                              0.00      organic
291                           29                              0.00      organic
292                           47                              0.00      organic
293                           53                              0.00      organic
294                          169                              0.00      organic
295                         1063                              0.00      organic
296                          107                              0.00      organic
297                           67                              0.00      organic
298                           78                              0.00      organic
299                           90                              0.00      organic
300                          217                              0.00      organic
301                         2041                              0.00      organic
302                         6575                              0.00      organic
303                          154                              0.00      organic
304                          148                              0.00      organic
305                          189                              0.00      organic
306                          264                              0.00      organic
307                         1443                              0.00      organic
308                          789                              0.00      organic
309                         4036                              0.00      organic
310                        13328                              0.00      organic
311                         9200                              0.00      organic
312                         7219                              0.00      organic
313                         3916                              0.00      organic
314                         3167                              0.00      organic
315                        21873                              0.00      organic
316                        14698                              0.00      organic
317                        36761                              0.00      organic
318                        17620                              0.00      organic
319                          981                              0.00      organic
320                         1764                              0.00      organic
321                         1087                              0.00      organic
322                        15342                              0.00      organic
323                         4126                              0.00      organic
324                         1470                              0.00      organic
325                         4695                              0.00      organic
326                        16469                              0.00      organic
327                          207                              0.00      organic
328                          153                              0.00      organic
329                           19                              0.00      organic
330                           61                              0.00      organic
331                           47                              0.00      organic
332                           36                              0.00      organic
333                           32                              0.00      organic
334                           55                              0.00      organic
335                            7                              0.00      organic
336                           27                              0.00      organic
337                           19                              0.00      organic
338                           70                              0.00      organic
    year (AÑO) region (REGION)
1         2015      California
2         2015      California
3         2015      California
4         2015      California
5         2015      California
6         2015      California
7         2015      California
8         2015      California
9         2015      California
10        2015      California
11        2015      California
12        2015      California
13        2015      California
14        2015      California
15        2015      California
16        2015      California
17        2015      California
18        2015      California
19        2015      California
20        2015      California
21        2015      California
22        2015      California
23        2015      California
24        2015      California
25        2015      California
26        2015      California
27        2015      California
28        2015      California
29        2015      California
30        2015      California
31        2015      California
32        2015      California
33        2015      California
34        2015      California
35        2015      California
36        2015      California
37        2015      California
38        2015      California
39        2015      California
40        2015      California
41        2015      California
42        2015      California
43        2015      California
44        2015      California
45        2015      California
46        2015      California
47        2015      California
48        2015      California
49        2015      California
50        2015      California
51        2015      California
52        2015      California
53        2016      California
54        2016      California
55        2016      California
56        2016      California
57        2016      California
58        2016      California
59        2016      California
60        2016      California
61        2016      California
62        2016      California
63        2016      California
64        2016      California
65        2016      California
66        2016      California
67        2016      California
68        2016      California
69        2016      California
70        2016      California
71        2016      California
72        2016      California
73        2016      California
74        2016      California
75        2016      California
76        2016      California
77        2016      California
78        2016      California
79        2016      California
80        2016      California
81        2016      California
82        2016      California
83        2016      California
84        2016      California
85        2016      California
86        2016      California
87        2016      California
88        2016      California
89        2016      California
90        2016      California
91        2016      California
92        2016      California
93        2016      California
94        2016      California
95        2016      California
96        2016      California
97        2016      California
98        2016      California
99        2016      California
100       2016      California
101       2016      California
102       2016      California
103       2016      California
104       2016      California
105       2017      California
106       2017      California
107       2017      California
108       2017      California
109       2017      California
110       2017      California
111       2017      California
112       2017      California
113       2017      California
114       2017      California
115       2017      California
116       2017      California
117       2017      California
118       2017      California
119       2017      California
120       2017      California
121       2017      California
122       2017      California
123       2017      California
124       2017      California
125       2017      California
126       2017      California
127       2017      California
128       2017      California
129       2017      California
130       2017      California
131       2017      California
132       2017      California
133       2017      California
134       2017      California
135       2017      California
136       2017      California
137       2017      California
138       2017      California
139       2017      California
140       2017      California
141       2017      California
142       2017      California
143       2017      California
144       2017      California
145       2017      California
146       2017      California
147       2017      California
148       2017      California
149       2017      California
150       2017      California
151       2017      California
152       2017      California
153       2017      California
154       2017      California
155       2017      California
156       2017      California
157       2017      California
158       2018      California
159       2018      California
160       2018      California
161       2018      California
162       2018      California
163       2018      California
164       2018      California
165       2018      California
166       2018      California
167       2018      California
168       2018      California
169       2018      California
170       2015      California
171       2015      California
172       2015      California
173       2015      California
174       2015      California
175       2015      California
176       2015      California
177       2015      California
178       2015      California
179       2015      California
180       2015      California
181       2015      California
182       2015      California
183       2015      California
184       2015      California
185       2015      California
186       2015      California
187       2015      California
188       2015      California
189       2015      California
190       2015      California
191       2015      California
192       2015      California
193       2015      California
194       2015      California
195       2015      California
196       2015      California
197       2015      California
198       2015      California
199       2015      California
200       2015      California
201       2015      California
202       2015      California
203       2015      California
204       2015      California
205       2015      California
206       2015      California
207       2015      California
208       2015      California
209       2015      California
210       2015      California
211       2015      California
212       2015      California
213       2015      California
214       2015      California
215       2015      California
216       2015      California
217       2015      California
218       2015      California
219       2015      California
220       2015      California
221       2015      California
222       2016      California
223       2016      California
224       2016      California
225       2016      California
226       2016      California
227       2016      California
228       2016      California
229       2016      California
230       2016      California
231       2016      California
232       2016      California
233       2016      California
234       2016      California
235       2016      California
236       2016      California
237       2016      California
238       2016      California
239       2016      California
240       2016      California
241       2016      California
242       2016      California
243       2016      California
244       2016      California
245       2016      California
246       2016      California
247       2016      California
248       2016      California
249       2016      California
250       2016      California
251       2016      California
252       2016      California
253       2016      California
254       2016      California
255       2016      California
256       2016      California
257       2016      California
258       2016      California
259       2016      California
260       2016      California
261       2016      California
262       2016      California
263       2016      California
264       2016      California
265       2016      California
266       2016      California
267       2016      California
268       2016      California
269       2016      California
270       2016      California
271       2016      California
272       2016      California
273       2016      California
274       2017      California
275       2017      California
276       2017      California
277       2017      California
278       2017      California
279       2017      California
280       2017      California
281       2017      California
282       2017      California
283       2017      California
284       2017      California
285       2017      California
286       2017      California
287       2017      California
288       2017      California
289       2017      California
290       2017      California
291       2017      California
292       2017      California
293       2017      California
294       2017      California
295       2017      California
296       2017      California
297       2017      California
298       2017      California
299       2017      California
300       2017      California
301       2017      California
302       2017      California
303       2017      California
304       2017      California
305       2017      California
306       2017      California
307       2017      California
308       2017      California
309       2017      California
310       2017      California
311       2017      California
312       2017      California
313       2017      California
314       2017      California
315       2017      California
316       2017      California
317       2017      California
318       2017      California
319       2017      California
320       2017      California
321       2017      California
322       2017      California
323       2017      California
324       2017      California
325       2017      California
326       2017      California
327       2018      California
328       2018      California
329       2018      California
330       2018      California
331       2018      California
332       2018      California
333       2018      California
334       2018      California
335       2018      California
336       2018      California
337       2018      California
338       2018      California

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

CHARLOTTE

    FRAME_Charlotte <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Charlotte",] )
   FRAME_Charlotte
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.96
2                                   0.98
3                                   0.95
4                                   0.99
5                                   0.95
6                                   1.00
7                                   1.01
8                                   1.03
9                                   1.11
10                                  1.27
11                                  1.26
12                                  1.14
13                                  1.22
14                                  1.09
15                                  1.20
16                                  1.19
17                                  1.01
18                                  1.20
19                                  1.15
20                                  1.24
21                                  1.21
22                                  1.24
23                                  1.23
24                                  1.19
25                                  1.18
26                                  1.18
27                                  1.17
28                                  1.17
29                                  1.15
30                                  1.15
31                                  1.19
32                                  1.20
33                                  1.21
34                                  1.19
35                                  1.00
36                                  1.20
37                                  1.18
38                                  1.17
39                                  1.19
40                                  1.23
41                                  1.19
42                                  1.19
43                                  1.25
44                                  1.18
45                                  1.08
46                                  1.22
47                                  1.17
48                                  0.98
49                                  1.18
50                                  1.25
51                                  1.26
52                                  1.19
53                                  1.25
54                                  1.24
55                                  1.33
56                                  1.34
57                                  1.54
58                                  1.57
59                                  1.64
60                                  1.57
61                                  1.58
62                                  1.52
63                                  1.39
64                                  1.51
65                                  1.48
66                                  1.47
67                                  1.43
68                                  1.42
69                                  1.33
70                                  1.40
71                                  1.38
72                                  1.40
73                                  1.43
74                                  1.48
75                                  1.46
76                                  1.43
77                                  1.26
78                                  1.20
79                                  1.28
80                                  1.21
81                                  1.25
82                                  1.25
83                                  1.21
84                                  1.26
85                                  1.12
86                                  1.05
87                                  1.04
88                                  1.12
89                                  1.14
90                                  1.10
91                                  1.12
92                                  1.14
93                                  1.15
94                                  1.05
95                                  1.09
96                                  1.05
97                                  1.07
98                                  1.00
99                                  0.80
100                                 0.95
101                                 0.92
102                                 0.98
103                                 0.95
104                                 0.96
105                                 0.93
106                                 1.33
107                                 1.26
108                                 1.02
109                                 1.26
110                                 1.40
111                                 1.40
112                                 1.44
113                                 1.47
114                                 1.49
115                                 1.64
116                                 1.70
117                                 1.77
118                                 1.76
119                                 1.72
120                                 1.61
121                                 1.69
122                                 1.65
123                                 1.58
124                                 1.52
125                                 1.47
126                                 1.43
127                                 1.40
128                                 1.39
129                                 1.38
130                                 1.32
131                                 1.36
132                                 1.33
133                                 1.43
134                                 1.38
135                                 1.49
136                                 1.50
137                                 1.50
138                                 1.41
139                                 1.36
140                                 1.53
141                                 1.50
142                                 1.56
143                                 1.54
144                                 1.48
145                                 1.48
146                                 1.47
147                                 1.55
148                                 1.41
149                                 1.26
150                                 1.33
151                                 1.25
152                                 0.95
153                                 1.33
154                                 1.18
155                                 1.37
156                                 1.28
157                                 1.21
158                                 1.32
159                                 0.99
160                                 1.27
161                                 1.32
162                                 1.34
163                                 1.36
164                                 1.18
165                                 0.99
166                                 1.37
167                                 1.11
168                                 1.38
169                                 1.36
170                                 1.90
171                                 1.90
172                                 1.90
173                                 1.95
174                                 1.96
175                                 1.97
176                                 1.94
177                                 1.91
178                                 1.92
179                                 1.93
180                                 1.97
181                                 1.94
182                                 2.06
183                                 2.16
184                                 1.97
185                                 2.02
186                                 2.01
187                                 2.01
188                                 2.06
189                                 2.04
190                                 1.98
191                                 2.11
192                                 2.08
193                                 2.05
194                                 2.13
195                                 2.16
196                                 2.15
197                                 2.19
198                                 2.06
199                                 2.02
200                                 2.14
201                                 2.07
202                                 1.26
203                                 2.05
204                                 1.80
205                                 2.18
206                                 2.06
207                                 2.12
208                                 2.08
209                                 1.96
210                                 1.90
211                                 1.87
212                                 1.84
213                                 1.90
214                                 1.90
215                                 1.92
216                                 1.87
217                                 1.93
218                                 2.29
219                                 2.15
220                                 2.29
221                                 2.13
222                                 1.62
223                                 1.59
224                                 1.68
225                                 1.99
226                                 2.03
227                                 1.95
228                                 1.94
229                                 1.92
230                                 1.66
231                                 1.64
232                                 1.64
233                                 1.64
234                                 1.78
235                                 1.80
236                                 1.74
237                                 1.75
238                                 1.81
239                                 1.78
240                                 1.78
241                                 1.82
242                                 1.65
243                                 1.64
244                                 1.62
245                                 1.58
246                                 1.81
247                                 1.72
248                                 1.59
249                                 1.72
250                                 1.76
251                                 1.60
252                                 1.66
253                                 1.71
254                                 1.69
255                                 1.79
256                                 1.68
257                                 1.67
258                                 1.77
259                                 1.60
260                                 1.71
261                                 1.69
262                                 1.57
263                                 1.70
264                                 1.79
265                                 1.83
266                                 1.81
267                                 1.75
268                                 1.82
269                                 1.75
270                                 1.76
271                                 1.92
272                                 1.77
273                                 1.78
274                                 1.71
275                                 1.83
276                                 1.86
277                                 1.91
278                                 1.90
279                                 2.11
280                                 2.13
281                                 2.15
282                                 2.22
283                                 2.02
284                                 2.08
285                                 2.38
286                                 2.67
287                                 2.82
288                                 2.55
289                                 2.77
290                                 2.80
291                                 2.82
292                                 2.83
293                                 2.48
294                                 2.35
295                                 2.36
296                                 2.07
297                                 2.00
298                                 1.99
299                                 2.06
300                                 2.09
301                                 1.99
302                                 2.03
303                                 2.15
304                                 2.47
305                                 2.50
306                                 2.48
307                                 2.21
308                                 2.31
309                                 2.53
310                                 2.58
311                                 2.05
312                                 2.02
313                                 1.95
314                                 2.01
315                                 1.96
316                                 1.86
317                                 1.78
318                                 1.70
319                                 1.67
320                                 1.63
321                                 1.62
322                                 1.50
323                                 1.48
324                                 1.50
325                                 1.49
326                                 1.70
327                                 1.77
328                                 1.75
329                                 1.73
330                                 1.88
331                                 1.91
332                                 1.83
333                                 1.92
334                                 1.89
335                                 1.76
336                                 1.62
337                                 1.45
338                                 1.08
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   156698
2                                                   139918
3                                                   157146
4                                                   156114
5                                                   138859
6                                                   133618
7                                                   169281
8                                                   164322
9                                                   171794
10                                                  140921
11                                                  156566
12                                                  167397
13                                                  146738
14                                                  168780
15                                                  161444
16                                                  171078
17                                                  227728
18                                                  179027
19                                                  203298
20                                                  178526
21                                                  173059
22                                                  179322
23                                                  173897
24                                                  187575
25                                                  182857
26                                                  216119
27                                                  193654
28                                                  201173
29                                                  207094
30                                                  199980
31                                                  194631
32                                                  212528
33                                                  190800
34                                                  192767
35                                                  261492
36                                                  182142
37                                                  180944
38                                                  204005
39                                                  177919
40                                                  178788
41                                                  182876
42                                                  183944
43                                                  159387
44                                                  176146
45                                                  201741
46                                                  156799
47                                                  150139
48                                                  254010
49                                                  167270
50                                                  152671
51                                                  159943
52                                                  166006
53                                                  155793
54                                                  144634
55                                                  145815
56                                                  154743
57                                                  131454
58                                                  135608
59                                                  144089
60                                                  142096
61                                                  142955
62                                                  167741
63                                                  190846
64                                                  178236
65                                                  178411
66                                                  189132
67                                                  182978
68                                                  180989
69                                                  204964
70                                                  187985
71                                                  193593
72                                                  195251
73                                                  196381
74                                                  187969
75                                                  193909
76                                                  196467
77                                                  233262
78                                                  233544
79                                                  200521
80                                                  238721
81                                                  209096
82                                                  209797
83                                                  235009
84                                                  203493
85                                                  215807
86                                                  253623
87                                                  249786
88                                                  217385
89                                                  212441
90                                                  210588
91                                                  192342
92                                                  189945
93                                                  205367
94                                                  236131
95                                                  208506
96                                                  215161
97                                                  193132
98                                                  204111
99                                                  325941
100                                                 214136
101                                                 207961
102                                                 206778
103                                                 196216
104                                                 203962
105                                                 346357
106                                                 182538
107                                                 189529
108                                                 277529
109                                                 220837
110                                                 170412
111                                                 179011
112                                                 190445
113                                                 187381
114                                                 183225
115                                                 168237
116                                                 175323
117                                                 178992
118                                                 180280
119                                                 186924
120                                                 192447
121                                                 187823
122                                                 200901
123                                                 208438
124                                                 212479
125                                                 209771
126                                                 206494
127                                                 212608
128                                                 215464
129                                                 209534
130                                                 222027
131                                                 224816
132                                                 211640
133                                                 201838
134                                                 224289
135                                                 226423
136                                                 237364
137                                                 227842
138                                                 224627
139                                                 303552
140                                                 235699
141                                                 220970
142                                                 203220
143                                                 201299
144                                                 231428
145                                                 225272
146                                                 206733
147                                                 207026
148                                                 202553
149                                                 241553
150                                                 198558
151                                                 206762
152                                                 359702
153                                                 213609
154                                                 247755
155                                                 196898
156                                                 219339
157                                                 217052
158                                                 258548
159                                                 396325
160                                                 279662
161                                                 259061
162                                                 249254
163                                                 224396
164                                                 262134
165                                                 411161
166                                                 247893
167                                                 331325
168                                                 251261
169                                                 243301
170                                                   2948
171                                                   2940
172                                                   2720
173                                                   2488
174                                                   2617
175                                                   2798
176                                                   3003
177                                                   3103
178                                                   3508
179                                                   3851
180                                                   3681
181                                                   3615
182                                                   3480
183                                                   2966
184                                                   4104
185                                                   3992
186                                                   4260
187                                                   4203
188                                                   4602
189                                                   4280
190                                                   4920
191                                                   3978
192                                                   3207
193                                                   3885
194                                                   3962
195                                                   3670
196                                                   3824
197                                                   3426
198                                                   4041
199                                                   4369
200                                                   4092
201                                                   4775
202                                                  11088
203                                                   4246
204                                                   4635
205                                                   3471
206                                                   4164
207                                                   3871
208                                                   3643
209                                                   3494
210                                                   4289
211                                                   3891
212                                                   4143
213                                                   3545
214                                                   3180
215                                                   3126
216                                                   4011
217                                                   3557
218                                                   2694
219                                                   2698
220                                                   2390
221                                                   2966
222                                                   6781
223                                                   7485
224                                                   7154
225                                                   5851
226                                                   6588
227                                                   7881
228                                                   8517
229                                                   9664
230                                                  10446
231                                                   9343
232                                                   9444
233                                                  10309
234                                                   8909
235                                                   7990
236                                                   9075
237                                                   9581
238                                                   8582
239                                                   8617
240                                                   9643
241                                                   9721
242                                                  10375
243                                                   8049
244                                                   8306
245                                                   7940
246                                                   5665
247                                                   5662
248                                                   7035
249                                                   5074
250                                                   4612
251                                                   6062
252                                                   5677
253                                                   5433
254                                                   6007
255                                                   5581
256                                                   5736
257                                                   6490
258                                                   4460
259                                                   5734
260                                                   5127
261                                                   4552
262                                                   4713
263                                                   4132
264                                                   4003
265                                                   3585
266                                                   3522
267                                                   3611
268                                                   3529
269                                                   3829
270                                                   3735
271                                                   2997
272                                                   4816
273                                                   4284
274                                                  11939
275                                                   9064
276                                                   9679
277                                                  10004
278                                                   9558
279                                                   8486
280                                                   7919
281                                                   9049
282                                                   9819
283                                                  11245
284                                                  11569
285                                                  10196
286                                                   9399
287                                                   8276
288                                                  10375
289                                                   8821
290                                                  10287
291                                                  10311
292                                                   9802
293                                                  10483
294                                                  10438
295                                                  10271
296                                                   8476
297                                                   9136
298                                                   9447
299                                                   8789
300                                                   8194
301                                                   9404
302                                                   8382
303                                                   9586
304                                                   7061
305                                                   8255
306                                                   7285
307                                                   9005
308                                                   8084
309                                                   7230
310                                                   7041
311                                                   8798
312                                                   8815
313                                                  10320
314                                                   8724
315                                                   6033
316                                                   7142
317                                                   6959
318                                                   8500
319                                                   9419
320                                                   9090
321                                                   8473
322                                                  10053
323                                                   8444
324                                                  10672
325                                                  11738
326                                                   7225
327                                                  12031
328                                                  11987
329                                                  13698
330                                                  11883
331                                                  11946
332                                                  12418
333                                                  11217
334                                                  13274
335                                                  12433
336                                                  12423
337                                                  19522
338                                                  28741
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    33070
2                                                    29500
3                                                    31727
4                                                    34117
5                                                    31911
6                                                    30029
7                                                    28544
8                                                    30861
9                                                    33372
10                                                   23094
11                                                   22805
12                                                   22942
13                                                   23649
14                                                   24398
15                                                   25923
16                                                   30123
17                                                   35127
18                                                   33512
19                                                   32281
20                                                   32129
21                                                   29916
22                                                   30200
23                                                   30901
24                                                   33382
25                                                   23581
26                                                   30803
27                                                   23694
28                                                   30951
29                                                   31248
30                                                   43524
31                                                   45688
32                                                   43629
33                                                   44340
34                                                   47626
35                                                   50203
36                                                   39481
37                                                   38330
38                                                   48793
39                                                   43112
40                                                   34498
41                                                   41638
42                                                   39138
43                                                   29980
44                                                   45465
45                                                   44680
46                                                   28228
47                                                   31509
48                                                   52916
49                                                   37383
50                                                   26463
51                                                   31586
52                                                   29419
53                                                   36126
54                                                   35762
55                                                   43745
56                                                   39222
57                                                   38976
58                                                   44045
59                                                   49399
60                                                   36841
61                                                   39376
62                                                   54982
63                                                   57529
64                                                   43326
65                                                   46365
66                                                   54111
67                                                   43116
68                                                   34441
69                                                   58888
70                                                   54875
71                                                   44007
72                                                   39824
73                                                   48640
74                                                   39820
75                                                   34250
76                                                   38199
77                                                   43388
78                                                   45221
79                                                   36686
80                                                   55098
81                                                   42197
82                                                   37431
83                                                   49748
84                                                   37008
85                                                   31854
86                                                   55854
87                                                   53590
88                                                   31821
89                                                   37151
90                                                   39142
91                                                   35648
92                                                   32858
93                                                   33582
94                                                   39326
95                                                   38806
96                                                   35461
97                                                   36397
98                                                   45730
99                                                   63129
100                                                  36408
101                                                  13437
102                                                  29998
103                                                  21276
104                                                  42857
105                                                  60767
106                                                  53317
107                                                  58017
108                                                  58726
109                                                  58826
110                                                  45363
111                                                  47542
112                                                  53681
113                                                  46741
114                                                  52951
115                                                  44544
116                                                  45267
117                                                  50018
118                                                  43576
119                                                  47607
120                                                  56018
121                                                  45960
122                                                  49285
123                                                  60886
124                                                  57231
125                                                  47263
126                                                  43174
127                                                  54840
128                                                  50924
129                                                  44530
130                                                  62331
131                                                  60812
132                                                  53140
133                                                  45497
134                                                  50866
135                                                  59350
136                                                  55170
137                                                  56078
138                                                  52616
139                                                  76881
140                                                  57129
141                                                  48221
142                                                  48495
143                                                  50325
144                                                  47420
145                                                  48844
146                                                  42389
147                                                  48009
148                                                  43410
149                                                  50330
150                                                  46010
151                                                  58974
152                                                  95176
153                                                  48873
154                                                  42582
155                                                  39546
156                                                  56740
157                                                  47765
158                                                  68089
159                                                  73274
160                                                  72848
161                                                  67460
162                                                  63442
163                                                  53547
164                                                  69728
165                                                  86709
166                                                  68667
167                                                  74247
168                                                  60751
169                                                  69157
170                                                    390
171                                                    327
172                                                    321
173                                                    162
174                                                    143
175                                                    234
176                                                    245
177                                                    333
178                                                    317
179                                                    342
180                                                    336
181                                                    253
182                                                    338
183                                                    292
184                                                    307
185                                                    327
186                                                    250
187                                                    274
188                                                    272
189                                                    151
190                                                    374
191                                                    359
192                                                    228
193                                                    200
194                                                    288
195                                                    279
196                                                    414
197                                                    336
198                                                    326
199                                                    279
200                                                    335
201                                                    405
202                                                    477
203                                                    466
204                                                    265
205                                                    296
206                                                    234
207                                                    256
208                                                    304
209                                                    268
210                                                    330
211                                                    205
212                                                    216
213                                                    190
214                                                    198
215                                                    219
216                                                    188
217                                                    210
218                                                    348
219                                                    347
220                                                    156
221                                                    152
222                                                     74
223                                                    129
224                                                    132
225                                                     93
226                                                    164
227                                                    102
228                                                    178
229                                                    209
230                                                    160
231                                                    148
232                                                    163
233                                                    246
234                                                    262
235                                                    281
236                                                    241
237                                                    251
238                                                    205
239                                                    339
240                                                    457
241                                                    409
242                                                    405
243                                                    422
244                                                    388
245                                                    343
246                                                    313
247                                                    279
248                                                    421
249                                                    325
250                                                    382
251                                                    343
252                                                    302
253                                                    437
254                                                    320
255                                                    300
256                                                    268
257                                                    370
258                                                    400
259                                                    352
260                                                    318
261                                                    311
262                                                    370
263                                                    280
264                                                    342
265                                                    291
266                                                    315
267                                                    308
268                                                    385
269                                                    354
270                                                    332
271                                                    470
272                                                    313
273                                                    749
274                                                     35
275                                                      7
276                                                      1
277                                                      4
278                                                     20
279                                                     21
280                                                      7
281                                                     16
282                                                     31
283                                                     43
284                                                     36
285                                                     64
286                                                     31
287                                                     13
288                                                     22
289                                                     23
290                                                     69
291                                                     18
292                                                     66
293                                                     92
294                                                     33
295                                                     29
296                                                     27
297                                                     23
298                                                     13
299                                                      6
300                                                     46
301                                                     32
302                                                     80
303                                                    285
304                                                    296
305                                                    314
306                                                    257
307                                                    421
308                                                    146
309                                                    291
310                                                    281
311                                                    300
312                                                    248
313                                                    278
314                                                    276
315                                                    290
316                                                    227
317                                                    330
318                                                    220
319                                                    300
320                                                    148
321                                                    141
322                                                    132
323                                                     92
324                                                    149
325                                                    235
326                                                    121
327                                                     18
328                                                     30
329                                                     29
330                                                     31
331                                                     36
332                                                     23
333                                                      7
334                                                     26
335                                                     21
336                                                      9
337                                                     18
338                                                     22
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  62956
2                                                  55521
3                                                  62544
4                                                  63075
5                                                  53471
6                                                  53645
7                                                  80245
8                                                  54456
9                                                  47080
10                                                 38357
11                                                 54519
12                                                 45669
13                                                 44671
14                                                 54210
15                                                 46906
16                                                 41617
17                                                 62187
18                                                 41701
19                                                 50476
20                                                 42068
21                                                 43783
22                                                 48687
23                                                 39608
24                                                 49072
25                                                 56317
26                                                 73470
27                                                 58162
28                                                 58913
29                                                 64829
30                                                 45227
31                                                 43260
32                                                 59208
33                                                 46424
34                                                 42864
35                                                 69447
36                                                 44797
37                                                 41954
38                                                 50390
39                                                 40448
40                                                 50741
41                                                 44727
42                                                 48596
43                                                 39245
44                                                 40007
45                                                 48499
46                                                 38592
47                                                 35567
48                                                 71210
49                                                 44001
50                                                 40476
51                                                 38119
52                                                 47221
53                                                 50792
54                                                 46277
55                                                 40971
56                                                 46286
57                                                 34346
58                                                 28907
59                                                 26597
60                                                 27501
61                                                 29382
62                                                 39750
63                                                 56367
64                                                 52190
65                                                 52893
66                                                 53594
67                                                 54193
68                                                 59554
69                                                 56700
70                                                 57123
71                                                 62976
72                                                 66724
73                                                 64125
74                                                 68964
75                                                 68516
76                                                 69125
77                                                 79104
78                                                 72710
79                                                 68054
80                                                 77705
81                                                 74896
82                                                 77701
83                                                 92111
84                                                 95769
85                                                103793
86                                                113811
87                                                112927
88                                                106492
89                                                100815
90                                                 93571
91                                                 87529
92                                                 90916
93                                                101740
94                                                111944
95                                                 98213
96                                                106915
97                                                 86394
98                                                 87862
99                                                160545
100                                               108724
101                                               110262
102                                               104175
103                                                94805
104                                                87749
105                                               108930
106                                                58732
107                                                56565
108                                                60516
109                                                94262
110                                                56764
111                                                59312
112                                                65657
113                                                65174
114                                                62872
115                                                65040
116                                                68120
117                                                66076
118                                                74146
119                                                71519
120                                                64593
121                                                68912
122                                                69478
123                                                65605
124                                                69135
125                                                78915
126                                                78386
127                                                81789
128                                                75359
129                                                73163
130                                                70720
131                                                76449
132                                                72807
133                                                78803
134                                                86114
135                                                86779
136                                                89548
137                                                87873
138                                                77142
139                                               106192
140                                                87501
141                                                78265
142                                                77381
143                                                75492
144                                                85811
145                                                94478
146                                                89210
147                                                87660
148                                                87666
149                                               118607
150                                                78996
151                                                74076
152                                               172311
153                                                86136
154                                               116160
155                                                84479
156                                                80202
157                                                94572
158                                                87220
159                                                93955
160                                                98059
161                                                80515
162                                                91259
163                                                75445
164                                                67905
165                                                99117
166                                                79640
167                                                80371
168                                                97095
169                                                80321
170                                                 1416
171                                                 1462
172                                                 1353
173                                                 1278
174                                                 1404
175                                                 1454
176                                                 1296
177                                                 1196
178                                                 1301
179                                                 1552
180                                                 1394
181                                                 1371
182                                                 1219
183                                                 1201
184                                                 1182
185                                                 1256
186                                                 1331
187                                                 1401
188                                                 1766
189                                                 1496
190                                                 2116
191                                                 1442
192                                                 1265
193                                                 1517
194                                                 1458
195                                                 1515
196                                                 1741
197                                                 1507
198                                                 1433
199                                                 1378
200                                                 1525
201                                                 1602
202                                                 4780
203                                                 1283
204                                                 1499
205                                                 1054
206                                                 1312
207                                                 1460
208                                                 1235
209                                                 1468
210                                                 1603
211                                                 1300
212                                                 1313
213                                                 1371
214                                                 1119
215                                                 1099
216                                                 1383
217                                                 1244
218                                                  957
219                                                  744
220                                                  970
221                                                  883
222                                                 2521
223                                                 2824
224                                                 2652
225                                                 2473
226                                                 2762
227                                                 2878
228                                                 2997
229                                                 3144
230                                                 4973
231                                                 4509
232                                                 4682
233                                                 4952
234                                                 3891
235                                                 3611
236                                                 3850
237                                                 4141
238                                                 4069
239                                                 3830
240                                                 3917
241                                                 4531
242                                                 5999
243                                                 4191
244                                                 4289
245                                                 3580
246                                                 2727
247                                                 2594
248                                                 2575
249                                                 2603
250                                                 2418
251                                                 2508
252                                                 2647
253                                                 2423
254                                                 2629
255                                                 3031
256                                                 2921
257                                                 2721
258                                                 2383
259                                                 2597
260                                                 2844
261                                                 2334
262                                                 2023
263                                                 2081
264                                                 2123
265                                                 2007
266                                                 1837
267                                                 1674
268                                                 1741
269                                                 1735
270                                                 1650
271                                                 1660
272                                                 2208
273                                                 1979
274                                                 5197
275                                                 3987
276                                                 4730
277                                                 4293
278                                                 4864
279                                                 3663
280                                                 3854
281                                                 3865
282                                                 4551
283                                                 3777
284                                                 4320
285                                                 3477
286                                                 3911
287                                                 4182
288                                                 4285
289                                                 4306
290                                                 4094
291                                                 4696
292                                                 4586
293                                                 4682
294                                                 4739
295                                                 4984
296                                                 5055
297                                                 5298
298                                                 5361
299                                                 5370
300                                                 5111
301                                                 5153
302                                                 4880
303                                                 4583
304                                                 4784
305                                                 5327
306                                                 4833
307                                                 6462
308                                                 5187
309                                                 4785
310                                                 4591
311                                                 6235
312                                                 5760
313                                                 6849
314                                                 5908
315                                                 4579
316                                                 4486
317                                                 3724
318                                                 3918
319                                                 4077
320                                                 4040
321                                                 3541
322                                                 4706
323                                                 3487
324                                                 4643
325                                                 4457
326                                                 3135
327                                                 5964
328                                                 5809
329                                                 6862
330                                                 6587
331                                                 5987
332                                                 5878
333                                                 5645
334                                                 5188
335                                                 6627
336                                                 5461
337                                                 7133
338                                                 6255
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                   23042
2                                                   19843
3                                                   23843
4                                                   28483
5                                                   22686
6                                                   24222
7                                                   36861
8                                                   49282
9                                                   53969
10                                                  44883
11                                                  44707
12                                                  58990
13                                                  40367
14                                                  58552
15                                                  41262
16                                                  36469
17                                                  64372
18                                                  38130
19                                                  41678
20                                                  41343
21                                                  37614
22                                                  39735
23                                                  39261
24                                                  39515
25                                                  35107
26                                                  40602
27                                                  42044
28                                                  38260
29                                                  41193
30                                                  38579
31                                                  44530
32                                                  46014
33                                                  40249
34                                                  38370
35                                                  77627
36                                                  37961
37                                                  36041
38                                                  39638
39                                                  36210
40                                                  40688
41                                                  37099
42                                                  43740
43                                                  36250
44                                                  34949
45                                                  61590
46                                                  40431
47                                                  31779
48                                                  80814
49                                                  31576
50                                                  38677
51                                                  40802
52                                                  38569
53                                                   7325
54                                                   7943
55                                                   8697
56                                                   9452
57                                                   8265
58                                                  13913
59                                                  22715
60                                                  25306
61                                                  26881
62                                                  20290
63                                                  17532
64                                                  19420
65                                                  16737
66                                                  17495
67                                                  16564
68                                                  17914
69                                                  18659
70                                                  15013
71                                                  20731
72                                                  23025
73                                                  24178
74                                                  24742
75                                                  26839
76                                                  25757
77                                                  40461
78                                                  40378
79                                                  39269
80                                                  46282
81                                                  46177
82                                                  41412
83                                                  41274
84                                                  20860
85                                                  17608
86                                                  18608
87                                                  18934
88                                                  18456
89                                                  17306
90                                                  16897
91                                                  14615
92                                                  15519
93                                                  18631
94                                                  22962
95                                                  21769
96                                                  19046
97                                                  19834
98                                                  18324
99                                                  42057
100                                                 25919
101                                                 30644
102                                                 29113
103                                                 29603
104                                                 31682
105                                                  6349
106                                                  3840
107                                                  3658
108                                                  4428
109                                                  4556
110                                                  3742
111                                                  3820
112                                                  4551
113                                                  4856
114                                                  4717
115                                                  4653
116                                                  5567
117                                                  4782
118                                                  4798
119                                                  5336
120                                                  5177
121                                                  5424
122                                                  6029
123                                                  5773
124                                                  5603
125                                                  6255
126                                                  6520
127                                                  6238
128                                                  5994
129                                                  6036
130                                                  6491
131                                                  6627
132                                                  5878
133                                                  6332
134                                                  6817
135                                                  7006
136                                                  8530
137                                                  7712
138                                                  6722
139                                                 11654
140                                                  7990
141                                                  7619
142                                                  7460
143                                                  6657
144                                                  7802
145                                                  7656
146                                                  7312
147                                                  8252
148                                                 11157
149                                                 13182
150                                                  9651
151                                                  8887
152                                                 21722
153                                                  9147
154                                                 20382
155                                                  9919
156                                                 10232
157                                                 15036
158                                                  5567
159                                                  5330
160                                                  6212
161                                                  6006
162                                                  5679
163                                                  5424
164                                                  5262
165                                                  6477
166                                                  4803
167                                                  4658
168                                                  5512
169                                                  4915
170                                                   682
171                                                   605
172                                                   527
173                                                   578
174                                                   638
175                                                   729
176                                                   829
177                                                   751
178                                                  1100
179                                                  1124
180                                                  1143
181                                                  1017
182                                                   809
183                                                   867
184                                                   842
185                                                   929
186                                                  1018
187                                                  1026
188                                                  1194
189                                                  1270
190                                                  1411
191                                                  1084
192                                                   861
193                                                  1019
194                                                  1144
195                                                  1197
196                                                  1017
197                                                  1081
198                                                  1059
199                                                  1159
200                                                  1349
201                                                  1474
202                                                  4975
203                                                  1191
204                                                  1856
205                                                  1151
206                                                  1400
207                                                  1256
208                                                  1128
209                                                  1228
210                                                  1222
211                                                  1103
212                                                  1163
213                                                  1100
214                                                   993
215                                                  1056
216                                                  1093
217                                                  1458
218                                                   920
219                                                   766
220                                                   833
221                                                   906
222                                                   399
223                                                   518
224                                                   459
225                                                   346
226                                                   514
227                                                   555
228                                                   615
229                                                   729
230                                                  1171
231                                                   812
232                                                   778
233                                                   760
234                                                   644
235                                                   676
236                                                   623
237                                                   724
238                                                   881
239                                                   738
240                                                  1000
241                                                  1158
242                                                  1492
243                                                  1150
244                                                  1242
245                                                  1380
246                                                   991
247                                                   929
248                                                   835
249                                                   663
250                                                   727
251                                                   695
252                                                   702
253                                                   545
254                                                   554
255                                                   767
256                                                   719
257                                                   639
258                                                   506
259                                                   625
260                                                   659
261                                                   615
262                                                   491
263                                                   626
264                                                   621
265                                                   560
266                                                   557
267                                                   502
268                                                   640
269                                                   631
270                                                   603
271                                                   588
272                                                   842
273                                                   706
274                                                   199
275                                                   214
276                                                   228
277                                                   202
278                                                   211
279                                                   158
280                                                   131
281                                                   177
282                                                   194
283                                                   161
284                                                   181
285                                                   161
286                                                   131
287                                                   174
288                                                   118
289                                                   157
290                                                   222
291                                                   242
292                                                   175
293                                                   201
294                                                   243
295                                                   251
296                                                   322
297                                                   391
298                                                   377
299                                                   348
300                                                   372
301                                                   284
302                                                   337
303                                                   302
304                                                   343
305                                                   398
306                                                   439
307                                                   585
308                                                   414
309                                                   414
310                                                   403
311                                                   655
312                                                   705
313                                                   639
314                                                   559
315                                                   556
316                                                   589
317                                                   437
318                                                   542
319                                                   599
320                                                   419
321                                                   461
322                                                   521
323                                                   449
324                                                   570
325                                                   620
326                                                   489
327                                                   161
328                                                   206
329                                                   223
330                                                   268
331                                                   191
332                                                   232
333                                                   239
334                                                   202
335                                                   271
336                                                   247
337                                                   242
338                                                   225
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          37630                        35130
2                          35055                        33273
3                          39032                        35793
4                          30439                        28182
5                          30791                        27376
6                          25723                        22228
7                          23632                        21132
8                          29723                        28076
9                          37374                        32848
10                         34587                        30219
11                         34535                        31177
12                         39796                        33103
13                         38051                        30389
14                         31621                        27053
15                         47353                        38940
16                         62868                        56910
17                         66042                        59198
18                         65684                        63371
19                         78865                        76846
20                         62986                        60769
21                         61746                        57783
22                         60700                        58628
23                         64127                        62054
24                         65605                        62471
25                         67852                        65681
26                         71243                        67865
27                         69754                        67989
28                         73048                        69426
29                         69824                        67842
30                         72651                        69124
31                         61153                        58991
32                         63677                        59663
33                         59787                        57584
34                         63907                        61760
35                         64215                        58626
36                         59902                        58701
37                         64618                        63182
38                         65184                        61787
39                         58148                        56451
40                         52861                        51856
41                         59412                        56444
42                         52470                        51028
43                         53912                        52538
44                         55726                        52874
45                         46973                        44920
46                         49548                        40420
47                         51284                        41921
48                         49070                        33450
49                         54310                        41623
50                         47055                        33997
51                         49436                        38822
52                         50798                        44329
53                         61550                        51248
54                         54653                        44605
55                         52402                        46293
56                         59783                        48017
57                         49867                        44005
58                         48743                        42722
59                         45378                        38437
60                         52448                        45862
61                         47316                        40259
62                         52719                        47060
63                         59418                        48824
64                         63301                        54704
65                         62416                        53333
66                         63932                        55653
67                         69105                        57456
68                         69080                        61215
69                         70717                        62373
70                         60974                        58688
71                         65879                        64096
72                         65678                        60860
73                         59438                        55636
74                         54443                        50678
75                         64304                        57525
76                         63385                        58481
77                         70310                        62604
78                         75235                        64810
79                         56512                        52291
80                         59636                        52831
81                         45826                        40822
82                         53254                        45859
83                         51877                        45121
84                         49856                        45580
85                         62552                        51589
86                         65349                        57142
87                         64335                        52070
88                         60616                        48775
89                         57169                        50674
90                         60978                        48991
91                         54550                        47756
92                         50652                        45385
93                         51414                        45427
94                         61900                        50890
95                         49719                        44120
96                         53739                        43150
97                         50507                        45927
98                         52195                        44808
99                         60211                        42530
100                        43085                        35670
101                        53618                        42137
102                        43493                        37726
103                        50533                        42015
104                        41674                        38144
105                       170310                       162934
106                        66648                        63207
107                        71289                        66708
108                       153859                       146050
109                        63193                        59298
110                        64544                        61925
111                        68336                        65221
112                        66556                        62017
113                        70611                        66782
114                        62685                        56998
115                        54001                        50705
116                        56369                        49195
117                        58116                        52744
118                        57761                        52514
119                        62461                        57930
120                        66660                        62157
121                        67525                        63281
122                        76109                        67996
123                        76174                        69563
124                        80510                        71102
125                        77338                        67363
126                        78414                        71208
127                        69740                        63813
128                        83187                        75924
129                        85804                        77573
130                        82485                        73227
131                        80928                        71120
132                        79815                        72142
133                        71205                        62169
134                        80493                        69740
135                        73288                        65629
136                        84116                        80490
137                        76179                        71311
138                        88147                        83152
139                       108825                        98860
140                        83079                        73582
141                        86865                        81394
142                        69885                        66437
143                        68824                        64339
144                        90394                        85958
145                        74294                        69701
146                        67822                        63180
147                        63105                        58991
148                        60320                        56437
149                        59434                        54951
150                        63901                        59663
151                        64825                        59465
152                        70493                        56412
153                        69454                        58829
154                        68630                        54563
155                        62954                        52627
156                        72166                        63539
157                        59678                        45920
158                        97671                        92743
159                       223765                       218182
160                       102542                        96038
161                       105080                        97703
162                        88874                        86339
163                        89979                        85686
164                       119240                       113042
165                       218858                       208290
166                        94784                        89456
167                       172049                       165017
168                        87902                        82964
169                        88908                        84280
170                          460                          460
171                          547                          547
172                          518                          473
173                          470                          470
174                          433                          426
175                          381                          378
176                          634                          634
177                          824                          820
178                          789                          789
179                          833                          833
180                          808                          808
181                          974                          974
182                         1115                         1115
183                          606                          606
184                         1772                         1772
185                         1481                         1481
186                         1660                         1660
187                         1502                         1502
188                         1370                         1370
189                         1363                         1363
190                         1019                         1019
191                         1094                         1094
192                          852                          835
193                         1150                         1150
194                         1072                         1072
195                          679                          679
196                          652                          652
197                          502                          502
198                         1223                         1223
199                         1553                         1553
200                          883                          883
201                         1294                         1294
202                          856                          856
203                         1306                         1306
204                         1015                         1015
205                          971                          971
206                         1218                         1218
207                          898                          898
208                          977                          977
209                          531                          531
210                         1134                         1134
211                         1282                         1282
212                         1451                         1451
213                          884                          884
214                          870                          870
215                          751                          751
216                         1347                         1347
217                          645                          645
218                          470                          470
219                          840                          840
220                          432                          432
221                         1026                         1026
222                         3786                         3480
223                         4015                         3515
224                         3911                         3507
225                         2939                         2603
226                         3148                         2767
227                         4346                         3908
228                         4727                         4083
229                         5583                         5234
230                         4142                         3748
231                         3874                         3400
232                         3822                         3486
233                         4351                         4276
234                         4113                         4065
235                         3421                         3102
236                         4361                         3896
237                         4466                         4326
238                         3427                         3417
239                         3710                         3656
240                         4269                         4245
241                         3623                         3603
242                         2479                         2422
243                         2286                         2243
244                         2387                         2383
245                         2639                         2626
246                         1634                         1614
247                         1860                         1856
248                         3205                         3198
249                         1483                         1476
250                         1085                         1082
251                         2517                         2513
252                         2026                         2016
253                         2028                         2022
254                         2504                         2501
255                         1483                         1483
256                         1827                         1827
257                         2760                         2760
258                         1171                         1171
259                         2160                         2160
260                         1306                         1306
261                         1292                         1292
262                         1830                         1830
263                         1145                         1145
264                          917                          897
265                          727                          727
266                          813                          813
267                         1127                         1127
268                          763                          763
269                         1110                         1110
270                         1150                         1150
271                          280                          277
272                         1452                         1425
273                          850                          821
274                         6508                         6416
275                         4856                         4856
276                         4720                         4720
277                         5505                         5498
278                         4463                         4271
279                         4644                         4345
280                         3926                         3802
281                         4990                         4734
282                         5042                         4819
283                         7264                         7117
284                         7031                         6886
285                         6493                         6321
286                         5326                         5148
287                         3907                         3656
288                         5950                         5560
289                         4335                         4169
290                         5902                         5892
291                         5356                         5203
292                         4974                         4971
293                         5508                         5501
294                         5423                         5419
295                         5008                         5008
296                         3072                         3072
297                         3425                         3425
298                         3697                         3693
299                         3064                         3064
300                         2665                         2661
301                         3936                         3926
302                         3084                         3081
303                         4416                         4416
304                         1639                         1639
305                         2216                         1790
306                         1757                         1583
307                         1537                         1270
308                         2336                         1778
309                         1741                         1615
310                         1766                         1766
311                         1608                         1600
312                         2102                         1909
313                         2553                         1829
314                         1980                         1582
315                          608                          270
316                         1841                         1841
317                         2468                         2274
318                         3820                         3467
319                         4443                         4295
320                         4482                         4320
321                         4331                         4076
322                         4695                         4139
323                         4416                         3972
324                         5310                         4703
325                         6425                         5971
326                         3480                         3126
327                         5888                         5792
328                         5942                         5801
329                         6584                         6512
330                         4996                         4622
331                         5732                         5668
332                         6285                         5981
333                         5325                         5177
334                         7858                         7614
335                         5513                         5080
336                         6706                         6703
337                        12130                        12116
338                        22239                        22132
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                           2500                              0.00 conventional
2                           1782                              0.00 conventional
3                           3239                              0.00 conventional
4                           2257                              0.00 conventional
5                           3415                              0.00 conventional
6                           3495                              0.00 conventional
7                           2500                              0.00 conventional
8                           1647                              0.00 conventional
9                           4526                              0.00 conventional
10                          4368                              0.00 conventional
11                          3358                              0.00 conventional
12                          6693                              0.00 conventional
13                          7662                              0.00 conventional
14                          4567                              0.00 conventional
15                          8413                              0.00 conventional
16                          5958                              0.00 conventional
17                          6844                              0.00 conventional
18                          2313                              0.00 conventional
19                          2018                              0.00 conventional
20                          2216                              0.00 conventional
21                          3963                              0.00 conventional
22                          2072                              0.00 conventional
23                          2073                              0.00 conventional
24                          3135                              0.00 conventional
25                          2170                              0.00 conventional
26                          3378                              0.00 conventional
27                          1765                              0.00 conventional
28                          3622                              0.00 conventional
29                          1982                              0.00 conventional
30                          3527                              0.00 conventional
31                          2162                              0.00 conventional
32                          4014                              0.00 conventional
33                          2203                              0.00 conventional
34                          2147                              0.00 conventional
35                          5589                              0.00 conventional
36                          1201                              0.00 conventional
37                          1436                              0.00 conventional
38                          3396                              0.00 conventional
39                          1599                             98.61 conventional
40                          1005                              0.00 conventional
41                          2968                              0.00 conventional
42                          1442                              0.00 conventional
43                          1374                              0.00 conventional
44                          2852                              0.00 conventional
45                          2053                              0.00 conventional
46                          9128                              0.00 conventional
47                          9363                              0.00 conventional
48                         15620                              0.00 conventional
49                         12686                              0.00 conventional
50                         13058                              0.00 conventional
51                         10614                              0.00 conventional
52                          6469                              0.00 conventional
53                         10233                             69.44 conventional
54                         10048                              0.00 conventional
55                          6109                              0.00 conventional
56                         11766                              0.00 conventional
57                          5861                              0.00 conventional
58                          6021                              0.00 conventional
59                          6941                              0.00 conventional
60                          6586                              0.00 conventional
61                          6817                            240.28 conventional
62                          5659                              0.00 conventional
63                         10355                            240.28 conventional
64                          8597                              0.00 conventional
65                          8258                            825.00 conventional
66                          8278                              0.00 conventional
67                         11648                              0.00 conventional
68                          7860                              5.00 conventional
69                          7806                            537.50 conventional
70                          1906                            380.00 conventional
71                          1628                            155.00 conventional
72                          4818                              0.00 conventional
73                          3787                             15.00 conventional
74                          3330                            435.00 conventional
75                          3346                           3432.22 conventional
76                          3224                           1680.00 conventional
77                          4549                           3157.78 conventional
78                          8290                           2135.00 conventional
79                          3211                           1010.00 conventional
80                          4842                           1964.17 conventional
81                          3826                           1178.33 conventional
82                          6333                           1061.39 conventional
83                          6511                            245.00 conventional
84                          3941                            335.00 conventional
85                         10963                              0.00 conventional
86                          7275                            931.94 conventional
87                         12265                              0.00 conventional
88                         10957                            883.33 conventional
89                          5887                            608.33 conventional
90                         11987                              0.00 conventional
91                          6794                              0.00 conventional
92                          5267                              0.00 conventional
93                          5988                              0.00 conventional
94                         11010                              0.00 conventional
95                          5598                              0.00 conventional
96                         10589                              0.00 conventional
97                          4580                              0.00 conventional
98                          7387                              0.00 conventional
99                         17682                              0.00 conventional
100                         7415                              0.00 conventional
101                        11482                              0.00 conventional
102                         5767                              0.00 conventional
103                         8518                              0.00 conventional
104                         3529                              0.00 conventional
105                         7370                              6.67 conventional
106                         3442                              0.00 conventional
107                         4581                              0.00 conventional
108                         7808                              0.00 conventional
109                         3895                              0.00 conventional
110                         2619                              0.00 conventional
111                         3115                              0.00 conventional
112                         4539                              0.00 conventional
113                         3829                              0.00 conventional
114                         5687                              0.00 conventional
115                         3296                              0.00 conventional
116                         7173                              2.22 conventional
117                         5372                              0.00 conventional
118                         5247                              0.00 conventional
119                         4531                              0.00 conventional
120                         4503                              0.00 conventional
121                         3375                            870.00 conventional
122                         4699                           3413.33 conventional
123                         5068                           1543.33 conventional
124                         5397                           4011.11 conventional
125                         6830                           3144.44 conventional
126                         5683                           1523.34 conventional
127                         4829                           1097.78 conventional
128                         4233                           3030.00 conventional
129                         4561                           3669.99 conventional
130                         4767                           4490.00 conventional
131                         5359                           4450.00 conventional
132                         4877                           2795.00 conventional
133                         3516                           5520.00 conventional
134                         5812                           4940.00 conventional
135                         6092                           1566.67 conventional
136                         3626                              0.00 conventional
137                         4869                              0.00 conventional
138                         4995                              0.00 conventional
139                         9964                              0.00 conventional
140                         9497                              0.00 conventional
141                         5472                              0.00 conventional
142                         3448                              0.00 conventional
143                         4485                              0.00 conventional
144                         4259                            177.78 conventional
145                         4593                              0.00 conventional
146                         4642                              0.00 conventional
147                         4114                              0.00 conventional
148                         3883                              0.00 conventional
149                         4484                              0.00 conventional
150                         4224                             13.33 conventional
151                         5142                            217.78 conventional
152                        13628                            452.78 conventional
153                         9630                            994.44 conventional
154                        14067                              0.00 conventional
155                        10327                              0.00 conventional
156                         8627                              0.00 conventional
157                        13711                             46.67 conventional
158                         4927                              1.11 conventional
159                         5584                              0.00 conventional
160                         6503                              1.11 conventional
161                         7376                              0.00 conventional
162                         2535                              0.00 conventional
163                         4294                              0.00 conventional
164                         6198                              0.00 conventional
165                        10568                              0.00 conventional
166                         5327                              0.00 conventional
167                         7031                              1.11 conventional
168                         4938                              0.00 conventional
169                         4628                              0.00 conventional
170                            0                              0.00      organic
171                            0                              0.00      organic
172                           45                              0.00      organic
173                            0                              0.00      organic
174                            7                              0.00      organic
175                            3                              0.00      organic
176                            0                              0.00      organic
177                            3                              0.00      organic
178                            0                              0.00      organic
179                            0                              0.00      organic
180                            0                              0.00      organic
181                            0                              0.00      organic
182                            0                              0.00      organic
183                            0                              0.00      organic
184                            0                              0.00      organic
185                            0                              0.00      organic
186                            0                              0.00      organic
187                            0                              0.00      organic
188                            0                              0.00      organic
189                            0                              0.00      organic
190                            0                              0.00      organic
191                            0                              0.00      organic
192                           17                              0.00      organic
193                            0                              0.00      organic
194                            0                              0.00      organic
195                            0                              0.00      organic
196                            0                              0.00      organic
197                            0                              0.00      organic
198                            0                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                            0                              0.00      organic
202                            0                              0.00      organic
203                            0                              0.00      organic
204                            0                              0.00      organic
205                            0                              0.00      organic
206                            0                              0.00      organic
207                            0                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                            0                              0.00      organic
214                            0                              0.00      organic
215                            0                              0.00      organic
216                            0                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                            0                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                          306                              0.00      organic
223                          499                              0.00      organic
224                          404                              0.00      organic
225                          336                              0.00      organic
226                          381                              0.00      organic
227                          438                              0.00      organic
228                          644                              0.00      organic
229                          349                              0.00      organic
230                          394                              0.00      organic
231                          473                              0.00      organic
232                          336                              0.00      organic
233                           75                              0.00      organic
234                           47                              0.00      organic
235                          319                              0.00      organic
236                          464                              0.00      organic
237                          140                              0.00      organic
238                           10                              0.00      organic
239                           53                              0.00      organic
240                           23                              0.00      organic
241                           20                              0.00      organic
242                           57                              0.00      organic
243                           43                              0.00      organic
244                            3                              0.00      organic
245                           13                              0.00      organic
246                           20                              0.00      organic
247                            3                              0.00      organic
248                            7                              0.00      organic
249                            7                              0.00      organic
250                            3                              0.00      organic
251                            3                              0.00      organic
252                           10                              0.00      organic
253                            7                              0.00      organic
254                            3                              0.00      organic
255                            0                              0.00      organic
256                            0                              0.00      organic
257                            0                              0.00      organic
258                            0                              0.00      organic
259                            0                              0.00      organic
260                            0                              0.00      organic
261                            0                              0.00      organic
262                            0                              0.00      organic
263                            0                              0.00      organic
264                           20                              0.00      organic
265                            0                              0.00      organic
266                            0                              0.00      organic
267                            0                              0.00      organic
268                            0                              0.00      organic
269                            0                              0.00      organic
270                            0                              0.00      organic
271                            3                              0.00      organic
272                           27                              0.00      organic
273                           29                              0.00      organic
274                           92                              0.00      organic
275                            0                              0.00      organic
276                            0                              0.00      organic
277                            7                              0.00      organic
278                          192                              0.00      organic
279                          299                              0.00      organic
280                          124                              0.00      organic
281                          256                              0.00      organic
282                          223                              0.00      organic
283                          147                              0.00      organic
284                          145                              0.00      organic
285                          173                              0.00      organic
286                          178                              0.00      organic
287                          251                              0.00      organic
288                          389                              0.00      organic
289                          167                              0.00      organic
290                            9                              0.00      organic
291                          152                              0.00      organic
292                            3                              0.00      organic
293                            7                              0.00      organic
294                            4                              0.00      organic
295                            0                              0.00      organic
296                            0                              0.00      organic
297                            0                              0.00      organic
298                            3                              0.00      organic
299                            0                              0.00      organic
300                            4                              0.00      organic
301                           10                              0.00      organic
302                            3                              0.00      organic
303                            0                              0.00      organic
304                            0                              0.00      organic
305                          426                              0.00      organic
306                          174                              0.00      organic
307                          267                              0.00      organic
308                          559                              0.00      organic
309                          126                              0.00      organic
310                            0                              0.00      organic
311                            8                              0.00      organic
312                          193                              0.00      organic
313                          725                              0.00      organic
314                          398                              0.00      organic
315                          338                              0.00      organic
316                            0                              0.00      organic
317                          194                              0.00      organic
318                          353                              0.00      organic
319                          148                              0.00      organic
320                          162                              0.00      organic
321                          255                              0.00      organic
322                          556                              0.00      organic
323                          445                              0.00      organic
324                          607                              0.00      organic
325                          454                              0.00      organic
326                          354                              0.00      organic
327                           95                              0.00      organic
328                          140                              0.00      organic
329                           73                              0.00      organic
330                          374                              0.00      organic
331                           64                              0.00      organic
332                          303                              0.00      organic
333                          149                              0.00      organic
334                          244                              0.00      organic
335                          432                              0.00      organic
336                            3                              0.00      organic
337                           13                              0.00      organic
338                          107                              0.00      organic
    year (AÑO) region (REGION)
1         2015       Charlotte
2         2015       Charlotte
3         2015       Charlotte
4         2015       Charlotte
5         2015       Charlotte
6         2015       Charlotte
7         2015       Charlotte
8         2015       Charlotte
9         2015       Charlotte
10        2015       Charlotte
11        2015       Charlotte
12        2015       Charlotte
13        2015       Charlotte
14        2015       Charlotte
15        2015       Charlotte
16        2015       Charlotte
17        2015       Charlotte
18        2015       Charlotte
19        2015       Charlotte
20        2015       Charlotte
21        2015       Charlotte
22        2015       Charlotte
23        2015       Charlotte
24        2015       Charlotte
25        2015       Charlotte
26        2015       Charlotte
27        2015       Charlotte
28        2015       Charlotte
29        2015       Charlotte
30        2015       Charlotte
31        2015       Charlotte
32        2015       Charlotte
33        2015       Charlotte
34        2015       Charlotte
35        2015       Charlotte
36        2015       Charlotte
37        2015       Charlotte
38        2015       Charlotte
39        2015       Charlotte
40        2015       Charlotte
41        2015       Charlotte
42        2015       Charlotte
43        2015       Charlotte
44        2015       Charlotte
45        2015       Charlotte
46        2015       Charlotte
47        2015       Charlotte
48        2015       Charlotte
49        2015       Charlotte
50        2015       Charlotte
51        2015       Charlotte
52        2015       Charlotte
53        2016       Charlotte
54        2016       Charlotte
55        2016       Charlotte
56        2016       Charlotte
57        2016       Charlotte
58        2016       Charlotte
59        2016       Charlotte
60        2016       Charlotte
61        2016       Charlotte
62        2016       Charlotte
63        2016       Charlotte
64        2016       Charlotte
65        2016       Charlotte
66        2016       Charlotte
67        2016       Charlotte
68        2016       Charlotte
69        2016       Charlotte
70        2016       Charlotte
71        2016       Charlotte
72        2016       Charlotte
73        2016       Charlotte
74        2016       Charlotte
75        2016       Charlotte
76        2016       Charlotte
77        2016       Charlotte
78        2016       Charlotte
79        2016       Charlotte
80        2016       Charlotte
81        2016       Charlotte
82        2016       Charlotte
83        2016       Charlotte
84        2016       Charlotte
85        2016       Charlotte
86        2016       Charlotte
87        2016       Charlotte
88        2016       Charlotte
89        2016       Charlotte
90        2016       Charlotte
91        2016       Charlotte
92        2016       Charlotte
93        2016       Charlotte
94        2016       Charlotte
95        2016       Charlotte
96        2016       Charlotte
97        2016       Charlotte
98        2016       Charlotte
99        2016       Charlotte
100       2016       Charlotte
101       2016       Charlotte
102       2016       Charlotte
103       2016       Charlotte
104       2016       Charlotte
105       2017       Charlotte
106       2017       Charlotte
107       2017       Charlotte
108       2017       Charlotte
109       2017       Charlotte
110       2017       Charlotte
111       2017       Charlotte
112       2017       Charlotte
113       2017       Charlotte
114       2017       Charlotte
115       2017       Charlotte
116       2017       Charlotte
117       2017       Charlotte
118       2017       Charlotte
119       2017       Charlotte
120       2017       Charlotte
121       2017       Charlotte
122       2017       Charlotte
123       2017       Charlotte
124       2017       Charlotte
125       2017       Charlotte
126       2017       Charlotte
127       2017       Charlotte
128       2017       Charlotte
129       2017       Charlotte
130       2017       Charlotte
131       2017       Charlotte
132       2017       Charlotte
133       2017       Charlotte
134       2017       Charlotte
135       2017       Charlotte
136       2017       Charlotte
137       2017       Charlotte
138       2017       Charlotte
139       2017       Charlotte
140       2017       Charlotte
141       2017       Charlotte
142       2017       Charlotte
143       2017       Charlotte
144       2017       Charlotte
145       2017       Charlotte
146       2017       Charlotte
147       2017       Charlotte
148       2017       Charlotte
149       2017       Charlotte
150       2017       Charlotte
151       2017       Charlotte
152       2017       Charlotte
153       2017       Charlotte
154       2017       Charlotte
155       2017       Charlotte
156       2017       Charlotte
157       2017       Charlotte
158       2018       Charlotte
159       2018       Charlotte
160       2018       Charlotte
161       2018       Charlotte
162       2018       Charlotte
163       2018       Charlotte
164       2018       Charlotte
165       2018       Charlotte
166       2018       Charlotte
167       2018       Charlotte
168       2018       Charlotte
169       2018       Charlotte
170       2015       Charlotte
171       2015       Charlotte
172       2015       Charlotte
173       2015       Charlotte
174       2015       Charlotte
175       2015       Charlotte
176       2015       Charlotte
177       2015       Charlotte
178       2015       Charlotte
179       2015       Charlotte
180       2015       Charlotte
181       2015       Charlotte
182       2015       Charlotte
183       2015       Charlotte
184       2015       Charlotte
185       2015       Charlotte
186       2015       Charlotte
187       2015       Charlotte
188       2015       Charlotte
189       2015       Charlotte
190       2015       Charlotte
191       2015       Charlotte
192       2015       Charlotte
193       2015       Charlotte
194       2015       Charlotte
195       2015       Charlotte
196       2015       Charlotte
197       2015       Charlotte
198       2015       Charlotte
199       2015       Charlotte
200       2015       Charlotte
201       2015       Charlotte
202       2015       Charlotte
203       2015       Charlotte
204       2015       Charlotte
205       2015       Charlotte
206       2015       Charlotte
207       2015       Charlotte
208       2015       Charlotte
209       2015       Charlotte
210       2015       Charlotte
211       2015       Charlotte
212       2015       Charlotte
213       2015       Charlotte
214       2015       Charlotte
215       2015       Charlotte
216       2015       Charlotte
217       2015       Charlotte
218       2015       Charlotte
219       2015       Charlotte
220       2015       Charlotte
221       2015       Charlotte
222       2016       Charlotte
223       2016       Charlotte
224       2016       Charlotte
225       2016       Charlotte
226       2016       Charlotte
227       2016       Charlotte
228       2016       Charlotte
229       2016       Charlotte
230       2016       Charlotte
231       2016       Charlotte
232       2016       Charlotte
233       2016       Charlotte
234       2016       Charlotte
235       2016       Charlotte
236       2016       Charlotte
237       2016       Charlotte
238       2016       Charlotte
239       2016       Charlotte
240       2016       Charlotte
241       2016       Charlotte
242       2016       Charlotte
243       2016       Charlotte
244       2016       Charlotte
245       2016       Charlotte
246       2016       Charlotte
247       2016       Charlotte
248       2016       Charlotte
249       2016       Charlotte
250       2016       Charlotte
251       2016       Charlotte
252       2016       Charlotte
253       2016       Charlotte
254       2016       Charlotte
255       2016       Charlotte
256       2016       Charlotte
257       2016       Charlotte
258       2016       Charlotte
259       2016       Charlotte
260       2016       Charlotte
261       2016       Charlotte
262       2016       Charlotte
263       2016       Charlotte
264       2016       Charlotte
265       2016       Charlotte
266       2016       Charlotte
267       2016       Charlotte
268       2016       Charlotte
269       2016       Charlotte
270       2016       Charlotte
271       2016       Charlotte
272       2016       Charlotte
273       2016       Charlotte
274       2017       Charlotte
275       2017       Charlotte
276       2017       Charlotte
277       2017       Charlotte
278       2017       Charlotte
279       2017       Charlotte
280       2017       Charlotte
281       2017       Charlotte
282       2017       Charlotte
283       2017       Charlotte
284       2017       Charlotte
285       2017       Charlotte
286       2017       Charlotte
287       2017       Charlotte
288       2017       Charlotte
289       2017       Charlotte
290       2017       Charlotte
291       2017       Charlotte
292       2017       Charlotte
293       2017       Charlotte
294       2017       Charlotte
295       2017       Charlotte
296       2017       Charlotte
297       2017       Charlotte
298       2017       Charlotte
299       2017       Charlotte
300       2017       Charlotte
301       2017       Charlotte
302       2017       Charlotte
303       2017       Charlotte
304       2017       Charlotte
305       2017       Charlotte
306       2017       Charlotte
307       2017       Charlotte
308       2017       Charlotte
309       2017       Charlotte
310       2017       Charlotte
311       2017       Charlotte
312       2017       Charlotte
313       2017       Charlotte
314       2017       Charlotte
315       2017       Charlotte
316       2017       Charlotte
317       2017       Charlotte
318       2017       Charlotte
319       2017       Charlotte
320       2017       Charlotte
321       2017       Charlotte
322       2017       Charlotte
323       2017       Charlotte
324       2017       Charlotte
325       2017       Charlotte
326       2017       Charlotte
327       2018       Charlotte
328       2018       Charlotte
329       2018       Charlotte
330       2018       Charlotte
331       2018       Charlotte
332       2018       Charlotte
333       2018       Charlotte
334       2018       Charlotte
335       2018       Charlotte
336       2018       Charlotte
337       2018       Charlotte
338       2018       Charlotte

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

CHICAGO

     FRAME_Chicago <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Chicago",] )
     FRAME_Chicago
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.93
2                                   0.91
3                                   1.07
4                                   1.14
5                                   1.11
6                                   0.94
7                                   1.17
8                                   1.01
9                                   1.00
10                                  1.12
11                                  1.15
12                                  1.08
13                                  1.18
14                                  1.15
15                                  1.19
16                                  1.19
17                                  1.11
18                                  1.12
19                                  1.20
20                                  1.16
21                                  1.25
22                                  1.27
23                                  1.12
24                                  1.24
25                                  1.26
26                                  1.24
27                                  1.21
28                                  1.24
29                                  1.21
30                                  1.24
31                                  1.26
32                                  1.23
33                                  1.23
34                                  1.23
35                                  1.04
36                                  1.24
37                                  1.24
38                                  1.24
39                                  1.27
40                                  1.22
41                                  1.21
42                                  1.09
43                                  1.18
44                                  1.09
45                                  1.18
46                                  1.17
47                                  1.13
48                                  0.91
49                                  1.22
50                                  1.14
51                                  1.15
52                                  1.11
53                                  1.22
54                                  1.18
55                                  1.09
56                                  1.27
57                                  1.10
58                                  1.13
59                                  1.82
60                                  2.07
61                                  2.07
62                                  1.84
63                                  1.80
64                                  1.82
65                                  1.83
66                                  1.80
67                                  1.70
68                                  1.67
69                                  1.60
70                                  1.60
71                                  1.63
72                                  1.67
73                                  1.68
74                                  1.68
75                                  1.66
76                                  1.51
77                                  1.53
78                                  1.23
79                                  1.18
80                                  1.20
81                                  1.30
82                                  1.20
83                                  1.15
84                                  1.11
85                                  1.04
86                                  0.97
87                                  1.00
88                                  1.08
89                                  1.08
90                                  1.11
91                                  1.15
92                                  0.90
93                                  1.11
94                                  1.00
95                                  1.13
96                                  1.15
97                                  1.09
98                                  1.00
99                                  0.82
100                                 1.12
101                                 1.01
102                                 1.11
103                                 1.08
104                                 0.93
105                                 0.93
106                                 1.36
107                                 1.49
108                                 1.13
109                                 1.56
110                                 1.70
111                                 1.71
112                                 1.78
113                                 1.77
114                                 1.94
115                                 2.06
116                                 2.11
117                                 2.22
118                                 2.14
119                                 2.07
120                                 2.15
121                                 2.02
122                                 2.00
123                                 1.93
124                                 1.88
125                                 1.89
126                                 1.72
127                                 1.62
128                                 1.59
129                                 1.54
130                                 1.54
131                                 1.45
132                                 1.44
133                                 1.53
134                                 1.60
135                                 1.64
136                                 1.63
137                                 1.64
138                                 1.60
139                                 1.51
140                                 1.62
141                                 1.63
142                                 1.65
143                                 1.65
144                                 1.65
145                                 1.64
146                                 1.64
147                                 1.66
148                                 1.62
149                                 1.61
150                                 1.27
151                                 1.05
152                                 0.70
153                                 1.10
154                                 1.21
155                                 1.23
156                                 1.16
157                                 1.15
158                                 1.36
159                                 1.42
160                                 1.54
161                                 1.53
162                                 1.51
163                                 1.53
164                                 1.39
165                                 0.88
166                                 1.36
167                                 1.42
168                                 1.64
169                                 1.50
170                                 1.58
171                                 1.58
172                                 1.59
173                                 1.59
174                                 1.59
175                                 1.57
176                                 1.58
177                                 1.59
178                                 1.60
179                                 1.61
180                                 1.79
181                                 1.69
182                                 1.78
183                                 1.67
184                                 1.60
185                                 1.61
186                                 1.61
187                                 1.60
188                                 1.61
189                                 1.62
190                                 1.62
191                                 1.59
192                                 1.62
193                                 1.65
194                                 1.66
195                                 1.67
196                                 1.68
197                                 1.82
198                                 1.87
199                                 1.85
200                                 1.85
201                                 1.86
202                                 1.57
203                                 1.47
204                                 1.51
205                                 1.51
206                                 1.55
207                                 1.30
208                                 1.65
209                                 1.66
210                                 1.67
211                                 1.64
212                                 1.62
213                                 1.82
214                                 1.83
215                                 1.81
216                                 1.78
217                                 1.52
218                                 1.83
219                                 1.81
220                                 1.79
221                                 1.49
222                                 1.34
223                                 1.34
224                                 1.32
225                                 1.71
226                                 2.30
227                                 2.30
228                                 2.25
229                                 2.24
230                                 2.23
231                                 2.20
232                                 2.11
233                                 2.04
234                                 2.05
235                                 2.05
236                                 2.06
237                                 2.07
238                                 2.08
239                                 2.09
240                                 2.08
241                                 2.09
242                                 2.13
243                                 2.11
244                                 1.93
245                                 1.89
246                                 2.01
247                                 1.50
248                                 1.80
249                                 1.53
250                                 1.53
251                                 1.24
252                                 1.08
253                                 1.33
254                                 1.61
255                                 1.62
256                                 1.61
257                                 1.63
258                                 1.55
259                                 1.68
260                                 1.66
261                                 1.50
262                                 1.50
263                                 1.50
264                                 1.49
265                                 1.60
266                                 1.55
267                                 1.58
268                                 1.60
269                                 1.61
270                                 1.62
271                                 1.52
272                                 1.62
273                                 1.62
274                                 1.79
275                                 1.81
276                                 1.39
277                                 1.65
278                                 1.75
279                                 1.73
280                                 1.79
281                                 2.06
282                                 1.95
283                                 2.06
284                                 2.10
285                                 1.90
286                                 1.80
287                                 1.84
288                                 1.92
289                                 2.13
290                                 1.96
291                                 2.05
292                                 2.11
293                                 1.71
294                                 1.69
295                                 1.74
296                                 1.90
297                                 1.88
298                                 1.83
299                                 1.99
300                                 1.98
301                                 1.98
302                                 1.98
303                                 1.96
304                                 1.94
305                                 1.93
306                                 1.94
307                                 1.93
308                                 1.95
309                                 1.97
310                                 1.67
311                                 1.74
312                                 1.95
313                                 1.94
314                                 1.67
315                                 1.68
316                                 1.93
317                                 1.64
318                                 1.69
319                                 1.60
320                                 1.53
321                                 1.49
322                                 1.51
323                                 1.51
324                                 1.85
325                                 1.81
326                                 1.34
327                                 1.69
328                                 1.66
329                                 1.66
330                                 1.62
331                                 1.68
332                                 1.66
333                                 1.65
334                                 1.62
335                                 1.72
336                                 1.82
337                                 1.79
338                                 1.83
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   661137
2                                                   690669
3                                                   668602
4                                                   664020
5                                                   602481
6                                                   751898
7                                                   641882
8                                                   711147
9                                                   807041
10                                                  687650
11                                                  690303
12                                                  708914
13                                                  675173
14                                                  720502
15                                                  729117
16                                                  775671
17                                                  808678
18                                                  773774
19                                                  751850
20                                                  817691
21                                                  731125
22                                                  761027
23                                                  791332
24                                                  797060
25                                                  772151
26                                                  937317
27                                                  786250
28                                                  804903
29                                                  868197
30                                                  824216
31                                                  803572
32                                                  887105
33                                                  817870
34                                                  835939
35                                                  978376
36                                                  779868
37                                                  832529
38                                                  710719
39                                                  751812
40                                                  757272
41                                                  799947
42                                                  827010
43                                                  772997
44                                                  863392
45                                                  773078
46                                                  726401
47                                                  729326
48                                                 1133492
49                                                  745439
50                                                  797741
51                                                  802875
52                                                  783068
53                                                  616654
54                                                  631117
55                                                  734954
56                                                  624751
57                                                  581639
58                                                  694873
59                                                  436711
60                                                  376477
61                                                  375214
62                                                  431274
63                                                  523683
64                                                  515146
65                                                  509216
66                                                  553864
67                                                  600390
68                                                  635036
69                                                  670453
70                                                  621716
71                                                  628099
72                                                  626087
73                                                  644670
74                                                  614939
75                                                  658914
76                                                  717279
77                                                  712081
78                                                  974278
79                                                  860171
80                                                  882074
81                                                  770843
82                                                  885603
83                                                  958567
84                                                  903865
85                                                  930403
86                                                  974740
87                                                  890282
88                                                  879308
89                                                  913422
90                                                  770662
91                                                  712210
92                                                  865585
93                                                  770557
94                                                  823797
95                                                  809326
96                                                  780952
97                                                  752336
98                                                  803121
99                                                 1134049
100                                                 774091
101                                                 794030
102                                                 778413
103                                                 844277
104                                                1009667
105                                                1182648
106                                                 707646
107                                                 620054
108                                                1021445
109                                                 654739
110                                                 506394
111                                                 555872
112                                                 541010
113                                                 538967
114                                                 551606
115                                                 519814
116                                                 546056
117                                                 516321
118                                                 537709
119                                                 551896
120                                                 553215
121                                                 590590
122                                                 614460
123                                                 624618
124                                                 674811
125                                                 640354
126                                                 692141
127                                                 735266
128                                                 752799
129                                                 801888
130                                                 880107
131                                                 943747
132                                                 868771
133                                                 862383
134                                                 807370
135                                                 776195
136                                                 781086
137                                                 764241
138                                                 792533
139                                                 976085
140                                                 787324
141                                                 719368
142                                                 742675
143                                                 699592
144                                                 676301
145                                                 656875
146                                                 678898
147                                                 665365
148                                                 680803
149                                                 674827
150                                                 728402
151                                                 874350
152                                                1621254
153                                                 830499
154                                                 845066
155                                                 776821
156                                                 822522
157                                                 803349
158                                                 908202
159                                                 841171
160                                                 830421
161                                                 820728
162                                                 794925
163                                                 736317
164                                                 897178
165                                                1802646
166                                                 947968
167                                                 951648
168                                                 762998
169                                                 842141
170                                                  20995
171                                                  22452
172                                                  24060
173                                                  27081
174                                                  22168
175                                                  24096
176                                                  25759
177                                                  26247
178                                                  24450
179                                                  22649
180                                                  19819
181                                                  19521
182                                                  20399
183                                                  24312
184                                                  26935
185                                                  27327
186                                                  28269
187                                                  30664
188                                                  31624
189                                                  29458
190                                                  28254
191                                                  27491
192                                                  26098
193                                                  19677
194                                                  18946
195                                                  19705
196                                                  18877
197                                                  16136
198                                                  18375
199                                                  19636
200                                                  18626
201                                                  20871
202                                                  24727
203                                                  27146
204                                                  27210
205                                                  31932
206                                                  27489
207                                                  88346
208                                                  21064
209                                                  15545
210                                                  16077
211                                                  15001
212                                                  16545
213                                                  11842
214                                                  10235
215                                                  10576
216                                                   9911
217                                                  14391
218                                                  10952
219                                                  12500
220                                                  12916
221                                                  17723
222                                                  33412
223                                                  40116
224                                                  54113
225                                                  35157
226                                                  20021
227                                                  24925
228                                                  28483
229                                                  28819
230                                                  32607
231                                                  28741
232                                                  30429
233                                                  26995
234                                                  27147
235                                                  26731
236                                                  21877
237                                                  30146
238                                                  29893
239                                                  27637
240                                                  31253
241                                                  27655
242                                                  26720
243                                                  28969
244                                                  24895
245                                                  26249
246                                                  12651
247                                                  15807
248                                                  27771
249                                                  37651
250                                                  40535
251                                                  42580
252                                                  65326
253                                                  45768
254                                                  32455
255                                                  34201
256                                                  31459
257                                                  35193
258                                                  25406
259                                                  35474
260                                                  35602
261                                                  35086
262                                                  32456
263                                                  29584
264                                                  36775
265                                                  34165
266                                                  32492
267                                                  28657
268                                                  31000
269                                                  28813
270                                                  25005
271                                                  25574
272                                                  35835
273                                                  24460
274                                                  26040
275                                                  32444
276                                                  44435
277                                                  40734
278                                                  32233
279                                                  28513
280                                                  27899
281                                                  32924
282                                                  41108
283                                                  35334
284                                                  33776
285                                                  42272
286                                                  44055
287                                                  31904
288                                                  33347
289                                                  28048
290                                                  26481
291                                                  20131
292                                                  26530
293                                                  13897
294                                                  17452
295                                                  13742
296                                                  39043
297                                                  36591
298                                                  43701
299                                                  34529
300                                                  34696
301                                                  34224
302                                                  36016
303                                                  44860
304                                                  46994
305                                                  48877
306                                                  44592
307                                                  40490
308                                                  42799
309                                                  46274
310                                                  50575
311                                                  68195
312                                                  57025
313                                                  56047
314                                                  48330
315                                                  45989
316                                                  33185
317                                                  47884
318                                                  46602
319                                                  36646
320                                                  35870
321                                                  42439
322                                                  44735
323                                                  47561
324                                                  38543
325                                                  28099
326                                                  36916
327                                                  35088
328                                                  35542
329                                                  41970
330                                                  46027
331                                                  36433
332                                                  33679
333                                                  38202
334                                                  46957
335                                                  40771
336                                                  36689
337                                                  44956
338                                                  41573
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    42799
2                                                    35725
3                                                    40380
4                                                    53173
5                                                    42851
6                                                    34869
7                                                    31286
8                                                    44528
9                                                    69420
10                                                   59161
11                                                   25883
12                                                   16455
13                                                   14269
14                                                   16484
15                                                   16478
16                                                   17172
17                                                   17596
18                                                   17363
19                                                   17596
20                                                   19194
21                                                   18237
22                                                   21607
23                                                   26653
24                                                   20535
25                                                   22934
26                                                   28423
27                                                   27392
28                                                   34715
29                                                   55228
30                                                   51411
31                                                   50564
32                                                   57568
33                                                   54088
34                                                   55587
35                                                   64799
36                                                   46749
37                                                   52850
38                                                   45104
39                                                   38641
40                                                   25630
41                                                   29308
42                                                   30101
43                                                   27489
44                                                   24137
45                                                   39072
46                                                   29712
47                                                   28217
48                                                   50784
49                                                   26118
50                                                   24918
51                                                   31240
52                                                   30270
53                                                   67146
54                                                   92760
55                                                   84616
56                                                   90158
57                                                  151462
58                                                  134285
59                                                   34385
60                                                   31207
61                                                   33565
62                                                   46709
63                                                   52200
64                                                   40105
65                                                   37926
66                                                   40601
67                                                   74369
68                                                   80472
69                                                   77982
70                                                   54971
71                                                   62002
72                                                   49617
73                                                   40121
74                                                   38276
75                                                   42453
76                                                   43790
77                                                   52541
78                                                   55651
79                                                   80280
80                                                   64900
81                                                   50498
82                                                   31729
83                                                   36554
84                                                   36569
85                                                   49040
86                                                   43166
87                                                   39249
88                                                   34134
89                                                   47878
90                                                   49679
91                                                   36212
92                                                   33748
93                                                   36018
94                                                   39540
95                                                   35309
96                                                   32414
97                                                   39220
98                                                   45558
99                                                   68454
100                                                  35214
101                                                  23863
102                                                  35100
103                                                  44289
104                                                  77301
105                                                 144034
106                                                  83138
107                                                 113960
108                                                 142086
109                                                  99971
110                                                  71736
111                                                  86790
112                                                  90581
113                                                  96106
114                                                 117423
115                                                  84591
116                                                  89192
117                                                  62315
118                                                  73349
119                                                  79162
120                                                  59561
121                                                  65245
122                                                  65247
123                                                  87298
124                                                  91478
125                                                  64034
126                                                  68696
127                                                  76111
128                                                  79551
129                                                  91095
130                                                  82890
131                                                 128743
132                                                 132426
133                                                  68578
134                                                  87527
135                                                  79878
136                                                  62151
137                                                  67698
138                                                  99653
139                                                 133905
140                                                  81817
141                                                  81460
142                                                  65083
143                                                  70040
144                                                  64888
145                                                  60039
146                                                  61928
147                                                  59930
148                                                  59137
149                                                  52554
150                                                  61491
151                                                 144293
152                                                 378806
153                                                  86213
154                                                 120093
155                                                  78836
156                                                  79630
157                                                  87696
158                                                 142681
159                                                  85185
160                                                  95042
161                                                 109595
162                                                  74466
163                                                  67207
164                                                 131361
165                                                 257096
166                                                 108234
167                                                 110760
168                                                  82376
169                                                 132853
170                                                   1065
171                                                    731
172                                                    876
173                                                    820
174                                                    457
175                                                    717
176                                                    609
177                                                    643
178                                                    937
179                                                   1033
180                                                   1238
181                                                    934
182                                                    787
183                                                   1213
184                                                   1188
185                                                    986
186                                                   1284
187                                                   1066
188                                                   1517
189                                                   1142
190                                                   1174
191                                                    614
192                                                    402
193                                                    562
194                                                    253
195                                                    186
196                                                    577
197                                                    655
198                                                    503
199                                                    858
200                                                    599
201                                                    552
202                                                    201
203                                                    456
204                                                    672
205                                                    920
206                                                    614
207                                                    722
208                                                    112
209                                                    120
210                                                    436
211                                                    991
212                                                    819
213                                                    638
214                                                    512
215                                                    949
216                                                   1224
217                                                   1363
218                                                    712
219                                                   1155
220                                                   1427
221                                                   1189
222                                                     53
223                                                     59
224                                                     63
225                                                     87
226                                                     57
227                                                     50
228                                                     57
229                                                     39
230                                                     89
231                                                     84
232                                                     73
233                                                     79
234                                                    100
235                                                     94
236                                                     98
237                                                     93
238                                                     92
239                                                    699
240                                                     70
241                                                     84
242                                                     76
243                                                     81
244                                                    107
245                                                     61
246                                                     40
247                                                     85
248                                                     60
249                                                    122
250                                                    162
251                                                    106
252                                                    186
253                                                     78
254                                                     37
255                                                     84
256                                                    103
257                                                     66
258                                                     98
259                                                     70
260                                                     95
261                                                    171
262                                                    152
263                                                    111
264                                                    736
265                                                    918
266                                                    946
267                                                    751
268                                                    872
269                                                    814
270                                                    976
271                                                    777
272                                                   1438
273                                                    931
274                                                    142
275                                                    324
276                                                    946
277                                                    180
278                                                     22
279                                                     36
280                                                     29
281                                                     25
282                                                     25
283                                                     29
284                                                     38
285                                                     24
286                                                     51
287                                                     61
288                                                    111
289                                                    124
290                                                    246
291                                                    107
292                                                     92
293                                                     52
294                                                     65
295                                                     39
296                                                     94
297                                                     88
298                                                     84
299                                                    102
300                                                     89
301                                                    152
302                                                     48
303                                                     69
304                                                     42
305                                                     62
306                                                     35
307                                                     72
308                                                     43
309                                                     40
310                                                    144
311                                                    190
312                                                    299
313                                                    539
314                                                   1252
315                                                   1720
316                                                    262
317                                                    445
318                                                    799
319                                                    325
320                                                     49
321                                                     82
322                                                     87
323                                                     53
324                                                     78
325                                                     71
326                                                     37
327                                                    325
328                                                    185
329                                                    583
330                                                   1107
331                                                    247
332                                                    259
333                                                    410
334                                                    313
335                                                    215
336                                                     84
337                                                    133
338                                                    119
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                 445219
2                                                 464574
3                                                 451470
4                                                 455048
5                                                 422479
6                                                 553545
7                                                 441754
8                                                 498562
9                                                 562215
10                                                454353
11                                                482992
12                                                503814
13                                                485262
14                                                532029
15                                                534644
16                                                546965
17                                                581941
18                                                570147
19                                                550360
20                                                609692
21                                                526303
22                                                559825
23                                                577460
24                                                560872
25                                                545739
26                                                661207
27                                                524477
28                                                536926
29                                                586037
30                                                544664
31                                                518850
32                                                611797
33                                                569043
34                                                545784
35                                                690168
36                                                543002
37                                                594215
38                                                488323
39                                                530947
40                                                545318
41                                                596342
42                                                600833
43                                                523118
44                                                637043
45                                                533387
46                                                488592
47                                                499138
48                                                824745
49                                                488218
50                                                533718
51                                                558488
52                                                550752
53                                                352087
54                                                363658
55                                                449932
56                                                372929
57                                                291206
58                                                422382
59                                                265007
60                                                224562
61                                                226981
62                                                251075
63                                                324241
64                                                314006
65                                                311086
66                                                337874
67                                                340540
68                                                355229
69                                                415925
70                                                373442
71                                                372918
72                                                371087
73                                                385924
74                                                373206
75                                                386822
76                                                425776
77                                                381031
78                                                584813
79                                                499474
80                                                550500
81                                                478336
82                                                606702
83                                                642858
84                                                592065
85                                                609294
86                                                612340
87                                                587919
88                                                592371
89                                                619840
90                                                464982
91                                                457314
92                                                600796
93                                                514604
94                                                569734
95                                                557027
96                                                522790
97                                                483562
98                                                501189
99                                                758582
100                                               512609
101                                               543471
102                                               500624
103                                               534405
104                                               656387
105                                               845965
106                                               417906
107                                               275987
108                                               277789
109                                               378155
110                                               278263
111                                               285841
112                                               276787
113                                               284220
114                                               268774
115                                               275588
116                                               288024
117                                               296817
118                                               293405
119                                               322017
120                                               315414
121                                               318096
122                                               343566
123                                               336708
124                                               349704
125                                               355733
126                                               401420
127                                               447892
128                                               459859
129                                               486178
130                                               504038
131                                               534893
132                                               473567
133                                               549160
134                                               514710
135                                               493632
136                                               538900
137                                               496380
138                                               470280
139                                               591928
140                                               498580
141                                               470215
142                                               490302
143                                               454692
144                                               452599
145                                               432870
146                                               448963
147                                               446178
148                                               454626
149                                               442526
150                                               461727
151                                               454381
152                                               912672
153                                               511366
154                                               497236
155                                               480072
156                                               499836
157                                               531287
158                                               463136
159                                               435552
160                                               454041
161                                               465040
162                                               452449
163                                               403150
164                                               488374
165                                              1235325
166                                               515117
167                                               473797
168                                               440322
169                                               475773
170                                                19321
171                                                21575
172                                                23110
173                                                26105
174                                                21678
175                                                23256
176                                                24890
177                                                24714
178                                                23374
179                                                21496
180                                                18375
181                                                18480
182                                                19395
183                                                23052
184                                                25204
185                                                26008
186                                                26272
187                                                29018
188                                                29613
189                                                27913
190                                                26744
191                                                26527
192                                                25321
193                                                18741
194                                                18087
195                                                18999
196                                                18164
197                                                15171
198                                                17175
199                                                18325
200                                                17157
201                                                19633
202                                                24406
203                                                23859
204                                                26198
205                                                30399
206                                                25889
207                                                86708
208                                                20035
209                                                14605
210                                                15367
211                                                12767
212                                                13267
213                                                 9824
214                                                 8649
215                                                 8234
216                                                 6971
217                                                11835
218                                                 9515
219                                                10831
220                                                10900
221                                                15628
222                                                30237
223                                                37133
224                                                50779
225                                                31941
226                                                16648
227                                                22005
228                                                25011
229                                                24967
230                                                29521
231                                                25376
232                                                26384
233                                                23404
234                                                24050
235                                                24273
236                                                19190
237                                                27851
238                                                27758
239                                                25426
240                                                29470
241                                                26189
242                                                25684
243                                                27362
244                                                20034
245                                                23561
246                                                10422
247                                                13515
248                                                25630
249                                                35503
250                                                38677
251                                                41328
252                                                64298
253                                                44460
254                                                30432
255                                                33147
256                                                30786
257                                                34697
258                                                24630
259                                                35213
260                                                35273
261                                                34565
262                                                31927
263                                                28998
264                                                35611
265                                                32244
266                                                28553
267                                                25969
268                                                29898
269                                                27719
270                                                23728
271                                                24636
272                                                34064
273                                                23416
274                                                16241
275                                                21630
276                                                21148
277                                                30866
278                                                24947
279                                                19019
280                                                20560
281                                                25147
282                                                31160
283                                                28054
284                                                23237
285                                                30172
286                                                31925
287                                                25187
288                                                25900
289                                                20717
290                                                17924
291                                                11897
292                                                18594
293                                                 5014
294                                                 6950
295                                                 7883
296                                                31701
297                                                31152
298                                                35396
299                                                33440
300                                                33042
301                                                33078
302                                                34824
303                                                42911
304                                                43897
305                                                43856
306                                                40715
307                                                36511
308                                                39979
309                                                44554
310                                                46354
311                                                63661
312                                                53040
313                                                51260
314                                                43428
315                                                40737
316                                                29577
317                                                42428
318                                                37769
319                                                28156
320                                                32793
321                                                39289
322                                                40555
323                                                43587
324                                                34378
325                                                23893
326                                                34077
327                                                27550
328                                                26956
329                                                32383
330                                                35255
331                                                29264
332                                                24314
333                                                26525
334                                                32668
335                                                31319
336                                                28134
337                                                31177
338                                                29600
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                   78378
2                                                   96306
3                                                   94163
4                                                   92888
5                                                   74989
6                                                   89732
7                                                   93857
8                                                  101889
9                                                  106537
10                                                 108012
11                                                 118311
12                                                 119996
13                                                 105711
14                                                 101194
15                                                 103104
16                                                 128620
17                                                 122938
18                                                 112344
19                                                 103622
20                                                 104997
21                                                 104796
22                                                  97419
23                                                  99067
24                                                 116910
25                                                 109149
26                                                 118635
27                                                 104595
28                                                 122240
29                                                 107908
30                                                 122929
31                                                 132733
32                                                 113476
33                                                 109205
34                                                 141251
35                                                 129694
36                                                  97410
37                                                  93303
38                                                  83138
39                                                  90802
40                                                  84866
41                                                  83938
42                                                  98822
43                                                 112934
44                                                 111791
45                                                 106178
46                                                 110447
47                                                 119634
48                                                 164884
49                                                 145882
50                                                 140240
51                                                 133849
52                                                 124506
53                                                 110167
54                                                 101491
55                                                 103933
56                                                  94496
57                                                  81651
58                                                  80126
59                                                  73022
60                                                  61666
61                                                  60261
62                                                  68235
63                                                  75842
64                                                  90032
65                                                  90495
66                                                  98809
67                                                  97901
68                                                  99521
69                                                  91324
70                                                  93289
71                                                  87450
72                                                 102966
73                                                 103403
74                                                  97843
75                                                 109032
76                                                 108231
77                                                 150963
78                                                 184519
79                                                 159812
80                                                 163028
81                                                 140925
82                                                 145607
83                                                 145364
84                                                 145104
85                                                 157985
86                                                 173294
87                                                 155290
88                                                 151281
89                                                 137010
90                                                 153442
91                                                 139240
92                                                 131467
93                                                 122808
94                                                 125902
95                                                 129160
96                                                 133067
97                                                 125839
98                                                 131203
99                                                 155377
100                                                132958
101                                                136034
102                                                139310
103                                                143203
104                                                162054
105                                                120869
106                                                116406
107                                                 99249
108                                                 90891
109                                                 92092
110                                                 82294
111                                                 98666
112                                                 91330
113                                                 81794
114                                                 88633
115                                                 95627
116                                                 93957
117                                                 87407
118                                                 85663
119                                                 61656
120                                                100808
121                                                114859
122                                                114880
123                                                115571
124                                                140354
125                                                135485
126                                                136885
127                                                134637
128                                                127441
129                                                129762
130                                                168507
131                                                149582
132                                                139914
133                                                138494
134                                                122729
135                                                132271
136                                                103859
137                                                123099
138                                                147524
139                                                162708
140                                                125905
141                                                 94820
142                                                104458
143                                                102228
144                                                 97671
145                                                101929
146                                                103001
147                                                105821
148                                                 98165
149                                                110939
150                                                133540
151                                                187794
152                                                224555
153                                                135946
154                                                136329
155                                                142550
156                                                151447
157                                                114647
158                                                174976
159                                                174150
160                                                142564
161                                                104755
162                                                131641
163                                                131733
164                                                154224
165                                                158735
166                                                124271
167                                                154586
168                                                134142
169                                                139315
170                                                     0
171                                                     0
172                                                     0
173                                                     0
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          94741                        83067
2                          94064                        76241
3                          82588                        76829
4                          62911                        62473
5                          62161                        61863
6                          73752                        73457
7                          74985                        74724
8                          66166                        65842
9                          68870                        68448
10                         66124                        65795
11                         63116                        62077
12                         68648                        65145
13                         69930                        66015
14                         70795                        63370
15                         74892                        71196
16                         82914                        78368
17                         86202                        82905
18                         73919                        71627
19                         80272                        77074
20                         83807                        80019
21                         81788                        79510
22                         82176                        79198
23                         88152                        83729
24                         98743                        92363
25                         94328                        90429
26                        129053                       126579
27                        129787                       126836
28                        111022                       107243
29                        119025                       116318
30                        105212                        99942
31                        101425                        99123
32                        104264                       101616
33                         85534                        82690
34                         93316                        88848
35                         93716                        89297
36                         92706                        88342
37                         92161                        89277
38                         94154                        91664
39                         91423                        87170
40                        101459                        97285
41                         90359                        87394
42                         97254                        93313
43                        109455                       107215
44                         90420                        88092
45                         94440                        90447
46                         97651                        92519
47                         82336                        78981
48                         93078                        89517
49                         85221                        75868
50                         98866                        95516
51                         79299                        74716
52                         77539                        72888
53                         87253                        81571
54                         73208                        65278
55                         96473                        87752
56                         67168                        64475
57                         57320                        56502
58                         58080                        55015
59                         64298                        63466
60                         59042                        57804
61                         54407                        48140
62                         65256                        55554
63                         71400                        61522
64                         71003                        60216
65                         69709                        58004
66                         76580                        65666
67                         87580                        80619
68                         99814                        97150
69                         85223                        82377
70                        100013                        92534
71                        105729                       102614
72                        102416                        99833
73                        115223                       113970
74                        105615                       104112
75                        120607                       113683
76                        139483                       122026
77                        127546                       118625
78                        149295                       143295
79                        120604                       115881
80                        103647                        99766
81                        101084                        98097
82                        101566                        96845
83                        133791                       129035
84                        130127                       121786
85                        114085                       108571
86                        145940                       137881
87                        107823                       101941
88                        101521                        96824
89                        108694                       101842
90                        102559                        91081
91                         79444                        75467
92                         99573                        95289
93                         97128                        93973
94                         88621                        86429
95                         87830                        85607
96                         92680                        90778
97                        103715                        93142
98                        125171                       106297
99                        151636                       129791
100                        93311                        92124
101                        90661                        88261
102                       103379                        87560
103                       122381                        82671
104                       113925                        80770
105                        71779                        63314
106                        90196                        78807
107                       130858                        77381
108                       510679                        87490
109                        84522                        48070
110                        74100                        68552
111                        84575                        81798
112                        82312                        79021
113                        76848                        73426
114                        76777                        74127
115                        64007                        59543
116                        74882                        69716
117                        69781                        66070
118                        85292                        77980
119                        89060                        79456
120                        77432                        69985
121                        92390                        82437
122                        90767                        79319
123                        85041                        74671
124                        93275                        79635
125                        85103                        72282
126                        85140                        71189
127                        76625                        66466
128                        85948                        73112
129                        94852                        84928
130                       124673                       122062
131                       130528                       128739
132                       122863                       119020
133                       106152                       103151
134                        82404                        76118
135                        70414                        61829
136                        76176                        69118
137                        77064                        67000
138                        75075                        68907
139                        87544                        75729
140                        81022                        72855
141                        72873                        66654
142                        82832                        75156
143                        72633                        63363
144                        61143                        56001
145                        62037                        56905
146                        65007                        61719
147                        53435                        47528
148                        68875                        62918
149                        68809                        62915
150                        71644                        64795
151                        87882                        81976
152                       105221                        94444
153                        96974                        85616
154                        91408                        83228
155                        75362                        67302
156                        91609                        81468
157                        69718                        63551
158                       127409                       103579
159                       146284                       110036
160                       138774                       100439
161                       141338                        97378
162                       136370                        91024
163                       134227                        98804
164                       123219                        85210
165                       151490                        91954
166                       200347                        79871
167                       212505                        79124
168                       106157                        93375
169                        94201                        85020
170                          610                          610
171                          147                          143
172                           73                           73
173                          157                          157
174                           33                           33
175                          123                          120
176                          260                          260
177                          890                          890
178                          140                          140
179                          120                          120
180                          207                          207
181                          107                          107
182                          217                          217
183                           47                           47
184                          543                          543
185                          333                          323
186                          713                          703
187                          580                          580
188                          493                          493
189                          403                          403
190                          337                          333
191                          350                          350
192                          376                          347
193                          374                          263
194                          606                          567
195                          520                          520
196                          137                          137
197                          310                          310
198                          697                          697
199                          453                          453
200                          870                          870
201                          686                          680
202                          120                           30
203                         2832                          903
204                          340                          340
205                          613                          613
206                          987                          987
207                          917                          917
208                          917                          917
209                          820                          820
210                          273                          273
211                         1243                         1243
212                         2460                         2460
213                         1381                         1381
214                         1074                         1074
215                         1393                         1393
216                         1716                         1716
217                         1192                         1192
218                          724                          724
219                          514                          514
220                          589                          589
221                          906                          906
222                         3123                         3123
223                         2923                         2923
224                         3270                         3270
225                         3128                         3128
226                         3315                         3315
227                         2869                         2869
228                         3415                         3415
229                         3813                         3813
230                         2998                         2998
231                         3281                         3276
232                         3972                         3972
233                         3512                         3512
234                         2997                         2997
235                         2363                         2363
236                         2588                         2588
237                         2202                         2202
238                         2043                         2043
239                         1512                         1512
240                         1713                         1713
241                         1382                         1382
242                          961                          961
243                         1527                         1527
244                         4753                         4753
245                         2627                         2627
246                         2189                         2184
247                         2207                         2207
248                         2081                         2081
249                         2025                         2025
250                         1696                         1696
251                         1147                         1147
252                          841                          841
253                         1231                         1231
254                         1985                         1985
255                          970                          970
256                          570                          570
257                          430                          430
258                          678                          678
259                          191                          191
260                          234                          234
261                          350                          350
262                          377                          377
263                          476                          476
264                          428                          428
265                         1003                         1003
266                         2994                         2994
267                         1937                         1937
268                          230                          230
269                          280                          280
270                          300                          300
271                          160                          160
272                          333                          333
273                          113                          113
274                         9657                         9650
275                        10490                        10483
276                        22341                        22341
277                         9688                         9681
278                         7265                         7209
279                         9459                         9427
280                         7309                         7292
281                         7752                         7734
282                         9924                         9916
283                         7251                         7240
284                        10501                        10492
285                        12075                        12071
286                        12079                        12071
287                         6656                         6656
288                         7335                         7331
289                         7207                         7207
290                         8312                         8312
291                         8127                         8127
292                         7845                         7845
293                         8831                         8824
294                        10437                        10433
295                         5820                         5820
296                         7249                         7249
297                         5351                         5351
298                         8192                         8192
299                          988                          988
300                         1566                         1566
301                          995                          991
302                         1144                         1144
303                         1880                         1880
304                         3055                         3051
305                         4959                         4959
306                         3842                         3842
307                         3908                         3908
308                         2777                         2777
309                         1681                         1681
310                         4077                         4072
311                         4345                         4345
312                         3686                         3686
313                         4249                         4249
314                         3650                         3645
315                         3532                         3527
316                         3346                         3346
317                         5011                         5011
318                         8034                         8030
319                         8165                         8165
320                         3029                         3029
321                         3068                         3068
322                         4093                         4089
323                         3921                         3921
324                         4086                         4086
325                         4135                         4135
326                         2803                         2803
327                         7213                         7177
328                         8402                         8399
329                         9004                         8990
330                         9665                         9655
331                         6922                         6909
332                         9105                         9095
333                        11268                        11261
334                        13975                        13975
335                         9237                         9237
336                         8471                         8471
337                        13645                        13635
338                        11854                        11851
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                           1618                          10056.67 conventional
2                           9593                           8230.00 conventional
3                           5694                             65.29 conventional
4                            421                             16.76 conventional
5                            299                              0.00 conventional
6                            294                              0.00 conventional
7                            261                              0.00 conventional
8                            324                              0.00 conventional
9                            422                              0.00 conventional
10                           323                              5.61 conventional
11                           286                            753.79 conventional
12                           529                           2974.56 conventional
13                          2240                           1674.84 conventional
14                          2923                           4501.47 conventional
15                          3317                            379.19 conventional
16                          3810                            736.09 conventional
17                          3290                              7.39 conventional
18                          2205                             86.59 conventional
19                          2760                            438.87 conventional
20                          3448                            340.71 conventional
21                          1905                            372.90 conventional
22                          2476                            501.53 conventional
23                          3516                            907.04 conventional
24                          3531                           2849.46 conventional
25                          2536                           1363.39 conventional
26                          2236                            237.24 conventional
27                          1896                           1054.56 conventional
28                          1659                           2120.09 conventional
29                          2619                             87.48 conventional
30                          4693                            576.94 conventional
31                          2299                              3.62 conventional
32                          2639                              9.04 conventional
33                          2813                             30.80 conventional
34                          4468                              0.00 conventional
35                          4415                              3.61 conventional
36                          3574                            790.11 conventional
37                          2780                            103.94 conventional
38                          2475                             14.30 conventional
39                          3423                            829.75 conventional
40                          4163                             10.68 conventional
41                          2925                             39.05 conventional
42                          3915                             26.59 conventional
43                          2235                              5.31 conventional
44                          2289                             38.97 conventional
45                          3977                             15.94 conventional
46                          5113                             19.58 conventional
47                          3273                             81.93 conventional
48                          3449                            112.35 conventional
49                          9266                             87.51 conventional
50                          3312                             37.57 conventional
51                          4539                             42.96 conventional
52                          4651                              0.00 conventional
53                           955                           4727.27 conventional
54                          1066                           6864.11 conventional
55                          1102                           7619.38 conventional
56                           621                           2071.42 conventional
57                           798                             20.45 conventional
58                           998                           2066.77 conventional
59                           594                            238.09 conventional
60                          1096                            143.16 conventional
61                          1587                           4679.64 conventional
62                           790                           8911.29 conventional
63                          1048                           8830.00 conventional
64                           969                           9817.92 conventional
65                           531                          11173.61 conventional
66                           744                          10170.01 conventional
67                           802                           6158.34 conventional
68                          2085                            578.74 conventional
69                          2320                            526.69 conventional
70                          4244                           3235.08 conventional
71                          1582                           1532.98 conventional
72                          2139                            443.73 conventional
73                           262                            991.15 conventional
74                           318                           1185.39 conventional
75                          1820                           5103.64 conventional
76                         12736                           4721.07 conventional
77                          1894                           7027.59 conventional
78                           379                           5620.33 conventional
79                           457                           4265.84 conventional
80                          1867                           2013.51 conventional
81                          2213                            773.95 conventional
82                          3216                           1503.98 conventional
83                          3360                           1396.15 conventional
84                          6545                           1797.15 conventional
85                          4798                            715.83 conventional
86                          4998                           3061.55 conventional
87                          4167                           1715.92 conventional
88                          4685                             13.01 conventional
89                          4807                           2044.47 conventional
90                          9927                           1550.94 conventional
91                          3947                             29.58 conventional
92                          4222                             62.71 conventional
93                          3147                              7.36 conventional
94                          2192                              0.00 conventional
95                          2223                              0.00 conventional
96                          1903                              0.00 conventional
97                         10559                             14.64 conventional
98                         18323                            551.65 conventional
99                         21749                             95.71 conventional
100                         1186                              0.00 conventional
101                         2400                              0.00 conventional
102                        15802                             16.67 conventional
103                        39333                            376.67 conventional
104                        21615                          11540.00 conventional
105                         8410                             55.34 conventional
106                        11311                             77.94 conventional
107                        53446                             31.45 conventional
108                       423186                              3.48 conventional
109                        36440                             12.00 conventional
110                         5532                             15.00 conventional
111                         2775                              2.00 conventional
112                         3280                             12.00 conventional
113                         3407                             15.24 conventional
114                         2648                              2.22 conventional
115                         4442                             22.22 conventional
116                         5165                              1.11 conventional
117                         3699                             11.73 conventional
118                         7213                             98.07 conventional
119                         9520                             85.15 conventional
120                         7393                             54.44 conventional
121                         7822                           2131.11 conventional
122                         7989                           3460.22 conventional
123                         8187                           2183.34 conventional
124                         9073                           4566.66 conventional
125                         8347                           4473.38 conventional
126                         8973                           4976.66 conventional
127                         7716                           2443.40 conventional
128                         7949                           4886.66 conventional
129                         5910                           4014.44 conventional
130                          658                           1952.22 conventional
131                          327                           1462.12 conventional
132                          764                           3078.75 conventional
133                          528                           2471.91 conventional
134                         1456                           4830.11 conventional
135                         2441                           6144.10 conventional
136                         1928                           5130.69 conventional
137                         2740                           7323.22 conventional
138                         2127                           4041.31 conventional
139                         2304                           9510.72 conventional
140                         2421                           5745.83 conventional
141                         1912                           4307.21 conventional
142                         2308                           5369.08 conventional
143                         2626                           6644.53 conventional
144                          935                           4207.37 conventional
145                         1563                           3568.48 conventional
146                          814                           2473.36 conventional
147                         1347                           4560.47 conventional
148                         1104                           4853.06 conventional
149                         1403                           4489.84 conventional
150                         1514                           5333.77 conventional
151                         2104                           3801.39 conventional
152                         1937                           8839.76 conventional
153                         1691                           9667.48 conventional
154                         1680                           6499.63 conventional
155                         1595                           6465.07 conventional
156                         1420                           8721.25 conventional
157                         1078                           5089.37 conventional
158                        22467                           1362.59 conventional
159                        34765                           1483.51 conventional
160                        37185                           1150.42 conventional
161                        42518                           1442.67 conventional
162                        44467                            879.87 conventional
163                        35147                            276.81 conventional
164                        37064                            945.56 conventional
165                        59113                            423.48 conventional
166                       120462                             13.54 conventional
167                       133370                             10.56 conventional
168                        12783                              0.00 conventional
169                         9162                             19.13 conventional
170                            0                              0.00      organic
171                            3                              0.00      organic
172                            0                              0.00      organic
173                            0                              0.00      organic
174                            0                              0.00      organic
175                            3                              0.00      organic
176                            0                              0.00      organic
177                            0                              0.00      organic
178                            0                              0.00      organic
179                            0                              0.00      organic
180                            0                              0.00      organic
181                            0                              0.00      organic
182                            0                              0.00      organic
183                            0                              0.00      organic
184                            0                              0.00      organic
185                           10                              0.00      organic
186                           10                              0.00      organic
187                            0                              0.00      organic
188                            0                              0.00      organic
189                            0                              0.00      organic
190                            3                              0.00      organic
191                            0                              0.00      organic
192                           29                              0.00      organic
193                          110                              0.00      organic
194                           39                              0.00      organic
195                            0                              0.00      organic
196                            0                              0.00      organic
197                            0                              0.00      organic
198                            0                              0.00      organic
199                            0                              0.00      organic
200                            0                              0.00      organic
201                            6                              0.00      organic
202                           90                              0.00      organic
203                         1929                              0.00      organic
204                            0                              0.00      organic
205                            0                              0.00      organic
206                            0                              0.00      organic
207                            0                              0.00      organic
208                            0                              0.00      organic
209                            0                              0.00      organic
210                            0                              0.00      organic
211                            0                              0.00      organic
212                            0                              0.00      organic
213                            0                              0.00      organic
214                            0                              0.00      organic
215                            0                              0.00      organic
216                            0                              0.00      organic
217                            0                              0.00      organic
218                            0                              0.00      organic
219                            0                              0.00      organic
220                            0                              0.00      organic
221                            0                              0.00      organic
222                            0                              0.00      organic
223                            0                              0.00      organic
224                            0                              0.00      organic
225                            0                              0.00      organic
226                            0                              0.00      organic
227                            0                              0.00      organic
228                            0                              0.00      organic
229                            0                              0.00      organic
230                            0                              0.00      organic
231                            4                              0.00      organic
232                            0                              0.00      organic
233                            0                              0.00      organic
234                            0                              0.00      organic
235                            0                              0.00      organic
236                            0                              0.00      organic
237                            0                              0.00      organic
238                            0                              0.00      organic
239                            0                              0.00      organic
240                            0                              0.00      organic
241                            0                              0.00      organic
242                            0                              0.00      organic
243                            0                              0.00      organic
244                            0                              0.00      organic
245                            0                              0.00      organic
246                            4                              0.00      organic
247                            0                              0.00      organic
248                            0                              0.00      organic
249                            0                              0.00      organic
250                            0                              0.00      organic
251                            0                              0.00      organic
252                            0                              0.00      organic
253                            0                              0.00      organic
254                            0                              0.00      organic
255                            0                              0.00      organic
256                            0                              0.00      organic
257                            0                              0.00      organic
258                            0                              0.00      organic
259                            0                              0.00      organic
260                            0                              0.00      organic
261                            0                              0.00      organic
262                            0                              0.00      organic
263                            0                              0.00      organic
264                            0                              0.00      organic
265                            0                              0.00      organic
266                            0                              0.00      organic
267                            0                              0.00      organic
268                            0                              0.00      organic
269                            0                              0.00      organic
270                            0                              0.00      organic
271                            0                              0.00      organic
272                            0                              0.00      organic
273                            0                              0.00      organic
274                            7                              0.00      organic
275                            7                              0.00      organic
276                            0                              0.00      organic
277                            7                              0.00      organic
278                           56                              0.00      organic
279                           31                              0.00      organic
280                           18                              0.00      organic
281                           19                              0.00      organic
282                            8                              0.00      organic
283                           11                              0.00      organic
284                            9                              0.00      organic
285                            4                              0.00      organic
286                            8                              0.00      organic
287                            0                              0.00      organic
288                            4                              0.00      organic
289                            0                              0.00      organic
290                            0                              0.00      organic
291                            0                              0.00      organic
292                            0                              0.00      organic
293                            7                              0.00      organic
294                            3                              0.00      organic
295                            0                              0.00      organic
296                            0                              0.00      organic
297                            0                              0.00      organic
298                            0                              0.00      organic
299                            0                              0.00      organic
300                            0                              0.00      organic
301                            3                              0.00      organic
302                            0                              0.00      organic
303                            0                              0.00      organic
304                            4                              0.00      organic
305                            0                              0.00      organic
306                            0                              0.00      organic
307                            0                              0.00      organic
308                            0                              0.00      organic
309                            0                              0.00      organic
310                            4                              0.00      organic
311                            0                              0.00      organic
312                            0                              0.00      organic
313                            0                              0.00      organic
314                            4                              0.00      organic
315                            4                              0.00      organic
316                            0                              0.00      organic
317                            0                              0.00      organic
318                            4                              0.00      organic
319                            0                              0.00      organic
320                            0                              0.00      organic
321                            0                              0.00      organic
322                            4                              0.00      organic
323                            0                              0.00      organic
324                            0                              0.00      organic
325                            0                              0.00      organic
326                            0                              0.00      organic
327                           37                              0.00      organic
328                            3                              0.00      organic
329                           13                              0.00      organic
330                           10                              0.00      organic
331                           13                              0.00      organic
332                           10                              0.00      organic
333                            7                              0.00      organic
334                            0                              0.00      organic
335                            0                              0.00      organic
336                            0                              0.00      organic
337                           10                              0.00      organic
338                            3                              0.00      organic
    year (AÑO) region (REGION)
1         2015         Chicago
2         2015         Chicago
3         2015         Chicago
4         2015         Chicago
5         2015         Chicago
6         2015         Chicago
7         2015         Chicago
8         2015         Chicago
9         2015         Chicago
10        2015         Chicago
11        2015         Chicago
12        2015         Chicago
13        2015         Chicago
14        2015         Chicago
15        2015         Chicago
16        2015         Chicago
17        2015         Chicago
18        2015         Chicago
19        2015         Chicago
20        2015         Chicago
21        2015         Chicago
22        2015         Chicago
23        2015         Chicago
24        2015         Chicago
25        2015         Chicago
26        2015         Chicago
27        2015         Chicago
28        2015         Chicago
29        2015         Chicago
30        2015         Chicago
31        2015         Chicago
32        2015         Chicago
33        2015         Chicago
34        2015         Chicago
35        2015         Chicago
36        2015         Chicago
37        2015         Chicago
38        2015         Chicago
39        2015         Chicago
40        2015         Chicago
41        2015         Chicago
42        2015         Chicago
43        2015         Chicago
44        2015         Chicago
45        2015         Chicago
46        2015         Chicago
47        2015         Chicago
48        2015         Chicago
49        2015         Chicago
50        2015         Chicago
51        2015         Chicago
52        2015         Chicago
53        2016         Chicago
54        2016         Chicago
55        2016         Chicago
56        2016         Chicago
57        2016         Chicago
58        2016         Chicago
59        2016         Chicago
60        2016         Chicago
61        2016         Chicago
62        2016         Chicago
63        2016         Chicago
64        2016         Chicago
65        2016         Chicago
66        2016         Chicago
67        2016         Chicago
68        2016         Chicago
69        2016         Chicago
70        2016         Chicago
71        2016         Chicago
72        2016         Chicago
73        2016         Chicago
74        2016         Chicago
75        2016         Chicago
76        2016         Chicago
77        2016         Chicago
78        2016         Chicago
79        2016         Chicago
80        2016         Chicago
81        2016         Chicago
82        2016         Chicago
83        2016         Chicago
84        2016         Chicago
85        2016         Chicago
86        2016         Chicago
87        2016         Chicago
88        2016         Chicago
89        2016         Chicago
90        2016         Chicago
91        2016         Chicago
92        2016         Chicago
93        2016         Chicago
94        2016         Chicago
95        2016         Chicago
96        2016         Chicago
97        2016         Chicago
98        2016         Chicago
99        2016         Chicago
100       2016         Chicago
101       2016         Chicago
102       2016         Chicago
103       2016         Chicago
104       2016         Chicago
105       2017         Chicago
106       2017         Chicago
107       2017         Chicago
108       2017         Chicago
109       2017         Chicago
110       2017         Chicago
111       2017         Chicago
112       2017         Chicago
113       2017         Chicago
114       2017         Chicago
115       2017         Chicago
116       2017         Chicago
117       2017         Chicago
118       2017         Chicago
119       2017         Chicago
120       2017         Chicago
121       2017         Chicago
122       2017         Chicago
123       2017         Chicago
124       2017         Chicago
125       2017         Chicago
126       2017         Chicago
127       2017         Chicago
128       2017         Chicago
129       2017         Chicago
130       2017         Chicago
131       2017         Chicago
132       2017         Chicago
133       2017         Chicago
134       2017         Chicago
135       2017         Chicago
136       2017         Chicago
137       2017         Chicago
138       2017         Chicago
139       2017         Chicago
140       2017         Chicago
141       2017         Chicago
142       2017         Chicago
143       2017         Chicago
144       2017         Chicago
145       2017         Chicago
146       2017         Chicago
147       2017         Chicago
148       2017         Chicago
149       2017         Chicago
150       2017         Chicago
151       2017         Chicago
152       2017         Chicago
153       2017         Chicago
154       2017         Chicago
155       2017         Chicago
156       2017         Chicago
157       2017         Chicago
158       2018         Chicago
159       2018         Chicago
160       2018         Chicago
161       2018         Chicago
162       2018         Chicago
163       2018         Chicago
164       2018         Chicago
165       2018         Chicago
166       2018         Chicago
167       2018         Chicago
168       2018         Chicago
169       2018         Chicago
170       2015         Chicago
171       2015         Chicago
172       2015         Chicago
173       2015         Chicago
174       2015         Chicago
175       2015         Chicago
176       2015         Chicago
177       2015         Chicago
178       2015         Chicago
179       2015         Chicago
180       2015         Chicago
181       2015         Chicago
182       2015         Chicago
183       2015         Chicago
184       2015         Chicago
185       2015         Chicago
186       2015         Chicago
187       2015         Chicago
188       2015         Chicago
189       2015         Chicago
190       2015         Chicago
191       2015         Chicago
192       2015         Chicago
193       2015         Chicago
194       2015         Chicago
195       2015         Chicago
196       2015         Chicago
197       2015         Chicago
198       2015         Chicago
199       2015         Chicago
200       2015         Chicago
201       2015         Chicago
202       2015         Chicago
203       2015         Chicago
204       2015         Chicago
205       2015         Chicago
206       2015         Chicago
207       2015         Chicago
208       2015         Chicago
209       2015         Chicago
210       2015         Chicago
211       2015         Chicago
212       2015         Chicago
213       2015         Chicago
214       2015         Chicago
215       2015         Chicago
216       2015         Chicago
217       2015         Chicago
218       2015         Chicago
219       2015         Chicago
220       2015         Chicago
221       2015         Chicago
222       2016         Chicago
223       2016         Chicago
224       2016         Chicago
225       2016         Chicago
226       2016         Chicago
227       2016         Chicago
228       2016         Chicago
229       2016         Chicago
230       2016         Chicago
231       2016         Chicago
232       2016         Chicago
233       2016         Chicago
234       2016         Chicago
235       2016         Chicago
236       2016         Chicago
237       2016         Chicago
238       2016         Chicago
239       2016         Chicago
240       2016         Chicago
241       2016         Chicago
242       2016         Chicago
243       2016         Chicago
244       2016         Chicago
245       2016         Chicago
246       2016         Chicago
247       2016         Chicago
248       2016         Chicago
249       2016         Chicago
250       2016         Chicago
251       2016         Chicago
252       2016         Chicago
253       2016         Chicago
254       2016         Chicago
255       2016         Chicago
256       2016         Chicago
257       2016         Chicago
258       2016         Chicago
259       2016         Chicago
260       2016         Chicago
261       2016         Chicago
262       2016         Chicago
263       2016         Chicago
264       2016         Chicago
265       2016         Chicago
266       2016         Chicago
267       2016         Chicago
268       2016         Chicago
269       2016         Chicago
270       2016         Chicago
271       2016         Chicago
272       2016         Chicago
273       2016         Chicago
274       2017         Chicago
275       2017         Chicago
276       2017         Chicago
277       2017         Chicago
278       2017         Chicago
279       2017         Chicago
280       2017         Chicago
281       2017         Chicago
282       2017         Chicago
283       2017         Chicago
284       2017         Chicago
285       2017         Chicago
286       2017         Chicago
287       2017         Chicago
288       2017         Chicago
289       2017         Chicago
290       2017         Chicago
291       2017         Chicago
292       2017         Chicago
293       2017         Chicago
294       2017         Chicago
295       2017         Chicago
296       2017         Chicago
297       2017         Chicago
298       2017         Chicago
299       2017         Chicago
300       2017         Chicago
301       2017         Chicago
302       2017         Chicago
303       2017         Chicago
304       2017         Chicago
305       2017         Chicago
306       2017         Chicago
307       2017         Chicago
308       2017         Chicago
309       2017         Chicago
310       2017         Chicago
311       2017         Chicago
312       2017         Chicago
313       2017         Chicago
314       2017         Chicago
315       2017         Chicago
316       2017         Chicago
317       2017         Chicago
318       2017         Chicago
319       2017         Chicago
320       2017         Chicago
321       2017         Chicago
322       2017         Chicago
323       2017         Chicago
324       2017         Chicago
325       2017         Chicago
326       2017         Chicago
327       2018         Chicago
328       2018         Chicago
329       2018         Chicago
330       2018         Chicago
331       2018         Chicago
332       2018         Chicago
333       2018         Chicago
334       2018         Chicago
335       2018         Chicago
336       2018         Chicago
337       2018         Chicago
338       2018         Chicago

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

CINCINNATIDAYTON

    FRAME_CincinnatiDayton <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="CincinnatiDayton",]) 
    FRAME_CincinnatiDayton
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.87
2                                   0.85
3                                   0.79
4                                   0.83
5                                   0.88
6                                   0.89
7                                   0.88
8                                   0.87
9                                   0.93
10                                  1.01
11                                  0.98
12                                  0.91
13                                  0.93
14                                  1.08
15                                  1.05
16                                  1.05
17                                  1.02
18                                  1.01
19                                  1.05
20                                  1.01
21                                  1.08
22                                  1.09
23                                  1.03
24                                  1.06
25                                  1.03
26                                  1.03
27                                  1.01
28                                  1.02
29                                  1.05
30                                  1.07
31                                  1.06
32                                  1.10
33                                  1.04
34                                  1.06
35                                  1.08
36                                  1.06
37                                  1.02
38                                  1.02
39                                  1.06
40                                  0.95
41                                  0.98
42                                  0.94
43                                  0.87
44                                  0.89
45                                  0.93
46                                  0.94
47                                  0.93
48                                  0.86
49                                  0.93
50                                  0.93
51                                  0.92
52                                  0.88
53                                  0.82
54                                  0.99
55                                  0.77
56                                  0.70
57                                  1.09
58                                  0.98
59                                  1.07
60                                  1.08
61                                  1.02
62                                  0.96
63                                  1.07
64                                  1.01
65                                  1.03
66                                  1.09
67                                  0.96
68                                  1.04
69                                  1.12
70                                  1.13
71                                  1.07
72                                  1.03
73                                  1.03
74                                  1.07
75                                  1.10
76                                  1.05
77                                  1.06
78                                  0.84
79                                  0.92
80                                  0.91
81                                  1.05
82                                  0.85
83                                  0.84
84                                  0.82
85                                  0.88
86                                  0.86
87                                  0.94
88                                  0.94
89                                  0.93
90                                  0.89
91                                  0.89
92                                  0.90
93                                  0.90
94                                  0.88
95                                  0.85
96                                  0.87
97                                  0.86
98                                  0.86
99                                  0.81
100                                 0.94
101                                 0.89
102                                 0.86
103                                 0.92
104                                 0.90
105                                 0.86
106                                 1.36
107                                 1.30
108                                 1.16
109                                 1.05
110                                 1.23
111                                 1.01
112                                 0.90
113                                 1.01
114                                 1.42
115                                 1.75
116                                 1.81
117                                 1.90
118                                 1.86
119                                 1.79
120                                 1.79
121                                 1.75
122                                 1.72
123                                 1.31
124                                 1.15
125                                 1.34
126                                 1.46
127                                 1.48
128                                 1.47
129                                 1.50
130                                 1.09
131                                 0.79
132                                 0.80
133                                 1.09
134                                 0.87
135                                 1.00
136                                 0.96
137                                 1.00
138                                 0.76
139                                 0.60
140                                 1.10
141                                 1.13
142                                 1.06
143                                 1.17
144                                 1.01
145                                 1.16
146                                 0.95
147                                 0.90
148                                 0.78
149                                 0.78
150                                 0.70
151                                 0.65
152                                 0.65
153                                 0.71
154                                 0.69
155                                 0.76
156                                 0.82
157                                 0.64
158                                 1.08
159                                 1.07
160                                 1.01
161                                 1.02
162                                 1.03
163                                 0.83
164                                 0.80
165                                 0.76
166                                 0.92
167                                 0.89
168                                 1.15
169                                 0.91
170                                 1.43
171                                 1.47
172                                 1.32
173                                 1.48
174                                 1.50
175                                 1.36
176                                 1.20
177                                 1.30
178                                 1.61
179                                 1.56
180                                 1.50
181                                 1.66
182                                 1.54
183                                 1.46
184                                 1.58
185                                 1.59
186                                 1.62
187                                 1.56
188                                 1.58
189                                 1.66
190                                 1.59
191                                 1.62
192                                 1.63
193                                 1.66
194                                 1.56
195                                 1.59
196                                 1.49
197                                 1.39
198                                 1.34
199                                 1.46
200                                 1.47
201                                 1.48
202                                 1.27
203                                 1.43
204                                 1.42
205                                 1.36
206                                 1.46
207                                 1.49
208                                 1.22
209                                 1.27
210                                 1.25
211                                 1.22
212                                 1.17
213                                 1.24
214                                 1.23
215                                 1.22
216                                 1.24
217                                 1.19
218                                 1.26
219                                 1.37
220                                 1.32
221                                 1.34
222                                 1.73
223                                 0.82
224                                 0.64
225                                 1.07
226                                 0.79
227                                 0.96
228                                 1.52
229                                 0.90
230                                 1.52
231                                 1.20
232                                 1.23
233                                 1.51
234                                 1.44
235                                 1.35
236                                 1.32
237                                 1.13
238                                 1.34
239                                 0.77
240                                 1.13
241                                 1.30
242                                 1.09
243                                 1.51
244                                 1.65
245                                 1.04
246                                 0.98
247                                 1.05
248                                 1.02
249                                 1.04
250                                 1.09
251                                 1.20
252                                 1.24
253                                 1.39
254                                 1.40
255                                 1.43
256                                 1.13
257                                 1.44
258                                 1.40
259                                 1.12
260                                 1.30
261                                 1.17
262                                 1.21
263                                 1.25
264                                 1.34
265                                 1.47
266                                 1.33
267                                 1.01
268                                 1.11
269                                 1.30
270                                 1.42
271                                 1.40
272                                 1.31
273                                 1.34
274                                 1.36
275                                 1.73
276                                 1.73
277                                 1.69
278                                 1.72
279                                 1.69
280                                 1.66
281                                 1.67
282                                 1.92
283                                 1.87
284                                 1.86
285                                 1.81
286                                 1.94
287                                 2.01
288                                 2.20
289                                 2.14
290                                 2.15
291                                 2.17
292                                 1.95
293                                 1.92
294                                 1.97
295                                 2.06
296                                 1.85
297                                 1.82
298                                 1.82
299                                 1.29
300                                 1.28
301                                 1.46
302                                 1.55
303                                 0.77
304                                 1.65
305                                 1.78
306                                 1.66
307                                 1.41
308                                 1.48
309                                 1.66
310                                 1.92
311                                 0.98
312                                 0.86
313                                 0.83
314                                 1.04
315                                 1.68
316                                 0.64
317                                 0.44
318                                 0.49
319                                 0.51
320                                 0.64
321                                 0.57
322                                 0.80
323                                 1.58
324                                 1.88
325                                 1.07
326                                 1.23
327                                 1.66
328                                 1.31
329                                 1.27
330                                 1.68
331                                 1.78
332                                 1.64
333                                 1.59
334                                 1.69
335                                 1.51
336                                 1.60
337                                 1.71
338                                 1.71
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   162994
2                                                   175426
3                                                   207386
4                                                   207513
5                                                   141356
6                                                   174893
7                                                   193723
8                                                   239070
9                                                   254760
10                                                  203682
11                                                  186045
12                                                  213528
13                                                  235244
14                                                  202013
15                                                  210445
16                                                  216549
17                                                  232158
18                                                  234132
19                                                  208609
20                                                  234349
21                                                  214374
22                                                  206121
23                                                  216611
24                                                  223479
25                                                  218171
26                                                  250626
27                                                  225166
28                                                  243012
29                                                  229364
30                                                  234982
31                                                  222383
32                                                  222390
33                                                  234579
34                                                  259599
35                                                  238141
36                                                  214470
37                                                  226979
38                                                  188938
39                                                  196169
40                                                  198365
41                                                  212720
42                                                  196009
43                                                  219111
44                                                  226952
45                                                  183072
46                                                  169950
47                                                  186617
48                                                  300905
49                                                  213554
50                                                  175681
51                                                  201392
52                                                  228570
53                                                  276388
54                                                  216881
55                                                  268166
56                                                  356617
57                                                  183176
58                                                  242174
59                                                  249073
60                                                  239234
61                                                  241671
62                                                  273804
63                                                  246802
64                                                  276820
65                                                  280396
66                                                  268805
67                                                  288857
68                                                  266720
69                                                  252059
70                                                  259143
71                                                  256195
72                                                  274250
73                                                  266196
74                                                  254690
75                                                  264195
76                                                  280542
77                                                  266812
78                                                  330182
79                                                  280230
80                                                  311128
81                                                  237774
82                                                  310345
83                                                  268328
84                                                  250388
85                                                  250333
86                                                  314243
87                                                  233581
88                                                  218247
89                                                  228211
90                                                  210310
91                                                  191169
92                                                  225486
93                                                  224943
94                                                  210905
95                                                  234512
96                                                  227594
97                                                  190350
98                                                  229211
99                                                  302338
100                                                 203006
101                                                 252317
102                                                 228861
103                                                 218907
104                                                 222535
105                                                 278128
106                                                 159238
107                                                 169220
108                                                 234297
109                                                 302992
110                                                 165103
111                                                 247158
112                                                 324830
113                                                 320427
114                                                 233003
115                                                 181203
116                                                 182275
117                                                 170366
118                                                 183684
119                                                 182715
120                                                 184435
121                                                 210181
122                                                 212628
123                                                 253877
124                                                 307618
125                                                 261154
126                                                 236485
127                                                 213593
128                                                 215668
129                                                 218147
130                                                 255254
131                                                 336087
132                                                 337212
133                                                 281486
134                                                 365009
135                                                 337444
136                                                 303443
137                                                 260725
138                                                 313989
139                                                 538519
140                                                 242717
141                                                 205401
142                                                 261398
143                                                 215850
144                                                 290570
145                                                 221215
146                                                 263838
147                                                 284998
148                                                 272988
149                                                 282345
150                                                 303146
151                                                 320493
152                                                 411451
153                                                 325945
154                                                 380429
155                                                 346524
156                                                 285027
157                                                 329279
158                                                 277268
159                                                 245062
160                                                 275805
161                                                 265942
162                                                 263363
163                                                 231730
164                                                 305400
165                                                 380215
166                                                 281913
167                                                 321809
168                                                 243366
169                                                 303593
170                                                   7088
171                                                   7113
172                                                   8699
173                                                   8656
174                                                   7190
175                                                   8662
176                                                   8897
177                                                  10408
178                                                   9499
179                                                  10527
180                                                  12024
181                                                   9861
182                                                  10232
183                                                  10509
184                                                  12915
185                                                  14448
186                                                  15011
187                                                  14001
188                                                  14964
189                                                  15095
190                                                  14774
191                                                  15286
192                                                  15050
193                                                  14742
194                                                  14508
195                                                  15078
196                                                  12523
197                                                  13792
198                                                  15446
199                                                  12894
200                                                  14240
201                                                  14589
202                                                  16389
203                                                  15990
204                                                  14146
205                                                  16290
206                                                  15386
207                                                  13608
208                                                  16010
209                                                  13810
210                                                  13781
211                                                  12310
212                                                  13070
213                                                  10963
214                                                  11254
215                                                  10742
216                                                  10352
217                                                  10708
218                                                  10192
219                                                  10051
220                                                  11314
221                                                   8764
222                                                   6592
223                                                  17921
224                                                  27489
225                                                  15659
226                                                  17343
227                                                  15570
228                                                   9516
229                                                  27345
230                                                  15524
231                                                  17064
232                                                  16207
233                                                  15219
234                                                  14976
235                                                  16032
236                                                  15777
237                                                  21710
238                                                  22075
239                                                  34719
240                                                  18700
241                                                  17064
242                                                  22772
243                                                  12919
244                                                  14589
245                                                  22577
246                                                  24427
247                                                  19129
248                                                  19243
249                                                  21911
250                                                  21266
251                                                  16322
252                                                  14696
253                                                  14721
254                                                  15206
255                                                  14624
256                                                  20459
257                                                  15395
258                                                  15920
259                                                  16776
260                                                  12141
261                                                  17751
262                                                  16466
263                                                  13253
264                                                  12627
265                                                   9125
266                                                  10564
267                                                  17339
268                                                  14073
269                                                  11109
270                                                  11874
271                                                   9956
272                                                  13481
273                                                  10553
274                                                  14495
275                                                  13218
276                                                   9466
277                                                   8239
278                                                   6856
279                                                   8466
280                                                   7514
281                                                  12272
282                                                  13199
283                                                  12171
284                                                  14483
285                                                  10383
286                                                   8460
287                                                  12768
288                                                  16058
289                                                  11957
290                                                   9884
291                                                  13963
292                                                  11995
293                                                   8699
294                                                   7797
295                                                  10853
296                                                  14874
297                                                  26748
298                                                  22784
299                                                  21313
300                                                  27471
301                                                  18586
302                                                  18170
303                                                  42521
304                                                  12883
305                                                  12161
306                                                  14138
307                                                  22297
308                                                  19989
309                                                  13924
310                                                   8616
311                                                  19269
312                                                  24184
313                                                  25025
314                                                  24050
315                                                   9218
316                                                  29680
317                                                  64057
318                                                  44024
319                                                  41988
320                                                  26706
321                                                  25068
322                                                  15828
323                                                   7210
324                                                   6350
325                                                  12346
326                                                  10798
327                                                  15502
328                                                  28722
329                                                  34517
330                                                  11251
331                                                  15098
332                                                   9811
333                                                  10754
334                                                  11196
335                                                  15027
336                                                  18364
337                                                  19434
338                                                  13142
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                     2633
2                                                     2732
3                                                     3803
4                                                     2915
5                                                     2399
6                                                     2566
7                                                     2680
8                                                     2979
9                                                     2998
10                                                    2265
11                                                    2297
12                                                    2251
13                                                    2133
14                                                    2221
15                                                    3128
16                                                    2195
17                                                    2463
18                                                    2624
19                                                    2751
20                                                    2473
21                                                    2358
22                                                    2443
23                                                    2474
24                                                    3726
25                                                    3503
26                                                    3238
27                                                    3691
28                                                    3795
29                                                    6856
30                                                   10630
31                                                   10459
32                                                   10259
33                                                   10240
34                                                   11982
35                                                   11469
36                                                    8217
37                                                    8229
38                                                   11177
39                                                    7517
40                                                    3015
41                                                    2968
42                                                    3551
43                                                    3471
44                                                    3610
45                                                    4432
46                                                    4399
47                                                    4246
48                                                    4666
49                                                    3617
50                                                    3333
51                                                    3613
52                                                    3274
53                                                    2169
54                                                    2280
55                                                    2475
56                                                    2444
57                                                    1811
58                                                    2013
59                                                    2998
60                                                    2896
61                                                    2126
62                                                    2790
63                                                    6798
64                                                    3166
65                                                    3206
66                                                    3822
67                                                    6195
68                                                    5371
69                                                    3790
70                                                    3863
71                                                    3838
72                                                    4691
73                                                    5244
74                                                    4322
75                                                    4347
76                                                    5442
77                                                    4664
78                                                    4595
79                                                    4554
80                                                    7033
81                                                    7943
82                                                    4643
83                                                    4644
84                                                    4092
85                                                    3506
86                                                    4411
87                                                    4133
88                                                    4308
89                                                    3370
90                                                    4235
91                                                    3481
92                                                    3097
93                                                    3139
94                                                    3172
95                                                    3704
96                                                    4252
97                                                    3480
98                                                    3898
99                                                    4898
100                                                   3262
101                                                   1985
102                                                   3683
103                                                   3115
104                                                   2731
105                                                  86073
106                                                  34444
107                                                  21460
108                                                   5977
109                                                   5197
110                                                   3566
111                                                   4314
112                                                   5473
113                                                   4581
114                                                   4683
115                                                   4778
116                                                   6137
117                                                   6658
118                                                   7515
119                                                   4560
120                                                   4223
121                                                   4526
122                                                   4651
123                                                   4200
124                                                   4339
125                                                   4610
126                                                   4311
127                                                   3802
128                                                   4245
129                                                   3860
130                                                   3261
131                                                   3711
132                                                   4290
133                                                   4453
134                                                   7487
135                                                  11154
136                                                  10452
137                                                   7946
138                                                   8787
139                                                   8438
140                                                  11134
141                                                   7434
142                                                   7866
143                                                   8796
144                                                   7283
145                                                   2738
146                                                   2059
147                                                   3110
148                                                   2740
149                                                   3307
150                                                   2624
151                                                   3907
152                                                   3229
153                                                   3041
154                                                   3186
155                                                   2940
156                                                   4147
157                                                   2647
158                                                  70493
159                                                  68445
160                                                  65139
161                                                  69313
162                                                  59107
163                                                  71474
164                                                  98066
165                                                 102019
166                                                  78132
167                                                  92143
168                                                  59620
169                                                  98046
170                                                    250
171                                                    304
172                                                    307
173                                                    234
174                                                    284
175                                                    337
176                                                    339
177                                                    340
178                                                    287
179                                                    416
180                                                    260
181                                                    304
182                                                    342
183                                                    330
184                                                    380
185                                                    458
186                                                    518
187                                                    459
188                                                    434
189                                                    252
190                                                    290
191                                                    199
192                                                    253
193                                                    230
194                                                    242
195                                                    251
196                                                    313
197                                                    319
198                                                    225
199                                                    210
200                                                    247
201                                                    304
202                                                    283
203                                                    286
204                                                    248
205                                                    257
206                                                    374
207                                                    272
208                                                    279
209                                                    344
210                                                    377
211                                                    237
212                                                    252
213                                                    271
214                                                    258
215                                                    265
216                                                    226
217                                                    219
218                                                    220
219                                                    282
220                                                    210
221                                                    144
222                                                    235
223                                                    216
224                                                    269
225                                                    270
226                                                    198
227                                                    334
228                                                    366
229                                                    391
230                                                    454
231                                                    489
232                                                    661
233                                                    563
234                                                    459
235                                                    469
236                                                    578
237                                                    531
238                                                    536
239                                                    637
240                                                    453
241                                                    581
242                                                    470
243                                                    554
244                                                    539
245                                                    541
246                                                    481
247                                                    482
248                                                    482
249                                                    699
250                                                    546
251                                                    375
252                                                    460
253                                                    408
254                                                    359
255                                                    383
256                                                    309
257                                                    460
258                                                    417
259                                                    394
260                                                    349
261                                                    347
262                                                    319
263                                                    309
264                                                    488
265                                                    415
266                                                    529
267                                                    546
268                                                    443
269                                                    336
270                                                    412
271                                                    573
272                                                    689
273                                                    310
274                                                    483
275                                                    444
276                                                    371
277                                                    253
278                                                    184
279                                                    133
280                                                    294
281                                                    204
282                                                    194
283                                                    172
284                                                    265
285                                                    258
286                                                    247
287                                                    398
288                                                    351
289                                                    295
290                                                    314
291                                                    341
292                                                    270
293                                                    249
294                                                    219
295                                                    221
296                                                    286
297                                                    365
298                                                    202
299                                                    172
300                                                    201
301                                                    236
302                                                    343
303                                                    298
304                                                    307
305                                                    326
306                                                    257
307                                                    240
308                                                    287
309                                                    243
310                                                    195
311                                                    290
312                                                    252
313                                                    303
314                                                    245
315                                                    303
316                                                    326
317                                                    224
318                                                    253
319                                                    225
320                                                    287
321                                                    198
322                                                    241
323                                                    236
324                                                    364
325                                                    323
326                                                    352
327                                                    729
328                                                    932
329                                                   1080
330                                                    811
331                                                    737
332                                                    680
333                                                    536
334                                                    629
335                                                    702
336                                                    679
337                                                    610
338                                                    711
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                 100444
2                                                 108931
3                                                 123545
4                                                 129979
5                                                  94094
6                                                 115591
7                                                 129292
8                                                 156268
9                                                 166868
10                                                132626
11                                                131738
12                                                146962
13                                                157238
14                                                138938
15                                                139043
16                                                139864
17                                                154106
18                                                153833
19                                                141969
20                                                146748
21                                                144958
22                                                142848
23                                                139527
24                                                146966
25                                                148643
26                                                165480
27                                                144984
28                                                158957
29                                                145975
30                                                146360
31                                                143894
32                                                152036
33                                                150324
34                                                172174
35                                                162213
36                                                138764
37                                                144901
38                                                120830
39                                                135094
40                                                122178
41                                                137561
42                                                131234
43                                                147536
44                                                157401
45                                                134259
46                                                122866
47                                                140927
48                                                224968
49                                                162645
50                                                128858
51                                                153100
52                                                168765
53                                                102227
54                                                100542
55                                                101664
56                                                132793
57                                                 75977
58                                                 85408
59                                                 92084
60                                                 91903
61                                                 89381
62                                                 94638
63                                                 89325
64                                                100995
65                                                105493
66                                                112150
67                                                112907
68                                                122059
69                                                117600
70                                                126642
71                                                118303
72                                                125988
73                                                130022
74                                                129945
75                                                133484
76                                                136099
77                                                149185
78                                                168217
79                                                161667
80                                                154162
81                                                149995
82                                                174172
83                                                164356
84                                                144151
85                                                151116
86                                                183122
87                                                156007
88                                                141434
89                                                141000
90                                                125253
91                                                109917
92                                                131467
93                                                132075
94                                                126851
95                                                129151
96                                                129161
97                                                117329
98                                                144375
99                                                177381
100                                               133277
101                                               155257
102                                               142146
103                                               151374
104                                               149328
105                                                43570
106                                                41603
107                                                53839
108                                                88001
109                                               133150
110                                                62154
111                                                89762
112                                               119880
113                                               121602
114                                                80070
115                                                59197
116                                                59692
117                                                50675
118                                                58917
119                                                68228
120                                                69168
121                                                74603
122                                                73802
123                                                88697
124                                               107640
125                                                92313
126                                                88272
127                                                82404
128                                                85749
129                                                91781
130                                                95015
131                                               101206
132                                               100910
133                                               110402
134                                                85499
135                                                83650
136                                                76777
137                                                73693
138                                                87347
139                                               131508
140                                                89608
141                                                68249
142                                                77040
143                                                76149
144                                                72866
145                                                75139
146                                                71214
147                                                77407
148                                                82627
149                                               108390
150                                                93503
151                                               131464
152                                               181551
153                                               118753
154                                               142025
155                                               125732
156                                               126967
157                                               130251
158                                                27183
159                                                16626
160                                                22714
161                                                20912
162                                                31605
163                                                15783
164                                                31217
165                                                67966
166                                                27858
167                                                54831
168                                                30543
169                                                37714
170                                                 5919
171                                                 6449
172                                                 6153
173                                                 7004
174                                                 6272
175                                                 7558
176                                                 7250
177                                                 7706
178                                                 7557
179                                                 8847
180                                                 9300
181                                                 8501
182                                                 8519
183                                                 9461
184                                                12417
185                                                12291
186                                                13287
187                                                11740
188                                                13037
189                                                13920
190                                                12902
191                                                14035
192                                                12358
193                                                11664
194                                                11177
195                                                12155
196                                                11312
197                                                11779
198                                                12226
199                                                11403
200                                                12168
201                                                13024
202                                                10504
203                                                11539
204                                                11261
205                                                13336
206                                                13908
207                                                12556
208                                                12842
209                                                12694
210                                                13270
211                                                11232
212                                                 9304
213                                                 9758
214                                                 9998
215                                                 9452
216                                                 8949
217                                                 9140
218                                                 8150
219                                                 9374
220                                                10352
221                                                 6922
222                                                 5063
223                                                 4931
224                                                 4744
225                                                 5926
226                                                 4477
227                                                 5458
228                                                 6058
229                                                 8583
230                                                10104
231                                                 7531
232                                                 6584
233                                                 9696
234                                                 8071
235                                                 7139
236                                                 8538
237                                                 9472
238                                                10564
239                                                 7566
240                                                 7153
241                                                 8370
242                                                 7722
243                                                 8695
244                                                10670
245                                                 8960
246                                                11268
247                                                10371
248                                                 9042
249                                                10546
250                                                10293
251                                                 8710
252                                                 8443
253                                                 9071
254                                                 8893
255                                                 8839
256                                                 9102
257                                                 9677
258                                                 9447
259                                                 9103
260                                                 8344
261                                                 9168
262                                                 8547
263                                                 8664
264                                                 9078
265                                                 8307
266                                                 7783
267                                                 9089
268                                                 8905
269                                                 6836
270                                                 7552
271                                                 7597
272                                                 8881
273                                                 7638
274                                                 4218
275                                                 5455
276                                                 4597
277                                                 4172
278                                                 3717
279                                                 2992
280                                                 3450
281                                                 3368
282                                                 2941
283                                                 3285
284                                                 3671
285                                                 4240
286                                                 4266
287                                                 4418
288                                                 3639
289                                                 3983
290                                                 4231
291                                                 3270
292                                                 3293
293                                                 3688
294                                                 4076
295                                                 4753
296                                                 6566
297                                                11735
298                                                 5849
299                                                 4678
300                                                 4917
301                                                 4991
302                                                 8331
303                                                 5883
304                                                 4900
305                                                 4913
306                                                 5820
307                                                 5967
308                                                 7275
309                                                 4877
310                                                 4323
311                                                 4390
312                                                 4494
313                                                 4768
314                                                 4884
315                                                 6026
316                                                 5300
317                                                 4749
318                                                 4473
319                                                 5734
320                                                 6528
321                                                 4655
322                                                 4264
323                                                 4884
324                                                 5229
325                                                 6802
326                                                 8558
327                                                 4309
328                                                10505
329                                                12489
330                                                 4421
331                                                 4538
332                                                 4321
333                                                 3567
334                                                 4438
335                                                 4805
336                                                 5180
337                                                 5918
338                                                 5212
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                    9547
2                                                    7517
3                                                    4574
4                                                   15476
5                                                    5886
6                                                    9596
7                                                    4906
8                                                   19577
9                                                   13268
10                                                   9187
11                                                   8932
12                                                  13778
13                                                  11768
14                                                  11725
15                                                  21180
16                                                  18310
17                                                   8957
18                                                  14357
19                                                   5300
20                                                  21571
21                                                  10922
22                                                   9778
23                                                   5692
24                                                  14449
25                                                   4243
26                                                  10202
27                                                   3667
28                                                  15259
29                                                  10047
30                                                  14602
31                                                   4652
32                                                   4491
33                                                  14524
34                                                   2408
35                                                   7282
36                                                   6904
37                                                  12959
38                                                   1306
39                                                   2508
40                                                   2448
41                                                  23368
42                                                   3387
43                                                   3678
44                                                  18681
45                                                   3240
46                                                   3067
47                                                   4186
48                                                  19442
49                                                    656
50                                                   1087
51                                                   1204
52                                                   1447
53                                                    970
54                                                   1472
55                                                    754
56                                                   2845
57                                                    690
58                                                    853
59                                                    900
60                                                   1004
61                                                    841
62                                                   1181
63                                                   1275
64                                                   1223
65                                                   1381
66                                                   1396
67                                                   1335
68                                                   1567
69                                                   2099
70                                                   1684
71                                                   1922
72                                                   2662
73                                                   3143
74                                                   3805
75                                                   7053
76                                                   6999
77                                                   6514
78                                                   6496
79                                                   9805
80                                                  14007
81                                                   7051
82                                                  23750
83                                                   7149
84                                                   6811
85                                                  21963
86                                                  17790
87                                                   9602
88                                                   9484
89                                                  25464
90                                                   8960
91                                                  10847
92                                                  16191
93                                                  16430
94                                                   7483
95                                                  24315
96                                                  16207
97                                                   5552
98                                                   8009
99                                                  30150
100                                                 12917
101                                                 23681
102                                                  7457
103                                                  7200
104                                                 18925
105                                                 18071
106                                                 20560
107                                                  9956
108                                                   505
109                                                  1399
110                                                   475
111                                                   793
112                                                   868
113                                                   862
114                                                   505
115                                                   378
116                                                   574
117                                                   588
118                                                   626
119                                                   614
120                                                   711
121                                                   669
122                                                   817
123                                                   646
124                                                   884
125                                                  1103
126                                                  1301
127                                                   856
128                                                  1096
129                                                  1529
130                                                  1259
131                                                  1278
132                                                  1021
133                                                  2144
134                                                  1349
135                                                  1326
136                                                  1280
137                                                  1027
138                                                   932
139                                                  1302
140                                                  1158
141                                                  1022
142                                                  1301
143                                                  1214
144                                                  1092
145                                                  1186
146                                                  1251
147                                                  1153
148                                                  1108
149                                                  2024
150                                                  1011
151                                                  1680
152                                                  3017
153                                                   981
154                                                  2545
155                                                   994
156                                                   991
157                                                  2531
158                                                  9617
159                                                 10115
160                                                 10175
161                                                  9652
162                                                  9097
163                                                  7111
164                                                 11211
165                                                 13825
166                                                 11787
167                                                 12824
168                                                 19975
169                                                 18889
170                                                     0
171                                                     0
172                                                     0
173                                                     0
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     0
189                                                     0
190                                                     0
191                                                     0
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     0
197                                                     0
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     0
204                                                     0
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     0
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     0
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                     0
250                                                     0
251                                                     0
252                                                     0
253                                                     0
254                                                     0
255                                                     0
256                                                     0
257                                                     0
258                                                     0
259                                                     0
260                                                     0
261                                                     0
262                                                     0
263                                                     0
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     0
269                                                     0
270                                                     0
271                                                     0
272                                                     0
273                                                     0
274                                                     0
275                                                     0
276                                                     0
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          50369                        14051
2                          56246                        12118
3                          75465                        15835
4                          59144                        13539
5                          38978                        12785
6                          47140                        13805
7                          56846                        15734
8                          60246                        12990
9                          71626                        14831
10                         59604                        12423
11                         43078                        17415
12                         50536                        16192
13                         64106                        16488
14                         49129                        12344
15                         47095                        12353
16                         56180                        17272
17                         66632                        19499
18                         63319                        17805
19                         58589                        15962
20                         63558                        16807
21                         56137                        19934
22                         51052                        16180
23                         68918                        24770
24                         58338                        21471
25                         61781                        23226
26                         71706                        27500
27                         72824                        34099
28                         65000                        25432
29                         66486                        30258
30                         63390                        23652
31                         63377                        20976
32                         55605                        24487
33                         59492                        18092
34                         73035                        22507
35                         57176                        18316
36                         60584                        21522
37                         60889                        35196
38                         55625                        38219
39                         51050                        36567
40                         70724                        46587
41                         48823                        11317
42                         57836                        19570
43                         64426                        30834
44                         47260                        14964
45                         41141                        18685
46                         39618                        21356
47                         37259                        17774
48                         51829                        15335
49                         46636                        20650
50                         42403                        24024
51                         43476                        17036
52                         55083                        17525
53                        171022                        26985
54                        112587                        23083
55                        163274                        21945
56                        218536                        24194
57                        104698                        19930
58                        153899                        23679
59                        153091                        23980
60                        143431                        16151
61                        149323                        11631
62                        175195                        18786
63                        149404                        32353
64                        171435                        21810
65                        170316                        22841
66                        151438                        23813
67                        168419                        30496
68                        137723                        29123
69                        128570                        25361
70                        126954                        27934
71                        132132                        28706
72                        140909                        35322
73                        127786                        27222
74                        116618                        27837
75                        119311                        25437
76                        132003                        25789
77                        106448                        23189
78                        150874                        28096
79                        104204                        24577
80                        135925                        25144
81                         72784                        23417
82                        107780                        19177
83                         92179                        20884
84                         95334                        18281
85                         73747                        14078
86                        108920                        17362
87                         63839                        17965
88                         63022                        19112
89                         58377                        16056
90                         71862                        21424
91                         66924                        13781
92                         74730                        18832
93                         73299                        18929
94                         73399                        19111
95                         77343                        17632
96                         77973                        18382
97                         63989                        17168
98                         72930                        18359
99                         89909                        22077
100                        53550                        16807
101                        71394                        19634
102                        75574                        20728
103                        57217                        17942
104                        51551                        12613
105                       130414                       120023
106                        62632                        48089
107                        83965                        57656
108                       139814                        38355
109                       163245                        20306
110                        98908                        15934
111                       152289                        19201
112                       198609                        16033
113                       193381                        19496
114                       147745                        28319
115                       116850                        31735
116                       115871                        21562
117                       112444                        19544
118                       116625                        22882
119                       109312                        22412
120                       110332                        25990
121                       130384                        28410
122                       133358                        28780
123                       160334                        21251
124                       194755                        21955
125                       163128                        21883
126                       142600                        23000
127                       126532                        16005
128                       124578                        14923
129                       120977                        16211
130                       155718                        38543
131                       229892                        35260
132                       230991                        28718
133                       164488                        33465
134                       270674                        24202
135                       241315                        32810
136                       214935                        34310
137                       178059                        27840
138                       216923                        25076
139                       397270                        33659
140                       140817                        30878
141                       128696                        29244
142                       175191                        36250
143                       129691                        30134
144                       209329                        33461
145                       142153                        30291
146                       189313                        33908
147                       203327                        28992
148                       186513                        20143
149                       168623                        28279
150                       206009                        23086
151                       183442                        30174
152                       223654                        35158
153                       203170                        30235
154                       232673                        34562
155                       216858                        29095
156                       152922                        33746
157                       193851                        30669
158                       169975                       140702
159                       149877                       119963
160                       177776                       146774
161                       166066                       146627
162                       163554                       135219
163                       137362                       108122
164                       164907                       124063
165                       196404                       165544
166                       164137                       155063
167                       162012                       148818
168                       133228                       123961
169                       148944                       130643
170                          919                          267
171                          360                          173
172                         2239                          441
173                         1418                          663
174                          633                          263
175                          767                          193
176                         1308                          287
177                         2362                          420
178                         1655                          327
179                         1264                          463
180                         2464                          293
181                         1055                          443
182                         1371                          303
183                          718                           97
184                          119                           43
185                         1699                          460
186                         1206                          550
187                         1801                          190
188                         1493                          220
189                          923                          260
190                         1582                          347
191                         1052                          123
192                         2439                           70
193                         2848                           97
194                         3088                          227
195                         2672                          640
196                          898                          303
197                         1693                          549
198                         2995                         1030
199                         1281                          986
200                         1826                         1177
201                         1262                          819
202                         5602                         1797
203                         4165                          663
204                         2637                          680
205                         2697                          563
206                         1104                          511
207                          779                          688
208                         2889                          548
209                          772                          690
210                          134                          107
211                          841                           97
212                         3515                         1373
213                          934                          697
214                          998                          403
215                         1025                          780
216                         1177                          963
217                         1349                          371
218                         1821                          378
219                          395                          352
220                          752                          311
221                         1698                          586
222                         1294                          504
223                        12773                          346
224                        22477                          698
225                         9463                          202
226                        12668                          507
227                         9778                          306
228                         3091                          252
229                        18372                          673
230                         4966                          263
231                         9045                          630
232                         8962                         1831
233                         4960                          625
234                         6446                          507
235                         8425                          782
236                         6661                          737
237                        11707                          876
238                        10975                          764
239                        26515                          569
240                        11094                         1047
241                         8113                          603
242                        14580                          666
243                         3670                         1047
244                         3381                          827
245                        13075                          725
246                        12678                          862
247                         8275                          747
248                         9720                          768
249                        10665                          711
250                        10427                          691
251                         7237                          760
252                         5793                          924
253                         5241                         1062
254                         5955                         1682
255                         5403                         2905
256                        11048                         1403
257                         5258                         2457
258                         6055                         1598
259                         7279                         5474
260                         3447                          580
261                         8235                          533
262                         7600                          497
263                         4280                          540
264                         3061                          137
265                          404                          280
266                         2252                          349
267                         7704                          294
268                         4724                          203
269                         3938                          167
270                         3911                          187
271                         1785                          400
272                         3911                          625
273                         2605                          363
274                         9794                         7802
275                         7319                         3412
276                         4497                         2325
277                         3814                         2864
278                         2955                         2571
279                         5342                         3959
280                         3770                         3343
281                         8700                         5085
282                        10064                         3749
283                         8713                         3873
284                        10546                         5672
285                         5884                         5541
286                         3948                         3897
287                         7940                         6127
288                        12068                         2049
289                         7679                         2518
290                         5339                         2167
291                        10351                         2220
292                         8389                         2503
293                         4705                         1706
294                         3433                         2702
295                         5809                         3808
296                         7882                         2279
297                        14544                         1648
298                        16507                         2067
299                        16463                          251
300                        22353                          718
301                        13360                          467
302                         9495                          182
303                        36341                          496
304                         7676                          829
305                         6923                          976
306                         8061                         1103
307                        16090                          802
308                        12427                          925
309                         8804                          882
310                         4098                         1159
311                        14589                         1116
312                        19438                         1004
313                        19954                          996
314                        18921                          958
315                         2888                         1116
316                        24054                          687
317                        59084                          639
318                        39299                          600
319                        36028                          474
320                        19891                          487
321                        20214                          458
322                        11323                          446
323                         2090                          695
324                          756                          716
325                         5221                          654
326                         1888                          293
327                        10465                         7399
328                        17285                         8746
329                        20948                        15618
330                         6019                         4449
331                         9823                         2276
332                         4810                         4698
333                         6651                         5193
334                         6129                         4339
335                         9520                         3133
336                        12506                         2689
337                        12906                         4370
338                         7219                         3381
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                          30968                           5350.60 conventional
2                          39680                           4447.65 conventional
3                          58784                            846.12 conventional
4                          42886                           2718.94 conventional
5                          24850                           1342.37 conventional
6                          31447                           1888.97 conventional
7                          40083                           1028.74 conventional
8                          42510                           4746.69 conventional
9                          53585                           3210.41 conventional
10                         45209                           1971.64 conventional
11                         24553                           1110.04 conventional
12                         31743                           2601.48 conventional
13                         45980                           1637.21 conventional
14                         34342                           2442.79 conventional
15                         29601                           5140.45 conventional
16                         34690                           4218.02 conventional
17                         45313                           1819.79 conventional
18                         42734                           2780.36 conventional
19                         41548                           1079.14 conventional
20                         41443                           5308.09 conventional
21                         34194                           2008.90 conventional
22                         33164                           1708.49 conventional
23                         43021                           1127.31 conventional
24                         33783                           3084.23 conventional
25                         37926                            629.27 conventional
26                         43027                           1179.38 conventional
27                         38098                            626.93 conventional
28                         37441                           2126.84 conventional
29                         34920                           1307.21 conventional
30                         36952                           2785.53 conventional
31                         41426                            975.21 conventional
32                         30171                            947.11 conventional
33                         38536                           2863.62 conventional
34                         50265                            262.55 conventional
35                         37361                           1499.19 conventional
36                         37783                           1278.49 conventional
37                         23102                           2591.34 conventional
38                         17270                            135.28 conventional
39                         14361                            121.79 conventional
40                         23746                            391.47 conventional
41                         31773                           5732.14 conventional
42                         37402                            863.75 conventional
43                         32786                            805.18 conventional
44                         28230                           4065.90 conventional
45                         21704                            752.55 conventional
46                         17557                            705.21 conventional
47                         18571                            913.86 conventional
48                         31756                           4737.81 conventional
49                         25970                             16.03 conventional
50                         18265                            114.12 conventional
51                         26345                             94.50 conventional
52                         37445                            112.67 conventional
53                        144037                              0.00 conventional
54                         89486                             18.44 conventional
55                        141291                             38.54 conventional
56                        194319                             23.18 conventional
57                         84702                             65.28 conventional
58                        130220                              0.00 conventional
59                        129104                              6.21 conventional
60                        127194                             86.61 conventional
61                        137692                              0.00 conventional
62                        156408                              1.56 conventional
63                        117051                              0.00 conventional
64                        149625                              0.00 conventional
65                        147472                              3.13 conventional
66                        127625                              0.00 conventional
67                        137924                              0.00 conventional
68                        108520                             80.00 conventional
69                        102794                            415.00 conventional
70                         97230                           1790.87 conventional
71                        102390                           1035.00 conventional
72                        105549                             38.13 conventional
73                        100554                             11.27 conventional
74                         88091                            690.35 conventional
75                         89696                           4178.21 conventional
76                        101973                           4240.83 conventional
77                         78560                           4698.86 conventional
78                        118273                           4504.90 conventional
79                         75549                           4077.42 conventional
80                        105248                           5532.69 conventional
81                         46348                           3019.39 conventional
82                         81916                           6686.68 conventional
83                         69163                           2131.99 conventional
84                         74252                           2800.95 conventional
85                         53944                           5725.69 conventional
86                         87870                           3688.91 conventional
87                         44324                           1549.52 conventional
88                         41935                           1974.89 conventional
89                         36551                           5770.54 conventional
90                         49094                           1344.55 conventional
91                         50469                           2674.77 conventional
92                         52164                           3734.14 conventional
93                         50473                           3897.20 conventional
94                         52396                           1892.16 conventional
95                         54219                           5491.30 conventional
96                         56152                           3438.18 conventional
97                         45674                           1147.04 conventional
98                         53192                           1378.43 conventional
99                         61181                           6651.48 conventional
100                        33496                           3246.36 conventional
101                        47199                           4561.48 conventional
102                        53233                           1613.41 conventional
103                        37685                           1590.02 conventional
104                        29550                           9387.59 conventional
105                        10142                            248.99 conventional
106                        14511                             32.61 conventional
107                        26217                             91.87 conventional
108                       101403                             55.20 conventional
109                       142867                             73.00 conventional
110                        82960                             14.00 conventional
111                       132886                            203.00 conventional
112                       182385                            190.00 conventional
113                       173703                            182.45 conventional
114                       119250                            176.14 conventional
115                        85072                             43.04 conventional
116                        94258                             51.32 conventional
117                        92861                             39.19 conventional
118                        93645                             98.33 conventional
119                        86694                            206.87 conventional
120                        84078                            263.58 conventional
121                       101681                            292.94 conventional
122                       104144                            433.00 conventional
123                       138455                            627.86 conventional
124                       172119                            679.94 conventional
125                       140668                            576.87 conventional
126                       119014                            585.80 conventional
127                       109832                            695.03 conventional
128                       109213                            442.76 conventional
129                       104181                            584.92 conventional
130                       116564                            611.53 conventional
131                       193552                           1079.26 conventional
132                       201501                            772.34 conventional
133                       130292                            730.86 conventional
134                       245216                           1256.01 conventional
135                       208326                            178.88 conventional
136                       180476                            148.67 conventional
137                       150105                            114.85 conventional
138                       191736                            110.81 conventional
139                       363469                            142.32 conventional
140                       109897                             42.66 conventional
141                        99417                             35.06 conventional
142                       138925                             15.70 conventional
143                        99468                             89.49 conventional
144                       175820                             46.99 conventional
145                       111860                              1.54 conventional
146                       155347                             58.36 conventional
147                       174289                             46.09 conventional
148                       166331                             39.11 conventional
149                       140287                             56.64 conventional
150                       182919                              4.50 conventional
151                       153260                              7.48 conventional
152                       188488                              7.42 conventional
153                       172935                              0.00 conventional
154                       198095                             16.53 conventional
155                       187760                              3.02 conventional
156                       118613                            562.95 conventional
157                       163180                              1.52 conventional
158                        20940                           8332.63 conventional
159                        25174                           4739.00 conventional
160                        30141                            861.63 conventional
161                        14918                           4519.95 conventional
162                        24337                           3998.22 conventional
163                        28081                           1159.90 conventional
164                        34479                           6364.87 conventional
165                        29548                           1311.58 conventional
166                         9071                              2.70 conventional
167                        13171                             22.81 conventional
168                         9260                              6.73 conventional
169                        18047                            254.90 conventional
170                          652                              0.00      organic
171                          187                              0.00      organic
172                         1798                              0.00      organic
173                          754                              0.00      organic
174                          370                              0.00      organic
175                          574                              0.00      organic
176                         1021                              0.00      organic
177                         1942                              0.00      organic
178                         1329                              0.00      organic
179                          801                              0.00      organic
180                         2170                              0.00      organic
181                          612                              0.00      organic
182                         1068                              0.00      organic
183                          621                              0.00      organic
184                           76                              0.00      organic
185                         1239                              0.00      organic
186                          656                              0.00      organic
187                         1611                              0.00      organic
188                         1273                              0.00      organic
189                          663                              0.00      organic
190                         1236                              0.00      organic
191                          929                              0.00      organic
192                         2369                              0.00      organic
193                         2751                              0.00      organic
194                         2862                              0.00      organic
195                         2032                              0.00      organic
196                          594                              0.00      organic
197                         1144                              0.00      organic
198                         1965                              0.00      organic
199                          295                              0.00      organic
200                          649                              0.00      organic
201                          443                              0.00      organic
202                         3804                              0.00      organic
203                         3501                              0.00      organic
204                         1957                              0.00      organic
205                         2133                              0.00      organic
206                          593                              0.00      organic
207                           91                              0.00      organic
208                         2341                              0.00      organic
209                           82                              0.00      organic
210                           27                              0.00      organic
211                          745                              0.00      organic
212                         2141                              0.00      organic
213                          237                              0.00      organic
214                          594                              0.00      organic
215                          245                              0.00      organic
216                          214                              0.00      organic
217                          978                              0.00      organic
218                         1443                              0.00      organic
219                           43                              0.00      organic
220                          441                              0.00      organic
221                         1112                              0.00      organic
222                          790                              0.00      organic
223                        12427                              0.00      organic
224                        21778                              0.00      organic
225                         9262                              0.00      organic
226                        12161                              0.00      organic
227                         9472                              0.00      organic
228                         2839                              0.00      organic
229                        17699                              0.00      organic
230                         4703                              0.00      organic
231                         8415                              0.00      organic
232                         7132                              0.00      organic
233                         4334                              0.00      organic
234                         5939                              0.00      organic
235                         7643                              0.00      organic
236                         5924                              0.00      organic
237                        10832                              0.00      organic
238                        10210                              0.00      organic
239                        25946                              0.00      organic
240                        10048                              0.00      organic
241                         7510                              0.00      organic
242                        13914                              0.00      organic
243                         2623                              0.00      organic
244                         2553                              0.00      organic
245                        12350                              0.00      organic
246                        11816                              0.00      organic
247                         7529                              0.00      organic
248                         8952                              0.00      organic
249                         9955                              0.00      organic
250                         9736                              0.00      organic
251                         6477                              0.00      organic
252                         4869                              0.00      organic
253                         4179                              0.00      organic
254                         4273                              0.00      organic
255                         2497                              0.00      organic
256                         9645                              0.00      organic
257                         2801                              0.00      organic
258                         4457                              0.00      organic
259                         1805                              0.00      organic
260                         2867                              0.00      organic
261                         7702                              0.00      organic
262                         7104                              0.00      organic
263                         3740                              0.00      organic
264                         2924                              0.00      organic
265                          124                              0.00      organic
266                         1903                              0.00      organic
267                         7409                              0.00      organic
268                         4521                              0.00      organic
269                         3771                              0.00      organic
270                         3724                              0.00      organic
271                         1385                              0.00      organic
272                         3286                              0.00      organic
273                         2242                              0.00      organic
274                         1992                              0.00      organic
275                         3907                              0.00      organic
276                         2172                              0.00      organic
277                          949                              0.00      organic
278                          384                              0.00      organic
279                         1383                              0.00      organic
280                          428                              0.00      organic
281                         3614                              0.00      organic
282                         6315                              0.00      organic
283                         4840                              0.00      organic
284                         4874                              0.00      organic
285                          343                              0.00      organic
286                           50                              0.00      organic
287                         1813                              0.00      organic
288                        10020                              0.00      organic
289                         5162                              0.00      organic
290                         3172                              0.00      organic
291                         8131                              0.00      organic
292                         5886                              0.00      organic
293                         2999                              0.00      organic
294                          731                              0.00      organic
295                         2001                              0.00      organic
296                         5604                              0.00      organic
297                        12896                              0.00      organic
298                        14440                              0.00      organic
299                        16212                              0.00      organic
300                        21634                              0.00      organic
301                        12893                              0.00      organic
302                         9313                              0.00      organic
303                        35845                              0.00      organic
304                         6847                              0.00      organic
305                         5947                              0.00      organic
306                         6958                              0.00      organic
307                        15288                              0.00      organic
308                        11502                              0.00      organic
309                         7921                              0.00      organic
310                         2939                              0.00      organic
311                        13473                              0.00      organic
312                        18434                              0.00      organic
313                        18958                              0.00      organic
314                        17963                              0.00      organic
315                         1772                              0.00      organic
316                        23367                              0.00      organic
317                        58446                              0.00      organic
318                        38699                              0.00      organic
319                        35554                              0.00      organic
320                        19404                              0.00      organic
321                        19756                              0.00      organic
322                        10877                              0.00      organic
323                         1395                              0.00      organic
324                           40                              0.00      organic
325                         4566                              0.00      organic
326                         1595                              0.00      organic
327                         3066                              0.00      organic
328                         8539                              0.00      organic
329                         5330                              0.00      organic
330                         1570                              0.00      organic
331                         7547                              0.00      organic
332                          111                              0.00      organic
333                         1458                              0.00      organic
334                         1790                              0.00      organic
335                         6386                              0.00      organic
336                         9817                              0.00      organic
337                         8537                              0.00      organic
338                         3838                              0.00      organic
    year (AÑO)  region (REGION)
1         2015 CincinnatiDayton
2         2015 CincinnatiDayton
3         2015 CincinnatiDayton
4         2015 CincinnatiDayton
5         2015 CincinnatiDayton
6         2015 CincinnatiDayton
7         2015 CincinnatiDayton
8         2015 CincinnatiDayton
9         2015 CincinnatiDayton
10        2015 CincinnatiDayton
11        2015 CincinnatiDayton
12        2015 CincinnatiDayton
13        2015 CincinnatiDayton
14        2015 CincinnatiDayton
15        2015 CincinnatiDayton
16        2015 CincinnatiDayton
17        2015 CincinnatiDayton
18        2015 CincinnatiDayton
19        2015 CincinnatiDayton
20        2015 CincinnatiDayton
21        2015 CincinnatiDayton
22        2015 CincinnatiDayton
23        2015 CincinnatiDayton
24        2015 CincinnatiDayton
25        2015 CincinnatiDayton
26        2015 CincinnatiDayton
27        2015 CincinnatiDayton
28        2015 CincinnatiDayton
29        2015 CincinnatiDayton
30        2015 CincinnatiDayton
31        2015 CincinnatiDayton
32        2015 CincinnatiDayton
33        2015 CincinnatiDayton
34        2015 CincinnatiDayton
35        2015 CincinnatiDayton
36        2015 CincinnatiDayton
37        2015 CincinnatiDayton
38        2015 CincinnatiDayton
39        2015 CincinnatiDayton
40        2015 CincinnatiDayton
41        2015 CincinnatiDayton
42        2015 CincinnatiDayton
43        2015 CincinnatiDayton
44        2015 CincinnatiDayton
45        2015 CincinnatiDayton
46        2015 CincinnatiDayton
47        2015 CincinnatiDayton
48        2015 CincinnatiDayton
49        2015 CincinnatiDayton
50        2015 CincinnatiDayton
51        2015 CincinnatiDayton
52        2015 CincinnatiDayton
53        2016 CincinnatiDayton
54        2016 CincinnatiDayton
55        2016 CincinnatiDayton
56        2016 CincinnatiDayton
57        2016 CincinnatiDayton
58        2016 CincinnatiDayton
59        2016 CincinnatiDayton
60        2016 CincinnatiDayton
61        2016 CincinnatiDayton
62        2016 CincinnatiDayton
63        2016 CincinnatiDayton
64        2016 CincinnatiDayton
65        2016 CincinnatiDayton
66        2016 CincinnatiDayton
67        2016 CincinnatiDayton
68        2016 CincinnatiDayton
69        2016 CincinnatiDayton
70        2016 CincinnatiDayton
71        2016 CincinnatiDayton
72        2016 CincinnatiDayton
73        2016 CincinnatiDayton
74        2016 CincinnatiDayton
75        2016 CincinnatiDayton
76        2016 CincinnatiDayton
77        2016 CincinnatiDayton
78        2016 CincinnatiDayton
79        2016 CincinnatiDayton
80        2016 CincinnatiDayton
81        2016 CincinnatiDayton
82        2016 CincinnatiDayton
83        2016 CincinnatiDayton
84        2016 CincinnatiDayton
85        2016 CincinnatiDayton
86        2016 CincinnatiDayton
87        2016 CincinnatiDayton
88        2016 CincinnatiDayton
89        2016 CincinnatiDayton
90        2016 CincinnatiDayton
91        2016 CincinnatiDayton
92        2016 CincinnatiDayton
93        2016 CincinnatiDayton
94        2016 CincinnatiDayton
95        2016 CincinnatiDayton
96        2016 CincinnatiDayton
97        2016 CincinnatiDayton
98        2016 CincinnatiDayton
99        2016 CincinnatiDayton
100       2016 CincinnatiDayton
101       2016 CincinnatiDayton
102       2016 CincinnatiDayton
103       2016 CincinnatiDayton
104       2016 CincinnatiDayton
105       2017 CincinnatiDayton
106       2017 CincinnatiDayton
107       2017 CincinnatiDayton
108       2017 CincinnatiDayton
109       2017 CincinnatiDayton
110       2017 CincinnatiDayton
111       2017 CincinnatiDayton
112       2017 CincinnatiDayton
113       2017 CincinnatiDayton
114       2017 CincinnatiDayton
115       2017 CincinnatiDayton
116       2017 CincinnatiDayton
117       2017 CincinnatiDayton
118       2017 CincinnatiDayton
119       2017 CincinnatiDayton
120       2017 CincinnatiDayton
121       2017 CincinnatiDayton
122       2017 CincinnatiDayton
123       2017 CincinnatiDayton
124       2017 CincinnatiDayton
125       2017 CincinnatiDayton
126       2017 CincinnatiDayton
127       2017 CincinnatiDayton
128       2017 CincinnatiDayton
129       2017 CincinnatiDayton
130       2017 CincinnatiDayton
131       2017 CincinnatiDayton
132       2017 CincinnatiDayton
133       2017 CincinnatiDayton
134       2017 CincinnatiDayton
135       2017 CincinnatiDayton
136       2017 CincinnatiDayton
137       2017 CincinnatiDayton
138       2017 CincinnatiDayton
139       2017 CincinnatiDayton
140       2017 CincinnatiDayton
141       2017 CincinnatiDayton
142       2017 CincinnatiDayton
143       2017 CincinnatiDayton
144       2017 CincinnatiDayton
145       2017 CincinnatiDayton
146       2017 CincinnatiDayton
147       2017 CincinnatiDayton
148       2017 CincinnatiDayton
149       2017 CincinnatiDayton
150       2017 CincinnatiDayton
151       2017 CincinnatiDayton
152       2017 CincinnatiDayton
153       2017 CincinnatiDayton
154       2017 CincinnatiDayton
155       2017 CincinnatiDayton
156       2017 CincinnatiDayton
157       2017 CincinnatiDayton
158       2018 CincinnatiDayton
159       2018 CincinnatiDayton
160       2018 CincinnatiDayton
161       2018 CincinnatiDayton
162       2018 CincinnatiDayton
163       2018 CincinnatiDayton
164       2018 CincinnatiDayton
165       2018 CincinnatiDayton
166       2018 CincinnatiDayton
167       2018 CincinnatiDayton
168       2018 CincinnatiDayton
169       2018 CincinnatiDayton
170       2015 CincinnatiDayton
171       2015 CincinnatiDayton
172       2015 CincinnatiDayton
173       2015 CincinnatiDayton
174       2015 CincinnatiDayton
175       2015 CincinnatiDayton
176       2015 CincinnatiDayton
177       2015 CincinnatiDayton
178       2015 CincinnatiDayton
179       2015 CincinnatiDayton
180       2015 CincinnatiDayton
181       2015 CincinnatiDayton
182       2015 CincinnatiDayton
183       2015 CincinnatiDayton
184       2015 CincinnatiDayton
185       2015 CincinnatiDayton
186       2015 CincinnatiDayton
187       2015 CincinnatiDayton
188       2015 CincinnatiDayton
189       2015 CincinnatiDayton
190       2015 CincinnatiDayton
191       2015 CincinnatiDayton
192       2015 CincinnatiDayton
193       2015 CincinnatiDayton
194       2015 CincinnatiDayton
195       2015 CincinnatiDayton
196       2015 CincinnatiDayton
197       2015 CincinnatiDayton
198       2015 CincinnatiDayton
199       2015 CincinnatiDayton
200       2015 CincinnatiDayton
201       2015 CincinnatiDayton
202       2015 CincinnatiDayton
203       2015 CincinnatiDayton
204       2015 CincinnatiDayton
205       2015 CincinnatiDayton
206       2015 CincinnatiDayton
207       2015 CincinnatiDayton
208       2015 CincinnatiDayton
209       2015 CincinnatiDayton
210       2015 CincinnatiDayton
211       2015 CincinnatiDayton
212       2015 CincinnatiDayton
213       2015 CincinnatiDayton
214       2015 CincinnatiDayton
215       2015 CincinnatiDayton
216       2015 CincinnatiDayton
217       2015 CincinnatiDayton
218       2015 CincinnatiDayton
219       2015 CincinnatiDayton
220       2015 CincinnatiDayton
221       2015 CincinnatiDayton
222       2016 CincinnatiDayton
223       2016 CincinnatiDayton
224       2016 CincinnatiDayton
225       2016 CincinnatiDayton
226       2016 CincinnatiDayton
227       2016 CincinnatiDayton
228       2016 CincinnatiDayton
229       2016 CincinnatiDayton
230       2016 CincinnatiDayton
231       2016 CincinnatiDayton
232       2016 CincinnatiDayton
233       2016 CincinnatiDayton
234       2016 CincinnatiDayton
235       2016 CincinnatiDayton
236       2016 CincinnatiDayton
237       2016 CincinnatiDayton
238       2016 CincinnatiDayton
239       2016 CincinnatiDayton
240       2016 CincinnatiDayton
241       2016 CincinnatiDayton
242       2016 CincinnatiDayton
243       2016 CincinnatiDayton
244       2016 CincinnatiDayton
245       2016 CincinnatiDayton
246       2016 CincinnatiDayton
247       2016 CincinnatiDayton
248       2016 CincinnatiDayton
249       2016 CincinnatiDayton
250       2016 CincinnatiDayton
251       2016 CincinnatiDayton
252       2016 CincinnatiDayton
253       2016 CincinnatiDayton
254       2016 CincinnatiDayton
255       2016 CincinnatiDayton
256       2016 CincinnatiDayton
257       2016 CincinnatiDayton
258       2016 CincinnatiDayton
259       2016 CincinnatiDayton
260       2016 CincinnatiDayton
261       2016 CincinnatiDayton
262       2016 CincinnatiDayton
263       2016 CincinnatiDayton
264       2016 CincinnatiDayton
265       2016 CincinnatiDayton
266       2016 CincinnatiDayton
267       2016 CincinnatiDayton
268       2016 CincinnatiDayton
269       2016 CincinnatiDayton
270       2016 CincinnatiDayton
271       2016 CincinnatiDayton
272       2016 CincinnatiDayton
273       2016 CincinnatiDayton
274       2017 CincinnatiDayton
275       2017 CincinnatiDayton
276       2017 CincinnatiDayton
277       2017 CincinnatiDayton
278       2017 CincinnatiDayton
279       2017 CincinnatiDayton
280       2017 CincinnatiDayton
281       2017 CincinnatiDayton
282       2017 CincinnatiDayton
283       2017 CincinnatiDayton
284       2017 CincinnatiDayton
285       2017 CincinnatiDayton
286       2017 CincinnatiDayton
287       2017 CincinnatiDayton
288       2017 CincinnatiDayton
289       2017 CincinnatiDayton
290       2017 CincinnatiDayton
291       2017 CincinnatiDayton
292       2017 CincinnatiDayton
293       2017 CincinnatiDayton
294       2017 CincinnatiDayton
295       2017 CincinnatiDayton
296       2017 CincinnatiDayton
297       2017 CincinnatiDayton
298       2017 CincinnatiDayton
299       2017 CincinnatiDayton
300       2017 CincinnatiDayton
301       2017 CincinnatiDayton
302       2017 CincinnatiDayton
303       2017 CincinnatiDayton
304       2017 CincinnatiDayton
305       2017 CincinnatiDayton
306       2017 CincinnatiDayton
307       2017 CincinnatiDayton
308       2017 CincinnatiDayton
309       2017 CincinnatiDayton
310       2017 CincinnatiDayton
311       2017 CincinnatiDayton
312       2017 CincinnatiDayton
313       2017 CincinnatiDayton
314       2017 CincinnatiDayton
315       2017 CincinnatiDayton
316       2017 CincinnatiDayton
317       2017 CincinnatiDayton
318       2017 CincinnatiDayton
319       2017 CincinnatiDayton
320       2017 CincinnatiDayton
321       2017 CincinnatiDayton
322       2017 CincinnatiDayton
323       2017 CincinnatiDayton
324       2017 CincinnatiDayton
325       2017 CincinnatiDayton
326       2017 CincinnatiDayton
327       2018 CincinnatiDayton
328       2018 CincinnatiDayton
329       2018 CincinnatiDayton
330       2018 CincinnatiDayton
331       2018 CincinnatiDayton
332       2018 CincinnatiDayton
333       2018 CincinnatiDayton
334       2018 CincinnatiDayton
335       2018 CincinnatiDayton
336       2018 CincinnatiDayton
337       2018 CincinnatiDayton
338       2018 CincinnatiDayton

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

COLUMBUS

    FRAME_Columbus <- as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`=="Columbus",])
    FRAME_Columbus
    INDICE Date           (FECHA DE OBSERVACION)
1        0                            2015-12-27
2        1                            2015-12-20
3        2                            2015-12-13
4        3                            2015-12-06
5        4                            2015-11-29
6        5                            2015-11-22
7        6                            2015-11-15
8        7                            2015-11-08
9        8                            2015-11-01
10       9                            2015-10-25
11      10                            2015-10-18
12      11                            2015-10-11
13      12                            2015-10-04
14      13                            2015-09-27
15      14                            2015-09-20
16      15                            2015-09-13
17      16                            2015-09-06
18      17                            2015-08-30
19      18                            2015-08-23
20      19                            2015-08-16
21      20                            2015-08-09
22      21                            2015-08-02
23      22                            2015-07-26
24      23                            2015-07-19
25      24                            2015-07-12
26      25                            2015-07-05
27      26                            2015-06-28
28      27                            2015-06-21
29      28                            2015-06-14
30      29                            2015-06-07
31      30                            2015-05-31
32      31                            2015-05-24
33      32                            2015-05-17
34      33                            2015-05-10
35      34                            2015-05-03
36      35                            2015-04-26
37      36                            2015-04-19
38      37                            2015-04-12
39      38                            2015-04-05
40      39                            2015-03-29
41      40                            2015-03-22
42      41                            2015-03-15
43      42                            2015-03-08
44      43                            2015-03-01
45      44                            2015-02-22
46      45                            2015-02-15
47      46                            2015-02-08
48      47                            2015-02-01
49      48                            2015-01-25
50      49                            2015-01-18
51      50                            2015-01-11
52      51                            2015-01-04
53       0                            2016-12-25
54       1                            2016-12-18
55       2                            2016-12-11
56       3                            2016-12-04
57       4                            2016-11-27
58       5                            2016-11-20
59       6                            2016-11-13
60       7                            2016-11-06
61       8                            2016-10-30
62       9                            2016-10-23
63      10                            2016-10-16
64      11                            2016-10-09
65      12                            2016-10-02
66      13                            2016-09-25
67      14                            2016-09-18
68      15                            2016-09-11
69      16                            2016-09-04
70      17                            2016-08-28
71      18                            2016-08-21
72      19                            2016-08-14
73      20                            2016-08-07
74      21                            2016-07-31
75      22                            2016-07-24
76      23                            2016-07-17
77      24                            2016-07-10
78      25                            2016-07-03
79      26                            2016-06-26
80      27                            2016-06-19
81      28                            2016-06-12
82      29                            2016-06-05
83      30                            2016-05-29
84      31                            2016-05-22
85      32                            2016-05-15
86      33                            2016-05-08
87      34                            2016-05-01
88      35                            2016-04-24
89      36                            2016-04-17
90      37                            2016-04-10
91      38                            2016-04-03
92      39                            2016-03-27
93      40                            2016-03-20
94      41                            2016-03-13
95      42                            2016-03-06
96      43                            2016-02-28
97      44                            2016-02-21
98      45                            2016-02-14
99      46                            2016-02-07
100     47                            2016-01-31
101     48                            2016-01-24
102     49                            2016-01-17
103     50                            2016-01-10
104     51                            2016-01-03
105      0                            2017-12-31
106      1                            2017-12-24
107      2                            2017-12-17
108      3                            2017-12-10
109      4                            2017-12-03
110      5                            2017-11-26
111      6                            2017-11-19
112      7                            2017-11-12
113      8                            2017-11-05
114      9                            2017-10-29
115     10                            2017-10-22
116     11                            2017-10-15
117     12                            2017-10-08
118     13                            2017-10-01
119     14                            2017-09-24
120     15                            2017-09-17
121     16                            2017-09-10
122     17                            2017-09-03
123     18                            2017-08-27
124     19                            2017-08-20
125     20                            2017-08-13
126     21                            2017-08-06
127     22                            2017-07-30
128     23                            2017-07-23
129     24                            2017-07-16
130     25                            2017-07-09
131     26                            2017-07-02
132     27                            2017-06-25
133     28                            2017-06-18
134     29                            2017-06-11
135     30                            2017-06-04
136     31                            2017-05-28
137     32                            2017-05-21
138     33                            2017-05-14
139     34                            2017-05-07
140     35                            2017-04-30
141     36                            2017-04-23
142     37                            2017-04-16
143     38                            2017-04-09
144     39                            2017-04-02
145     40                            2017-03-26
146     41                            2017-03-19
147     42                            2017-03-12
148     43                            2017-03-05
149     44                            2017-02-26
150     45                            2017-02-19
151     46                            2017-02-12
152     47                            2017-02-05
153     48                            2017-01-29
154     49                            2017-01-22
155     50                            2017-01-15
156     51                            2017-01-08
157     52                            2017-01-01
158      0                            2018-03-25
159      1                            2018-03-18
160      2                            2018-03-11
161      3                            2018-03-04
162      4                            2018-02-25
163      5                            2018-02-18
164      6                            2018-02-11
165      7                            2018-02-04
166      8                            2018-01-28
167      9                            2018-01-21
168     10                            2018-01-14
169     11                            2018-01-07
170      0                            2015-12-27
171      1                            2015-12-20
172      2                            2015-12-13
173      3                            2015-12-06
174      4                            2015-11-29
175      5                            2015-11-22
176      6                            2015-11-15
177      7                            2015-11-08
178      8                            2015-11-01
179      9                            2015-10-25
180     10                            2015-10-18
181     11                            2015-10-11
182     12                            2015-10-04
183     13                            2015-09-27
184     14                            2015-09-20
185     15                            2015-09-13
186     16                            2015-09-06
187     17                            2015-08-30
188     18                            2015-08-23
189     19                            2015-08-16
190     20                            2015-08-09
191     21                            2015-08-02
192     22                            2015-07-26
193     23                            2015-07-19
194     24                            2015-07-12
195     25                            2015-07-05
196     26                            2015-06-28
197     27                            2015-06-21
198     28                            2015-06-14
199     29                            2015-06-07
200     30                            2015-05-31
201     31                            2015-05-24
202     32                            2015-05-17
203     33                            2015-05-10
204     34                            2015-05-03
205     35                            2015-04-26
206     36                            2015-04-19
207     37                            2015-04-12
208     38                            2015-04-05
209     39                            2015-03-29
210     40                            2015-03-22
211     41                            2015-03-15
212     42                            2015-03-08
213     43                            2015-03-01
214     44                            2015-02-22
215     45                            2015-02-15
216     46                            2015-02-08
217     47                            2015-02-01
218     48                            2015-01-25
219     49                            2015-01-18
220     50                            2015-01-11
221     51                            2015-01-04
222      0                            2016-12-25
223      1                            2016-12-18
224      2                            2016-12-11
225      3                            2016-12-04
226      4                            2016-11-27
227      5                            2016-11-20
228      6                            2016-11-13
229      7                            2016-11-06
230      8                            2016-10-30
231      9                            2016-10-23
232     10                            2016-10-16
233     11                            2016-10-09
234     12                            2016-10-02
235     13                            2016-09-25
236     14                            2016-09-18
237     15                            2016-09-11
238     16                            2016-09-04
239     17                            2016-08-28
240     18                            2016-08-21
241     19                            2016-08-14
242     20                            2016-08-07
243     21                            2016-07-31
244     22                            2016-07-24
245     23                            2016-07-17
246     24                            2016-07-10
247     25                            2016-07-03
248     26                            2016-06-26
249     27                            2016-06-19
250     28                            2016-06-12
251     29                            2016-06-05
252     30                            2016-05-29
253     31                            2016-05-22
254     32                            2016-05-15
255     33                            2016-05-08
256     34                            2016-05-01
257     35                            2016-04-24
258     36                            2016-04-17
259     37                            2016-04-10
260     38                            2016-04-03
261     39                            2016-03-27
262     40                            2016-03-20
263     41                            2016-03-13
264     42                            2016-03-06
265     43                            2016-02-28
266     44                            2016-02-21
267     45                            2016-02-14
268     46                            2016-02-07
269     47                            2016-01-31
270     48                            2016-01-24
271     49                            2016-01-17
272     50                            2016-01-10
273     51                            2016-01-03
274      0                            2017-12-31
275      1                            2017-12-24
276      2                            2017-12-17
277      3                            2017-12-10
278      4                            2017-12-03
279      5                            2017-11-26
280      6                            2017-11-19
281      7                            2017-11-12
282      8                            2017-11-05
283      9                            2017-10-29
284     10                            2017-10-22
285     11                            2017-10-15
286     12                            2017-10-08
287     13                            2017-10-01
288     14                            2017-09-24
289     15                            2017-09-17
290     16                            2017-09-10
291     17                            2017-09-03
292     18                            2017-08-27
293     19                            2017-08-20
294     20                            2017-08-13
295     21                            2017-08-06
296     22                            2017-07-30
297     23                            2017-07-23
298     24                            2017-07-16
299     25                            2017-07-09
300     26                            2017-07-02
301     27                            2017-06-25
302     28                            2017-06-18
303     29                            2017-06-11
304     30                            2017-06-04
305     31                            2017-05-28
306     32                            2017-05-21
307     33                            2017-05-14
308     34                            2017-05-07
309     35                            2017-04-30
310     36                            2017-04-23
311     37                            2017-04-16
312     38                            2017-04-09
313     39                            2017-04-02
314     40                            2017-03-26
315     41                            2017-03-19
316     42                            2017-03-12
317     43                            2017-03-05
318     44                            2017-02-26
319     45                            2017-02-19
320     46                            2017-02-12
321     47                            2017-02-05
322     48                            2017-01-29
323     49                            2017-01-22
324     50                            2017-01-15
325     51                            2017-01-08
326     52                            2017-01-01
327      0                            2018-03-25
328      1                            2018-03-18
329      2                            2018-03-11
330      3                            2018-03-04
331      4                            2018-02-25
332      5                            2018-02-18
333      6                            2018-02-11
334      7                            2018-02-04
335      8                            2018-01-28
336      9                            2018-01-21
337     10                            2018-01-14
338     11                            2018-01-07
    AveragePrice       (PRECIO PROMEDIO)
1                                   0.99
2                                   1.03
3                                   1.03
4                                   0.99
5                                   1.03
6                                   1.04
7                                   0.99
8                                   0.95
9                                   0.99
10                                  1.04
11                                  0.98
12                                  0.90
13                                  0.93
14                                  1.02
15                                  1.00
16                                  1.02
17                                  1.04
18                                  1.03
19                                  1.08
20                                  1.03
21                                  1.00
22                                  1.05
23                                  1.02
24                                  1.05
25                                  1.04
26                                  0.98
27                                  0.94
28                                  0.99
29                                  1.01
30                                  1.03
31                                  1.10
32                                  1.01
33                                  1.00
34                                  1.10
35                                  0.99
36                                  1.02
37                                  1.00
38                                  1.07
39                                  1.09
40                                  0.96
41                                  0.94
42                                  1.01
43                                  0.95
44                                  1.03
45                                  1.09
46                                  1.05
47                                  0.96
48                                  0.87
49                                  1.08
50                                  1.02
51                                  0.97
52                                  0.89
53                                  1.07
54                                  1.06
55                                  0.98
56                                  0.84
57                                  1.10
58                                  1.33
59                                  1.38
60                                  1.41
61                                  1.10
62                                  1.11
63                                  1.31
64                                  1.33
65                                  1.30
66                                  1.14
67                                  1.07
68                                  1.06
69                                  1.06
70                                  1.07
71                                  1.20
72                                  1.17
73                                  1.18
74                                  1.21
75                                  1.15
76                                  1.18
77                                  1.06
78                                  0.94
79                                  1.04
80                                  1.13
81                                  1.13
82                                  1.07
83                                  0.93
84                                  0.83
85                                  0.84
86                                  0.90
87                                  0.71
88                                  0.72
89                                  0.97
90                                  0.96
91                                  0.95
92                                  1.01
93                                  1.04
94                                  1.05
95                                  0.95
96                                  1.03
97                                  1.05
98                                  0.91
99                                  0.81
100                                 0.92
101                                 0.89
102                                 1.03
103                                 0.97
104                                 0.91
105                                 0.80
106                                 1.06
107                                 1.03
108                                 1.10
109                                 0.99
110                                 1.04
111                                 0.97
112                                 0.97
113                                 0.96
114                                 1.22
115                                 1.55
116                                 1.71
117                                 1.83
118                                 1.72
119                                 1.69
120                                 1.70
121                                 1.68
122                                 1.62
123                                 1.26
124                                 1.23
125                                 1.52
126                                 1.21
127                                 1.22
128                                 1.39
129                                 1.36
130                                 0.95
131                                 0.85
132                                 0.86
133                                 0.81
134                                 0.98
135                                 1.10
136                                 1.24
137                                 1.16
138                                 0.99
139                                 0.93
140                                 1.18
141                                 1.26
142                                 0.99
143                                 1.07
144                                 1.23
145                                 1.26
146                                 1.30
147                                 1.29
148                                 1.14
149                                 1.04
150                                 1.07
151                                 0.78
152                                 0.69
153                                 1.06
154                                 0.91
155                                 0.97
156                                 0.86
157                                 0.83
158                                 0.96
159                                 1.01
160                                 1.05
161                                 1.04
162                                 1.03
163                                 1.02
164                                 0.82
165                                 0.73
166                                 1.03
167                                 0.99
168                                 1.07
169                                 0.84
170                                 1.53
171                                 1.67
172                                 1.59
173                                 1.52
174                                 1.48
175                                 1.48
176                                 1.48
177                                 1.40
178                                 1.47
179                                 1.44
180                                 1.36
181                                 1.27
182                                 1.49
183                                 1.67
184                                 1.82
185                                 1.74
186                                 1.64
187                                 1.48
188                                 1.66
189                                 2.08
190                                 1.98
191                                 1.80
192                                 1.31
193                                 1.46
194                                 1.01
195                                 1.31
196                                 1.35
197                                 1.35
198                                 1.50
199                                 1.21
200                                 1.49
201                                 1.51
202                                 1.21
203                                 0.81
204                                 0.89
205                                 1.57
206                                 1.47
207                                 1.66
208                                 1.38
209                                 1.79
210                                 1.91
211                                 1.65
212                                 1.84
213                                 1.86
214                                 1.79
215                                 1.64
216                                 1.78
217                                 1.63
218                                 1.67
219                                 1.84
220                                 1.68
221                                 1.44
222                                 1.75
223                                 1.64
224                                 1.02
225                                 1.36
226                                 1.47
227                                 1.31
228                                 1.18
229                                 0.89
230                                 1.80
231                                 1.18
232                                 1.01
233                                 1.03
234                                 1.77
235                                 1.30
236                                 1.58
237                                 1.12
238                                 1.17
239                                 1.32
240                                 1.67
241                                 1.54
242                                 1.47
243                                 1.40
244                                 1.58
245                                 1.20
246                                 1.00
247                                 1.02
248                                 1.10
249                                 0.99
250                                 1.30
251                                 1.43
252                                 1.39
253                                 1.31
254                                 1.22
255                                 1.14
256                                 1.29
257                                 0.99
258                                 1.17
259                                 1.52
260                                 1.69
261                                 1.54
262                                 1.23
263                                 1.37
264                                 1.42
265                                 1.43
266                                 1.39
267                                 1.25
268                                 1.31
269                                 1.28
270                                 0.96
271                                 1.44
272                                 1.37
273                                 1.51
274                                 1.14
275                                 1.54
276                                 1.56
277                                 1.52
278                                 1.54
279                                 1.54
280                                 1.47
281                                 1.53
282                                 1.67
283                                 1.73
284                                 1.68
285                                 1.78
286                                 1.89
287                                 1.91
288                                 2.22
289                                 2.03
290                                 2.13
291                                 2.10
292                                 1.87
293                                 1.80
294                                 1.73
295                                 1.72
296                                 1.61
297                                 1.73
298                                 1.69
299                                 1.38
300                                 1.46
301                                 1.28
302                                 1.14
303                                 0.83
304                                 1.44
305                                 1.51
306                                 1.44
307                                 1.64
308                                 1.61
309                                 1.70
310                                 1.63
311                                 1.03
312                                 0.97
313                                 1.39
314                                 0.72
315                                 1.50
316                                 0.83
317                                 0.52
318                                 0.66
319                                 0.74
320                                 1.00
321                                 0.98
322                                 1.49
323                                 0.94
324                                 1.73
325                                 1.56
326                                 1.58
327                                 1.31
328                                 1.20
329                                 1.26
330                                 1.48
331                                 1.57
332                                 1.44
333                                 1.42
334                                 1.47
335                                 1.43
336                                 1.50
337                                 1.30
338                                 1.15
    Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                   107565
2                                                   117393
3                                                   124617
4                                                   137196
5                                                    97236
6                                                   115090
7                                                   117463
8                                                   152085
9                                                   135237
10                                                  119210
11                                                  137774
12                                                  145306
13                                                  134327
14                                                  137299
15                                                  165069
16                                                  169025
17                                                  144563
18                                                  147231
19                                                  130921
20                                                  155882
21                                                  167388
22                                                  148598
23                                                  159846
24                                                  159137
25                                                  143993
26                                                  173371
27                                                  159971
28                                                  164161
29                                                  171354
30                                                  187984
31                                                  143986
32                                                  171880
33                                                  180512
34                                                  162803
35                                                  176738
36                                                  161438
37                                                  172913
38                                                  129397
39                                                  126110
40                                                  139065
41                                                  182625
42                                                  149884
43                                                  141282
44                                                  136795
45                                                  114281
46                                                  106664
47                                                  128078
48                                                  216653
49                                                  116996
50                                                  116450
51                                                  125742
52                                                  158638
53                                                  136733
54                                                  131322
55                                                  144355
56                                                  237639
57                                                  134306
58                                                  117299
59                                                  116815
60                                                  114208
61                                                  138566
62                                                  156831
63                                                  123389
64                                                  120833
65                                                  123300
66                                                  151979
67                                                  167438
68                                                  177299
69                                                  161362
70                                                  168758
71                                                  154117
72                                                  166463
73                                                  164282
74                                                  153804
75                                                  173335
76                                                  160413
77                                                  170763
78                                                  234975
79                                                  201924
80                                                  172220
81                                                  163639
82                                                  175046
83                                                  201748
84                                                  210264
85                                                  202002
86                                                  201206
87                                                  224515
88                                                  242277
89                                                  172184
90                                                  135905
91                                                  147520
92                                                  153523
93                                                  152572
94                                                  140244
95                                                  173826
96                                                  154968
97                                                  126068
98                                                  173980
99                                                  233906
100                                                 173312
101                                                 213215
102                                                 134605
103                                                 163977
104                                                 192774
105                                                 221204
106                                                 140322
107                                                 162900
108                                                 149627
109                                                 194796
110                                                 126378
111                                                 169553
112                                                 196433
113                                                 222749
114                                                 165261
115                                                 111491
116                                                 109665
117                                                 103123
118                                                 118344
119                                                 120873
120                                                 120601
121                                                 135633
122                                                 127613
123                                                 176231
124                                                 211280
125                                                 151390
126                                                 194759
127                                                 170792
128                                                 137783
129                                                 150749
130                                                 240071
131                                                 276442
132                                                 243936
133                                                 304248
134                                                 181254
135                                                 196391
136                                                 182566
137                                                 180284
138                                                 210349
139                                                 276422
140                                                 199643
141                                                 166919
142                                                 242721
143                                                 225844
144                                                 174976
145                                                 153513
146                                                 136371
147                                                 140126
148                                                 166170
149                                                 186429
150                                                 159055
151                                                 226525
152                                                 323031
153                                                 163085
154                                                 197073
155                                                 200226
156                                                 226220
157                                                 218882
158                                                 264778
159                                                 216898
160                                                 212108
161                                                 207531
162                                                 209180
163                                                 179193
164                                                 218330
165                                                 333398
166                                                 187523
167                                                 214353
168                                                 194619
169                                                 256758
170                                                   2971
171                                                   2003
172                                                   2254
173                                                   3536
174                                                   3306
175                                                   3637
176                                                   3595
177                                                   4145
178                                                   3834
179                                                   4010
180                                                   4136
181                                                   4403
182                                                   3592
183                                                   2405
184                                                   2435
185                                                   3900
186                                                   5450
187                                                   5071
188                                                   4806
189                                                   3554
190                                                   3185
191                                                   2750
192                                                   4289
193                                                   4349
194                                                   6269
195                                                   5903
196                                                   4817
197                                                   5347
198                                                   4520
199                                                   6028
200                                                   5951
201                                                   5360
202                                                   4755
203                                                  29695
204                                                  28020
205                                                   4884
206                                                   4845
207                                                   4628
208                                                   5290
209                                                   3465
210                                                   2294
211                                                   3385
212                                                   4519
213                                                   4055
214                                                   3934
215                                                   4284
216                                                   3484
217                                                   4216
218                                                   4848
219                                                   4027
220                                                   4193
221                                                   3931
222                                                   4561
223                                                   4249
224                                                   8683
225                                                   5339
226                                                   5504
227                                                   7255
228                                                  10486
229                                                  16601
230                                                   5891
231                                                  10575
232                                                  16161
233                                                  15870
234                                                   8281
235                                                  12977
236                                                   5526
237                                                   9434
238                                                  11870
239                                                  10187
240                                                   7223
241                                                   7698
242                                                   8981
243                                                   9346
244                                                   8142
245                                                  11566
246                                                  11572
247                                                   7549
248                                                   8491
249                                                  13064
250                                                  10239
251                                                   9417
252                                                   7508
253                                                   6711
254                                                   7018
255                                                   8467
256                                                   5872
257                                                  11874
258                                                   9509
259                                                   6324
260                                                   5382
261                                                   6664
262                                                   7458
263                                                   7157
264                                                   4854
265                                                   5182
266                                                   4382
267                                                   4608
268                                                   4000
269                                                   4290
270                                                   6522
271                                                   5245
272                                                   5663
273                                                   4035
274                                                  15852
275                                                   7094
276                                                   6639
277                                                   6604
278                                                   6027
279                                                   7738
280                                                   7723
281                                                   8439
282                                                   7479
283                                                   9203
284                                                  12206
285                                                  10716
286                                                   9142
287                                                   9352
288                                                  10489
289                                                   7548
290                                                   7365
291                                                   9059
292                                                   7111
293                                                   7564
294                                                   7526
295                                                   7588
296                                                   9033
297                                                  12072
298                                                  10483
299                                                   9168
300                                                   8676
301                                                   6043
302                                                   8655
303                                                  21265
304                                                  10384
305                                                  12423
306                                                   9530
307                                                   8118
308                                                   9940
309                                                  10633
310                                                   7379
311                                                  14082
312                                                  13309
313                                                   9702
314                                                  22560
315                                                   7892
316                                                  17119
317                                                  32114
318                                                  19773
319                                                  17518
320                                                  10854
321                                                  10383
322                                                   6971
323                                                  11259
324                                                   5149
325                                                   4992
326                                                   5949
327                                                  11125
328                                                  32634
329                                                  26621
330                                                   7618
331                                                   7372
332                                                   7807
333                                                   8971
334                                                   7422
335                                                   7669
336                                                   8978
337                                                  10424
338                                                  12589
    NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    41809
2                                                    57558
3                                                    69743
4                                                    60376
5                                                    40353
6                                                    50335
7                                                    52475
8                                                    61495
9                                                    58162
10                                                   59745
11                                                   62591
12                                                   57480
13                                                   53606
14                                                   66588
15                                                   86032
16                                                   86159
17                                                   61053
18                                                   64531
19                                                   64598
20                                                   63291
21                                                   64121
22                                                   77973
23                                                   91758
24                                                   75081
25                                                   69964
26                                                   79064
27                                                   72753
28                                                   67311
29                                                   83139
30                                                   92111
31                                                   80729
32                                                   85511
33                                                   97341
34                                                   97880
35                                                   79999
36                                                   87215
37                                                   80304
38                                                   66514
39                                                   67298
40                                                   72473
41                                                  101143
42                                                   90582
43                                                   56324
44                                                   55611
45                                                   56132
46                                                   52222
47                                                   76793
48                                                  111171
49                                                   53202
50                                                   55533
51                                                   64727
52                                                   80299
53                                                   54284
54                                                   55605
55                                                   79159
56                                                  108398
57                                                   58518
58                                                   50017
59                                                   52996
60                                                   55231
61                                                   75422
62                                                   84697
63                                                   53964
64                                                   55586
65                                                   54053
66                                                   70129
67                                                   85332
68                                                   89424
69                                                   73012
70                                                   71113
71                                                   69616
72                                                   71827
73                                                   70943
74                                                   71526
75                                                   73713
76                                                   69177
77                                                   80020
78                                                  118888
79                                                   99553
80                                                   64426
81                                                   65443
82                                                   62728
83                                                   95063
84                                                  105960
85                                                   76165
86                                                   90445
87                                                  111020
88                                                  132005
89                                                   56381
90                                                   57345
91                                                   50791
92                                                   46922
93                                                   46047
94                                                   47504
95                                                   49587
96                                                   48902
97                                                   46772
98                                                   82199
99                                                   99885
100                                                  78647
101                                                  95512
102                                                  52491
103                                                  82730
104                                                  86026
105                                                 103506
106                                                  47452
107                                                  55233
108                                                  62870
109                                                  74697
110                                                  60008
111                                                  78940
112                                                  98437
113                                                 108463
114                                                  72723
115                                                  46747
116                                                  47436
117                                                  46870
118                                                  53368
119                                                  53450
120                                                  51846
121                                                  54123
122                                                  53868
123                                                  86236
124                                                  93231
125                                                  59729
126                                                  82089
127                                                  87045
128                                                  62107
129                                                  61745
130                                                  94170
131                                                 109297
132                                                 100496
133                                                 115493
134                                                  82014
135                                                  82888
136                                                  81187
137                                                  84952
138                                                  91333
139                                                 126893
140                                                  87270
141                                                  70225
142                                                  97053
143                                                 107031
144                                                  75025
145                                                  68172
146                                                  64866
147                                                  62329
148                                                  74970
149                                                  63979
150                                                  60793
151                                                 100274
152                                                 140454
153                                                  66807
154                                                  75920
155                                                  90932
156                                                 105023
157                                                  87684
158                                                  77671
159                                                  62776
160                                                  60499
161                                                  61463
162                                                  55430
163                                                  47570
164                                                  79240
165                                                 108555
166                                                  60556
167                                                  75487
168                                                  77237
169                                                 112639
170                                                    290
171                                                    242
172                                                    330
173                                                    469
174                                                    453
175                                                    523
176                                                    570
177                                                    443
178                                                    393
179                                                    577
180                                                    503
181                                                    463
182                                                    506
183                                                    487
184                                                    512
185                                                    640
186                                                    549
187                                                    774
188                                                    594
189                                                    379
190                                                    303
191                                                    338
192                                                    398
193                                                    433
194                                                    409
195                                                    536
196                                                    461
197                                                    494
198                                                    432
199                                                    322
200                                                    411
201                                                    464
202                                                    560
203                                                    967
204                                                    961
205                                                    408
206                                                    287
207                                                    383
208                                                    404
209                                                    369
210                                                    343
211                                                    407
212                                                    317
213                                                    397
214                                                    589
215                                                    375
216                                                    285
217                                                    432
218                                                    350
219                                                    279
220                                                    349
221                                                    358
222                                                    543
223                                                    505
224                                                    449
225                                                    486
226                                                    494
227                                                    661
228                                                    779
229                                                    537
230                                                    712
231                                                    674
232                                                    725
233                                                    686
234                                                    570
235                                                    789
236                                                    770
237                                                    815
238                                                    962
239                                                    868
240                                                    629
241                                                    652
242                                                    667
243                                                    559
244                                                    643
245                                                    713
246                                                    571
247                                                    584
248                                                    492
249                                                    632
250                                                    574
251                                                    528
252                                                    371
253                                                    389
254                                                    347
255                                                    372
256                                                    359
257                                                   1135
258                                                    378
259                                                    360
260                                                    318
261                                                    273
262                                                    315
263                                                    377
264                                                    388
265                                                    451
266                                                    590
267                                                    500
268                                                    500
269                                                    393
270                                                    422
271                                                    796
272                                                    969
273                                                    452
274                                                    446
275                                                    348
276                                                    411
277                                                    423
278                                                    413
279                                                    428
280                                                    539
281                                                    590
282                                                    569
283                                                    550
284                                                    547
285                                                    584
286                                                    584
287                                                    600
288                                                    572
289                                                    656
290                                                    647
291                                                    525
292                                                    548
293                                                    581
294                                                    746
295                                                    560
296                                                    639
297                                                    506
298                                                    694
299                                                    584
300                                                    477
301                                                    327
302                                                    464
303                                                    597
304                                                    727
305                                                    645
306                                                    641
307                                                    666
308                                                    696
309                                                    784
310                                                    710
311                                                    764
312                                                    757
313                                                    801
314                                                    632
315                                                    695
316                                                    657
317                                                    702
318                                                    659
319                                                    682
320                                                    750
321                                                    688
322                                                    801
323                                                    627
324                                                    626
325                                                    580
326                                                    773
327                                                    534
328                                                    724
329                                                    821
330                                                    532
331                                                    471
332                                                    435
333                                                    446
334                                                    587
335                                                    565
336                                                    614
337                                                    977
338                                                   1640
    NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  27121
2                                                  23198
3                                                  21751
4                                                  33565
5                                                  22858
6                                                  25644
7                                                  26706
8                                                  35337
9                                                  31821
10                                                 23351
11                                                 33117
12                                                 39208
13                                                 38396
14                                                 33743
15                                                 31599
16                                                 31465
17                                                 40881
18                                                 32173
19                                                 29728
20                                                 36257
21                                                 52440
22                                                 30064
23                                                 25540
24                                                 33397
25                                                 32449
26                                                 39344
27                                                 38878
28                                                 40383
29                                                 33535
30                                                 33225
31                                                 21814
32                                                 37314
33                                                 38624
34                                                 27581
35                                                 53621
36                                                 28964
37                                                 40370
38                                                 28066
39                                                 30313
40                                                 25151
41                                                 40166
42                                                 27040
43                                                 37382
44                                                 36035
45                                                 26134
46                                                 20940
47                                                 23239
48                                                 59740
49                                                 32775
50                                                 26459
51                                                 34844
52                                                 51860
53                                                 24335
54                                                 31791
55                                                 19836
56                                                 42478
57                                                 19134
58                                                 21271
59                                                 26129
60                                                 23397
61                                                 16017
62                                                 21559
63                                                 22128
64                                                 23319
65                                                 25748
66                                                 37334
67                                                 26635
68                                                 25413
69                                                 29162
70                                                 34420
71                                                 33285
72                                                 34065
73                                                 37216
74                                                 31744
75                                                 34227
76                                                 38319
77                                                 36097
78                                                 38362
79                                                 37202
80                                                 36827
81                                                 32053
82                                                 38735
83                                                 36787
84                                                 37764
85                                                 47726
86                                                 46435
87                                                 47074
88                                                 35759
89                                                 48784
90                                                 27303
91                                                 28964
92                                                 32128
93                                                 35538
94                                                 31782
95                                                 42502
96                                                 41406
97                                                 36674
98                                                 38936
99                                                 55304
100                                                38158
101                                                43917
102                                                30085
103                                                33602
104                                                40617
105                                                30763
106                                                20794
107                                                32627
108                                                18377
109                                                45552
110                                                16437
111                                                14167
112                                                14574
113                                                15618
114                                                18569
115                                                15691
116                                                16441
117                                                 8225
118                                                13598
119                                                16472
120                                                16292
121                                                19955
122                                                21627
123                                                19788
124                                                20982
125                                                19182
126                                                24630
127                                                20908
128                                                20699
129                                                28472
130                                                28459
131                                                29875
132                                                26548
133                                                35647
134                                                22619
135                                                20624
136                                                20819
137                                                22123
138                                                15547
139                                                33866
140                                                27191
141                                                19860
142                                                23007
143                                                23208
144                                                25021
145                                                23491
146                                                24225
147                                                32440
148                                                29780
149                                                49175
150                                                31711
151                                                43261
152                                                60090
153                                                32338
154                                                47945
155                                                32602
156                                                34667
157                                                50244
158                                                21732
159                                                15964
160                                                22813
161                                                17792
162                                                28467
163                                                13758
164                                                26356
165                                                61749
166                                                23671
167                                                52396
168                                                24462
169                                                32262
170                                                 1781
171                                                 1474
172                                                 1470
173                                                 2219
174                                                 2327
175                                                 2789
176                                                 2671
177                                                 2828
178                                                 2900
179                                                 2726
180                                                 2727
181                                                 2759
182                                                 2498
183                                                 1465
184                                                 1611
185                                                 2289
186                                                 3388
187                                                 2548
188                                                 2741
189                                                 2654
190                                                 2219
191                                                 1947
192                                                 2337
193                                                 2343
194                                                 2453
195                                                 4088
196                                                 3363
197                                                 3525
198                                                 2970
199                                                 2721
200                                                 3628
201                                                 3593
202                                                 2086
203                                                17215
204                                                18774
205                                                 3284
206                                                 3204
207                                                 3479
208                                                 2859
209                                                 2348
210                                                 1775
211                                                 2060
212                                                 2943
213                                                 2681
214                                                 2582
215                                                 2598
216                                                 2071
217                                                 2985
218                                                 3651
219                                                 2960
220                                                 3227
221                                                 2433
222                                                 2287
223                                                 1858
224                                                 1414
225                                                 1639
226                                                 1889
227                                                 2218
228                                                 2727
229                                                 2897
230                                                 2811
231                                                 3074
232                                                 3749
233                                                 4176
234                                                 4396
235                                                 3352
236                                                 2564
237                                                 3268
238                                                 4496
239                                                 4899
240                                                 4018
241                                                 3941
242                                                 4130
243                                                 3797
244                                                 4610
245                                                 4468
246                                                 4290
247                                                 3322
248                                                 3911
249                                                 5496
250                                                 5540
251                                                 4917
252                                                 4349
253                                                 3324
254                                                 3729
255                                                 4351
256                                                 3028
257                                                 4547
258                                                 5492
259                                                 4906
260                                                 3569
261                                                 4060
262                                                 3453
263                                                 3722
264                                                 3606
265                                                 4249
266                                                 2961
267                                                 2711
268                                                 2482
269                                                 2600
270                                                 2813
271                                                 3813
272                                                 3559
273                                                 2937
274                                                 1042
275                                                 1174
276                                                 1350
277                                                 1208
278                                                 1265
279                                                 1501
280                                                 1545
281                                                 1464
282                                                 1069
283                                                 1472
284                                                 1829
285                                                 1788
286                                                 1941
287                                                 2056
288                                                 1882
289                                                 1882
290                                                 2092
291                                                 1737
292                                                 1242
293                                                 1816
294                                                 2180
295                                                 1981
296                                                 2113
297                                                 3601
298                                                 3254
299                                                 2285
300                                                 1908
301                                                 1746
302                                                 2943
303                                                 3255
304                                                 3262
305                                                 3161
306                                                 3255
307                                                 3418
308                                                 3430
309                                                 3774
310                                                 2797
311                                                 2797
312                                                 3087
313                                                 3980
314                                                 3717
315                                                 3641
316                                                 3678
317                                                 3008
318                                                 3386
319                                                 3153
320                                                 2490
321                                                 2992
322                                                 3370
323                                                 2305
324                                                 2307
325                                                 2132
326                                                 2724
327                                                 1113
328                                                 8583
329                                                10738
330                                                 1246
331                                                 1510
332                                                 1521
333                                                 1117
334                                                 1187
335                                                 1557
336                                                 1852
337                                                 1620
338                                                 1133
    NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                   15564
2                                                   16371
3                                                   12958
4                                                   24435
5                                                   16653
6                                                   20731
7                                                   15259
8                                                   29584
9                                                   23764
10                                                  19024
11                                                  18607
12                                                  24725
13                                                  23069
14                                                  18528
15                                                  26200
16                                                  26703
17                                                  20842
18                                                  25752
19                                                  15723
20                                                  32384
21                                                  20857
22                                                  17345
23                                                  13557
24                                                  24209
25                                                  16035
26                                                  24675
27                                                  12797
28                                                  24529
29                                                  20024
30                                                  29167
31                                                  13935
32                                                  14262
33                                                  22935
34                                                  10126
35                                                  15882
36                                                  16624
37                                                  26369
38                                                   9956
39                                                   9927
40                                                   8712
41                                                  24996
42                                                   9632
43                                                  11405
44                                                  25775
45                                                  10604
46                                                   8940
47                                                   7653
48                                                  21796
49                                                   7823
50                                                   7041
51                                                   7190
52                                                   7609
53                                                   1538
54                                                   2523
55                                                   1302
56                                                   5532
57                                                   1296
58                                                   1336
59                                                   1460
60                                                   1604
61                                                   1374
62                                                   1763
63                                                   1875
64                                                   1901
65                                                   2077
66                                                   2426
67                                                   2505
68                                                   2345
69                                                   2616
70                                                   2593
71                                                   2842
72                                                   3157
73                                                   3955
74                                                   4295
75                                                   6084
76                                                   6346
77                                                   5813
78                                                   6699
79                                                  10853
80                                                  15000
81                                                   8090
82                                                  25833
83                                                   7985
84                                                   6778
85                                                  21037
86                                                  19164
87                                                   9593
88                                                  10151
89                                                  27375
90                                                   9075
91                                                  21042
92                                                  29364
93                                                  28532
94                                                  18666
95                                                  35277
96                                                  28500
97                                                  15758
98                                                  17175
99                                                  36192
100                                                 23467
101                                                 35350
102                                                 20931
103                                                 17903
104                                                 32940
105                                                  5225
106                                                  5024
107                                                  5345
108                                                  1248
109                                                  2801
110                                                   984
111                                                   856
112                                                   866
113                                                   912
114                                                   809
115                                                   751
116                                                   664
117                                                   766
118                                                  1131
119                                                   905
120                                                   936
121                                                   990
122                                                  1053
123                                                  1022
124                                                   989
125                                                  1136
126                                                  1149
127                                                  1145
128                                                  1070
129                                                  2046
130                                                  1949
131                                                  1475
132                                                  1160
133                                                  2236
134                                                  1338
135                                                  1781
136                                                  1809
137                                                  1876
138                                                  1392
139                                                  2806
140                                                  1850
141                                                  1525
142                                                  1563
143                                                  1697
144                                                  1683
145                                                  1511
146                                                  1373
147                                                  1275
148                                                  1538
149                                                  3874
150                                                  2015
151                                                  1989
152                                                  4270
153                                                  1335
154                                                  3812
155                                                  1594
156                                                  1761
157                                                  4324
158                                                  3273
159                                                  2294
160                                                  2943
161                                                  2209
162                                                  3406
163                                                  2239
164                                                  2999
165                                                  5330
166                                                  3175
167                                                  4298
168                                                  3267
169                                                  4168
170                                                     0
171                                                     0
172                                                     0
173                                                     2
174                                                     0
175                                                     0
176                                                     0
177                                                     0
178                                                     0
179                                                     0
180                                                     0
181                                                     0
182                                                     0
183                                                     0
184                                                     0
185                                                     0
186                                                     0
187                                                     0
188                                                     3
189                                                     0
190                                                     0
191                                                     3
192                                                     0
193                                                     0
194                                                     0
195                                                     0
196                                                     2
197                                                     1
198                                                     0
199                                                     0
200                                                     0
201                                                     0
202                                                     0
203                                                     1
204                                                     2
205                                                     0
206                                                     0
207                                                     0
208                                                     0
209                                                     0
210                                                     0
211                                                     0
212                                                     7
213                                                     0
214                                                     0
215                                                     0
216                                                     0
217                                                     0
218                                                     0
219                                                     0
220                                                     0
221                                                     0
222                                                     0
223                                                     0
224                                                     0
225                                                     0
226                                                     0
227                                                     0
228                                                     0
229                                                     0
230                                                     0
231                                                     0
232                                                     0
233                                                     1
234                                                     0
235                                                     0
236                                                     0
237                                                     0
238                                                     0
239                                                     0
240                                                     0
241                                                     0
242                                                     0
243                                                     0
244                                                     0
245                                                     0
246                                                     0
247                                                     0
248                                                     0
249                                                    37
250                                                    40
251                                                    50
252                                                    54
253                                                    18
254                                                     6
255                                                     3
256                                                     9
257                                                    19
258                                                     2
259                                                     0
260                                                     0
261                                                    16
262                                                     4
263                                                     4
264                                                     0
265                                                     0
266                                                     0
267                                                     0
268                                                     2
269                                                     0
270                                                     1
271                                                     0
272                                                     0
273                                                     2
274                                                     0
275                                                     0
276                                                     1
277                                                     0
278                                                     0
279                                                     0
280                                                     0
281                                                     0
282                                                     0
283                                                     0
284                                                     0
285                                                     0
286                                                     0
287                                                     0
288                                                     0
289                                                     0
290                                                     0
291                                                     0
292                                                     0
293                                                     0
294                                                     0
295                                                     0
296                                                     0
297                                                     0
298                                                     0
299                                                     0
300                                                     0
301                                                     0
302                                                     0
303                                                     0
304                                                     0
305                                                     0
306                                                     0
307                                                     0
308                                                     0
309                                                     0
310                                                     0
311                                                     0
312                                                     0
313                                                     0
314                                                     0
315                                                     0
316                                                     0
317                                                     0
318                                                     0
319                                                     0
320                                                     0
321                                                     0
322                                                     0
323                                                     0
324                                                     0
325                                                     0
326                                                     0
327                                                     0
328                                                     0
329                                                     0
330                                                     0
331                                                     0
332                                                     0
333                                                     0
334                                                     0
335                                                     0
336                                                     0
337                                                     0
338                                                     0
    Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                          23072                        15032
2                          20266                        11761
3                          20166                        14642
4                          18819                        12452
5                          17371                        12106
6                          18380                        13855
7                          23024                        19595
8                          25670                        14900
9                          21489                        14668
10                         17089                        11461
11                         23460                        18602
12                         23893                        16947
13                         19255                        14952
14                         18440                        10971
15                         21237                        12030
16                         24698                        17100
17                         21787                        16534
18                         24775                        16928
19                         20872                        14962
20                         23949                        15230
21                         29969                        20668
22                         23216                        17997
23                         28990                        23981
24                         26450                        21846
25                         25545                        22606
26                         30289                        24910
27                         35543                        29338
28                         31938                        24969
29                         34656                        27204
30                         33480                        23654
31                         27508                        21434
32                         34793                        22680
33                         21612                        15997
34                         27215                        23689
35                         27236                        16303
36                         28635                        22384
37                         25870                        20819
38                         24862                        23837
39                         18572                        17853
40                         32729                        31416
41                         16321                         9159
42                         22629                        18488
43                         36170                        29553
44                         19375                        13297
45                         21411                        18267
46                         24562                        22104
47                         20394                        17859
48                         23946                        16360
49                         23196                        21117
50                         27418                        24387
51                         18981                        16400
52                         18870                        16518
53                         56576                        55084
54                         41403                        38839
55                         44058                        41891
56                         81232                        76008
57                         55358                        53685
58                         44676                        43074
59                         36229                        34146
60                         33976                        32557
61                         45753                        43903
62                         48812                        46731
63                         45421                        43151
64                         40027                        36597
65                         41422                        36953
66                         42089                        41378
67                         52966                        51334
68                         60118                        58343
69                         56573                        55935
70                         60632                        57070
71                         48374                        42941
72                         57414                        53549
73                         52168                        38683
74                         46239                        38378
75                         59311                        46627
76                         46572                        38847
77                         48834                        32849
78                         71026                        62164
79                         54316                        45986
80                         55967                        45124
81                         58052                        49307
82                         47750                        35846
83                         61912                        53230
84                         59762                        48050
85                         57075                        33941
86                         45162                        26508
87                         56828                        48051
88                         64362                        54682
89                         39644                        27199
90                         42182                        31689
91                         46722                        22994
92                         45109                        21568
93                         42455                        22446
94                         42293                        26468
95                         46460                        23754
96                         36160                        22423
97                         26864                        19801
98                         35671                        27387
99                         42525                        30226
100                        33040                        21260
101                        38437                        28562
102                        31098                        23123
103                        29742                        21493
104                        33191                        18463
105                        81710                        68828
106                        67052                        61296
107                        69696                        58822
108                        67132                        59595
109                        71746                        56452
110                        48949                        38018
111                        75591                        69169
112                        82556                        69587
113                        97756                        91641
114                        73161                        68104
115                        48303                        42964
116                        45124                        38815
117                        47263                        40288
118                        50248                        42738
119                        50046                        44515
120                        51527                        44155
121                        60566                        52388
122                        51065                        44365
123                        69185                        62542
124                        96078                        88137
125                        71343                        62534
126                        86891                        78410
127                        61694                        52484
128                        53909                        48160
129                        58486                        49409
130                       115493                        92651
131                       135796                       119449
132                       115732                        98172
133                       150871                       135611
134                        75283                        71041
135                        91098                        85697
136                        78751                        56750
137                        71333                        62963
138                       102078                        94035
139                       112857                       104277
140                        83333                        75470
141                        75309                        72832
142                       121098                       118412
143                        93908                        91577
144                        73248                        70290
145                        60339                        57573
146                        45907                        43921
147                        44082                        40702
148                        59882                        54734
149                        69402                        66798
150                        64535                        62128
151                        81002                        76106
152                       118216                       114404
153                        62604                        54599
154                        69396                        65667
155                        75099                        65836
156                        84768                        81563
157                        76630                        73433
158                       162102                       133164
159                       135864                        95448
160                       125854                        85933
161                       126067                       103725
162                       121878                        85192
163                       115626                        76907
164                       109735                        73393
165                       157765                       117614
166                       100121                        83156
167                        82172                        63262
168                        89653                        75499
169                       107689                        89971
170                          900                          190
171                          286                          222
172                          454                          169
173                          846                          550
174                          526                          372
175                          325                          129
176                          354                          127
177                          874                          414
178                          541                          258
179                          707                          469
180                          906                          227
181                         1181                          350
182                          589                          312
183                          452                          101
184                          313                           54
185                          971                          473
186                         1513                          583
187                         1749                           99
188                         1468                          305
189                          522                          237
190                          663                          370
191                          461                           53
192                         1554                            0
193                         1574                           27
194                         3407                           80
195                         1279                          290
196                          991                          220
197                         1328                          381
198                         1118                          838
199                         2986                          687
200                         1912                         1139
201                         1304                          746
202                         2108                          606
203                        11512                          433
204                         8283                          503
205                         1191                          573
206                         1353                          741
207                          766                          450
208                         2027                          645
209                          748                          719
210                          175                          137
211                          918                          292
212                         1251                         1130
213                          976                          665
214                          763                          238
215                         1311                          707
216                         1127                          857
217                          799                          223
218                          847                          293
219                          788                          213
220                          617                          416
221                         1140                          444
222                         1731                         1588
223                         1886                         1254
224                         6820                         2531
225                         3214                         3075
226                         3120                         2050
227                         4376                         1467
228                         6980                         1487
229                        13167                         2262
230                         2368                         1769
231                         6827                         1766
232                        11687                         2823
233                        11007                         2687
234                         3315                         3048
235                         8835                         2539
236                         2192                         1028
237                         5351                          877
238                         6411                          713
239                         4419                          352
240                         2576                         1130
241                         3105                          602
242                         4184                          502
243                         4991                         1088
244                         2890                          554
245                         6386                          730
246                         6711                          551
247                         3644                          560
248                         4088                          699
249                         6899                          751
250                         4085                          683
251                         3923                          699
252                         2733                          590
253                         2980                         1038
254                         2936                          755
255                         3741                          994
256                         2476                          940
257                         6173                         1170
258                         3637                          689
259                         1057                          550
260                         1495                          567
261                         2315                          437
262                         3685                          408
263                         3054                          619
264                          860                           51
265                          481                          240
266                          831                          250
267                         1397                          210
268                         1015                          162
269                         1297                          154
270                         3287                          328
271                          635                          223
272                         1135                          457
273                          643                          230
274                        14364                        13142
275                         5571                         4652
276                         4877                         3876
277                         4972                         4524
278                         4349                         4314
279                         5809                         5053
280                         5639                         5290
281                         6385                         6057
282                         5840                         5689
283                         7181                         6422
284                         9830                         8497
285                         8344                         7285
286                         6618                         6597
287                         6697                         6061
288                         8035                         4142
289                         5011                         4019
290                         4626                         3489
291                         6797                         4339
292                         5321                         4030
293                         5167                         4049
294                         4600                         4464
295                         5047                         4025
296                         6281                         4055
297                         7965                         2961
298                         6444                         3221
299                         6298                         1024
300                         6291                         1829
301                         3970                          419
302                         5248                          784
303                        17413                         1651
304                         6394                         2168
305                         8617                         2472
306                         5633                         1631
307                         4034                         2226
308                         5814                         1995
309                         6075                         2554
310                         3872                         2812
311                        10521                         2641
312                         9465                         2634
313                         4921                         2329
314                        18211                         2515
315                         3556                         2434
316                        12784                         2149
317                        28404                         1851
318                        15727                         1483
319                        13683                         1933
320                         7613                         1836
321                         6702                         1756
322                         2800                         2039
323                         8326                         2083
324                         2216                         2173
325                         2280                         2140
326                         2451                         2274
327                         9478                         7760
328                        23328                        11776
329                        15062                        12641
330                         5840                         5690
331                         5391                         4641
332                         5851                         5851
333                         7408                         7086
334                         5648                         5453
335                         5547                         4090
336                         6512                         4084
337                         7827                         7351
338                         9816                         9106
    Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)  type (TIPO)
1                           3875                           4164.71 conventional
2                           4248                           4257.36 conventional
3                           4307                           1216.09 conventional
4                           3867                           2500.65 conventional
5                           4116                           1149.67 conventional
6                           2827                           1698.16 conventional
7                           2618                            810.30 conventional
8                           6935                           3834.39 conventional
9                           3691                           3129.54 conventional
10                          3926                           1702.18 conventional
11                          4384                            473.54 conventional
12                          4766                           2179.90 conventional
13                          2203                           2099.60 conventional
14                          5538                           1931.33 conventional
15                          4672                           4535.79 conventional
16                          4202                           3397.00 conventional
17                          3612                           1641.68 conventional
18                          4937                           2909.73 conventional
19                          5011                            899.55 conventional
20                          4315                           4404.09 conventional
21                          7461                           1840.33 conventional
22                          3282                           1936.76 conventional
23                          3986                           1023.11 conventional
24                          2443                           2161.32 conventional
25                          2366                            572.64 conventional
26                          4244                           1134.74 conventional
27                          5684                            521.66 conventional
28                          4739                           2229.60 conventional
29                          6030                           1421.71 conventional
30                          5889                           3937.60 conventional
31                          4733                           1340.27 conventional
32                         10832                           1280.32 conventional
33                          2464                           3150.27 conventional
34                          2797                            729.47 conventional
35                          9726                           1206.47 conventional
36                          4960                           1291.55 conventional
37                          1862                           3189.34 conventional
38                           840                            184.34 conventional
39                           643                             75.93 conventional
40                           937                            375.40 conventional
41                          2692                           4470.47 conventional
42                          3462                            679.76 conventional
43                          5483                           1134.58 conventional
44                          1838                           4240.19 conventional
45                          2275                            869.61 conventional
46                          1860                            597.63 conventional
47                          1971                            563.46 conventional
48                          3423                           4163.25 conventional
49                          2057                             21.43 conventional
50                          2962                             68.46 conventional
51                          2459                            122.29 conventional
52                          2132                            219.20 conventional
53                          1459                             33.01 conventional
54                          2461                            102.72 conventional
55                          2155                             11.57 conventional
56                          5159                             65.21 conventional
57                          1671                              1.45 conventional
58                          1602                              0.00 conventional
59                          2082                              0.00 conventional
60                          1420                              0.00 conventional
61                          1850                              0.00 conventional
62                          2081                              0.00 conventional
63                          2271                              0.00 conventional
64                          3430                              0.00 conventional
65                          4470                              0.00 conventional
66                           712                              0.00 conventional
67                          1632                              0.00 conventional
68                          1755                             20.00 conventional
69                           466                            171.44 conventional
70                          1842                           1720.00 conventional
71                          4123                           1310.00 conventional
72                          3865                              0.00 conventional
73                         13475                             10.00 conventional
74                          7260                            600.95 conventional
75                          8564                           4119.67 conventional
76                          2931                           4793.45 conventional
77                         11537                           4447.88 conventional
78                          4656                           4206.19 conventional
79                          4848                           3482.96 conventional
80                          6081                           4761.49 conventional
81                          6082                           2663.46 conventional
82                          6408                           5495.88 conventional
83                          6886                           1795.84 conventional
84                          9992                           1720.96 conventional
85                         18533                           4600.51 conventional
86                         15138                           3516.22 conventional
87                          7486                           1290.97 conventional
88                          8239                           1441.24 conventional
89                          7591                           4854.19 conventional
90                          9454                           1038.71 conventional
91                         21164                           2564.53 conventional
92                         20099                           3442.88 conventional
93                         16153                           3855.21 conventional
94                         14098                           1727.12 conventional
95                         17567                           5138.93 conventional
96                         10262                           3474.47 conventional
97                          6111                            951.80 conventional
98                          7182                           1102.03 conventional
99                          6961                           5337.74 conventional
100                         9259                           2521.34 conventional
101                         4436                           5439.08 conventional
102                         6493                           1482.44 conventional
103                         6989                           1260.37 conventional
104                         6208                           8519.43 conventional
105                        12797                             84.50 conventional
106                         5712                             43.98 conventional
107                        10799                             75.43 conventional
108                         7391                            146.56 conventional
109                        15193                            101.00 conventional
110                        10872                             59.00 conventional
111                         6354                             69.00 conventional
112                        12778                            191.00 conventional
113                         5899                            216.05 conventional
114                         4975                             82.24 conventional
115                         5308                             29.93 conventional
116                         6308                              1.30 conventional
117                         6951                             23.34 conventional
118                         7359                            150.73 conventional
119                         5349                            181.35 conventional
120                         7206                            166.84 conventional
121                         7867                            311.85 conventional
122                         6307                            393.59 conventional
123                         6049                            593.37 conventional
124                         7448                            492.80 conventional
125                         8290                            519.51 conventional
126                         7852                            628.47 conventional
127                         8794                            416.67 conventional
128                         5228                            521.11 conventional
129                         7883                           1194.55 conventional
130                        22634                            207.65 conventional
131                        15486                            859.94 conventional
132                        17016                            543.21 conventional
133                        14772                            488.57 conventional
134                         3179                           1062.70 conventional
135                         5342                             59.23 conventional
136                        21930                             70.37 conventional
137                         8171                            198.49 conventional
138                         7985                             57.91 conventional
139                         8432                            147.96 conventional
140                         7759                            103.88 conventional
141                         2452                             24.58 conventional
142                         2680                              6.18 conventional
143                         2306                             24.48 conventional
144                         2942                             15.20 conventional
145                         2766                              0.00 conventional
146                         1946                             39.63 conventional
147                         3272                            108.71 conventional
148                         5135                             12.90 conventional
149                         2588                             15.59 conventional
150                         2407                              0.00 conventional
151                         4894                              1.41 conventional
152                         3809                              2.78 conventional
153                         8001                              4.22 conventional
154                         3727                              1.41 conventional
155                         9154                            108.33 conventional
156                         3206                              0.00 conventional
157                         3197                              0.00 conventional
158                        28160                            778.50 conventional
159                        39893                            522.55 conventional
160                        39845                             76.33 conventional
161                        21558                            784.71 conventional
162                        34251                           2434.72 conventional
163                        36899                           1819.87 conventional
164                        34339                           2003.02 conventional
165                        39927                            223.71 conventional
166                        16932                             32.44 conventional
167                        18897                             13.64 conventional
168                        14126                             28.53 conventional
169                        17361                            356.24 conventional
170                          710                              0.00      organic
171                           64                              0.00      organic
172                          284                              0.00      organic
173                          296                              0.00      organic
174                          154                              0.00      organic
175                          196                              0.00      organic
176                          227                              0.00      organic
177                          460                              0.00      organic
178                          284                              0.00      organic
179                          238                              0.00      organic
180                          679                              0.00      organic
181                          831                              0.00      organic
182                          278                              0.00      organic
183                          352                              0.00      organic
184                          259                              0.00      organic
185                          498                              0.00      organic
186                          930                              0.00      organic
187                         1650                              0.00      organic
188                         1163                              0.00      organic
189                          285                              0.00      organic
190                          293                              0.00      organic
191                          408                              0.00      organic
192                         1554                              0.00      organic
193                         1547                              0.00      organic
194                         3327                              0.00      organic
195                          989                              0.00      organic
196                          771                              0.00      organic
197                          946                              0.00      organic
198                          281                              0.00      organic
199                         2299                              0.00      organic
200                          773                              0.00      organic
201                          557                              0.00      organic
202                         1503                              0.00      organic
203                        11078                              0.00      organic
204                         7780                              0.00      organic
205                          618                              0.00      organic
206                          612                              0.00      organic
207                          316                              0.00      organic
208                         1381                              0.00      organic
209                           29                              0.00      organic
210                           38                              0.00      organic
211                          626                              0.00      organic
212                          121                              0.00      organic
213                          311                              0.00      organic
214                          525                              0.00      organic
215                          605                              0.00      organic
216                          271                              0.00      organic
217                          575                              0.00      organic
218                          553                              0.00      organic
219                          575                              0.00      organic
220                          201                              0.00      organic
221                          696                              0.00      organic
222                          143                              0.00      organic
223                          632                              0.00      organic
224                         4289                              0.00      organic
225                          139                              0.00      organic
226                         1070                              0.00      organic
227                         2908                              0.00      organic
228                         5493                              0.00      organic
229                        10904                              0.00      organic
230                          598                              0.00      organic
231                         5062                              0.00      organic
232                         8864                              0.00      organic
233                         8320                              0.00      organic
234                          266                              0.00      organic
235                         6296                              0.00      organic
236                         1164                              0.00      organic
237                         4474                              0.00      organic
238                         5698                              0.00      organic
239                         4067                              0.00      organic
240                         1447                              0.00      organic
241                         2502                              0.00      organic
242                         3683                              0.00      organic
243                         3903                              0.00      organic
244                         2335                              0.00      organic
245                         5655                              0.00      organic
246                         6160                              0.00      organic
247                         3084                              0.00      organic
248                         3389                              0.00      organic
249                         6148                              0.00      organic
250                         3403                              0.00      organic
251                         3224                              0.00      organic
252                         2143                              0.00      organic
253                         1942                              0.00      organic
254                         2181                              0.00      organic
255                         2746                              0.00      organic
256                         1536                              0.00      organic
257                         5004                              0.00      organic
258                         2948                              0.00      organic
259                          507                              0.00      organic
260                          929                              0.00      organic
261                         1877                              0.00      organic
262                         3277                              0.00      organic
263                         2435                              0.00      organic
264                          809                              0.00      organic
265                          241                              0.00      organic
266                          581                              0.00      organic
267                         1187                              0.00      organic
268                          854                              0.00      organic
269                         1143                              0.00      organic
270                         2959                              0.00      organic
271                          412                              0.00      organic
272                          679                              0.00      organic
273                          413                              0.00      organic
274                         1222                              0.00      organic
275                          920                              0.00      organic
276                         1001                              0.00      organic
277                          448                              0.00      organic
278                           35                              0.00      organic
279                          756                              0.00      organic
280                          349                              0.00      organic
281                          327                              0.00      organic
282                          151                              0.00      organic
283                          758                              0.00      organic
284                         1333                              0.00      organic
285                         1059                              0.00      organic
286                           20                              0.00      organic
287                          635                              0.00      organic
288                         3893                              0.00      organic
289                          992                              0.00      organic
290                         1137                              0.00      organic
291                         2459                              0.00      organic
292                         1291                              0.00      organic
293                         1118                              0.00      organic
294                          136                              0.00      organic
295                         1023                              0.00      organic
296                         2226                              0.00      organic
297                         5004                              0.00      organic
298                         3223                              0.00      organic
299                         5274                              0.00      organic
300                         4463                              0.00      organic
301                         3552                              0.00      organic
302                         4464                              0.00      organic
303                        15763                              0.00      organic
304                         4226                              0.00      organic
305                         6145                              0.00      organic
306                         4002                              0.00      organic
307                         1808                              0.00      organic
308                         3820                              0.00      organic
309                         3521                              0.00      organic
310                         1060                              0.00      organic
311                         7880                              0.00      organic
312                         6831                              0.00      organic
313                         2591                              0.00      organic
314                        15696                              0.00      organic
315                         1122                              0.00      organic
316                        10635                              0.00      organic
317                        26553                              0.00      organic
318                        14244                              0.00      organic
319                        11750                              0.00      organic
320                         5778                              0.00      organic
321                         4947                              0.00      organic
322                          760                              0.00      organic
323                         6243                              0.00      organic
324                           43                              0.00      organic
325                          140                              0.00      organic
326                          178                              0.00      organic
327                         1718                              0.00      organic
328                        11551                              0.00      organic
329                         2421                              0.00      organic
330                          150                              0.00      organic
331                          750                              0.00      organic
332                            0                              0.00      organic
333                          322                              0.00      organic
334                          195                              0.00      organic
335                         1457                              0.00      organic
336                         2429                              0.00      organic
337                          476                              0.00      organic
338                          710                              0.00      organic
    year (AÑO) region (REGION)
1         2015        Columbus
2         2015        Columbus
3         2015        Columbus
4         2015        Columbus
5         2015        Columbus
6         2015        Columbus
7         2015        Columbus
8         2015        Columbus
9         2015        Columbus
10        2015        Columbus
11        2015        Columbus
12        2015        Columbus
13        2015        Columbus
14        2015        Columbus
15        2015        Columbus
16        2015        Columbus
17        2015        Columbus
18        2015        Columbus
19        2015        Columbus
20        2015        Columbus
21        2015        Columbus
22        2015        Columbus
23        2015        Columbus
24        2015        Columbus
25        2015        Columbus
26        2015        Columbus
27        2015        Columbus
28        2015        Columbus
29        2015        Columbus
30        2015        Columbus
31        2015        Columbus
32        2015        Columbus
33        2015        Columbus
34        2015        Columbus
35        2015        Columbus
36        2015        Columbus
37        2015        Columbus
38        2015        Columbus
39        2015        Columbus
40        2015        Columbus
41        2015        Columbus
42        2015        Columbus
43        2015        Columbus
44        2015        Columbus
45        2015        Columbus
46        2015        Columbus
47        2015        Columbus
48        2015        Columbus
49        2015        Columbus
50        2015        Columbus
51        2015        Columbus
52        2015        Columbus
53        2016        Columbus
54        2016        Columbus
55        2016        Columbus
56        2016        Columbus
57        2016        Columbus
58        2016        Columbus
59        2016        Columbus
60        2016        Columbus
61        2016        Columbus
62        2016        Columbus
63        2016        Columbus
64        2016        Columbus
65        2016        Columbus
66        2016        Columbus
67        2016        Columbus
68        2016        Columbus
69        2016        Columbus
70        2016        Columbus
71        2016        Columbus
72        2016        Columbus
73        2016        Columbus
74        2016        Columbus
75        2016        Columbus
76        2016        Columbus
77        2016        Columbus
78        2016        Columbus
79        2016        Columbus
80        2016        Columbus
81        2016        Columbus
82        2016        Columbus
83        2016        Columbus
84        2016        Columbus
85        2016        Columbus
86        2016        Columbus
87        2016        Columbus
88        2016        Columbus
89        2016        Columbus
90        2016        Columbus
91        2016        Columbus
92        2016        Columbus
93        2016        Columbus
94        2016        Columbus
95        2016        Columbus
96        2016        Columbus
97        2016        Columbus
98        2016        Columbus
99        2016        Columbus
100       2016        Columbus
101       2016        Columbus
102       2016        Columbus
103       2016        Columbus
104       2016        Columbus
105       2017        Columbus
106       2017        Columbus
107       2017        Columbus
108       2017        Columbus
109       2017        Columbus
110       2017        Columbus
111       2017        Columbus
112       2017        Columbus
113       2017        Columbus
114       2017        Columbus
115       2017        Columbus
116       2017        Columbus
117       2017        Columbus
118       2017        Columbus
119       2017        Columbus
120       2017        Columbus
121       2017        Columbus
122       2017        Columbus
123       2017        Columbus
124       2017        Columbus
125       2017        Columbus
126       2017        Columbus
127       2017        Columbus
128       2017        Columbus
129       2017        Columbus
130       2017        Columbus
131       2017        Columbus
132       2017        Columbus
133       2017        Columbus
134       2017        Columbus
135       2017        Columbus
136       2017        Columbus
137       2017        Columbus
138       2017        Columbus
139       2017        Columbus
140       2017        Columbus
141       2017        Columbus
142       2017        Columbus
143       2017        Columbus
144       2017        Columbus
145       2017        Columbus
146       2017        Columbus
147       2017        Columbus
148       2017        Columbus
149       2017        Columbus
150       2017        Columbus
151       2017        Columbus
152       2017        Columbus
153       2017        Columbus
154       2017        Columbus
155       2017        Columbus
156       2017        Columbus
157       2017        Columbus
158       2018        Columbus
159       2018        Columbus
160       2018        Columbus
161       2018        Columbus
162       2018        Columbus
163       2018        Columbus
164       2018        Columbus
165       2018        Columbus
166       2018        Columbus
167       2018        Columbus
168       2018        Columbus
169       2018        Columbus
170       2015        Columbus
171       2015        Columbus
172       2015        Columbus
173       2015        Columbus
174       2015        Columbus
175       2015        Columbus
176       2015        Columbus
177       2015        Columbus
178       2015        Columbus
179       2015        Columbus
180       2015        Columbus
181       2015        Columbus
182       2015        Columbus
183       2015        Columbus
184       2015        Columbus
185       2015        Columbus
186       2015        Columbus
187       2015        Columbus
188       2015        Columbus
189       2015        Columbus
190       2015        Columbus
191       2015        Columbus
192       2015        Columbus
193       2015        Columbus
194       2015        Columbus
195       2015        Columbus
196       2015        Columbus
197       2015        Columbus
198       2015        Columbus
199       2015        Columbus
200       2015        Columbus
201       2015        Columbus
202       2015        Columbus
203       2015        Columbus
204       2015        Columbus
205       2015        Columbus
206       2015        Columbus
207       2015        Columbus
208       2015        Columbus
209       2015        Columbus
210       2015        Columbus
211       2015        Columbus
212       2015        Columbus
213       2015        Columbus
214       2015        Columbus
215       2015        Columbus
216       2015        Columbus
217       2015        Columbus
218       2015        Columbus
219       2015        Columbus
220       2015        Columbus
221       2015        Columbus
222       2016        Columbus
223       2016        Columbus
224       2016        Columbus
225       2016        Columbus
226       2016        Columbus
227       2016        Columbus
228       2016        Columbus
229       2016        Columbus
230       2016        Columbus
231       2016        Columbus
232       2016        Columbus
233       2016        Columbus
234       2016        Columbus
235       2016        Columbus
236       2016        Columbus
237       2016        Columbus
238       2016        Columbus
239       2016        Columbus
240       2016        Columbus
241       2016        Columbus
242       2016        Columbus
243       2016        Columbus
244       2016        Columbus
245       2016        Columbus
246       2016        Columbus
247       2016        Columbus
248       2016        Columbus
249       2016        Columbus
250       2016        Columbus
251       2016        Columbus
252       2016        Columbus
253       2016        Columbus
254       2016        Columbus
255       2016        Columbus
256       2016        Columbus
257       2016        Columbus
258       2016        Columbus
259       2016        Columbus
260       2016        Columbus
261       2016        Columbus
262       2016        Columbus
263       2016        Columbus
264       2016        Columbus
265       2016        Columbus
266       2016        Columbus
267       2016        Columbus
268       2016        Columbus
269       2016        Columbus
270       2016        Columbus
271       2016        Columbus
272       2016        Columbus
273       2016        Columbus
274       2017        Columbus
275       2017        Columbus
276       2017        Columbus
277       2017        Columbus
278       2017        Columbus
279       2017        Columbus
280       2017        Columbus
281       2017        Columbus
282       2017        Columbus
283       2017        Columbus
284       2017        Columbus
285       2017        Columbus
286       2017        Columbus
287       2017        Columbus
288       2017        Columbus
289       2017        Columbus
290       2017        Columbus
291       2017        Columbus
292       2017        Columbus
293       2017        Columbus
294       2017        Columbus
295       2017        Columbus
296       2017        Columbus
297       2017        Columbus
298       2017        Columbus
299       2017        Columbus
300       2017        Columbus
301       2017        Columbus
302       2017        Columbus
303       2017        Columbus
304       2017        Columbus
305       2017        Columbus
306       2017        Columbus
307       2017        Columbus
308       2017        Columbus
309       2017        Columbus
310       2017        Columbus
311       2017        Columbus
312       2017        Columbus
313       2017        Columbus
314       2017        Columbus
315       2017        Columbus
316       2017        Columbus
317       2017        Columbus
318       2017        Columbus
319       2017        Columbus
320       2017        Columbus
321       2017        Columbus
322       2017        Columbus
323       2017        Columbus
324       2017        Columbus
325       2017        Columbus
326       2017        Columbus
327       2018        Columbus
328       2018        Columbus
329       2018        Columbus
330       2018        Columbus
331       2018        Columbus
332       2018        Columbus
333       2018        Columbus
334       2018        Columbus
335       2018        Columbus
336       2018        Columbus
337       2018        Columbus
338       2018        Columbus

__________________________________________________________________________________________________________ __________________________________________________________________________________________________________

🥑FILTRAR PARA AQUELLOS QUE NO SON DE LA REGION ALBANY

# ejemplos:
# Atlanta   BaltimoreWashington Boise   Boston
# BuffaloRochester  California  Charlotte   Chicago
# CincinnatiDayton  Columbus    DallasFtWorth   Denver  
# Detroit   GrandRapids GreatLakes  HarrisburgScranton
# HartfordSpringfield   Houston Indianapolis    Jacksonville
# LasVegas  LosAngeles  Louisville  MiamiFtLauderdale   Midsouth
# Nashville NewOrleansMobile    NewYork Northeast   NorthernNewEngland
# Orlando   Philadelphia    PhoenixTucson   Pittsburgh  Plains  Portland    
# RaleighGreensboro RichmondNorfolk Roanoke Sacramento  SanDiego
# SanFrancisco  Seattle SouthCarolina   SouthCentral    Southeast   Spokane
# StLouis   Syracuse    Tampa   TotalUS West    WestTexNewMexico
    no_albany_frame <- as.data.frame( Caso_Aguacate_xls[Caso_Aguacate_xls$`region (REGION)`!="Albany",])
    no_albany_frame
     INDICE Date           (FECHA DE OBSERVACION)
1         0                            2015-12-27
2         1                            2015-12-20
3         2                            2015-12-13
4         3                            2015-12-06
5         4                            2015-11-29
6         5                            2015-11-22
7         6                            2015-11-15
8         7                            2015-11-08
9         8                            2015-11-01
10        9                            2015-10-25
11       10                            2015-10-18
12       11                            2015-10-11
13       12                            2015-10-04
14       13                            2015-09-27
15       14                            2015-09-20
16       15                            2015-09-13
17       16                            2015-09-06
18       17                            2015-08-30
19       18                            2015-08-23
20       19                            2015-08-16
21       20                            2015-08-09
22       21                            2015-08-02
23       22                            2015-07-26
24       23                            2015-07-19
25       24                            2015-07-12
26       25                            2015-07-05
27       26                            2015-06-28
28       27                            2015-06-21
29       28                            2015-06-14
30       29                            2015-06-07
31       30                            2015-05-31
32       31                            2015-05-24
33       32                            2015-05-17
34       33                            2015-05-10
35       34                            2015-05-03
36       35                            2015-04-26
37       36                            2015-04-19
38       37                            2015-04-12
39       38                            2015-04-05
40       39                            2015-03-29
41       40                            2015-03-22
42       41                            2015-03-15
43       42                            2015-03-08
44       43                            2015-03-01
45       44                            2015-02-22
46       45                            2015-02-15
47       46                            2015-02-08
48       47                            2015-02-01
49       48                            2015-01-25
50       49                            2015-01-18
51       50                            2015-01-11
52       51                            2015-01-04
53        0                            2015-12-27
54        1                            2015-12-20
55        2                            2015-12-13
56        3                            2015-12-06
57        4                            2015-11-29
58        5                            2015-11-22
59        6                            2015-11-15
60        7                            2015-11-08
61        8                            2015-11-01
62        9                            2015-10-25
63       10                            2015-10-18
64       11                            2015-10-11
65       12                            2015-10-04
66       13                            2015-09-27
67       14                            2015-09-20
68       15                            2015-09-13
69       16                            2015-09-06
70       17                            2015-08-30
71       18                            2015-08-23
72       19                            2015-08-16
73       20                            2015-08-09
74       21                            2015-08-02
75       22                            2015-07-26
76       23                            2015-07-19
77       24                            2015-07-12
78       25                            2015-07-05
79       26                            2015-06-28
80       27                            2015-06-21
81       28                            2015-06-14
82       29                            2015-06-07
83       30                            2015-05-31
84       31                            2015-05-24
85       32                            2015-05-17
86       33                            2015-05-10
87       34                            2015-05-03
88       35                            2015-04-26
89       36                            2015-04-19
90       37                            2015-04-12
91       38                            2015-04-05
92       39                            2015-03-29
93       40                            2015-03-22
94       41                            2015-03-15
95       42                            2015-03-08
96       43                            2015-03-01
97       44                            2015-02-22
98       45                            2015-02-15
99       46                            2015-02-08
100      47                            2015-02-01
101      48                            2015-01-25
102      49                            2015-01-18
103      50                            2015-01-11
104      51                            2015-01-04
105       0                            2015-12-27
106       1                            2015-12-20
107       2                            2015-12-13
108       3                            2015-12-06
109       4                            2015-11-29
110       5                            2015-11-22
111       6                            2015-11-15
112       7                            2015-11-08
113       8                            2015-11-01
114       9                            2015-10-25
115      10                            2015-10-18
116      11                            2015-10-11
117      12                            2015-10-04
118      13                            2015-09-27
119      14                            2015-09-20
120      15                            2015-09-13
121      16                            2015-09-06
122      17                            2015-08-30
123      18                            2015-08-23
124      19                            2015-08-16
125      20                            2015-08-09
126      21                            2015-08-02
127      22                            2015-07-26
128      23                            2015-07-19
129      24                            2015-07-12
130      25                            2015-07-05
131      26                            2015-06-28
132      27                            2015-06-21
133      28                            2015-06-14
134      29                            2015-06-07
135      30                            2015-05-31
136      31                            2015-05-24
137      32                            2015-05-17
138      33                            2015-05-10
139      34                            2015-05-03
140      35                            2015-04-26
141      36                            2015-04-19
142      37                            2015-04-12
143      38                            2015-04-05
144      39                            2015-03-29
145      40                            2015-03-22
146      41                            2015-03-15
147      42                            2015-03-08
148      43                            2015-03-01
149      44                            2015-02-22
150      45                            2015-02-15
151      46                            2015-02-08
152      47                            2015-02-01
153      48                            2015-01-25
154      49                            2015-01-18
155      50                            2015-01-11
156      51                            2015-01-04
157       0                            2015-12-27
158       1                            2015-12-20
159       2                            2015-12-13
160       3                            2015-12-06
161       4                            2015-11-29
162       5                            2015-11-22
163       6                            2015-11-15
164       7                            2015-11-08
165       8                            2015-11-01
166       9                            2015-10-25
167      10                            2015-10-18
168      11                            2015-10-11
169      12                            2015-10-04
170      13                            2015-09-27
171      14                            2015-09-20
172      15                            2015-09-13
173      16                            2015-09-06
174      17                            2015-08-30
175      18                            2015-08-23
176      19                            2015-08-16
177      20                            2015-08-09
178      21                            2015-08-02
179      22                            2015-07-26
180      23                            2015-07-19
181      24                            2015-07-12
182      25                            2015-07-05
183      26                            2015-06-28
184      27                            2015-06-21
185      28                            2015-06-14
186      29                            2015-06-07
187      30                            2015-05-31
188      31                            2015-05-24
189      32                            2015-05-17
190      33                            2015-05-10
191      34                            2015-05-03
192      35                            2015-04-26
193      36                            2015-04-19
194      37                            2015-04-12
195      38                            2015-04-05
196      39                            2015-03-29
197      40                            2015-03-22
198      41                            2015-03-15
199      42                            2015-03-08
200      43                            2015-03-01
201      44                            2015-02-22
202      45                            2015-02-15
203      46                            2015-02-08
204      47                            2015-02-01
205      48                            2015-01-25
206      49                            2015-01-18
207      50                            2015-01-11
208      51                            2015-01-04
209       0                            2015-12-27
210       1                            2015-12-20
211       2                            2015-12-13
212       3                            2015-12-06
213       4                            2015-11-29
214       5                            2015-11-22
215       6                            2015-11-15
216       7                            2015-11-08
217       8                            2015-11-01
218       9                            2015-10-25
219      10                            2015-10-18
220      11                            2015-10-11
221      12                            2015-10-04
222      13                            2015-09-27
223      14                            2015-09-20
224      15                            2015-09-13
225      16                            2015-09-06
226      17                            2015-08-30
227      18                            2015-08-23
228      19                            2015-08-16
229      20                            2015-08-09
230      21                            2015-08-02
231      22                            2015-07-26
232      23                            2015-07-19
233      24                            2015-07-12
234      25                            2015-07-05
235      26                            2015-06-28
236      27                            2015-06-21
237      28                            2015-06-14
238      29                            2015-06-07
239      30                            2015-05-31
240      31                            2015-05-24
241      32                            2015-05-17
242      33                            2015-05-10
243      34                            2015-05-03
244      35                            2015-04-26
245      36                            2015-04-19
246      37                            2015-04-12
247      38                            2015-04-05
248      39                            2015-03-29
249      40                            2015-03-22
250      41                            2015-03-15
251      42                            2015-03-08
252      43                            2015-03-01
253      44                            2015-02-22
254      45                            2015-02-15
255      46                            2015-02-08
256      47                            2015-02-01
257      48                            2015-01-25
258      49                            2015-01-18
259      50                            2015-01-11
260      51                            2015-01-04
261       0                            2015-12-27
262       1                            2015-12-20
263       2                            2015-12-13
264       3                            2015-12-06
265       4                            2015-11-29
266       5                            2015-11-22
267       6                            2015-11-15
268       7                            2015-11-08
269       8                            2015-11-01
270       9                            2015-10-25
271      10                            2015-10-18
272      11                            2015-10-11
273      12                            2015-10-04
274      13                            2015-09-27
275      14                            2015-09-20
276      15                            2015-09-13
277      16                            2015-09-06
278      17                            2015-08-30
279      18                            2015-08-23
280      19                            2015-08-16
281      20                            2015-08-09
282      21                            2015-08-02
283      22                            2015-07-26
284      23                            2015-07-19
285      24                            2015-07-12
286      25                            2015-07-05
287      26                            2015-06-28
288      27                            2015-06-21
289      28                            2015-06-14
290      29                            2015-06-07
291      30                            2015-05-31
292      31                            2015-05-24
293      32                            2015-05-17
294      33                            2015-05-10
295      34                            2015-05-03
296      35                            2015-04-26
297      36                            2015-04-19
298      37                            2015-04-12
299      38                            2015-04-05
300      39                            2015-03-29
301      40                            2015-03-22
302      41                            2015-03-15
303      42                            2015-03-08
304      43                            2015-03-01
305      44                            2015-02-22
306      45                            2015-02-15
307      46                            2015-02-08
308      47                            2015-02-01
309      48                            2015-01-25
310      49                            2015-01-18
311      50                            2015-01-11
312      51                            2015-01-04
313       0                            2015-12-27
314       1                            2015-12-20
315       2                            2015-12-13
316       3                            2015-12-06
317       4                            2015-11-29
318       5                            2015-11-22
319       6                            2015-11-15
320       7                            2015-11-08
321       8                            2015-11-01
322       9                            2015-10-25
323      10                            2015-10-18
324      11                            2015-10-11
325      12                            2015-10-04
326      13                            2015-09-27
327      14                            2015-09-20
328      15                            2015-09-13
329      16                            2015-09-06
330      17                            2015-08-30
331      18                            2015-08-23
332      19                            2015-08-16
333      20                            2015-08-09
334      21                            2015-08-02
335      22                            2015-07-26
336      23                            2015-07-19
337      24                            2015-07-12
338      25                            2015-07-05
339      26                            2015-06-28
340      27                            2015-06-21
341      28                            2015-06-14
342      29                            2015-06-07
343      30                            2015-05-31
344      31                            2015-05-24
345      32                            2015-05-17
346      33                            2015-05-10
347      34                            2015-05-03
348      35                            2015-04-26
349      36                            2015-04-19
350      37                            2015-04-12
351      38                            2015-04-05
352      39                            2015-03-29
353      40                            2015-03-22
354      41                            2015-03-15
355      42                            2015-03-08
356      43                            2015-03-01
357      44                            2015-02-22
358      45                            2015-02-15
359      46                            2015-02-08
360      47                            2015-02-01
361      48                            2015-01-25
362      49                            2015-01-18
363      50                            2015-01-11
364      51                            2015-01-04
365       0                            2015-12-27
366       1                            2015-12-20
367       2                            2015-12-13
368       3                            2015-12-06
369       4                            2015-11-29
370       5                            2015-11-22
371       6                            2015-11-15
372       7                            2015-11-08
373       8                            2015-11-01
374       9                            2015-10-25
375      10                            2015-10-18
376      11                            2015-10-11
377      12                            2015-10-04
378      13                            2015-09-27
379      14                            2015-09-20
380      15                            2015-09-13
381      16                            2015-09-06
382      17                            2015-08-30
383      18                            2015-08-23
384      19                            2015-08-16
385      20                            2015-08-09
386      21                            2015-08-02
387      22                            2015-07-26
388      23                            2015-07-19
389      24                            2015-07-12
390      25                            2015-07-05
391      26                            2015-06-28
392      27                            2015-06-21
393      28                            2015-06-14
394      29                            2015-06-07
395      30                            2015-05-31
396      31                            2015-05-24
397      32                            2015-05-17
398      33                            2015-05-10
399      34                            2015-05-03
400      35                            2015-04-26
401      36                            2015-04-19
402      37                            2015-04-12
403      38                            2015-04-05
404      39                            2015-03-29
405      40                            2015-03-22
406      41                            2015-03-15
407      42                            2015-03-08
408      43                            2015-03-01
409      44                            2015-02-22
410      45                            2015-02-15
411      46                            2015-02-08
412      47                            2015-02-01
413      48                            2015-01-25
414      49                            2015-01-18
415      50                            2015-01-11
416      51                            2015-01-04
417       0                            2015-12-27
418       1                            2015-12-20
419       2                            2015-12-13
420       3                            2015-12-06
421       4                            2015-11-29
422       5                            2015-11-22
423       6                            2015-11-15
424       7                            2015-11-08
425       8                            2015-11-01
426       9                            2015-10-25
427      10                            2015-10-18
428      11                            2015-10-11
429      12                            2015-10-04
430      13                            2015-09-27
431      14                            2015-09-20
432      15                            2015-09-13
433      16                            2015-09-06
434      17                            2015-08-30
435      18                            2015-08-23
436      19                            2015-08-16
437      20                            2015-08-09
438      21                            2015-08-02
439      22                            2015-07-26
440      23                            2015-07-19
441      24                            2015-07-12
442      25                            2015-07-05
443      26                            2015-06-28
444      27                            2015-06-21
445      28                            2015-06-14
446      29                            2015-06-07
447      30                            2015-05-31
448      31                            2015-05-24
449      32                            2015-05-17
450      33                            2015-05-10
451      34                            2015-05-03
452      35                            2015-04-26
453      36                            2015-04-19
454      37                            2015-04-12
455      38                            2015-04-05
456      39                            2015-03-29
457      40                            2015-03-22
458      41                            2015-03-15
459      42                            2015-03-08
460      43                            2015-03-01
461      44                            2015-02-22
462      45                            2015-02-15
463      46                            2015-02-08
464      47                            2015-02-01
465      48                            2015-01-25
466      49                            2015-01-18
467      50                            2015-01-11
468      51                            2015-01-04
469       0                            2015-12-27
470       1                            2015-12-20
471       2                            2015-12-13
472       3                            2015-12-06
473       4                            2015-11-29
474       5                            2015-11-22
475       6                            2015-11-15
476       7                            2015-11-08
477       8                            2015-11-01
478       9                            2015-10-25
479      10                            2015-10-18
480      11                            2015-10-11
481      12                            2015-10-04
482      13                            2015-09-27
483      14                            2015-09-20
484      15                            2015-09-13
485      16                            2015-09-06
486      17                            2015-08-30
487      18                            2015-08-23
488      19                            2015-08-16
489      20                            2015-08-09
490      21                            2015-08-02
491      22                            2015-07-26
492      23                            2015-07-19
493      24                            2015-07-12
494      25                            2015-07-05
495      26                            2015-06-28
496      27                            2015-06-21
497      28                            2015-06-14
498      29                            2015-06-07
499      30                            2015-05-31
500      31                            2015-05-24
501      32                            2015-05-17
502      33                            2015-05-10
503      34                            2015-05-03
504      35                            2015-04-26
505      36                            2015-04-19
506      37                            2015-04-12
507      38                            2015-04-05
508      39                            2015-03-29
509      40                            2015-03-22
510      41                            2015-03-15
511      42                            2015-03-08
512      43                            2015-03-01
513      44                            2015-02-22
514      45                            2015-02-15
515      46                            2015-02-08
516      47                            2015-02-01
517      48                            2015-01-25
518      49                            2015-01-18
519      50                            2015-01-11
520      51                            2015-01-04
521       0                            2015-12-27
522       1                            2015-12-20
523       2                            2015-12-13
524       3                            2015-12-06
525       4                            2015-11-29
526       5                            2015-11-22
527       6                            2015-11-15
528       7                            2015-11-08
529       8                            2015-11-01
530       9                            2015-10-25
531      10                            2015-10-18
532      11                            2015-10-11
533      12                            2015-10-04
534      13                            2015-09-27
535      14                            2015-09-20
536      15                            2015-09-13
537      16                            2015-09-06
538      17                            2015-08-30
539      18                            2015-08-23
540      19                            2015-08-16
541      20                            2015-08-09
542      21                            2015-08-02
543      22                            2015-07-26
544      23                            2015-07-19
545      24                            2015-07-12
546      25                            2015-07-05
547      26                            2015-06-28
548      27                            2015-06-21
549      28                            2015-06-14
550      29                            2015-06-07
551      30                            2015-05-31
552      31                            2015-05-24
553      32                            2015-05-17
554      33                            2015-05-10
555      34                            2015-05-03
556      35                            2015-04-26
557      36                            2015-04-19
558      37                            2015-04-12
559      38                            2015-04-05
560      39                            2015-03-29
561      40                            2015-03-22
562      41                            2015-03-15
563      42                            2015-03-08
564      43                            2015-03-01
565      44                            2015-02-22
566      45                            2015-02-15
567      46                            2015-02-08
568      47                            2015-02-01
569      48                            2015-01-25
570      49                            2015-01-18
571      50                            2015-01-11
572      51                            2015-01-04
573       0                            2015-12-27
574       1                            2015-12-20
575       2                            2015-12-13
576       3                            2015-12-06
577       4                            2015-11-29
578       5                            2015-11-22
579       6                            2015-11-15
580       7                            2015-11-08
581       8                            2015-11-01
582       9                            2015-10-25
583      10                            2015-10-18
584      11                            2015-10-11
585      12                            2015-10-04
586      13                            2015-09-27
587      14                            2015-09-20
588      15                            2015-09-13
589      16                            2015-09-06
590      17                            2015-08-30
591      18                            2015-08-23
592      19                            2015-08-16
593      20                            2015-08-09
594      21                            2015-08-02
595      22                            2015-07-26
596      23                            2015-07-19
597      24                            2015-07-12
598      25                            2015-07-05
599      26                            2015-06-28
600      27                            2015-06-21
601      28                            2015-06-14
602      29                            2015-06-07
603      30                            2015-05-31
604      31                            2015-05-24
605      32                            2015-05-17
606      33                            2015-05-10
607      34                            2015-05-03
608      35                            2015-04-26
609      36                            2015-04-19
610      37                            2015-04-12
611      38                            2015-04-05
612      39                            2015-03-29
613      40                            2015-03-22
614      41                            2015-03-15
615      42                            2015-03-08
616      43                            2015-03-01
617      44                            2015-02-22
618      45                            2015-02-15
619      46                            2015-02-08
620      47                            2015-02-01
621      48                            2015-01-25
622      49                            2015-01-18
623      50                            2015-01-11
624      51                            2015-01-04
625       0                            2015-12-27
626       1                            2015-12-20
627       2                            2015-12-13
628       3                            2015-12-06
629       4                            2015-11-29
630       5                            2015-11-22
631       6                            2015-11-15
632       7                            2015-11-08
633       8                            2015-11-01
634       9                            2015-10-25
635      10                            2015-10-18
636      11                            2015-10-11
637      12                            2015-10-04
638      13                            2015-09-27
639      14                            2015-09-20
640      15                            2015-09-13
641      16                            2015-09-06
642      17                            2015-08-30
643      18                            2015-08-23
644      19                            2015-08-16
645      20                            2015-08-09
646      21                            2015-08-02
647      22                            2015-07-26
648      23                            2015-07-19
649      24                            2015-07-12
650      25                            2015-07-05
651      26                            2015-06-28
652      27                            2015-06-21
653      28                            2015-06-14
654      29                            2015-06-07
655      30                            2015-05-31
656      31                            2015-05-24
657      32                            2015-05-17
658      33                            2015-05-10
659      34                            2015-05-03
660      35                            2015-04-26
661      36                            2015-04-19
662      37                            2015-04-12
663      38                            2015-04-05
664      39                            2015-03-29
665      40                            2015-03-22
666      41                            2015-03-15
667      42                            2015-03-08
668      43                            2015-03-01
669      44                            2015-02-22
670      45                            2015-02-15
671      46                            2015-02-08
672      47                            2015-02-01
673      48                            2015-01-25
674      49                            2015-01-18
675      50                            2015-01-11
676      51                            2015-01-04
677       0                            2015-12-27
678       1                            2015-12-20
679       2                            2015-12-13
680       3                            2015-12-06
681       4                            2015-11-29
682       5                            2015-11-22
683       6                            2015-11-15
684       7                            2015-11-08
685       8                            2015-11-01
686       9                            2015-10-25
687      10                            2015-10-18
688      11                            2015-10-11
689      12                            2015-10-04
690      13                            2015-09-27
691      14                            2015-09-20
692      15                            2015-09-13
693      16                            2015-09-06
694      17                            2015-08-30
695      18                            2015-08-23
696      19                            2015-08-16
697      20                            2015-08-09
698      21                            2015-08-02
699      22                            2015-07-26
700      23                            2015-07-19
701      24                            2015-07-12
702      25                            2015-07-05
703      26                            2015-06-28
704      27                            2015-06-21
705      28                            2015-06-14
706      29                            2015-06-07
707      30                            2015-05-31
708      31                            2015-05-24
709      32                            2015-05-17
710      33                            2015-05-10
711      34                            2015-05-03
712      35                            2015-04-26
713      36                            2015-04-19
714      37                            2015-04-12
715      38                            2015-04-05
716      39                            2015-03-29
717      40                            2015-03-22
718      41                            2015-03-15
719      42                            2015-03-08
720      43                            2015-03-01
721      44                            2015-02-22
722      45                            2015-02-15
723      46                            2015-02-08
724      47                            2015-02-01
725      48                            2015-01-25
726      49                            2015-01-18
727      50                            2015-01-11
728      51                            2015-01-04
729       0                            2015-12-27
730       1                            2015-12-20
731       2                            2015-12-13
732       3                            2015-12-06
733       4                            2015-11-29
734       5                            2015-11-22
735       6                            2015-11-15
736       7                            2015-11-08
737       8                            2015-11-01
738       9                            2015-10-25
739      10                            2015-10-18
740      11                            2015-10-11
741      12                            2015-10-04
742      13                            2015-09-27
743      14                            2015-09-20
744      15                            2015-09-13
745      16                            2015-09-06
746      17                            2015-08-30
747      18                            2015-08-23
748      19                            2015-08-16
749      20                            2015-08-09
750      21                            2015-08-02
751      22                            2015-07-26
752      23                            2015-07-19
753      24                            2015-07-12
754      25                            2015-07-05
755      26                            2015-06-28
756      27                            2015-06-21
757      28                            2015-06-14
758      29                            2015-06-07
759      30                            2015-05-31
760      31                            2015-05-24
761      32                            2015-05-17
762      33                            2015-05-10
763      34                            2015-05-03
764      35                            2015-04-26
765      36                            2015-04-19
766      37                            2015-04-12
767      38                            2015-04-05
768      39                            2015-03-29
769      40                            2015-03-22
770      41                            2015-03-15
771      42                            2015-03-08
772      43                            2015-03-01
773      44                            2015-02-22
774      45                            2015-02-15
775      46                            2015-02-08
776      47                            2015-02-01
777      48                            2015-01-25
778      49                            2015-01-18
779      50                            2015-01-11
780      51                            2015-01-04
781       0                            2015-12-27
782       1                            2015-12-20
783       2                            2015-12-13
784       3                            2015-12-06
785       4                            2015-11-29
786       5                            2015-11-22
787       6                            2015-11-15
788       7                            2015-11-08
789       8                            2015-11-01
790       9                            2015-10-25
791      10                            2015-10-18
792      11                            2015-10-11
793      12                            2015-10-04
794      13                            2015-09-27
795      14                            2015-09-20
796      15                            2015-09-13
797      16                            2015-09-06
798      17                            2015-08-30
799      18                            2015-08-23
800      19                            2015-08-16
801      20                            2015-08-09
802      21                            2015-08-02
803      22                            2015-07-26
804      23                            2015-07-19
805      24                            2015-07-12
806      25                            2015-07-05
807      26                            2015-06-28
808      27                            2015-06-21
809      28                            2015-06-14
810      29                            2015-06-07
811      30                            2015-05-31
812      31                            2015-05-24
813      32                            2015-05-17
814      33                            2015-05-10
815      34                            2015-05-03
816      35                            2015-04-26
817      36                            2015-04-19
818      37                            2015-04-12
819      38                            2015-04-05
820      39                            2015-03-29
821      40                            2015-03-22
822      41                            2015-03-15
823      42                            2015-03-08
824      43                            2015-03-01
825      44                            2015-02-22
826      45                            2015-02-15
827      46                            2015-02-08
828      47                            2015-02-01
829      48                            2015-01-25
830      49                            2015-01-18
831      50                            2015-01-11
832      51                            2015-01-04
833       0                            2015-12-27
834       1                            2015-12-20
835       2                            2015-12-13
836       3                            2015-12-06
837       4                            2015-11-29
838       5                            2015-11-22
839       6                            2015-11-15
840       7                            2015-11-08
841       8                            2015-11-01
842       9                            2015-10-25
843      10                            2015-10-18
844      11                            2015-10-11
845      12                            2015-10-04
846      13                            2015-09-27
847      14                            2015-09-20
848      15                            2015-09-13
849      16                            2015-09-06
850      17                            2015-08-30
851      18                            2015-08-23
852      19                            2015-08-16
853      20                            2015-08-09
854      21                            2015-08-02
855      22                            2015-07-26
856      23                            2015-07-19
857      24                            2015-07-12
858      25                            2015-07-05
859      26                            2015-06-28
860      27                            2015-06-21
861      28                            2015-06-14
862      29                            2015-06-07
863      30                            2015-05-31
864      31                            2015-05-24
865      32                            2015-05-17
866      33                            2015-05-10
867      34                            2015-05-03
868      35                            2015-04-26
869      36                            2015-04-19
870      37                            2015-04-12
871      38                            2015-04-05
872      39                            2015-03-29
873      40                            2015-03-22
874      41                            2015-03-15
875      42                            2015-03-08
876      43                            2015-03-01
877      44                            2015-02-22
878      45                            2015-02-15
879      46                            2015-02-08
880      47                            2015-02-01
881      48                            2015-01-25
882      49                            2015-01-18
883      50                            2015-01-11
884      51                            2015-01-04
885       0                            2015-12-27
886       1                            2015-12-20
887       2                            2015-12-13
888       3                            2015-12-06
889       4                            2015-11-29
890       5                            2015-11-22
891       6                            2015-11-15
892       7                            2015-11-08
893       8                            2015-11-01
894       9                            2015-10-25
895      10                            2015-10-18
896      11                            2015-10-11
897      12                            2015-10-04
898      13                            2015-09-27
899      14                            2015-09-20
900      15                            2015-09-13
901      16                            2015-09-06
902      17                            2015-08-30
903      18                            2015-08-23
904      19                            2015-08-16
905      20                            2015-08-09
906      21                            2015-08-02
907      22                            2015-07-26
908      23                            2015-07-19
909      24                            2015-07-12
910      25                            2015-07-05
911      26                            2015-06-28
912      27                            2015-06-21
913      28                            2015-06-14
914      29                            2015-06-07
915      30                            2015-05-31
916      31                            2015-05-24
917      32                            2015-05-17
918      33                            2015-05-10
919      34                            2015-05-03
920      35                            2015-04-26
921      36                            2015-04-19
922      37                            2015-04-12
923      38                            2015-04-05
924      39                            2015-03-29
925      40                            2015-03-22
926      41                            2015-03-15
927      42                            2015-03-08
928      43                            2015-03-01
929      44                            2015-02-22
930      45                            2015-02-15
931      46                            2015-02-08
932      47                            2015-02-01
933      48                            2015-01-25
934      49                            2015-01-18
935      50                            2015-01-11
936      51                            2015-01-04
937       0                            2015-12-27
938       1                            2015-12-20
939       2                            2015-12-13
940       3                            2015-12-06
941       4                            2015-11-29
942       5                            2015-11-22
943       6                            2015-11-15
944       7                            2015-11-08
945       8                            2015-11-01
946       9                            2015-10-25
947      10                            2015-10-18
948      11                            2015-10-11
949      12                            2015-10-04
950      13                            2015-09-27
951      14                            2015-09-20
952      15                            2015-09-13
953      16                            2015-09-06
954      17                            2015-08-30
955      18                            2015-08-23
956      19                            2015-08-16
957      20                            2015-08-09
958      21                            2015-08-02
959      22                            2015-07-26
960      23                            2015-07-19
961      24                            2015-07-12
962      25                            2015-07-05
963      26                            2015-06-28
964      27                            2015-06-21
965      28                            2015-06-14
966      29                            2015-06-07
967      30                            2015-05-31
968      31                            2015-05-24
969      32                            2015-05-17
970      33                            2015-05-10
971      34                            2015-05-03
972      35                            2015-04-26
973      36                            2015-04-19
974      37                            2015-04-12
975      38                            2015-04-05
976      39                            2015-03-29
977      40                            2015-03-22
978      41                            2015-03-15
979      42                            2015-03-08
980      43                            2015-03-01
981      44                            2015-02-22
982      45                            2015-02-15
983      46                            2015-02-08
984      47                            2015-02-01
985      48                            2015-01-25
986      49                            2015-01-18
987      50                            2015-01-11
988      51                            2015-01-04
989       0                            2015-12-27
990       1                            2015-12-20
991       2                            2015-12-13
992       3                            2015-12-06
993       4                            2015-11-29
994       5                            2015-11-22
995       6                            2015-11-15
996       7                            2015-11-08
997       8                            2015-11-01
998       9                            2015-10-25
999      10                            2015-10-18
1000     11                            2015-10-11
1001     12                            2015-10-04
1002     13                            2015-09-27
1003     14                            2015-09-20
1004     15                            2015-09-13
1005     16                            2015-09-06
1006     17                            2015-08-30
1007     18                            2015-08-23
1008     19                            2015-08-16
1009     20                            2015-08-09
1010     21                            2015-08-02
1011     22                            2015-07-26
1012     23                            2015-07-19
1013     24                            2015-07-12
1014     25                            2015-07-05
1015     26                            2015-06-28
1016     27                            2015-06-21
1017     28                            2015-06-14
1018     29                            2015-06-07
1019     30                            2015-05-31
1020     31                            2015-05-24
1021     32                            2015-05-17
1022     33                            2015-05-10
1023     34                            2015-05-03
1024     35                            2015-04-26
1025     36                            2015-04-19
1026     37                            2015-04-12
1027     38                            2015-04-05
1028     39                            2015-03-29
1029     40                            2015-03-22
1030     41                            2015-03-15
1031     42                            2015-03-08
1032     43                            2015-03-01
1033     44                            2015-02-22
1034     45                            2015-02-15
1035     46                            2015-02-08
1036     47                            2015-02-01
1037     48                            2015-01-25
1038     49                            2015-01-18
1039     50                            2015-01-11
1040     51                            2015-01-04
1041      0                            2015-12-27
1042      1                            2015-12-20
1043      2                            2015-12-13
1044      3                            2015-12-06
1045      4                            2015-11-29
1046      5                            2015-11-22
1047      6                            2015-11-15
1048      7                            2015-11-08
1049      8                            2015-11-01
1050      9                            2015-10-25
1051     10                            2015-10-18
1052     11                            2015-10-11
1053     12                            2015-10-04
1054     13                            2015-09-27
1055     14                            2015-09-20
1056     15                            2015-09-13
1057     16                            2015-09-06
1058     17                            2015-08-30
1059     18                            2015-08-23
1060     19                            2015-08-16
1061     20                            2015-08-09
1062     21                            2015-08-02
1063     22                            2015-07-26
1064     23                            2015-07-19
1065     24                            2015-07-12
1066     25                            2015-07-05
1067     26                            2015-06-28
1068     27                            2015-06-21
1069     28                            2015-06-14
1070     29                            2015-06-07
1071     30                            2015-05-31
1072     31                            2015-05-24
1073     32                            2015-05-17
1074     33                            2015-05-10
1075     34                            2015-05-03
1076     35                            2015-04-26
1077     36                            2015-04-19
1078     37                            2015-04-12
1079     38                            2015-04-05
1080     39                            2015-03-29
1081     40                            2015-03-22
1082     41                            2015-03-15
1083     42                            2015-03-08
1084     43                            2015-03-01
1085     44                            2015-02-22
1086     45                            2015-02-15
1087     46                            2015-02-08
1088     47                            2015-02-01
1089     48                            2015-01-25
1090     49                            2015-01-18
1091     50                            2015-01-11
1092     51                            2015-01-04
1093      0                            2015-12-27
1094      1                            2015-12-20
1095      2                            2015-12-13
1096      3                            2015-12-06
1097      4                            2015-11-29
1098      5                            2015-11-22
1099      6                            2015-11-15
1100      7                            2015-11-08
1101      8                            2015-11-01
1102      9                            2015-10-25
1103     10                            2015-10-18
1104     11                            2015-10-11
1105     12                            2015-10-04
1106     13                            2015-09-27
1107     14                            2015-09-20
1108     15                            2015-09-13
1109     16                            2015-09-06
1110     17                            2015-08-30
1111     18                            2015-08-23
1112     19                            2015-08-16
1113     20                            2015-08-09
1114     21                            2015-08-02
1115     22                            2015-07-26
1116     23                            2015-07-19
1117     24                            2015-07-12
1118     25                            2015-07-05
1119     26                            2015-06-28
1120     27                            2015-06-21
1121     28                            2015-06-14
1122     29                            2015-06-07
1123     30                            2015-05-31
1124     31                            2015-05-24
1125     32                            2015-05-17
1126     33                            2015-05-10
1127     34                            2015-05-03
1128     35                            2015-04-26
1129     36                            2015-04-19
1130     37                            2015-04-12
1131     38                            2015-04-05
1132     39                            2015-03-29
1133     40                            2015-03-22
1134     41                            2015-03-15
1135     42                            2015-03-08
1136     43                            2015-03-01
1137     44                            2015-02-22
1138     45                            2015-02-15
1139     46                            2015-02-08
1140     47                            2015-02-01
1141     48                            2015-01-25
1142     49                            2015-01-18
1143     50                            2015-01-11
1144     51                            2015-01-04
1145      0                            2015-12-27
1146      1                            2015-12-20
1147      2                            2015-12-13
1148      3                            2015-12-06
1149      4                            2015-11-29
1150      5                            2015-11-22
1151      6                            2015-11-15
1152      7                            2015-11-08
1153      8                            2015-11-01
1154      9                            2015-10-25
1155     10                            2015-10-18
1156     11                            2015-10-11
1157     12                            2015-10-04
1158     13                            2015-09-27
1159     14                            2015-09-20
1160     15                            2015-09-13
1161     16                            2015-09-06
1162     17                            2015-08-30
1163     18                            2015-08-23
1164     19                            2015-08-16
1165     20                            2015-08-09
1166     21                            2015-08-02
1167     22                            2015-07-26
1168     23                            2015-07-19
1169     24                            2015-07-12
1170     25                            2015-07-05
1171     26                            2015-06-28
1172     27                            2015-06-21
1173     28                            2015-06-14
1174     29                            2015-06-07
1175     30                            2015-05-31
1176     31                            2015-05-24
1177     32                            2015-05-17
1178     33                            2015-05-10
1179     34                            2015-05-03
1180     35                            2015-04-26
1181     36                            2015-04-19
1182     37                            2015-04-12
1183     38                            2015-04-05
1184     39                            2015-03-29
1185     40                            2015-03-22
1186     41                            2015-03-15
1187     42                            2015-03-08
1188     43                            2015-03-01
1189     44                            2015-02-22
1190     45                            2015-02-15
1191     46                            2015-02-08
1192     47                            2015-02-01
1193     48                            2015-01-25
1194     49                            2015-01-18
1195     50                            2015-01-11
1196     51                            2015-01-04
1197      0                            2015-12-27
1198      1                            2015-12-20
1199      2                            2015-12-13
1200      3                            2015-12-06
1201      4                            2015-11-29
1202      5                            2015-11-22
1203      6                            2015-11-15
1204      7                            2015-11-08
1205      8                            2015-11-01
1206      9                            2015-10-25
1207     10                            2015-10-18
1208     11                            2015-10-11
1209     12                            2015-10-04
1210     13                            2015-09-27
1211     14                            2015-09-20
1212     15                            2015-09-13
1213     16                            2015-09-06
1214     17                            2015-08-30
1215     18                            2015-08-23
1216     19                            2015-08-16
1217     20                            2015-08-09
1218     21                            2015-08-02
1219     22                            2015-07-26
1220     23                            2015-07-19
1221     24                            2015-07-12
1222     25                            2015-07-05
1223     26                            2015-06-28
1224     27                            2015-06-21
1225     28                            2015-06-14
1226     29                            2015-06-07
1227     30                            2015-05-31
1228     31                            2015-05-24
1229     32                            2015-05-17
1230     33                            2015-05-10
1231     34                            2015-05-03
1232     35                            2015-04-26
1233     36                            2015-04-19
1234     37                            2015-04-12
1235     38                            2015-04-05
1236     39                            2015-03-29
1237     40                            2015-03-22
1238     41                            2015-03-15
1239     42                            2015-03-08
1240     43                            2015-03-01
1241     44                            2015-02-22
1242     45                            2015-02-15
1243     46                            2015-02-08
1244     47                            2015-02-01
1245     48                            2015-01-25
1246     49                            2015-01-18
1247     50                            2015-01-11
1248     51                            2015-01-04
1249      0                            2015-12-27
1250      1                            2015-12-20
1251      2                            2015-12-13
1252      3                            2015-12-06
1253      4                            2015-11-29
1254      5                            2015-11-22
1255      6                            2015-11-15
1256      7                            2015-11-08
1257      8                            2015-11-01
1258      9                            2015-10-25
1259     10                            2015-10-18
1260     11                            2015-10-11
1261     12                            2015-10-04
1262     13                            2015-09-27
1263     14                            2015-09-20
1264     15                            2015-09-13
1265     16                            2015-09-06
1266     17                            2015-08-30
1267     18                            2015-08-23
1268     19                            2015-08-16
1269     20                            2015-08-09
1270     21                            2015-08-02
1271     22                            2015-07-26
1272     23                            2015-07-19
1273     24                            2015-07-12
1274     25                            2015-07-05
1275     26                            2015-06-28
1276     27                            2015-06-21
1277     28                            2015-06-14
1278     29                            2015-06-07
1279     30                            2015-05-31
1280     31                            2015-05-24
1281     32                            2015-05-17
1282     33                            2015-05-10
1283     34                            2015-05-03
1284     35                            2015-04-26
1285     36                            2015-04-19
1286     37                            2015-04-12
1287     38                            2015-04-05
1288     39                            2015-03-29
1289     40                            2015-03-22
1290     41                            2015-03-15
1291     42                            2015-03-08
1292     43                            2015-03-01
1293     44                            2015-02-22
1294     45                            2015-02-15
1295     46                            2015-02-08
1296     47                            2015-02-01
1297     48                            2015-01-25
1298     49                            2015-01-18
1299     50                            2015-01-11
1300     51                            2015-01-04
1301      0                            2015-12-27
1302      1                            2015-12-20
1303      2                            2015-12-13
1304      3                            2015-12-06
1305      4                            2015-11-29
1306      5                            2015-11-22
1307      6                            2015-11-15
1308      7                            2015-11-08
1309      8                            2015-11-01
1310      9                            2015-10-25
1311     10                            2015-10-18
1312     11                            2015-10-11
1313     12                            2015-10-04
1314     13                            2015-09-27
1315     14                            2015-09-20
1316     15                            2015-09-13
1317     16                            2015-09-06
1318     17                            2015-08-30
1319     18                            2015-08-23
1320     19                            2015-08-16
1321     20                            2015-08-09
1322     21                            2015-08-02
1323     22                            2015-07-26
1324     23                            2015-07-19
1325     24                            2015-07-12
1326     25                            2015-07-05
1327     26                            2015-06-28
1328     27                            2015-06-21
1329     28                            2015-06-14
1330     29                            2015-06-07
1331     30                            2015-05-31
1332     31                            2015-05-24
1333     32                            2015-05-17
1334     33                            2015-05-10
1335     34                            2015-05-03
1336     35                            2015-04-26
1337     36                            2015-04-19
1338     37                            2015-04-12
1339     38                            2015-04-05
1340     39                            2015-03-29
1341     40                            2015-03-22
1342     41                            2015-03-15
1343     42                            2015-03-08
1344     43                            2015-03-01
1345     44                            2015-02-22
1346     45                            2015-02-15
1347     46                            2015-02-08
1348     47                            2015-02-01
1349     48                            2015-01-25
1350     49                            2015-01-18
1351     50                            2015-01-11
1352     51                            2015-01-04
1353      0                            2015-12-27
1354      1                            2015-12-20
1355      2                            2015-12-13
1356      3                            2015-12-06
1357      4                            2015-11-29
1358      5                            2015-11-22
1359      6                            2015-11-15
1360      7                            2015-11-08
1361      8                            2015-11-01
1362      9                            2015-10-25
1363     10                            2015-10-18
1364     11                            2015-10-11
1365     12                            2015-10-04
1366     13                            2015-09-27
1367     14                            2015-09-20
1368     15                            2015-09-13
1369     16                            2015-09-06
1370     17                            2015-08-30
1371     18                            2015-08-23
1372     19                            2015-08-16
1373     20                            2015-08-09
1374     21                            2015-08-02
1375     22                            2015-07-26
1376     23                            2015-07-19
1377     24                            2015-07-12
1378     25                            2015-07-05
1379     26                            2015-06-28
1380     27                            2015-06-21
1381     28                            2015-06-14
1382     29                            2015-06-07
1383     30                            2015-05-31
1384     31                            2015-05-24
1385     32                            2015-05-17
1386     33                            2015-05-10
1387     34                            2015-05-03
1388     35                            2015-04-26
1389     36                            2015-04-19
1390     37                            2015-04-12
1391     38                            2015-04-05
1392     39                            2015-03-29
1393     40                            2015-03-22
1394     41                            2015-03-15
1395     42                            2015-03-08
1396     43                            2015-03-01
1397     44                            2015-02-22
1398     45                            2015-02-15
1399     46                            2015-02-08
1400     47                            2015-02-01
1401     48                            2015-01-25
1402     49                            2015-01-18
1403     50                            2015-01-11
1404     51                            2015-01-04
1405      0                            2015-12-27
1406      1                            2015-12-20
1407      2                            2015-12-13
1408      3                            2015-12-06
1409      4                            2015-11-29
1410      5                            2015-11-22
1411      6                            2015-11-15
1412      7                            2015-11-08
1413      8                            2015-11-01
1414      9                            2015-10-25
1415     10                            2015-10-18
1416     11                            2015-10-11
1417     12                            2015-10-04
1418     13                            2015-09-27
1419     14                            2015-09-20
1420     15                            2015-09-13
1421     16                            2015-09-06
1422     17                            2015-08-30
1423     18                            2015-08-23
1424     19                            2015-08-16
1425     20                            2015-08-09
1426     21                            2015-08-02
1427     22                            2015-07-26
1428     23                            2015-07-19
1429     24                            2015-07-12
1430     25                            2015-07-05
1431     26                            2015-06-28
1432     27                            2015-06-21
1433     28                            2015-06-14
1434     29                            2015-06-07
1435     30                            2015-05-31
1436     31                            2015-05-24
1437     32                            2015-05-17
1438     33                            2015-05-10
1439     34                            2015-05-03
1440     35                            2015-04-26
1441     36                            2015-04-19
1442     37                            2015-04-12
1443     38                            2015-04-05
1444     39                            2015-03-29
1445     40                            2015-03-22
1446     41                            2015-03-15
1447     42                            2015-03-08
1448     43                            2015-03-01
1449     44                            2015-02-22
1450     45                            2015-02-15
1451     46                            2015-02-08
1452     47                            2015-02-01
1453     48                            2015-01-25
1454     49                            2015-01-18
1455     50                            2015-01-11
1456     51                            2015-01-04
1457      0                            2015-12-27
1458      1                            2015-12-20
1459      2                            2015-12-13
1460      3                            2015-12-06
1461      4                            2015-11-29
1462      5                            2015-11-22
1463      6                            2015-11-15
1464      7                            2015-11-08
1465      8                            2015-11-01
1466      9                            2015-10-25
1467     10                            2015-10-18
1468     11                            2015-10-11
1469     12                            2015-10-04
1470     13                            2015-09-27
1471     14                            2015-09-20
1472     15                            2015-09-13
1473     16                            2015-09-06
1474     17                            2015-08-30
1475     18                            2015-08-23
1476     19                            2015-08-16
1477     20                            2015-08-09
1478     21                            2015-08-02
1479     22                            2015-07-26
1480     23                            2015-07-19
1481     24                            2015-07-12
1482     25                            2015-07-05
1483     26                            2015-06-28
1484     27                            2015-06-21
1485     28                            2015-06-14
1486     29                            2015-06-07
1487     30                            2015-05-31
1488     31                            2015-05-24
1489     32                            2015-05-17
1490     33                            2015-05-10
1491     34                            2015-05-03
1492     35                            2015-04-26
1493     36                            2015-04-19
1494     37                            2015-04-12
1495     38                            2015-04-05
1496     39                            2015-03-29
1497     40                            2015-03-22
1498     41                            2015-03-15
1499     42                            2015-03-08
1500     43                            2015-03-01
1501     44                            2015-02-22
1502     45                            2015-02-15
1503     46                            2015-02-08
1504     47                            2015-02-01
1505     48                            2015-01-25
1506     49                            2015-01-18
1507     50                            2015-01-11
1508     51                            2015-01-04
1509      0                            2015-12-27
1510      1                            2015-12-20
1511      2                            2015-12-13
1512      3                            2015-12-06
1513      4                            2015-11-29
1514      5                            2015-11-22
1515      6                            2015-11-15
1516      7                            2015-11-08
1517      8                            2015-11-01
1518      9                            2015-10-25
1519     10                            2015-10-18
1520     11                            2015-10-11
1521     12                            2015-10-04
1522     13                            2015-09-27
1523     14                            2015-09-20
1524     15                            2015-09-13
1525     16                            2015-09-06
1526     17                            2015-08-30
1527     18                            2015-08-23
1528     19                            2015-08-16
1529     20                            2015-08-09
1530     21                            2015-08-02
1531     22                            2015-07-26
1532     23                            2015-07-19
1533     24                            2015-07-12
1534     25                            2015-07-05
1535     26                            2015-06-28
1536     27                            2015-06-21
1537     28                            2015-06-14
1538     29                            2015-06-07
1539     30                            2015-05-31
1540     31                            2015-05-24
1541     32                            2015-05-17
1542     33                            2015-05-10
1543     34                            2015-05-03
1544     35                            2015-04-26
1545     36                            2015-04-19
1546     37                            2015-04-12
1547     38                            2015-04-05
1548     39                            2015-03-29
1549     40                            2015-03-22
1550     41                            2015-03-15
1551     42                            2015-03-08
1552     43                            2015-03-01
1553     44                            2015-02-22
1554     45                            2015-02-15
1555     46                            2015-02-08
1556     47                            2015-02-01
1557     48                            2015-01-25
1558     49                            2015-01-18
1559     50                            2015-01-11
1560     51                            2015-01-04
1561      0                            2015-12-27
1562      1                            2015-12-20
1563      2                            2015-12-13
1564      3                            2015-12-06
1565      4                            2015-11-29
1566      5                            2015-11-22
1567      6                            2015-11-15
1568      7                            2015-11-08
1569      8                            2015-11-01
1570      9                            2015-10-25
1571     10                            2015-10-18
1572     11                            2015-10-11
1573     12                            2015-10-04
1574     13                            2015-09-27
1575     14                            2015-09-20
1576     15                            2015-09-13
1577     16                            2015-09-06
1578     17                            2015-08-30
1579     18                            2015-08-23
1580     19                            2015-08-16
1581     20                            2015-08-09
1582     21                            2015-08-02
1583     22                            2015-07-26
1584     23                            2015-07-19
1585     24                            2015-07-12
1586     25                            2015-07-05
1587     26                            2015-06-28
1588     27                            2015-06-21
1589     28                            2015-06-14
1590     29                            2015-06-07
1591     30                            2015-05-31
1592     31                            2015-05-24
1593     32                            2015-05-17
1594     33                            2015-05-10
1595     34                            2015-05-03
1596     35                            2015-04-26
1597     36                            2015-04-19
1598     37                            2015-04-12
1599     38                            2015-04-05
1600     39                            2015-03-29
1601     40                            2015-03-22
1602     41                            2015-03-15
1603     42                            2015-03-08
1604     43                            2015-03-01
1605     44                            2015-02-22
1606     45                            2015-02-15
1607     46                            2015-02-08
1608     47                            2015-02-01
1609     48                            2015-01-25
1610     49                            2015-01-18
1611     50                            2015-01-11
1612     51                            2015-01-04
1613      0                            2015-12-27
1614      1                            2015-12-20
1615      2                            2015-12-13
1616      3                            2015-12-06
1617      4                            2015-11-29
1618      5                            2015-11-22
1619      6                            2015-11-15
1620      7                            2015-11-08
1621      8                            2015-11-01
1622      9                            2015-10-25
1623     10                            2015-10-18
1624     11                            2015-10-11
1625     12                            2015-10-04
1626     13                            2015-09-27
1627     14                            2015-09-20
1628     15                            2015-09-13
1629     16                            2015-09-06
1630     17                            2015-08-30
1631     18                            2015-08-23
1632     19                            2015-08-16
1633     20                            2015-08-09
1634     21                            2015-08-02
1635     22                            2015-07-26
1636     23                            2015-07-19
1637     24                            2015-07-12
1638     25                            2015-07-05
1639     26                            2015-06-28
1640     27                            2015-06-21
1641     28                            2015-06-14
1642     29                            2015-06-07
1643     30                            2015-05-31
1644     31                            2015-05-24
1645     32                            2015-05-17
1646     33                            2015-05-10
1647     34                            2015-05-03
1648     35                            2015-04-26
1649     36                            2015-04-19
1650     37                            2015-04-12
1651     38                            2015-04-05
1652     39                            2015-03-29
1653     40                            2015-03-22
1654     41                            2015-03-15
1655     42                            2015-03-08
1656     43                            2015-03-01
1657     44                            2015-02-22
1658     45                            2015-02-15
1659     46                            2015-02-08
1660     47                            2015-02-01
1661     48                            2015-01-25
1662     49                            2015-01-18
1663     50                            2015-01-11
1664     51                            2015-01-04
1665      0                            2015-12-27
1666      1                            2015-12-20
1667      2                            2015-12-13
1668      3                            2015-12-06
1669      4                            2015-11-29
1670      5                            2015-11-22
1671      6                            2015-11-15
1672      7                            2015-11-08
1673      8                            2015-11-01
1674      9                            2015-10-25
1675     10                            2015-10-18
1676     11                            2015-10-11
1677     12                            2015-10-04
1678     13                            2015-09-27
1679     14                            2015-09-20
1680     15                            2015-09-13
1681     16                            2015-09-06
1682     17                            2015-08-30
1683     18                            2015-08-23
1684     19                            2015-08-16
1685     20                            2015-08-09
1686     21                            2015-08-02
1687     22                            2015-07-26
1688     23                            2015-07-19
1689     24                            2015-07-12
1690     25                            2015-07-05
1691     26                            2015-06-28
1692     27                            2015-06-21
1693     28                            2015-06-14
1694     29                            2015-06-07
1695     30                            2015-05-31
1696     31                            2015-05-24
1697     32                            2015-05-17
1698     33                            2015-05-10
1699     34                            2015-05-03
1700     35                            2015-04-26
1701     36                            2015-04-19
1702     37                            2015-04-12
1703     38                            2015-04-05
1704     39                            2015-03-29
1705     40                            2015-03-22
1706     41                            2015-03-15
1707     42                            2015-03-08
1708     43                            2015-03-01
1709     44                            2015-02-22
1710     45                            2015-02-15
1711     46                            2015-02-08
1712     47                            2015-02-01
1713     48                            2015-01-25
1714     49                            2015-01-18
1715     50                            2015-01-11
1716     51                            2015-01-04
1717      0                            2015-12-27
1718      1                            2015-12-20
1719      2                            2015-12-13
1720      3                            2015-12-06
1721      4                            2015-11-29
1722      5                            2015-11-22
1723      6                            2015-11-15
1724      7                            2015-11-08
1725      8                            2015-11-01
1726      9                            2015-10-25
1727     10                            2015-10-18
1728     11                            2015-10-11
1729     12                            2015-10-04
1730     13                            2015-09-27
1731     14                            2015-09-20
1732     15                            2015-09-13
1733     16                            2015-09-06
1734     17                            2015-08-30
1735     18                            2015-08-23
1736     19                            2015-08-16
1737     20                            2015-08-09
1738     21                            2015-08-02
1739     22                            2015-07-26
1740     23                            2015-07-19
1741     24                            2015-07-12
1742     25                            2015-07-05
1743     26                            2015-06-28
1744     27                            2015-06-21
1745     28                            2015-06-14
1746     29                            2015-06-07
1747     30                            2015-05-31
1748     31                            2015-05-24
1749     32                            2015-05-17
1750     33                            2015-05-10
1751     34                            2015-05-03
1752     35                            2015-04-26
1753     36                            2015-04-19
1754     37                            2015-04-12
1755     38                            2015-04-05
1756     39                            2015-03-29
1757     40                            2015-03-22
1758     41                            2015-03-15
1759     42                            2015-03-08
1760     43                            2015-03-01
1761     44                            2015-02-22
1762     45                            2015-02-15
1763     46                            2015-02-08
1764     47                            2015-02-01
1765     48                            2015-01-25
1766     49                            2015-01-18
1767     50                            2015-01-11
1768     51                            2015-01-04
1769      0                            2015-12-27
1770      1                            2015-12-20
1771      2                            2015-12-13
1772      3                            2015-12-06
1773      4                            2015-11-29
1774      5                            2015-11-22
1775      6                            2015-11-15
1776      7                            2015-11-08
1777      8                            2015-11-01
1778      9                            2015-10-25
1779     10                            2015-10-18
1780     11                            2015-10-11
1781     12                            2015-10-04
1782     13                            2015-09-27
1783     14                            2015-09-20
1784     15                            2015-09-13
1785     16                            2015-09-06
1786     17                            2015-08-30
1787     18                            2015-08-23
1788     19                            2015-08-16
1789     20                            2015-08-09
1790     21                            2015-08-02
1791     22                            2015-07-26
1792     23                            2015-07-19
1793     24                            2015-07-12
1794     25                            2015-07-05
1795     26                            2015-06-28
1796     27                            2015-06-21
1797     28                            2015-06-14
1798     29                            2015-06-07
1799     30                            2015-05-31
1800     31                            2015-05-24
1801     32                            2015-05-17
1802     33                            2015-05-10
1803     34                            2015-05-03
1804     35                            2015-04-26
1805     36                            2015-04-19
1806     37                            2015-04-12
1807     38                            2015-04-05
1808     39                            2015-03-29
1809     40                            2015-03-22
1810     41                            2015-03-15
1811     42                            2015-03-08
1812     43                            2015-03-01
1813     44                            2015-02-22
1814     45                            2015-02-15
1815     46                            2015-02-08
1816     47                            2015-02-01
1817     48                            2015-01-25
1818     49                            2015-01-18
1819     50                            2015-01-11
1820     51                            2015-01-04
1821      0                            2015-12-27
1822      1                            2015-12-20
1823      2                            2015-12-13
1824      3                            2015-12-06
1825      4                            2015-11-29
1826      5                            2015-11-22
1827      6                            2015-11-15
1828      7                            2015-11-08
1829      8                            2015-11-01
1830      9                            2015-10-25
1831     10                            2015-10-18
1832     11                            2015-10-11
1833     12                            2015-10-04
1834     13                            2015-09-27
1835     14                            2015-09-20
1836     15                            2015-09-13
1837     16                            2015-09-06
1838     17                            2015-08-30
1839     18                            2015-08-23
1840     19                            2015-08-16
1841     20                            2015-08-09
1842     21                            2015-08-02
1843     22                            2015-07-26
1844     23                            2015-07-19
1845     24                            2015-07-12
1846     25                            2015-07-05
1847     26                            2015-06-28
1848     27                            2015-06-21
1849     28                            2015-06-14
1850     29                            2015-06-07
1851     30                            2015-05-31
1852     31                            2015-05-24
1853     32                            2015-05-17
1854     33                            2015-05-10
1855     34                            2015-05-03
1856     35                            2015-04-26
1857     36                            2015-04-19
1858     37                            2015-04-12
1859     38                            2015-04-05
1860     39                            2015-03-29
1861     40                            2015-03-22
1862     41                            2015-03-15
1863     42                            2015-03-08
1864     43                            2015-03-01
1865     44                            2015-02-22
1866     45                            2015-02-15
1867     46                            2015-02-08
1868     47                            2015-02-01
1869     48                            2015-01-25
1870     49                            2015-01-18
1871     50                            2015-01-11
1872     51                            2015-01-04
1873      0                            2015-12-27
1874      1                            2015-12-20
1875      2                            2015-12-13
1876      3                            2015-12-06
1877      4                            2015-11-29
1878      5                            2015-11-22
1879      6                            2015-11-15
1880      7                            2015-11-08
1881      8                            2015-11-01
1882      9                            2015-10-25
1883     10                            2015-10-18
1884     11                            2015-10-11
1885     12                            2015-10-04
1886     13                            2015-09-27
1887     14                            2015-09-20
1888     15                            2015-09-13
1889     16                            2015-09-06
1890     17                            2015-08-30
1891     18                            2015-08-23
1892     19                            2015-08-16
1893     20                            2015-08-09
1894     21                            2015-08-02
1895     22                            2015-07-26
1896     23                            2015-07-19
1897     24                            2015-07-12
1898     25                            2015-07-05
1899     26                            2015-06-28
1900     27                            2015-06-21
1901     28                            2015-06-14
1902     29                            2015-06-07
1903     30                            2015-05-31
1904     31                            2015-05-24
1905     32                            2015-05-17
1906     33                            2015-05-10
1907     34                            2015-05-03
1908     35                            2015-04-26
1909     36                            2015-04-19
1910     37                            2015-04-12
1911     38                            2015-04-05
1912     39                            2015-03-29
1913     40                            2015-03-22
1914     41                            2015-03-15
1915     42                            2015-03-08
1916     43                            2015-03-01
1917     44                            2015-02-22
1918     45                            2015-02-15
1919     46                            2015-02-08
1920     47                            2015-02-01
1921     48                            2015-01-25
1922     49                            2015-01-18
1923     50                            2015-01-11
1924     51                            2015-01-04
1925      0                            2015-12-27
1926      1                            2015-12-20
1927      2                            2015-12-13
1928      3                            2015-12-06
1929      4                            2015-11-29
1930      5                            2015-11-22
1931      6                            2015-11-15
1932      7                            2015-11-08
1933      8                            2015-11-01
1934      9                            2015-10-25
1935     10                            2015-10-18
1936     11                            2015-10-11
1937     12                            2015-10-04
1938     13                            2015-09-27
1939     14                            2015-09-20
1940     15                            2015-09-13
1941     16                            2015-09-06
1942     17                            2015-08-30
1943     18                            2015-08-23
1944     19                            2015-08-16
1945     20                            2015-08-09
1946     21                            2015-08-02
1947     22                            2015-07-26
1948     23                            2015-07-19
1949     24                            2015-07-12
1950     25                            2015-07-05
1951     26                            2015-06-28
1952     27                            2015-06-21
1953     28                            2015-06-14
1954     29                            2015-06-07
1955     30                            2015-05-31
1956     31                            2015-05-24
1957     32                            2015-05-17
1958     33                            2015-05-10
1959     34                            2015-05-03
1960     35                            2015-04-26
1961     36                            2015-04-19
1962     37                            2015-04-12
1963     38                            2015-04-05
1964     39                            2015-03-29
1965     40                            2015-03-22
1966     41                            2015-03-15
1967     42                            2015-03-08
1968     43                            2015-03-01
1969     44                            2015-02-22
1970     45                            2015-02-15
1971     46                            2015-02-08
1972     47                            2015-02-01
1973     48                            2015-01-25
1974     49                            2015-01-18
1975     50                            2015-01-11
1976     51                            2015-01-04
1977      0                            2015-12-27
1978      1                            2015-12-20
1979      2                            2015-12-13
1980      3                            2015-12-06
1981      4                            2015-11-29
1982      5                            2015-11-22
1983      6                            2015-11-15
1984      7                            2015-11-08
1985      8                            2015-11-01
1986      9                            2015-10-25
1987     10                            2015-10-18
1988     11                            2015-10-11
1989     12                            2015-10-04
1990     13                            2015-09-27
1991     14                            2015-09-20
1992     15                            2015-09-13
1993     16                            2015-09-06
1994     17                            2015-08-30
1995     18                            2015-08-23
1996     19                            2015-08-16
1997     20                            2015-08-09
1998     21                            2015-08-02
1999     22                            2015-07-26
2000     23                            2015-07-19
2001     24                            2015-07-12
2002     25                            2015-07-05
2003     26                            2015-06-28
2004     27                            2015-06-21
2005     28                            2015-06-14
2006     29                            2015-06-07
2007     30                            2015-05-31
2008     31                            2015-05-24
2009     32                            2015-05-17
2010     33                            2015-05-10
2011     34                            2015-05-03
2012     35                            2015-04-26
2013     36                            2015-04-19
2014     37                            2015-04-12
2015     38                            2015-04-05
2016     39                            2015-03-29
2017     40                            2015-03-22
2018     41                            2015-03-15
2019     42                            2015-03-08
2020     43                            2015-03-01
2021     44                            2015-02-22
2022     45                            2015-02-15
2023     46                            2015-02-08
2024     47                            2015-02-01
2025     48                            2015-01-25
2026     49                            2015-01-18
2027     50                            2015-01-11
2028     51                            2015-01-04
2029      0                            2015-12-27
2030      1                            2015-12-20
2031      2                            2015-12-13
2032      3                            2015-12-06
2033      4                            2015-11-29
2034      5                            2015-11-22
2035      6                            2015-11-15
2036      7                            2015-11-08
2037      8                            2015-11-01
2038      9                            2015-10-25
2039     10                            2015-10-18
2040     11                            2015-10-11
2041     12                            2015-10-04
2042     13                            2015-09-27
2043     14                            2015-09-20
2044     15                            2015-09-13
2045     16                            2015-09-06
2046     17                            2015-08-30
2047     18                            2015-08-23
2048     19                            2015-08-16
2049     20                            2015-08-09
2050     21                            2015-08-02
2051     22                            2015-07-26
2052     23                            2015-07-19
2053     24                            2015-07-12
2054     25                            2015-07-05
2055     26                            2015-06-28
2056     27                            2015-06-21
2057     28                            2015-06-14
2058     29                            2015-06-07
2059     30                            2015-05-31
2060     31                            2015-05-24
2061     32                            2015-05-17
2062     33                            2015-05-10
2063     34                            2015-05-03
2064     35                            2015-04-26
2065     36                            2015-04-19
2066     37                            2015-04-12
2067     38                            2015-04-05
2068     39                            2015-03-29
2069     40                            2015-03-22
2070     41                            2015-03-15
2071     42                            2015-03-08
2072     43                            2015-03-01
2073     44                            2015-02-22
2074     45                            2015-02-15
2075     46                            2015-02-08
2076     47                            2015-02-01
2077     48                            2015-01-25
2078     49                            2015-01-18
2079     50                            2015-01-11
2080     51                            2015-01-04
2081      0                            2015-12-27
2082      1                            2015-12-20
2083      2                            2015-12-13
2084      3                            2015-12-06
2085      4                            2015-11-29
2086      5                            2015-11-22
2087      6                            2015-11-15
2088      7                            2015-11-08
2089      8                            2015-11-01
2090      9                            2015-10-25
2091     10                            2015-10-18
2092     11                            2015-10-11
2093     12                            2015-10-04
2094     13                            2015-09-27
2095     14                            2015-09-20
2096     15                            2015-09-13
2097     16                            2015-09-06
2098     17                            2015-08-30
2099     18                            2015-08-23
2100     19                            2015-08-16
2101     20                            2015-08-09
2102     21                            2015-08-02
2103     22                            2015-07-26
2104     23                            2015-07-19
2105     24                            2015-07-12
2106     25                            2015-07-05
2107     26                            2015-06-28
2108     27                            2015-06-21
2109     28                            2015-06-14
2110     29                            2015-06-07
2111     30                            2015-05-31
2112     31                            2015-05-24
2113     32                            2015-05-17
2114     33                            2015-05-10
2115     34                            2015-05-03
2116     35                            2015-04-26
2117     36                            2015-04-19
2118     37                            2015-04-12
2119     38                            2015-04-05
2120     39                            2015-03-29
2121     40                            2015-03-22
2122     41                            2015-03-15
2123     42                            2015-03-08
2124     43                            2015-03-01
2125     44                            2015-02-22
2126     45                            2015-02-15
2127     46                            2015-02-08
2128     47                            2015-02-01
2129     48                            2015-01-25
2130     49                            2015-01-18
2131     50                            2015-01-11
2132     51                            2015-01-04
2133      0                            2015-12-27
2134      1                            2015-12-20
2135      2                            2015-12-13
2136      3                            2015-12-06
2137      4                            2015-11-29
2138      5                            2015-11-22
2139      6                            2015-11-15
2140      7                            2015-11-08
2141      8                            2015-11-01
2142      9                            2015-10-25
2143     10                            2015-10-18
2144     11                            2015-10-11
2145     12                            2015-10-04
2146     13                            2015-09-27
2147     14                            2015-09-20
2148     15                            2015-09-13
2149     16                            2015-09-06
2150     17                            2015-08-30
2151     18                            2015-08-23
2152     19                            2015-08-16
2153     20                            2015-08-09
2154     21                            2015-08-02
2155     22                            2015-07-26
2156     23                            2015-07-19
2157     24                            2015-07-12
2158     25                            2015-07-05
2159     26                            2015-06-28
2160     27                            2015-06-21
2161     28                            2015-06-14
2162     29                            2015-06-07
2163     30                            2015-05-31
2164     31                            2015-05-24
2165     32                            2015-05-17
2166     33                            2015-05-10
2167     34                            2015-05-03
2168     35                            2015-04-26
2169     36                            2015-04-19
2170     37                            2015-04-12
2171     38                            2015-04-05
2172     39                            2015-03-29
2173     40                            2015-03-22
2174     41                            2015-03-15
2175     42                            2015-03-08
2176     43                            2015-03-01
2177     44                            2015-02-22
2178     45                            2015-02-15
2179     46                            2015-02-08
2180     47                            2015-02-01
2181     48                            2015-01-25
2182     49                            2015-01-18
2183     50                            2015-01-11
2184     51                            2015-01-04
2185      0                            2015-12-27
2186      1                            2015-12-20
2187      2                            2015-12-13
2188      3                            2015-12-06
2189      4                            2015-11-29
2190      5                            2015-11-22
2191      6                            2015-11-15
2192      7                            2015-11-08
2193      8                            2015-11-01
2194      9                            2015-10-25
2195     10                            2015-10-18
2196     11                            2015-10-11
2197     12                            2015-10-04
2198     13                            2015-09-27
2199     14                            2015-09-20
2200     15                            2015-09-13
2201     16                            2015-09-06
2202     17                            2015-08-30
2203     18                            2015-08-23
2204     19                            2015-08-16
2205     20                            2015-08-09
2206     21                            2015-08-02
2207     22                            2015-07-26
2208     23                            2015-07-19
2209     24                            2015-07-12
2210     25                            2015-07-05
2211     26                            2015-06-28
2212     27                            2015-06-21
2213     28                            2015-06-14
2214     29                            2015-06-07
2215     30                            2015-05-31
2216     31                            2015-05-24
2217     32                            2015-05-17
2218     33                            2015-05-10
2219     34                            2015-05-03
2220     35                            2015-04-26
2221     36                            2015-04-19
2222     37                            2015-04-12
2223     38                            2015-04-05
2224     39                            2015-03-29
2225     40                            2015-03-22
2226     41                            2015-03-15
2227     42                            2015-03-08
2228     43                            2015-03-01
2229     44                            2015-02-22
2230     45                            2015-02-15
2231     46                            2015-02-08
2232     47                            2015-02-01
2233     48                            2015-01-25
2234     49                            2015-01-18
2235     50                            2015-01-11
2236     51                            2015-01-04
2237      0                            2015-12-27
2238      1                            2015-12-20
2239      2                            2015-12-13
2240      3                            2015-12-06
2241      4                            2015-11-29
2242      5                            2015-11-22
2243      6                            2015-11-15
2244      7                            2015-11-08
2245      8                            2015-11-01
2246      9                            2015-10-25
2247     10                            2015-10-18
2248     11                            2015-10-11
2249     12                            2015-10-04
2250     13                            2015-09-27
2251     14                            2015-09-20
2252     15                            2015-09-13
2253     16                            2015-09-06
2254     17                            2015-08-30
2255     18                            2015-08-23
2256     19                            2015-08-16
2257     20                            2015-08-09
2258     21                            2015-08-02
2259     22                            2015-07-26
2260     23                            2015-07-19
2261     24                            2015-07-12
2262     25                            2015-07-05
2263     26                            2015-06-28
2264     27                            2015-06-21
2265     28                            2015-06-14
2266     29                            2015-06-07
2267     30                            2015-05-31
2268     31                            2015-05-24
2269     32                            2015-05-17
2270     33                            2015-05-10
2271     34                            2015-05-03
2272     35                            2015-04-26
2273     36                            2015-04-19
2274     37                            2015-04-12
2275     38                            2015-04-05
2276     39                            2015-03-29
2277     40                            2015-03-22
2278     41                            2015-03-15
2279     42                            2015-03-08
2280     43                            2015-03-01
2281     44                            2015-02-22
2282     45                            2015-02-15
2283     46                            2015-02-08
2284     47                            2015-02-01
2285     48                            2015-01-25
2286     49                            2015-01-18
2287     50                            2015-01-11
2288     51                            2015-01-04
2289      0                            2015-12-27
2290      1                            2015-12-20
2291      2                            2015-12-13
2292      3                            2015-12-06
2293      4                            2015-11-29
2294      5                            2015-11-22
2295      6                            2015-11-15
2296      7                            2015-11-08
2297      8                            2015-11-01
2298      9                            2015-10-25
2299     10                            2015-10-18
2300     11                            2015-10-11
2301     12                            2015-10-04
2302     13                            2015-09-27
2303     14                            2015-09-20
2304     15                            2015-09-13
2305     16                            2015-09-06
2306     17                            2015-08-30
2307     18                            2015-08-23
2308     19                            2015-08-16
2309     20                            2015-08-09
2310     21                            2015-08-02
2311     22                            2015-07-26
2312     23                            2015-07-19
2313     24                            2015-07-12
2314     25                            2015-07-05
2315     26                            2015-06-28
2316     27                            2015-06-21
2317     28                            2015-06-14
2318     29                            2015-06-07
2319     30                            2015-05-31
2320     31                            2015-05-24
2321     32                            2015-05-17
2322     33                            2015-05-10
2323     34                            2015-05-03
2324     35                            2015-04-26
2325     36                            2015-04-19
2326     37                            2015-04-12
2327     38                            2015-04-05
2328     39                            2015-03-29
2329     40                            2015-03-22
2330     41                            2015-03-15
2331     42                            2015-03-08
2332     43                            2015-03-01
2333     44                            2015-02-22
2334     45                            2015-02-15
2335     46                            2015-02-08
2336     47                            2015-02-01
2337     48                            2015-01-25
2338     49                            2015-01-18
2339     50                            2015-01-11
2340     51                            2015-01-04
2341      0                            2015-12-27
2342      1                            2015-12-20
2343      2                            2015-12-13
2344      3                            2015-12-06
2345      4                            2015-11-29
2346      5                            2015-11-22
2347      6                            2015-11-15
2348      7                            2015-11-08
2349      8                            2015-11-01
2350      9                            2015-10-25
2351     10                            2015-10-18
2352     11                            2015-10-11
2353     12                            2015-10-04
2354     13                            2015-09-27
2355     14                            2015-09-20
2356     15                            2015-09-13
2357     16                            2015-09-06
2358     17                            2015-08-30
2359     18                            2015-08-23
2360     19                            2015-08-16
2361     20                            2015-08-09
2362     21                            2015-08-02
2363     22                            2015-07-26
2364     23                            2015-07-19
2365     24                            2015-07-12
2366     25                            2015-07-05
2367     26                            2015-06-28
2368     27                            2015-06-21
2369     28                            2015-06-14
2370     29                            2015-06-07
2371     30                            2015-05-31
2372     31                            2015-05-24
2373     32                            2015-05-17
2374     33                            2015-05-10
2375     34                            2015-05-03
2376     35                            2015-04-26
2377     36                            2015-04-19
2378     37                            2015-04-12
2379     38                            2015-04-05
2380     39                            2015-03-29
2381     40                            2015-03-22
2382     41                            2015-03-15
2383     42                            2015-03-08
2384     43                            2015-03-01
2385     44                            2015-02-22
2386     45                            2015-02-15
2387     46                            2015-02-08
2388     47                            2015-02-01
2389     48                            2015-01-25
2390     49                            2015-01-18
2391     50                            2015-01-11
2392     51                            2015-01-04
2393      0                            2015-12-27
2394      1                            2015-12-20
2395      2                            2015-12-13
2396      3                            2015-12-06
2397      4                            2015-11-29
2398      5                            2015-11-22
2399      6                            2015-11-15
2400      7                            2015-11-08
2401      8                            2015-11-01
2402      9                            2015-10-25
2403     10                            2015-10-18
2404     11                            2015-10-11
2405     12                            2015-10-04
2406     13                            2015-09-27
2407     14                            2015-09-20
2408     15                            2015-09-13
2409     16                            2015-09-06
2410     17                            2015-08-30
2411     18                            2015-08-23
2412     19                            2015-08-16
2413     20                            2015-08-09
2414     21                            2015-08-02
2415     22                            2015-07-26
2416     23                            2015-07-19
2417     24                            2015-07-12
2418     25                            2015-07-05
2419     26                            2015-06-28
2420     27                            2015-06-21
2421     28                            2015-06-14
2422     29                            2015-06-07
2423     30                            2015-05-31
2424     31                            2015-05-24
2425     32                            2015-05-17
2426     33                            2015-05-10
2427     34                            2015-05-03
2428     35                            2015-04-26
2429     36                            2015-04-19
2430     37                            2015-04-12
2431     38                            2015-04-05
2432     39                            2015-03-29
2433     40                            2015-03-22
2434     41                            2015-03-15
2435     42                            2015-03-08
2436     43                            2015-03-01
2437     44                            2015-02-22
2438     45                            2015-02-15
2439     46                            2015-02-08
2440     47                            2015-02-01
2441     48                            2015-01-25
2442     49                            2015-01-18
2443     50                            2015-01-11
2444     51                            2015-01-04
2445      0                            2015-12-27
2446      1                            2015-12-20
2447      2                            2015-12-13
2448      3                            2015-12-06
2449      4                            2015-11-29
2450      5                            2015-11-22
2451      6                            2015-11-15
2452      7                            2015-11-08
2453      8                            2015-11-01
2454      9                            2015-10-25
2455     10                            2015-10-18
2456     11                            2015-10-11
2457     12                            2015-10-04
2458     13                            2015-09-27
2459     14                            2015-09-20
2460     15                            2015-09-13
2461     16                            2015-09-06
2462     17                            2015-08-30
2463     18                            2015-08-23
2464     19                            2015-08-16
2465     20                            2015-08-09
2466     21                            2015-08-02
2467     22                            2015-07-26
2468     23                            2015-07-19
2469     24                            2015-07-12
2470     25                            2015-07-05
2471     26                            2015-06-28
2472     27                            2015-06-21
2473     28                            2015-06-14
2474     29                            2015-06-07
2475     30                            2015-05-31
2476     31                            2015-05-24
2477     32                            2015-05-17
2478     33                            2015-05-10
2479     34                            2015-05-03
2480     35                            2015-04-26
2481     36                            2015-04-19
2482     37                            2015-04-12
2483     38                            2015-04-05
2484     39                            2015-03-29
2485     40                            2015-03-22
2486     41                            2015-03-15
2487     42                            2015-03-08
2488     43                            2015-03-01
2489     44                            2015-02-22
2490     45                            2015-02-15
2491     46                            2015-02-08
2492     47                            2015-02-01
2493     48                            2015-01-25
2494     49                            2015-01-18
2495     50                            2015-01-11
2496     51                            2015-01-04
2497      0                            2015-12-27
2498      1                            2015-12-20
2499      2                            2015-12-13
2500      3                            2015-12-06
2501      4                            2015-11-29
2502      5                            2015-11-22
2503      6                            2015-11-15
2504      7                            2015-11-08
2505      8                            2015-11-01
2506      9                            2015-10-25
2507     10                            2015-10-18
2508     11                            2015-10-11
2509     12                            2015-10-04
2510     13                            2015-09-27
2511     14                            2015-09-20
2512     15                            2015-09-13
2513     16                            2015-09-06
2514     17                            2015-08-30
2515     18                            2015-08-23
2516     19                            2015-08-16
2517     20                            2015-08-09
2518     21                            2015-08-02
2519     22                            2015-07-26
2520     23                            2015-07-19
2521     24                            2015-07-12
2522     25                            2015-07-05
2523     26                            2015-06-28
2524     27                            2015-06-21
2525     28                            2015-06-14
2526     29                            2015-06-07
2527     30                            2015-05-31
2528     31                            2015-05-24
2529     32                            2015-05-17
2530     33                            2015-05-10
2531     34                            2015-05-03
2532     35                            2015-04-26
2533     36                            2015-04-19
2534     37                            2015-04-12
2535     38                            2015-04-05
2536     39                            2015-03-29
2537     40                            2015-03-22
2538     41                            2015-03-15
2539     42                            2015-03-08
2540     43                            2015-03-01
2541     44                            2015-02-22
2542     45                            2015-02-15
2543     46                            2015-02-08
2544     47                            2015-02-01
2545     48                            2015-01-25
2546     49                            2015-01-18
2547     50                            2015-01-11
2548     51                            2015-01-04
2549      0                            2015-12-27
2550      1                            2015-12-20
2551      2                            2015-12-13
2552      3                            2015-12-06
2553      4                            2015-11-29
2554      5                            2015-11-22
2555      6                            2015-11-15
2556      7                            2015-11-08
2557      8                            2015-11-01
2558      9                            2015-10-25
2559     10                            2015-10-18
2560     11                            2015-10-11
2561     12                            2015-10-04
2562     13                            2015-09-27
2563     14                            2015-09-20
2564     15                            2015-09-13
2565     16                            2015-09-06
2566     17                            2015-08-30
2567     18                            2015-08-23
2568     19                            2015-08-16
2569     20                            2015-08-09
2570     21                            2015-08-02
2571     22                            2015-07-26
2572     23                            2015-07-19
2573     24                            2015-07-12
2574     25                            2015-07-05
2575     26                            2015-06-28
2576     27                            2015-06-21
2577     28                            2015-06-14
2578     29                            2015-06-07
2579     30                            2015-05-31
2580     31                            2015-05-24
2581     32                            2015-05-17
2582     33                            2015-05-10
2583     34                            2015-05-03
2584     35                            2015-04-26
2585     36                            2015-04-19
2586     37                            2015-04-12
2587     38                            2015-04-05
2588     39                            2015-03-29
2589     40                            2015-03-22
2590     41                            2015-03-15
2591     42                            2015-03-08
2592     43                            2015-03-01
2593     44                            2015-02-22
2594     45                            2015-02-15
2595     46                            2015-02-08
2596     47                            2015-02-01
2597     48                            2015-01-25
2598     49                            2015-01-18
2599     50                            2015-01-11
2600     51                            2015-01-04
2601      0                            2015-12-27
2602      1                            2015-12-20
2603      2                            2015-12-13
2604      3                            2015-12-06
2605      4                            2015-11-29
2606      5                            2015-11-22
2607      6                            2015-11-15
2608      7                            2015-11-08
2609      8                            2015-11-01
2610      9                            2015-10-25
2611     10                            2015-10-18
2612     11                            2015-10-11
2613     12                            2015-10-04
2614     13                            2015-09-27
2615     14                            2015-09-20
2616     15                            2015-09-13
2617     16                            2015-09-06
2618     17                            2015-08-30
2619     18                            2015-08-23
2620     19                            2015-08-16
2621     20                            2015-08-09
2622     21                            2015-08-02
2623     22                            2015-07-26
2624     23                            2015-07-19
2625     24                            2015-07-12
2626     25                            2015-07-05
2627     26                            2015-06-28
2628     27                            2015-06-21
2629     28                            2015-06-14
2630     29                            2015-06-07
2631     30                            2015-05-31
2632     31                            2015-05-24
2633     32                            2015-05-17
2634     33                            2015-05-10
2635     34                            2015-05-03
2636     35                            2015-04-26
2637     36                            2015-04-19
2638     37                            2015-04-12
2639     38                            2015-04-05
2640     39                            2015-03-29
2641     40                            2015-03-22
2642     41                            2015-03-15
2643     42                            2015-03-08
2644     43                            2015-03-01
2645     44                            2015-02-22
2646     45                            2015-02-15
2647     46                            2015-02-08
2648     47                            2015-02-01
2649     48                            2015-01-25
2650     49                            2015-01-18
2651     50                            2015-01-11
2652     51                            2015-01-04
2653      0                            2015-12-27
2654      1                            2015-12-20
2655      2                            2015-12-13
2656      3                            2015-12-06
2657      4                            2015-11-29
2658      5                            2015-11-22
2659      6                            2015-11-15
2660      7                            2015-11-08
2661      8                            2015-11-01
2662      9                            2015-10-25
2663     10                            2015-10-18
2664     11                            2015-10-11
2665     12                            2015-10-04
2666     13                            2015-09-27
2667     14                            2015-09-20
2668     15                            2015-09-13
2669     16                            2015-09-06
2670     17                            2015-08-30
2671     18                            2015-08-23
2672     19                            2015-08-16
2673     20                            2015-08-09
2674     21                            2015-08-02
2675     22                            2015-07-26
2676     23                            2015-07-19
2677     24                            2015-07-12
2678     25                            2015-07-05
2679     26                            2015-06-28
2680     27                            2015-06-21
2681     28                            2015-06-14
2682     29                            2015-06-07
2683     30                            2015-05-31
2684     31                            2015-05-24
2685     32                            2015-05-17
2686     33                            2015-05-10
2687     34                            2015-05-03
2688     35                            2015-04-26
2689     36                            2015-04-19
2690     37                            2015-04-12
2691     38                            2015-04-05
2692     39                            2015-03-29
2693     40                            2015-03-22
2694     41                            2015-03-15
2695     42                            2015-03-08
2696     43                            2015-03-01
2697     44                            2015-02-22
2698     45                            2015-02-15
2699     46                            2015-02-08
2700     47                            2015-02-01
2701     48                            2015-01-25
2702     49                            2015-01-18
2703     50                            2015-01-11
2704     51                            2015-01-04
2705      0                            2015-12-27
2706      1                            2015-12-20
2707      2                            2015-12-13
2708      3                            2015-12-06
2709      4                            2015-11-29
2710      5                            2015-11-22
2711      6                            2015-11-15
2712      7                            2015-11-08
2713      8                            2015-11-01
2714      9                            2015-10-25
2715     10                            2015-10-18
2716     11                            2015-10-11
2717     12                            2015-10-04
2718     13                            2015-09-27
2719     14                            2015-09-20
2720     15                            2015-09-13
2721     16                            2015-09-06
2722     17                            2015-08-30
2723     18                            2015-08-23
2724     19                            2015-08-16
2725     20                            2015-08-09
2726     21                            2015-08-02
2727     22                            2015-07-26
2728     23                            2015-07-19
2729     24                            2015-07-12
2730     25                            2015-07-05
2731     26                            2015-06-28
2732     27                            2015-06-21
2733     28                            2015-06-14
2734     29                            2015-06-07
2735     30                            2015-05-31
2736     31                            2015-05-24
2737     32                            2015-05-17
2738     33                            2015-05-10
2739     34                            2015-05-03
2740     35                            2015-04-26
2741     36                            2015-04-19
2742     37                            2015-04-12
2743     38                            2015-04-05
2744     39                            2015-03-29
2745     40                            2015-03-22
2746     41                            2015-03-15
2747     42                            2015-03-08
2748     43                            2015-03-01
2749     44                            2015-02-22
2750     45                            2015-02-15
2751     46                            2015-02-08
2752     47                            2015-02-01
2753     48                            2015-01-25
2754     49                            2015-01-18
2755     50                            2015-01-11
2756     51                            2015-01-04
2757      0                            2016-12-25
2758      1                            2016-12-18
2759      2                            2016-12-11
2760      3                            2016-12-04
2761      4                            2016-11-27
2762      5                            2016-11-20
2763      6                            2016-11-13
2764      7                            2016-11-06
2765      8                            2016-10-30
2766      9                            2016-10-23
2767     10                            2016-10-16
2768     11                            2016-10-09
2769     12                            2016-10-02
2770     13                            2016-09-25
2771     14                            2016-09-18
2772     15                            2016-09-11
2773     16                            2016-09-04
2774     17                            2016-08-28
2775     18                            2016-08-21
2776     19                            2016-08-14
2777     20                            2016-08-07
2778     21                            2016-07-31
2779     22                            2016-07-24
2780     23                            2016-07-17
2781     24                            2016-07-10
2782     25                            2016-07-03
2783     26                            2016-06-26
2784     27                            2016-06-19
2785     28                            2016-06-12
2786     29                            2016-06-05
2787     30                            2016-05-29
2788     31                            2016-05-22
2789     32                            2016-05-15
2790     33                            2016-05-08
2791     34                            2016-05-01
2792     35                            2016-04-24
2793     36                            2016-04-17
2794     37                            2016-04-10
2795     38                            2016-04-03
2796     39                            2016-03-27
2797     40                            2016-03-20
2798     41                            2016-03-13
2799     42                            2016-03-06
2800     43                            2016-02-28
2801     44                            2016-02-21
2802     45                            2016-02-14
2803     46                            2016-02-07
2804     47                            2016-01-31
2805     48                            2016-01-24
2806     49                            2016-01-17
2807     50                            2016-01-10
2808     51                            2016-01-03
2809      0                            2016-12-25
2810      1                            2016-12-18
2811      2                            2016-12-11
2812      3                            2016-12-04
2813      4                            2016-11-27
2814      5                            2016-11-20
2815      6                            2016-11-13
2816      7                            2016-11-06
2817      8                            2016-10-30
2818      9                            2016-10-23
2819     10                            2016-10-16
2820     11                            2016-10-09
2821     12                            2016-10-02
2822     13                            2016-09-25
2823     14                            2016-09-18
2824     15                            2016-09-11
2825     16                            2016-09-04
2826     17                            2016-08-28
2827     18                            2016-08-21
2828     19                            2016-08-14
2829     20                            2016-08-07
2830     21                            2016-07-31
2831     22                            2016-07-24
2832     23                            2016-07-17
2833     24                            2016-07-10
2834     25                            2016-07-03
2835     26                            2016-06-26
2836     27                            2016-06-19
2837     28                            2016-06-12
2838     29                            2016-06-05
2839     30                            2016-05-29
2840     31                            2016-05-22
2841     32                            2016-05-15
2842     33                            2016-05-08
2843     34                            2016-05-01
2844     35                            2016-04-24
2845     36                            2016-04-17
2846     37                            2016-04-10
2847     38                            2016-04-03
2848     39                            2016-03-27
2849     40                            2016-03-20
2850     41                            2016-03-13
2851     42                            2016-03-06
2852     43                            2016-02-28
2853     44                            2016-02-21
2854     45                            2016-02-14
2855     46                            2016-02-07
2856     47                            2016-01-31
2857     48                            2016-01-24
2858     49                            2016-01-17
2859     50                            2016-01-10
2860     51                            2016-01-03
2861      0                            2016-12-25
2862      1                            2016-12-18
2863      2                            2016-12-11
2864      3                            2016-12-04
2865      4                            2016-11-27
2866      5                            2016-11-20
2867      6                            2016-11-13
2868      7                            2016-11-06
2869      8                            2016-10-30
2870      9                            2016-10-23
2871     10                            2016-10-16
2872     11                            2016-10-09
2873     12                            2016-10-02
2874     13                            2016-09-25
2875     14                            2016-09-18
2876     15                            2016-09-11
2877     16                            2016-09-04
2878     17                            2016-08-28
2879     18                            2016-08-21
2880     19                            2016-08-14
2881     20                            2016-08-07
2882     21                            2016-07-31
2883     22                            2016-07-24
2884     23                            2016-07-17
2885     24                            2016-07-10
2886     25                            2016-07-03
2887     26                            2016-06-26
2888     27                            2016-06-19
2889     28                            2016-06-12
2890     29                            2016-06-05
2891     30                            2016-05-29
2892     31                            2016-05-22
2893     32                            2016-05-15
2894     33                            2016-05-08
2895     34                            2016-05-01
2896     35                            2016-04-24
2897     36                            2016-04-17
2898     37                            2016-04-10
2899     38                            2016-04-03
2900     39                            2016-03-27
2901     40                            2016-03-20
2902     41                            2016-03-13
2903     42                            2016-03-06
2904     43                            2016-02-28
2905     44                            2016-02-21
2906     45                            2016-02-14
2907     46                            2016-02-07
2908     47                            2016-01-31
2909     48                            2016-01-24
2910     49                            2016-01-17
2911     50                            2016-01-10
2912     51                            2016-01-03
2913      0                            2016-12-25
2914      1                            2016-12-18
2915      2                            2016-12-11
2916      3                            2016-12-04
2917      4                            2016-11-27
2918      5                            2016-11-20
2919      6                            2016-11-13
2920      7                            2016-11-06
2921      8                            2016-10-30
2922      9                            2016-10-23
2923     10                            2016-10-16
2924     11                            2016-10-09
2925     12                            2016-10-02
2926     13                            2016-09-25
2927     14                            2016-09-18
2928     15                            2016-09-11
2929     16                            2016-09-04
2930     17                            2016-08-28
2931     18                            2016-08-21
2932     19                            2016-08-14
2933     20                            2016-08-07
2934     21                            2016-07-31
2935     22                            2016-07-24
2936     23                            2016-07-17
2937     24                            2016-07-10
2938     25                            2016-07-03
2939     26                            2016-06-26
2940     27                            2016-06-19
2941     28                            2016-06-12
2942     29                            2016-06-05
2943     30                            2016-05-29
2944     31                            2016-05-22
2945     32                            2016-05-15
2946     33                            2016-05-08
2947     34                            2016-05-01
2948     35                            2016-04-24
2949     36                            2016-04-17
2950     37                            2016-04-10
2951     38                            2016-04-03
2952     39                            2016-03-27
2953     40                            2016-03-20
2954     41                            2016-03-13
2955     42                            2016-03-06
2956     43                            2016-02-28
2957     44                            2016-02-21
2958     45                            2016-02-14
2959     46                            2016-02-07
2960     47                            2016-01-31
2961     48                            2016-01-24
2962     49                            2016-01-17
2963     50                            2016-01-10
2964     51                            2016-01-03
2965      0                            2016-12-25
2966      1                            2016-12-18
2967      2                            2016-12-11
2968      3                            2016-12-04
2969      4                            2016-11-27
2970      5                            2016-11-20
2971      6                            2016-11-13
2972      7                            2016-11-06
2973      8                            2016-10-30
2974      9                            2016-10-23
2975     10                            2016-10-16
2976     11                            2016-10-09
2977     12                            2016-10-02
2978     13                            2016-09-25
2979     14                            2016-09-18
2980     15                            2016-09-11
2981     16                            2016-09-04
2982     17                            2016-08-28
2983     18                            2016-08-21
2984     19                            2016-08-14
2985     20                            2016-08-07
2986     21                            2016-07-31
2987     22                            2016-07-24
2988     23                            2016-07-17
2989     24                            2016-07-10
2990     25                            2016-07-03
2991     26                            2016-06-26
2992     27                            2016-06-19
2993     28                            2016-06-12
2994     29                            2016-06-05
2995     30                            2016-05-29
2996     31                            2016-05-22
2997     32                            2016-05-15
2998     33                            2016-05-08
2999     34                            2016-05-01
3000     35                            2016-04-24
3001     36                            2016-04-17
3002     37                            2016-04-10
3003     38                            2016-04-03
3004     39                            2016-03-27
3005     40                            2016-03-20
3006     41                            2016-03-13
3007     42                            2016-03-06
3008     43                            2016-02-28
3009     44                            2016-02-21
3010     45                            2016-02-14
3011     46                            2016-02-07
3012     47                            2016-01-31
3013     48                            2016-01-24
3014     49                            2016-01-17
3015     50                            2016-01-10
3016     51                            2016-01-03
3017      0                            2016-12-25
3018      1                            2016-12-18
3019      2                            2016-12-11
3020      3                            2016-12-04
3021      4                            2016-11-27
3022      5                            2016-11-20
3023      6                            2016-11-13
3024      7                            2016-11-06
3025      8                            2016-10-30
3026      9                            2016-10-23
3027     10                            2016-10-16
3028     11                            2016-10-09
3029     12                            2016-10-02
3030     13                            2016-09-25
3031     14                            2016-09-18
3032     15                            2016-09-11
3033     16                            2016-09-04
3034     17                            2016-08-28
3035     18                            2016-08-21
3036     19                            2016-08-14
3037     20                            2016-08-07
3038     21                            2016-07-31
3039     22                            2016-07-24
3040     23                            2016-07-17
3041     24                            2016-07-10
3042     25                            2016-07-03
3043     26                            2016-06-26
3044     27                            2016-06-19
3045     28                            2016-06-12
3046     29                            2016-06-05
3047     30                            2016-05-29
3048     31                            2016-05-22
3049     32                            2016-05-15
3050     33                            2016-05-08
3051     34                            2016-05-01
3052     35                            2016-04-24
3053     36                            2016-04-17
3054     37                            2016-04-10
3055     38                            2016-04-03
3056     39                            2016-03-27
3057     40                            2016-03-20
3058     41                            2016-03-13
3059     42                            2016-03-06
3060     43                            2016-02-28
3061     44                            2016-02-21
3062     45                            2016-02-14
3063     46                            2016-02-07
3064     47                            2016-01-31
3065     48                            2016-01-24
3066     49                            2016-01-17
3067     50                            2016-01-10
3068     51                            2016-01-03
3069      0                            2016-12-25
3070      1                            2016-12-18
3071      2                            2016-12-11
3072      3                            2016-12-04
3073      4                            2016-11-27
3074      5                            2016-11-20
3075      6                            2016-11-13
3076      7                            2016-11-06
3077      8                            2016-10-30
3078      9                            2016-10-23
3079     10                            2016-10-16
3080     11                            2016-10-09
3081     12                            2016-10-02
3082     13                            2016-09-25
3083     14                            2016-09-18
3084     15                            2016-09-11
3085     16                            2016-09-04
3086     17                            2016-08-28
3087     18                            2016-08-21
3088     19                            2016-08-14
3089     20                            2016-08-07
3090     21                            2016-07-31
3091     22                            2016-07-24
3092     23                            2016-07-17
3093     24                            2016-07-10
3094     25                            2016-07-03
3095     26                            2016-06-26
3096     27                            2016-06-19
3097     28                            2016-06-12
3098     29                            2016-06-05
3099     30                            2016-05-29
3100     31                            2016-05-22
3101     32                            2016-05-15
3102     33                            2016-05-08
3103     34                            2016-05-01
3104     35                            2016-04-24
3105     36                            2016-04-17
3106     37                            2016-04-10
3107     38                            2016-04-03
3108     39                            2016-03-27
3109     40                            2016-03-20
3110     41                            2016-03-13
3111     42                            2016-03-06
3112     43                            2016-02-28
3113     44                            2016-02-21
3114     45                            2016-02-14
3115     46                            2016-02-07
3116     47                            2016-01-31
3117     48                            2016-01-24
3118     49                            2016-01-17
3119     50                            2016-01-10
3120     51                            2016-01-03
3121      0                            2016-12-25
3122      1                            2016-12-18
3123      2                            2016-12-11
3124      3                            2016-12-04
3125      4                            2016-11-27
3126      5                            2016-11-20
3127      6                            2016-11-13
3128      7                            2016-11-06
3129      8                            2016-10-30
3130      9                            2016-10-23
3131     10                            2016-10-16
3132     11                            2016-10-09
3133     12                            2016-10-02
3134     13                            2016-09-25
3135     14                            2016-09-18
3136     15                            2016-09-11
3137     16                            2016-09-04
3138     17                            2016-08-28
3139     18                            2016-08-21
3140     19                            2016-08-14
3141     20                            2016-08-07
3142     21                            2016-07-31
3143     22                            2016-07-24
3144     23                            2016-07-17
3145     24                            2016-07-10
3146     25                            2016-07-03
3147     26                            2016-06-26
3148     27                            2016-06-19
3149     28                            2016-06-12
3150     29                            2016-06-05
3151     30                            2016-05-29
3152     31                            2016-05-22
3153     32                            2016-05-15
3154     33                            2016-05-08
3155     34                            2016-05-01
3156     35                            2016-04-24
3157     36                            2016-04-17
3158     37                            2016-04-10
3159     38                            2016-04-03
3160     39                            2016-03-27
3161     40                            2016-03-20
3162     41                            2016-03-13
3163     42                            2016-03-06
3164     43                            2016-02-28
3165     44                            2016-02-21
3166     45                            2016-02-14
3167     46                            2016-02-07
3168     47                            2016-01-31
3169     48                            2016-01-24
3170     49                            2016-01-17
3171     50                            2016-01-10
3172     51                            2016-01-03
3173      0                            2016-12-25
3174      1                            2016-12-18
3175      2                            2016-12-11
3176      3                            2016-12-04
3177      4                            2016-11-27
3178      5                            2016-11-20
3179      6                            2016-11-13
3180      7                            2016-11-06
3181      8                            2016-10-30
3182      9                            2016-10-23
3183     10                            2016-10-16
3184     11                            2016-10-09
3185     12                            2016-10-02
3186     13                            2016-09-25
3187     14                            2016-09-18
3188     15                            2016-09-11
3189     16                            2016-09-04
3190     17                            2016-08-28
3191     18                            2016-08-21
3192     19                            2016-08-14
3193     20                            2016-08-07
3194     21                            2016-07-31
3195     22                            2016-07-24
3196     23                            2016-07-17
3197     24                            2016-07-10
3198     25                            2016-07-03
3199     26                            2016-06-26
3200     27                            2016-06-19
3201     28                            2016-06-12
3202     29                            2016-06-05
3203     30                            2016-05-29
3204     31                            2016-05-22
3205     32                            2016-05-15
3206     33                            2016-05-08
3207     34                            2016-05-01
3208     35                            2016-04-24
3209     36                            2016-04-17
3210     37                            2016-04-10
3211     38                            2016-04-03
3212     39                            2016-03-27
3213     40                            2016-03-20
3214     41                            2016-03-13
3215     42                            2016-03-06
3216     43                            2016-02-28
3217     44                            2016-02-21
3218     45                            2016-02-14
3219     46                            2016-02-07
3220     47                            2016-01-31
3221     48                            2016-01-24
3222     49                            2016-01-17
3223     50                            2016-01-10
3224     51                            2016-01-03
3225      0                            2016-12-25
3226      1                            2016-12-18
3227      2                            2016-12-11
3228      3                            2016-12-04
3229      4                            2016-11-27
3230      5                            2016-11-20
3231      6                            2016-11-13
3232      7                            2016-11-06
3233      8                            2016-10-30
3234      9                            2016-10-23
3235     10                            2016-10-16
3236     11                            2016-10-09
3237     12                            2016-10-02
3238     13                            2016-09-25
3239     14                            2016-09-18
3240     15                            2016-09-11
3241     16                            2016-09-04
3242     17                            2016-08-28
3243     18                            2016-08-21
3244     19                            2016-08-14
3245     20                            2016-08-07
3246     21                            2016-07-31
3247     22                            2016-07-24
3248     23                            2016-07-17
3249     24                            2016-07-10
3250     25                            2016-07-03
3251     26                            2016-06-26
3252     27                            2016-06-19
3253     28                            2016-06-12
3254     29                            2016-06-05
3255     30                            2016-05-29
3256     31                            2016-05-22
3257     32                            2016-05-15
3258     33                            2016-05-08
3259     34                            2016-05-01
3260     35                            2016-04-24
3261     36                            2016-04-17
3262     37                            2016-04-10
3263     38                            2016-04-03
3264     39                            2016-03-27
3265     40                            2016-03-20
3266     41                            2016-03-13
3267     42                            2016-03-06
3268     43                            2016-02-28
3269     44                            2016-02-21
3270     45                            2016-02-14
3271     46                            2016-02-07
3272     47                            2016-01-31
3273     48                            2016-01-24
3274     49                            2016-01-17
3275     50                            2016-01-10
3276     51                            2016-01-03
3277      0                            2016-12-25
3278      1                            2016-12-18
3279      2                            2016-12-11
3280      3                            2016-12-04
3281      4                            2016-11-27
3282      5                            2016-11-20
3283      6                            2016-11-13
3284      7                            2016-11-06
3285      8                            2016-10-30
3286      9                            2016-10-23
3287     10                            2016-10-16
3288     11                            2016-10-09
3289     12                            2016-10-02
3290     13                            2016-09-25
3291     14                            2016-09-18
3292     15                            2016-09-11
3293     16                            2016-09-04
3294     17                            2016-08-28
3295     18                            2016-08-21
3296     19                            2016-08-14
3297     20                            2016-08-07
3298     21                            2016-07-31
3299     22                            2016-07-24
3300     23                            2016-07-17
3301     24                            2016-07-10
3302     25                            2016-07-03
3303     26                            2016-06-26
3304     27                            2016-06-19
3305     28                            2016-06-12
3306     29                            2016-06-05
3307     30                            2016-05-29
3308     31                            2016-05-22
3309     32                            2016-05-15
3310     33                            2016-05-08
3311     34                            2016-05-01
3312     35                            2016-04-24
3313     36                            2016-04-17
3314     37                            2016-04-10
3315     38                            2016-04-03
3316     39                            2016-03-27
3317     40                            2016-03-20
3318     41                            2016-03-13
3319     42                            2016-03-06
3320     43                            2016-02-28
3321     44                            2016-02-21
3322     45                            2016-02-14
3323     46                            2016-02-07
3324     47                            2016-01-31
3325     48                            2016-01-24
3326     49                            2016-01-17
3327     50                            2016-01-10
3328     51                            2016-01-03
3329      0                            2016-12-25
3330      1                            2016-12-18
3331      2                            2016-12-11
3332      3                            2016-12-04
3333      4                            2016-11-27
3334      5                            2016-11-20
3335      6                            2016-11-13
3336      7                            2016-11-06
3337      8                            2016-10-30
3338      9                            2016-10-23
3339     10                            2016-10-16
3340     11                            2016-10-09
3341     12                            2016-10-02
3342     13                            2016-09-25
3343     14                            2016-09-18
3344     15                            2016-09-11
3345     16                            2016-09-04
3346     17                            2016-08-28
3347     18                            2016-08-21
3348     19                            2016-08-14
3349     20                            2016-08-07
3350     21                            2016-07-31
3351     22                            2016-07-24
3352     23                            2016-07-17
3353     24                            2016-07-10
3354     25                            2016-07-03
3355     26                            2016-06-26
3356     27                            2016-06-19
3357     28                            2016-06-12
3358     29                            2016-06-05
3359     30                            2016-05-29
3360     31                            2016-05-22
3361     32                            2016-05-15
3362     33                            2016-05-08
3363     34                            2016-05-01
3364     35                            2016-04-24
3365     36                            2016-04-17
3366     37                            2016-04-10
3367     38                            2016-04-03
3368     39                            2016-03-27
3369     40                            2016-03-20
3370     41                            2016-03-13
3371     42                            2016-03-06
3372     43                            2016-02-28
3373     44                            2016-02-21
3374     45                            2016-02-14
3375     46                            2016-02-07
3376     47                            2016-01-31
3377     48                            2016-01-24
3378     49                            2016-01-17
3379     50                            2016-01-10
3380     51                            2016-01-03
3381      0                            2016-12-25
3382      1                            2016-12-18
3383      2                            2016-12-11
3384      3                            2016-12-04
3385      4                            2016-11-27
3386      5                            2016-11-20
3387      6                            2016-11-13
3388      7                            2016-11-06
3389      8                            2016-10-30
3390      9                            2016-10-23
3391     10                            2016-10-16
3392     11                            2016-10-09
3393     12                            2016-10-02
3394     13                            2016-09-25
3395     14                            2016-09-18
3396     15                            2016-09-11
3397     16                            2016-09-04
3398     17                            2016-08-28
3399     18                            2016-08-21
3400     19                            2016-08-14
3401     20                            2016-08-07
3402     21                            2016-07-31
3403     22                            2016-07-24
3404     23                            2016-07-17
3405     24                            2016-07-10
3406     25                            2016-07-03
3407     26                            2016-06-26
3408     27                            2016-06-19
3409     28                            2016-06-12
3410     29                            2016-06-05
3411     30                            2016-05-29
3412     31                            2016-05-22
3413     32                            2016-05-15
3414     33                            2016-05-08
3415     34                            2016-05-01
3416     35                            2016-04-24
3417     36                            2016-04-17
3418     37                            2016-04-10
3419     38                            2016-04-03
3420     39                            2016-03-27
3421     40                            2016-03-20
3422     41                            2016-03-13
3423     42                            2016-03-06
3424     43                            2016-02-28
3425     44                            2016-02-21
3426     45                            2016-02-14
3427     46                            2016-02-07
3428     47                            2016-01-31
3429     48                            2016-01-24
3430     49                            2016-01-17
3431     50                            2016-01-10
3432     51                            2016-01-03
3433      0                            2016-12-25
3434      1                            2016-12-18
3435      2                            2016-12-11
3436      3                            2016-12-04
3437      4                            2016-11-27
3438      5                            2016-11-20
3439      6                            2016-11-13
3440      7                            2016-11-06
3441      8                            2016-10-30
3442      9                            2016-10-23
3443     10                            2016-10-16
3444     11                            2016-10-09
3445     12                            2016-10-02
3446     13                            2016-09-25
3447     14                            2016-09-18
3448     15                            2016-09-11
3449     16                            2016-09-04
3450     17                            2016-08-28
3451     18                            2016-08-21
3452     19                            2016-08-14
3453     20                            2016-08-07
3454     21                            2016-07-31
3455     22                            2016-07-24
3456     23                            2016-07-17
3457     24                            2016-07-10
3458     25                            2016-07-03
3459     26                            2016-06-26
3460     27                            2016-06-19
3461     28                            2016-06-12
3462     29                            2016-06-05
3463     30                            2016-05-29
3464     31                            2016-05-22
3465     32                            2016-05-15
3466     33                            2016-05-08
3467     34                            2016-05-01
3468     35                            2016-04-24
3469     36                            2016-04-17
3470     37                            2016-04-10
3471     38                            2016-04-03
3472     39                            2016-03-27
3473     40                            2016-03-20
3474     41                            2016-03-13
3475     42                            2016-03-06
3476     43                            2016-02-28
3477     44                            2016-02-21
3478     45                            2016-02-14
3479     46                            2016-02-07
3480     47                            2016-01-31
3481     48                            2016-01-24
3482     49                            2016-01-17
3483     50                            2016-01-10
3484     51                            2016-01-03
3485      0                            2016-12-25
3486      1                            2016-12-18
3487      2                            2016-12-11
3488      3                            2016-12-04
3489      4                            2016-11-27
3490      5                            2016-11-20
3491      6                            2016-11-13
3492      7                            2016-11-06
3493      8                            2016-10-30
3494      9                            2016-10-23
3495     10                            2016-10-16
3496     11                            2016-10-09
3497     12                            2016-10-02
3498     13                            2016-09-25
3499     14                            2016-09-18
3500     15                            2016-09-11
3501     16                            2016-09-04
3502     17                            2016-08-28
3503     18                            2016-08-21
3504     19                            2016-08-14
3505     20                            2016-08-07
3506     21                            2016-07-31
3507     22                            2016-07-24
3508     23                            2016-07-17
3509     24                            2016-07-10
3510     25                            2016-07-03
3511     26                            2016-06-26
3512     27                            2016-06-19
3513     28                            2016-06-12
3514     29                            2016-06-05
3515     30                            2016-05-29
3516     31                            2016-05-22
3517     32                            2016-05-15
3518     33                            2016-05-08
3519     34                            2016-05-01
3520     35                            2016-04-24
3521     36                            2016-04-17
3522     37                            2016-04-10
3523     38                            2016-04-03
3524     39                            2016-03-27
3525     40                            2016-03-20
3526     41                            2016-03-13
3527     42                            2016-03-06
3528     43                            2016-02-28
3529     44                            2016-02-21
3530     45                            2016-02-14
3531     46                            2016-02-07
3532     47                            2016-01-31
3533     48                            2016-01-24
3534     49                            2016-01-17
3535     50                            2016-01-10
3536     51                            2016-01-03
3537      0                            2016-12-25
3538      1                            2016-12-18
3539      2                            2016-12-11
3540      3                            2016-12-04
3541      4                            2016-11-27
3542      5                            2016-11-20
3543      6                            2016-11-13
3544      7                            2016-11-06
3545      8                            2016-10-30
3546      9                            2016-10-23
3547     10                            2016-10-16
3548     11                            2016-10-09
3549     12                            2016-10-02
3550     13                            2016-09-25
3551     14                            2016-09-18
3552     15                            2016-09-11
3553     16                            2016-09-04
3554     17                            2016-08-28
3555     18                            2016-08-21
3556     19                            2016-08-14
3557     20                            2016-08-07
3558     21                            2016-07-31
3559     22                            2016-07-24
3560     23                            2016-07-17
3561     24                            2016-07-10
3562     25                            2016-07-03
3563     26                            2016-06-26
3564     27                            2016-06-19
3565     28                            2016-06-12
3566     29                            2016-06-05
3567     30                            2016-05-29
3568     31                            2016-05-22
3569     32                            2016-05-15
3570     33                            2016-05-08
3571     34                            2016-05-01
3572     35                            2016-04-24
3573     36                            2016-04-17
3574     37                            2016-04-10
3575     38                            2016-04-03
3576     39                            2016-03-27
3577     40                            2016-03-20
3578     41                            2016-03-13
3579     42                            2016-03-06
3580     43                            2016-02-28
3581     44                            2016-02-21
3582     45                            2016-02-14
3583     46                            2016-02-07
3584     47                            2016-01-31
3585     48                            2016-01-24
3586     49                            2016-01-17
3587     50                            2016-01-10
3588     51                            2016-01-03
3589      0                            2016-12-25
3590      1                            2016-12-18
3591      2                            2016-12-11
3592      3                            2016-12-04
3593      4                            2016-11-27
3594      5                            2016-11-20
3595      6                            2016-11-13
3596      7                            2016-11-06
3597      8                            2016-10-30
3598      9                            2016-10-23
3599     10                            2016-10-16
3600     11                            2016-10-09
3601     12                            2016-10-02
3602     13                            2016-09-25
3603     14                            2016-09-18
3604     15                            2016-09-11
3605     16                            2016-09-04
3606     17                            2016-08-28
3607     18                            2016-08-21
3608     19                            2016-08-14
3609     20                            2016-08-07
3610     21                            2016-07-31
3611     22                            2016-07-24
3612     23                            2016-07-17
3613     24                            2016-07-10
3614     25                            2016-07-03
3615     26                            2016-06-26
3616     27                            2016-06-19
3617     28                            2016-06-12
3618     29                            2016-06-05
3619     30                            2016-05-29
3620     31                            2016-05-22
3621     32                            2016-05-15
3622     33                            2016-05-08
3623     34                            2016-05-01
3624     35                            2016-04-24
3625     36                            2016-04-17
3626     37                            2016-04-10
3627     38                            2016-04-03
3628     39                            2016-03-27
3629     40                            2016-03-20
3630     41                            2016-03-13
3631     42                            2016-03-06
3632     43                            2016-02-28
3633     44                            2016-02-21
3634     45                            2016-02-14
3635     46                            2016-02-07
3636     47                            2016-01-31
3637     48                            2016-01-24
3638     49                            2016-01-17
3639     50                            2016-01-10
3640     51                            2016-01-03
3641      0                            2016-12-25
3642      1                            2016-12-18
3643      2                            2016-12-11
3644      3                            2016-12-04
3645      4                            2016-11-27
3646      5                            2016-11-20
3647      6                            2016-11-13
3648      7                            2016-11-06
3649      8                            2016-10-30
3650      9                            2016-10-23
3651     10                            2016-10-16
3652     11                            2016-10-09
3653     12                            2016-10-02
3654     13                            2016-09-25
3655     14                            2016-09-18
3656     15                            2016-09-11
3657     16                            2016-09-04
3658     17                            2016-08-28
3659     18                            2016-08-21
3660     19                            2016-08-14
3661     20                            2016-08-07
3662     21                            2016-07-31
3663     22                            2016-07-24
3664     23                            2016-07-17
3665     24                            2016-07-10
3666     25                            2016-07-03
3667     26                            2016-06-26
3668     27                            2016-06-19
3669     28                            2016-06-12
3670     29                            2016-06-05
3671     30                            2016-05-29
3672     31                            2016-05-22
3673     32                            2016-05-15
3674     33                            2016-05-08
3675     34                            2016-05-01
3676     35                            2016-04-24
3677     36                            2016-04-17
3678     37                            2016-04-10
3679     38                            2016-04-03
3680     39                            2016-03-27
3681     40                            2016-03-20
3682     41                            2016-03-13
3683     42                            2016-03-06
3684     43                            2016-02-28
3685     44                            2016-02-21
3686     45                            2016-02-14
3687     46                            2016-02-07
3688     47                            2016-01-31
3689     48                            2016-01-24
3690     49                            2016-01-17
3691     50                            2016-01-10
3692     51                            2016-01-03
3693      0                            2016-12-25
3694      1                            2016-12-18
3695      2                            2016-12-11
3696      3                            2016-12-04
3697      4                            2016-11-27
3698      5                            2016-11-20
3699      6                            2016-11-13
3700      7                            2016-11-06
3701      8                            2016-10-30
3702      9                            2016-10-23
3703     10                            2016-10-16
3704     11                            2016-10-09
3705     12                            2016-10-02
3706     13                            2016-09-25
3707     14                            2016-09-18
3708     15                            2016-09-11
3709     16                            2016-09-04
3710     17                            2016-08-28
3711     18                            2016-08-21
3712     19                            2016-08-14
3713     20                            2016-08-07
3714     21                            2016-07-31
3715     22                            2016-07-24
3716     23                            2016-07-17
3717     24                            2016-07-10
3718     25                            2016-07-03
3719     26                            2016-06-26
3720     27                            2016-06-19
3721     28                            2016-06-12
3722     29                            2016-06-05
3723     30                            2016-05-29
3724     31                            2016-05-22
3725     32                            2016-05-15
3726     33                            2016-05-08
3727     34                            2016-05-01
3728     35                            2016-04-24
3729     36                            2016-04-17
3730     37                            2016-04-10
3731     38                            2016-04-03
3732     39                            2016-03-27
3733     40                            2016-03-20
3734     41                            2016-03-13
3735     42                            2016-03-06
3736     43                            2016-02-28
3737     44                            2016-02-21
3738     45                            2016-02-14
3739     46                            2016-02-07
3740     47                            2016-01-31
3741     48                            2016-01-24
3742     49                            2016-01-17
3743     50                            2016-01-10
3744     51                            2016-01-03
3745      0                            2016-12-25
3746      1                            2016-12-18
3747      2                            2016-12-11
3748      3                            2016-12-04
3749      4                            2016-11-27
3750      5                            2016-11-20
3751      6                            2016-11-13
3752      7                            2016-11-06
3753      8                            2016-10-30
3754      9                            2016-10-23
3755     10                            2016-10-16
3756     11                            2016-10-09
3757     12                            2016-10-02
3758     13                            2016-09-25
3759     14                            2016-09-18
3760     15                            2016-09-11
3761     16                            2016-09-04
3762     17                            2016-08-28
3763     18                            2016-08-21
3764     19                            2016-08-14
3765     20                            2016-08-07
3766     21                            2016-07-31
3767     22                            2016-07-24
3768     23                            2016-07-17
3769     24                            2016-07-10
3770     25                            2016-07-03
3771     26                            2016-06-26
3772     27                            2016-06-19
3773     28                            2016-06-12
3774     29                            2016-06-05
3775     30                            2016-05-29
3776     31                            2016-05-22
3777     32                            2016-05-15
3778     33                            2016-05-08
3779     34                            2016-05-01
3780     35                            2016-04-24
3781     36                            2016-04-17
3782     37                            2016-04-10
3783     38                            2016-04-03
3784     39                            2016-03-27
3785     40                            2016-03-20
3786     41                            2016-03-13
3787     42                            2016-03-06
3788     43                            2016-02-28
3789     44                            2016-02-21
3790     45                            2016-02-14
3791     46                            2016-02-07
3792     47                            2016-01-31
3793     48                            2016-01-24
3794     49                            2016-01-17
3795     50                            2016-01-10
3796     51                            2016-01-03
3797      0                            2016-12-25
3798      1                            2016-12-18
3799      2                            2016-12-11
3800      3                            2016-12-04
3801      4                            2016-11-27
3802      5                            2016-11-20
3803      6                            2016-11-13
3804      7                            2016-11-06
3805      8                            2016-10-30
3806      9                            2016-10-23
3807     10                            2016-10-16
3808     11                            2016-10-09
3809     12                            2016-10-02
3810     13                            2016-09-25
3811     14                            2016-09-18
3812     15                            2016-09-11
3813     16                            2016-09-04
3814     17                            2016-08-28
3815     18                            2016-08-21
3816     19                            2016-08-14
3817     20                            2016-08-07
3818     21                            2016-07-31
3819     22                            2016-07-24
3820     23                            2016-07-17
3821     24                            2016-07-10
3822     25                            2016-07-03
3823     26                            2016-06-26
3824     27                            2016-06-19
3825     28                            2016-06-12
3826     29                            2016-06-05
3827     30                            2016-05-29
3828     31                            2016-05-22
3829     32                            2016-05-15
3830     33                            2016-05-08
3831     34                            2016-05-01
3832     35                            2016-04-24
3833     36                            2016-04-17
3834     37                            2016-04-10
3835     38                            2016-04-03
3836     39                            2016-03-27
3837     40                            2016-03-20
3838     41                            2016-03-13
3839     42                            2016-03-06
3840     43                            2016-02-28
3841     44                            2016-02-21
3842     45                            2016-02-14
3843     46                            2016-02-07
3844     47                            2016-01-31
3845     48                            2016-01-24
3846     49                            2016-01-17
3847     50                            2016-01-10
3848     51                            2016-01-03
3849      0                            2016-12-25
3850      1                            2016-12-18
3851      2                            2016-12-11
3852      3                            2016-12-04
3853      4                            2016-11-27
3854      5                            2016-11-20
3855      6                            2016-11-13
3856      7                            2016-11-06
3857      8                            2016-10-30
3858      9                            2016-10-23
3859     10                            2016-10-16
3860     11                            2016-10-09
3861     12                            2016-10-02
3862     13                            2016-09-25
3863     14                            2016-09-18
3864     15                            2016-09-11
3865     16                            2016-09-04
3866     17                            2016-08-28
3867     18                            2016-08-21
3868     19                            2016-08-14
3869     20                            2016-08-07
3870     21                            2016-07-31
3871     22                            2016-07-24
3872     23                            2016-07-17
3873     24                            2016-07-10
3874     25                            2016-07-03
3875     26                            2016-06-26
3876     27                            2016-06-19
3877     28                            2016-06-12
3878     29                            2016-06-05
3879     30                            2016-05-29
3880     31                            2016-05-22
3881     32                            2016-05-15
3882     33                            2016-05-08
3883     34                            2016-05-01
3884     35                            2016-04-24
3885     36                            2016-04-17
3886     37                            2016-04-10
3887     38                            2016-04-03
3888     39                            2016-03-27
3889     40                            2016-03-20
3890     41                            2016-03-13
3891     42                            2016-03-06
3892     43                            2016-02-28
3893     44                            2016-02-21
3894     45                            2016-02-14
3895     46                            2016-02-07
3896     47                            2016-01-31
3897     48                            2016-01-24
3898     49                            2016-01-17
3899     50                            2016-01-10
3900     51                            2016-01-03
3901      0                            2016-12-25
3902      1                            2016-12-18
3903      2                            2016-12-11
3904      3                            2016-12-04
3905      4                            2016-11-27
3906      5                            2016-11-20
3907      6                            2016-11-13
3908      7                            2016-11-06
3909      8                            2016-10-30
3910      9                            2016-10-23
3911     10                            2016-10-16
3912     11                            2016-10-09
3913     12                            2016-10-02
3914     13                            2016-09-25
3915     14                            2016-09-18
3916     15                            2016-09-11
3917     16                            2016-09-04
3918     17                            2016-08-28
3919     18                            2016-08-21
3920     19                            2016-08-14
3921     20                            2016-08-07
3922     21                            2016-07-31
3923     22                            2016-07-24
3924     23                            2016-07-17
3925     24                            2016-07-10
3926     25                            2016-07-03
3927     26                            2016-06-26
3928     27                            2016-06-19
3929     28                            2016-06-12
3930     29                            2016-06-05
3931     30                            2016-05-29
3932     31                            2016-05-22
3933     32                            2016-05-15
3934     33                            2016-05-08
3935     34                            2016-05-01
3936     35                            2016-04-24
3937     36                            2016-04-17
3938     37                            2016-04-10
3939     38                            2016-04-03
3940     39                            2016-03-27
3941     40                            2016-03-20
3942     41                            2016-03-13
3943     42                            2016-03-06
3944     43                            2016-02-28
3945     44                            2016-02-21
3946     45                            2016-02-14
3947     46                            2016-02-07
3948     47                            2016-01-31
3949     48                            2016-01-24
3950     49                            2016-01-17
3951     50                            2016-01-10
3952     51                            2016-01-03
3953      0                            2016-12-25
3954      1                            2016-12-18
3955      2                            2016-12-11
3956      3                            2016-12-04
3957      4                            2016-11-27
3958      5                            2016-11-20
3959      6                            2016-11-13
3960      7                            2016-11-06
3961      8                            2016-10-30
3962      9                            2016-10-23
3963     10                            2016-10-16
3964     11                            2016-10-09
3965     12                            2016-10-02
3966     13                            2016-09-25
3967     14                            2016-09-18
3968     15                            2016-09-11
3969     16                            2016-09-04
3970     17                            2016-08-28
3971     18                            2016-08-21
3972     19                            2016-08-14
3973     20                            2016-08-07
3974     21                            2016-07-31
3975     22                            2016-07-24
3976     23                            2016-07-17
3977     24                            2016-07-10
3978     25                            2016-07-03
3979     26                            2016-06-26
3980     27                            2016-06-19
3981     28                            2016-06-12
3982     29                            2016-06-05
3983     30                            2016-05-29
3984     31                            2016-05-22
3985     32                            2016-05-15
3986     33                            2016-05-08
3987     34                            2016-05-01
3988     35                            2016-04-24
3989     36                            2016-04-17
3990     37                            2016-04-10
3991     38                            2016-04-03
3992     39                            2016-03-27
3993     40                            2016-03-20
3994     41                            2016-03-13
3995     42                            2016-03-06
3996     43                            2016-02-28
3997     44                            2016-02-21
3998     45                            2016-02-14
3999     46                            2016-02-07
4000     47                            2016-01-31
4001     48                            2016-01-24
4002     49                            2016-01-17
4003     50                            2016-01-10
4004     51                            2016-01-03
4005      0                            2016-12-25
4006      1                            2016-12-18
4007      2                            2016-12-11
4008      3                            2016-12-04
4009      4                            2016-11-27
4010      5                            2016-11-20
4011      6                            2016-11-13
4012      7                            2016-11-06
4013      8                            2016-10-30
4014      9                            2016-10-23
4015     10                            2016-10-16
4016     11                            2016-10-09
4017     12                            2016-10-02
4018     13                            2016-09-25
4019     14                            2016-09-18
4020     15                            2016-09-11
4021     16                            2016-09-04
4022     17                            2016-08-28
4023     18                            2016-08-21
4024     19                            2016-08-14
4025     20                            2016-08-07
4026     21                            2016-07-31
4027     22                            2016-07-24
4028     23                            2016-07-17
4029     24                            2016-07-10
4030     25                            2016-07-03
4031     26                            2016-06-26
4032     27                            2016-06-19
4033     28                            2016-06-12
4034     29                            2016-06-05
4035     30                            2016-05-29
4036     31                            2016-05-22
4037     32                            2016-05-15
4038     33                            2016-05-08
4039     34                            2016-05-01
4040     35                            2016-04-24
4041     36                            2016-04-17
4042     37                            2016-04-10
4043     38                            2016-04-03
4044     39                            2016-03-27
4045     40                            2016-03-20
4046     41                            2016-03-13
4047     42                            2016-03-06
4048     43                            2016-02-28
4049     44                            2016-02-21
4050     45                            2016-02-14
4051     46                            2016-02-07
4052     47                            2016-01-31
4053     48                            2016-01-24
4054     49                            2016-01-17
4055     50                            2016-01-10
4056     51                            2016-01-03
4057      0                            2016-12-25
4058      1                            2016-12-18
4059      2                            2016-12-11
4060      3                            2016-12-04
4061      4                            2016-11-27
4062      5                            2016-11-20
4063      6                            2016-11-13
4064      7                            2016-11-06
4065      8                            2016-10-30
4066      9                            2016-10-23
4067     10                            2016-10-16
4068     11                            2016-10-09
4069     12                            2016-10-02
4070     13                            2016-09-25
4071     14                            2016-09-18
4072     15                            2016-09-11
4073     16                            2016-09-04
4074     17                            2016-08-28
4075     18                            2016-08-21
4076     19                            2016-08-14
4077     20                            2016-08-07
4078     21                            2016-07-31
4079     22                            2016-07-24
4080     23                            2016-07-17
4081     24                            2016-07-10
4082     25                            2016-07-03
4083     26                            2016-06-26
4084     27                            2016-06-19
4085     28                            2016-06-12
4086     29                            2016-06-05
4087     30                            2016-05-29
4088     31                            2016-05-22
4089     32                            2016-05-15
4090     33                            2016-05-08
4091     34                            2016-05-01
4092     35                            2016-04-24
4093     36                            2016-04-17
4094     37                            2016-04-10
4095     38                            2016-04-03
4096     39                            2016-03-27
4097     40                            2016-03-20
4098     41                            2016-03-13
4099     42                            2016-03-06
4100     43                            2016-02-28
4101     44                            2016-02-21
4102     45                            2016-02-14
4103     46                            2016-02-07
4104     47                            2016-01-31
4105     48                            2016-01-24
4106     49                            2016-01-17
4107     50                            2016-01-10
4108     51                            2016-01-03
4109      0                            2016-12-25
4110      1                            2016-12-18
4111      2                            2016-12-11
4112      3                            2016-12-04
4113      4                            2016-11-27
4114      5                            2016-11-20
4115      6                            2016-11-13
4116      7                            2016-11-06
4117      8                            2016-10-30
4118      9                            2016-10-23
4119     10                            2016-10-16
4120     11                            2016-10-09
4121     12                            2016-10-02
4122     13                            2016-09-25
4123     14                            2016-09-18
4124     15                            2016-09-11
4125     16                            2016-09-04
4126     17                            2016-08-28
4127     18                            2016-08-21
4128     19                            2016-08-14
4129     20                            2016-08-07
4130     21                            2016-07-31
4131     22                            2016-07-24
4132     23                            2016-07-17
4133     24                            2016-07-10
4134     25                            2016-07-03
4135     26                            2016-06-26
4136     27                            2016-06-19
4137     28                            2016-06-12
4138     29                            2016-06-05
4139     30                            2016-05-29
4140     31                            2016-05-22
4141     32                            2016-05-15
4142     33                            2016-05-08
4143     34                            2016-05-01
4144     35                            2016-04-24
4145     36                            2016-04-17
4146     37                            2016-04-10
4147     38                            2016-04-03
4148     39                            2016-03-27
4149     40                            2016-03-20
4150     41                            2016-03-13
4151     42                            2016-03-06
4152     43                            2016-02-28
4153     44                            2016-02-21
4154     45                            2016-02-14
4155     46                            2016-02-07
4156     47                            2016-01-31
4157     48                            2016-01-24
4158     49                            2016-01-17
4159     50                            2016-01-10
4160     51                            2016-01-03
4161      0                            2016-12-25
4162      1                            2016-12-18
4163      2                            2016-12-11
4164      3                            2016-12-04
4165      4                            2016-11-27
4166      5                            2016-11-20
4167      6                            2016-11-13
4168      7                            2016-11-06
4169      8                            2016-10-30
4170      9                            2016-10-23
4171     10                            2016-10-16
4172     11                            2016-10-09
4173     12                            2016-10-02
4174     13                            2016-09-25
4175     14                            2016-09-18
4176     15                            2016-09-11
4177     16                            2016-09-04
4178     17                            2016-08-28
4179     18                            2016-08-21
4180     19                            2016-08-14
4181     20                            2016-08-07
4182     21                            2016-07-31
4183     22                            2016-07-24
4184     23                            2016-07-17
4185     24                            2016-07-10
4186     25                            2016-07-03
4187     26                            2016-06-26
4188     27                            2016-06-19
4189     28                            2016-06-12
4190     29                            2016-06-05
4191     30                            2016-05-29
4192     31                            2016-05-22
4193     32                            2016-05-15
4194     33                            2016-05-08
4195     34                            2016-05-01
4196     35                            2016-04-24
4197     36                            2016-04-17
4198     37                            2016-04-10
4199     38                            2016-04-03
4200     39                            2016-03-27
4201     40                            2016-03-20
4202     41                            2016-03-13
4203     42                            2016-03-06
4204     43                            2016-02-28
4205     44                            2016-02-21
4206     45                            2016-02-14
4207     46                            2016-02-07
4208     47                            2016-01-31
4209     48                            2016-01-24
4210     49                            2016-01-17
4211     50                            2016-01-10
4212     51                            2016-01-03
4213      0                            2016-12-25
4214      1                            2016-12-18
4215      2                            2016-12-11
4216      3                            2016-12-04
4217      4                            2016-11-27
4218      5                            2016-11-20
4219      6                            2016-11-13
4220      7                            2016-11-06
4221      8                            2016-10-30
4222      9                            2016-10-23
4223     10                            2016-10-16
4224     11                            2016-10-09
4225     12                            2016-10-02
4226     13                            2016-09-25
4227     14                            2016-09-18
4228     15                            2016-09-11
4229     16                            2016-09-04
4230     17                            2016-08-28
4231     18                            2016-08-21
4232     19                            2016-08-14
4233     20                            2016-08-07
4234     21                            2016-07-31
4235     22                            2016-07-24
4236     23                            2016-07-17
4237     24                            2016-07-10
4238     25                            2016-07-03
4239     26                            2016-06-26
4240     27                            2016-06-19
4241     28                            2016-06-12
4242     29                            2016-06-05
4243     30                            2016-05-29
4244     31                            2016-05-22
4245     32                            2016-05-15
4246     33                            2016-05-08
4247     34                            2016-05-01
4248     35                            2016-04-24
4249     36                            2016-04-17
4250     37                            2016-04-10
4251     38                            2016-04-03
4252     39                            2016-03-27
4253     40                            2016-03-20
4254     41                            2016-03-13
4255     42                            2016-03-06
4256     43                            2016-02-28
4257     44                            2016-02-21
4258     45                            2016-02-14
4259     46                            2016-02-07
4260     47                            2016-01-31
4261     48                            2016-01-24
4262     49                            2016-01-17
4263     50                            2016-01-10
4264     51                            2016-01-03
4265      0                            2016-12-25
4266      1                            2016-12-18
4267      2                            2016-12-11
4268      3                            2016-12-04
4269      4                            2016-11-27
4270      5                            2016-11-20
4271      6                            2016-11-13
4272      7                            2016-11-06
4273      8                            2016-10-30
4274      9                            2016-10-23
4275     10                            2016-10-16
4276     11                            2016-10-09
4277     12                            2016-10-02
4278     13                            2016-09-25
4279     14                            2016-09-18
4280     15                            2016-09-11
4281     16                            2016-09-04
4282     17                            2016-08-28
4283     18                            2016-08-21
4284     19                            2016-08-14
4285     20                            2016-08-07
4286     21                            2016-07-31
4287     22                            2016-07-24
4288     23                            2016-07-17
4289     24                            2016-07-10
4290     25                            2016-07-03
4291     26                            2016-06-26
4292     27                            2016-06-19
4293     28                            2016-06-12
4294     29                            2016-06-05
4295     30                            2016-05-29
4296     31                            2016-05-22
4297     32                            2016-05-15
4298     33                            2016-05-08
4299     34                            2016-05-01
4300     35                            2016-04-24
4301     36                            2016-04-17
4302     37                            2016-04-10
4303     38                            2016-04-03
4304     39                            2016-03-27
4305     40                            2016-03-20
4306     41                            2016-03-13
4307     42                            2016-03-06
4308     43                            2016-02-28
4309     44                            2016-02-21
4310     45                            2016-02-14
4311     46                            2016-02-07
4312     47                            2016-01-31
4313     48                            2016-01-24
4314     49                            2016-01-17
4315     50                            2016-01-10
4316     51                            2016-01-03
4317      0                            2016-12-25
4318      1                            2016-12-18
4319      2                            2016-12-11
4320      3                            2016-12-04
4321      4                            2016-11-27
4322      5                            2016-11-20
4323      6                            2016-11-13
4324      7                            2016-11-06
4325      8                            2016-10-30
4326      9                            2016-10-23
4327     10                            2016-10-16
4328     11                            2016-10-09
4329     12                            2016-10-02
4330     13                            2016-09-25
4331     14                            2016-09-18
4332     15                            2016-09-11
4333     16                            2016-09-04
4334     17                            2016-08-28
4335     18                            2016-08-21
4336     19                            2016-08-14
4337     20                            2016-08-07
4338     21                            2016-07-31
4339     22                            2016-07-24
4340     23                            2016-07-17
4341     24                            2016-07-10
4342     25                            2016-07-03
4343     26                            2016-06-26
4344     27                            2016-06-19
4345     28                            2016-06-12
4346     29                            2016-06-05
4347     30                            2016-05-29
4348     31                            2016-05-22
4349     32                            2016-05-15
4350     33                            2016-05-08
4351     34                            2016-05-01
4352     35                            2016-04-24
4353     36                            2016-04-17
4354     37                            2016-04-10
4355     38                            2016-04-03
4356     39                            2016-03-27
4357     40                            2016-03-20
4358     41                            2016-03-13
4359     42                            2016-03-06
4360     43                            2016-02-28
4361     44                            2016-02-21
4362     45                            2016-02-14
4363     46                            2016-02-07
4364     47                            2016-01-31
4365     48                            2016-01-24
4366     49                            2016-01-17
4367     50                            2016-01-10
4368     51                            2016-01-03
4369      0                            2016-12-25
4370      1                            2016-12-18
4371      2                            2016-12-11
4372      3                            2016-12-04
4373      4                            2016-11-27
4374      5                            2016-11-20
4375      6                            2016-11-13
4376      7                            2016-11-06
4377      8                            2016-10-30
4378      9                            2016-10-23
4379     10                            2016-10-16
4380     11                            2016-10-09
4381     12                            2016-10-02
4382     13                            2016-09-25
4383     14                            2016-09-18
4384     15                            2016-09-11
4385     16                            2016-09-04
4386     17                            2016-08-28
4387     18                            2016-08-21
4388     19                            2016-08-14
4389     20                            2016-08-07
4390     21                            2016-07-31
4391     22                            2016-07-24
4392     23                            2016-07-17
4393     24                            2016-07-10
4394     25                            2016-07-03
4395     26                            2016-06-26
4396     27                            2016-06-19
4397     28                            2016-06-12
4398     29                            2016-06-05
4399     30                            2016-05-29
4400     31                            2016-05-22
4401     32                            2016-05-15
4402     33                            2016-05-08
4403     34                            2016-05-01
4404     35                            2016-04-24
4405     36                            2016-04-17
4406     37                            2016-04-10
4407     38                            2016-04-03
4408     39                            2016-03-27
4409     40                            2016-03-20
4410     41                            2016-03-13
4411     42                            2016-03-06
4412     43                            2016-02-28
4413     44                            2016-02-21
4414     45                            2016-02-14
4415     46                            2016-02-07
4416     47                            2016-01-31
4417     48                            2016-01-24
4418     49                            2016-01-17
4419     50                            2016-01-10
4420     51                            2016-01-03
4421      0                            2016-12-25
4422      1                            2016-12-18
4423      2                            2016-12-11
4424      3                            2016-12-04
4425      4                            2016-11-27
4426      5                            2016-11-20
4427      6                            2016-11-13
4428      7                            2016-11-06
4429      8                            2016-10-30
4430      9                            2016-10-23
4431     10                            2016-10-16
4432     11                            2016-10-09
4433     12                            2016-10-02
4434     13                            2016-09-25
4435     14                            2016-09-18
4436     15                            2016-09-11
4437     16                            2016-09-04
4438     17                            2016-08-28
4439     18                            2016-08-21
4440     19                            2016-08-14
4441     20                            2016-08-07
4442     21                            2016-07-31
4443     22                            2016-07-24
4444     23                            2016-07-17
4445     24                            2016-07-10
4446     25                            2016-07-03
4447     26                            2016-06-26
4448     27                            2016-06-19
4449     28                            2016-06-12
4450     29                            2016-06-05
4451     30                            2016-05-29
4452     31                            2016-05-22
4453     32                            2016-05-15
4454     33                            2016-05-08
4455     34                            2016-05-01
4456     35                            2016-04-24
4457     36                            2016-04-17
4458     37                            2016-04-10
4459     38                            2016-04-03
4460     39                            2016-03-27
4461     40                            2016-03-20
4462     41                            2016-03-13
4463     42                            2016-03-06
4464     43                            2016-02-28
4465     44                            2016-02-21
4466     45                            2016-02-14
4467     46                            2016-02-07
4468     47                            2016-01-31
4469     48                            2016-01-24
4470     49                            2016-01-17
4471     50                            2016-01-10
4472     51                            2016-01-03
4473      0                            2016-12-25
4474      1                            2016-12-18
4475      2                            2016-12-11
4476      3                            2016-12-04
4477      4                            2016-11-27
4478      5                            2016-11-20
4479      6                            2016-11-13
4480      7                            2016-11-06
4481      8                            2016-10-30
4482      9                            2016-10-23
4483     10                            2016-10-16
4484     11                            2016-10-09
4485     12                            2016-10-02
4486     13                            2016-09-25
4487     14                            2016-09-18
4488     15                            2016-09-11
4489     16                            2016-09-04
4490     17                            2016-08-28
4491     18                            2016-08-21
4492     19                            2016-08-14
4493     20                            2016-08-07
4494     21                            2016-07-31
4495     22                            2016-07-24
4496     23                            2016-07-17
4497     24                            2016-07-10
4498     25                            2016-07-03
4499     26                            2016-06-26
4500     27                            2016-06-19
4501     28                            2016-06-12
4502     29                            2016-06-05
4503     30                            2016-05-29
4504     31                            2016-05-22
4505     32                            2016-05-15
4506     33                            2016-05-08
4507     34                            2016-05-01
4508     35                            2016-04-24
4509     36                            2016-04-17
4510     37                            2016-04-10
4511     38                            2016-04-03
4512     39                            2016-03-27
4513     40                            2016-03-20
4514     41                            2016-03-13
4515     42                            2016-03-06
4516     43                            2016-02-28
4517     44                            2016-02-21
4518     45                            2016-02-14
4519     46                            2016-02-07
4520     47                            2016-01-31
4521     48                            2016-01-24
4522     49                            2016-01-17
4523     50                            2016-01-10
4524     51                            2016-01-03
4525      0                            2016-12-25
4526      1                            2016-12-18
4527      2                            2016-12-11
4528      3                            2016-12-04
4529      4                            2016-11-27
4530      5                            2016-11-20
4531      6                            2016-11-13
4532      7                            2016-11-06
4533      8                            2016-10-30
4534      9                            2016-10-23
4535     10                            2016-10-16
4536     11                            2016-10-09
4537     12                            2016-10-02
4538     13                            2016-09-25
4539     14                            2016-09-18
4540     15                            2016-09-11
4541     16                            2016-09-04
4542     17                            2016-08-28
4543     18                            2016-08-21
4544     19                            2016-08-14
4545     20                            2016-08-07
4546     21                            2016-07-31
4547     22                            2016-07-24
4548     23                            2016-07-17
4549     24                            2016-07-10
4550     25                            2016-07-03
4551     26                            2016-06-26
4552     27                            2016-06-19
4553     28                            2016-06-12
4554     29                            2016-06-05
4555     30                            2016-05-29
4556     31                            2016-05-22
4557     32                            2016-05-15
4558     33                            2016-05-08
4559     34                            2016-05-01
4560     35                            2016-04-24
4561     36                            2016-04-17
4562     37                            2016-04-10
4563     38                            2016-04-03
4564     39                            2016-03-27
4565     40                            2016-03-20
4566     41                            2016-03-13
4567     42                            2016-03-06
4568     43                            2016-02-28
4569     44                            2016-02-21
4570     45                            2016-02-14
4571     46                            2016-02-07
4572     47                            2016-01-31
4573     48                            2016-01-24
4574     49                            2016-01-17
4575     50                            2016-01-10
4576     51                            2016-01-03
4577      0                            2016-12-25
4578      1                            2016-12-18
4579      2                            2016-12-11
4580      3                            2016-12-04
4581      4                            2016-11-27
4582      5                            2016-11-20
4583      6                            2016-11-13
4584      7                            2016-11-06
4585      8                            2016-10-30
4586      9                            2016-10-23
4587     10                            2016-10-16
4588     11                            2016-10-09
4589     12                            2016-10-02
4590     13                            2016-09-25
4591     14                            2016-09-18
4592     15                            2016-09-11
4593     16                            2016-09-04
4594     17                            2016-08-28
4595     18                            2016-08-21
4596     19                            2016-08-14
4597     20                            2016-08-07
4598     21                            2016-07-31
4599     22                            2016-07-24
4600     23                            2016-07-17
4601     24                            2016-07-10
4602     25                            2016-07-03
4603     26                            2016-06-26
4604     27                            2016-06-19
4605     28                            2016-06-12
4606     29                            2016-06-05
4607     30                            2016-05-29
4608     31                            2016-05-22
4609     32                            2016-05-15
4610     33                            2016-05-08
4611     34                            2016-05-01
4612     35                            2016-04-24
4613     36                            2016-04-17
4614     37                            2016-04-10
4615     38                            2016-04-03
4616     39                            2016-03-27
4617     40                            2016-03-20
4618     41                            2016-03-13
4619     42                            2016-03-06
4620     43                            2016-02-28
4621     44                            2016-02-21
4622     45                            2016-02-14
4623     46                            2016-02-07
4624     47                            2016-01-31
4625     48                            2016-01-24
4626     49                            2016-01-17
4627     50                            2016-01-10
4628     51                            2016-01-03
4629      0                            2016-12-25
4630      1                            2016-12-18
4631      2                            2016-12-11
4632      3                            2016-12-04
4633      4                            2016-11-27
4634      5                            2016-11-20
4635      6                            2016-11-13
4636      7                            2016-11-06
4637      8                            2016-10-30
4638      9                            2016-10-23
4639     10                            2016-10-16
4640     11                            2016-10-09
4641     12                            2016-10-02
4642     13                            2016-09-25
4643     14                            2016-09-18
4644     15                            2016-09-11
4645     16                            2016-09-04
4646     17                            2016-08-28
4647     18                            2016-08-21
4648     19                            2016-08-14
4649     20                            2016-08-07
4650     21                            2016-07-31
4651     22                            2016-07-24
4652     23                            2016-07-17
4653     24                            2016-07-10
4654     25                            2016-07-03
4655     26                            2016-06-26
4656     27                            2016-06-19
4657     28                            2016-06-12
4658     29                            2016-06-05
4659     30                            2016-05-29
4660     31                            2016-05-22
4661     32                            2016-05-15
4662     33                            2016-05-08
4663     34                            2016-05-01
4664     35                            2016-04-24
4665     36                            2016-04-17
4666     37                            2016-04-10
4667     38                            2016-04-03
4668     39                            2016-03-27
4669     40                            2016-03-20
4670     41                            2016-03-13
4671     42                            2016-03-06
4672     43                            2016-02-28
4673     44                            2016-02-21
4674     45                            2016-02-14
4675     46                            2016-02-07
4676     47                            2016-01-31
4677     48                            2016-01-24
4678     49                            2016-01-17
4679     50                            2016-01-10
4680     51                            2016-01-03
4681      0                            2016-12-25
4682      1                            2016-12-18
4683      2                            2016-12-11
4684      3                            2016-12-04
4685      4                            2016-11-27
4686      5                            2016-11-20
4687      6                            2016-11-13
4688      7                            2016-11-06
4689      8                            2016-10-30
4690      9                            2016-10-23
4691     10                            2016-10-16
4692     11                            2016-10-09
4693     12                            2016-10-02
4694     13                            2016-09-25
4695     14                            2016-09-18
4696     15                            2016-09-11
4697     16                            2016-09-04
4698     17                            2016-08-28
4699     18                            2016-08-21
4700     19                            2016-08-14
4701     20                            2016-08-07
4702     21                            2016-07-31
4703     22                            2016-07-24
4704     23                            2016-07-17
4705     24                            2016-07-10
4706     25                            2016-07-03
4707     26                            2016-06-26
4708     27                            2016-06-19
4709     28                            2016-06-12
4710     29                            2016-06-05
4711     30                            2016-05-29
4712     31                            2016-05-22
4713     32                            2016-05-15
4714     33                            2016-05-08
4715     34                            2016-05-01
4716     35                            2016-04-24
4717     36                            2016-04-17
4718     37                            2016-04-10
4719     38                            2016-04-03
4720     39                            2016-03-27
4721     40                            2016-03-20
4722     41                            2016-03-13
4723     42                            2016-03-06
4724     43                            2016-02-28
4725     44                            2016-02-21
4726     45                            2016-02-14
4727     46                            2016-02-07
4728     47                            2016-01-31
4729     48                            2016-01-24
4730     49                            2016-01-17
4731     50                            2016-01-10
4732     51                            2016-01-03
4733      0                            2016-12-25
4734      1                            2016-12-18
4735      2                            2016-12-11
4736      3                            2016-12-04
4737      4                            2016-11-27
4738      5                            2016-11-20
4739      6                            2016-11-13
4740      7                            2016-11-06
4741      8                            2016-10-30
4742      9                            2016-10-23
4743     10                            2016-10-16
4744     11                            2016-10-09
4745     12                            2016-10-02
4746     13                            2016-09-25
4747     14                            2016-09-18
4748     15                            2016-09-11
4749     16                            2016-09-04
4750     17                            2016-08-28
4751     18                            2016-08-21
4752     19                            2016-08-14
4753     20                            2016-08-07
4754     21                            2016-07-31
4755     22                            2016-07-24
4756     23                            2016-07-17
4757     24                            2016-07-10
4758     25                            2016-07-03
4759     26                            2016-06-26
4760     27                            2016-06-19
4761     28                            2016-06-12
4762     29                            2016-06-05
4763     30                            2016-05-29
4764     31                            2016-05-22
4765     32                            2016-05-15
4766     33                            2016-05-08
4767     34                            2016-05-01
4768     35                            2016-04-24
4769     36                            2016-04-17
4770     37                            2016-04-10
4771     38                            2016-04-03
4772     39                            2016-03-27
4773     40                            2016-03-20
4774     41                            2016-03-13
4775     42                            2016-03-06
4776     43                            2016-02-28
4777     44                            2016-02-21
4778     45                            2016-02-14
4779     46                            2016-02-07
4780     47                            2016-01-31
4781     48                            2016-01-24
4782     49                            2016-01-17
4783     50                            2016-01-10
4784     51                            2016-01-03
4785      0                            2016-12-25
4786      1                            2016-12-18
4787      2                            2016-12-11
4788      3                            2016-12-04
4789      4                            2016-11-27
4790      5                            2016-11-20
4791      6                            2016-11-13
4792      7                            2016-11-06
4793      8                            2016-10-30
4794      9                            2016-10-23
4795     10                            2016-10-16
4796     11                            2016-10-09
4797     12                            2016-10-02
4798     13                            2016-09-25
4799     14                            2016-09-18
4800     15                            2016-09-11
4801     16                            2016-09-04
4802     17                            2016-08-28
4803     18                            2016-08-21
4804     19                            2016-08-14
4805     20                            2016-08-07
4806     21                            2016-07-31
4807     22                            2016-07-24
4808     23                            2016-07-17
4809     24                            2016-07-10
4810     25                            2016-07-03
4811     26                            2016-06-26
4812     27                            2016-06-19
4813     28                            2016-06-12
4814     29                            2016-06-05
4815     30                            2016-05-29
4816     31                            2016-05-22
4817     32                            2016-05-15
4818     33                            2016-05-08
4819     34                            2016-05-01
4820     35                            2016-04-24
4821     36                            2016-04-17
4822     37                            2016-04-10
4823     38                            2016-04-03
4824     39                            2016-03-27
4825     40                            2016-03-20
4826     41                            2016-03-13
4827     42                            2016-03-06
4828     43                            2016-02-28
4829     44                            2016-02-21
4830     45                            2016-02-14
4831     46                            2016-02-07
4832     47                            2016-01-31
4833     48                            2016-01-24
4834     49                            2016-01-17
4835     50                            2016-01-10
4836     51                            2016-01-03
4837      0                            2016-12-25
4838      1                            2016-12-18
4839      2                            2016-12-11
4840      3                            2016-12-04
4841      4                            2016-11-27
4842      5                            2016-11-20
4843      6                            2016-11-13
4844      7                            2016-11-06
4845      8                            2016-10-30
4846      9                            2016-10-23
4847     10                            2016-10-16
4848     11                            2016-10-09
4849     12                            2016-10-02
4850     13                            2016-09-25
4851     14                            2016-09-18
4852     15                            2016-09-11
4853     16                            2016-09-04
4854     17                            2016-08-28
4855     18                            2016-08-21
4856     19                            2016-08-14
4857     20                            2016-08-07
4858     21                            2016-07-31
4859     22                            2016-07-24
4860     23                            2016-07-17
4861     24                            2016-07-10
4862     25                            2016-07-03
4863     26                            2016-06-26
4864     27                            2016-06-19
4865     28                            2016-06-12
4866     29                            2016-06-05
4867     30                            2016-05-29
4868     31                            2016-05-22
4869     32                            2016-05-15
4870     33                            2016-05-08
4871     34                            2016-05-01
4872     35                            2016-04-24
4873     36                            2016-04-17
4874     37                            2016-04-10
4875     38                            2016-04-03
4876     39                            2016-03-27
4877     40                            2016-03-20
4878     41                            2016-03-13
4879     42                            2016-03-06
4880     43                            2016-02-28
4881     44                            2016-02-21
4882     45                            2016-02-14
4883     46                            2016-02-07
4884     47                            2016-01-31
4885     48                            2016-01-24
4886     49                            2016-01-17
4887     50                            2016-01-10
4888     51                            2016-01-03
4889      0                            2016-12-25
4890      1                            2016-12-18
4891      2                            2016-12-11
4892      3                            2016-12-04
4893      4                            2016-11-27
4894      5                            2016-11-20
4895      6                            2016-11-13
4896      7                            2016-11-06
4897      8                            2016-10-30
4898      9                            2016-10-23
4899     10                            2016-10-16
4900     11                            2016-10-09
4901     12                            2016-10-02
4902     13                            2016-09-25
4903     14                            2016-09-18
4904     15                            2016-09-11
4905     16                            2016-09-04
4906     17                            2016-08-28
4907     18                            2016-08-21
4908     19                            2016-08-14
4909     20                            2016-08-07
4910     21                            2016-07-31
4911     22                            2016-07-24
4912     23                            2016-07-17
4913     24                            2016-07-10
4914     25                            2016-07-03
4915     26                            2016-06-26
4916     27                            2016-06-19
4917     28                            2016-06-12
4918     29                            2016-06-05
4919     30                            2016-05-29
4920     31                            2016-05-22
4921     32                            2016-05-15
4922     33                            2016-05-08
4923     34                            2016-05-01
4924     35                            2016-04-24
4925     36                            2016-04-17
4926     37                            2016-04-10
4927     38                            2016-04-03
4928     39                            2016-03-27
4929     40                            2016-03-20
4930     41                            2016-03-13
4931     42                            2016-03-06
4932     43                            2016-02-28
4933     44                            2016-02-21
4934     45                            2016-02-14
4935     46                            2016-02-07
4936     47                            2016-01-31
4937     48                            2016-01-24
4938     49                            2016-01-17
4939     50                            2016-01-10
4940     51                            2016-01-03
4941      0                            2016-12-25
4942      1                            2016-12-18
4943      2                            2016-12-11
4944      3                            2016-12-04
4945      4                            2016-11-27
4946      5                            2016-11-20
4947      6                            2016-11-13
4948      7                            2016-11-06
4949      8                            2016-10-30
4950      9                            2016-10-23
4951     10                            2016-10-16
4952     11                            2016-10-09
4953     12                            2016-10-02
4954     13                            2016-09-25
4955     14                            2016-09-18
4956     15                            2016-09-11
4957     16                            2016-09-04
4958     17                            2016-08-28
4959     18                            2016-08-21
4960     19                            2016-08-14
4961     20                            2016-08-07
4962     21                            2016-07-31
4963     22                            2016-07-24
4964     23                            2016-07-17
4965     24                            2016-07-10
4966     25                            2016-07-03
4967     26                            2016-06-26
4968     27                            2016-06-19
4969     28                            2016-06-12
4970     29                            2016-06-05
4971     30                            2016-05-29
4972     31                            2016-05-22
4973     32                            2016-05-15
4974     33                            2016-05-08
4975     34                            2016-05-01
4976     35                            2016-04-24
4977     36                            2016-04-17
4978     37                            2016-04-10
4979     38                            2016-04-03
4980     39                            2016-03-27
4981     40                            2016-03-20
4982     41                            2016-03-13
4983     42                            2016-03-06
4984     43                            2016-02-28
4985     44                            2016-02-21
4986     45                            2016-02-14
4987     46                            2016-02-07
4988     47                            2016-01-31
4989     48                            2016-01-24
4990     49                            2016-01-17
4991     50                            2016-01-10
4992     51                            2016-01-03
4993      0                            2016-12-25
4994      1                            2016-12-18
4995      2                            2016-12-11
4996      3                            2016-12-04
4997      4                            2016-11-27
4998      5                            2016-11-20
4999      6                            2016-11-13
5000      7                            2016-11-06
5001      8                            2016-10-30
5002      9                            2016-10-23
5003     10                            2016-10-16
5004     11                            2016-10-09
5005     12                            2016-10-02
5006     13                            2016-09-25
5007     14                            2016-09-18
5008     15                            2016-09-11
5009     16                            2016-09-04
5010     17                            2016-08-28
5011     18                            2016-08-21
5012     19                            2016-08-14
5013     20                            2016-08-07
5014     21                            2016-07-31
5015     22                            2016-07-24
5016     23                            2016-07-17
5017     24                            2016-07-10
5018     25                            2016-07-03
5019     26                            2016-06-26
5020     27                            2016-06-19
5021     28                            2016-06-12
5022     29                            2016-06-05
5023     30                            2016-05-29
5024     31                            2016-05-22
5025     32                            2016-05-15
5026     33                            2016-05-08
5027     34                            2016-05-01
5028     35                            2016-04-24
5029     36                            2016-04-17
5030     37                            2016-04-10
5031     38                            2016-04-03
5032     39                            2016-03-27
5033     40                            2016-03-20
5034     41                            2016-03-13
5035     42                            2016-03-06
5036     43                            2016-02-28
5037     44                            2016-02-21
5038     45                            2016-02-14
5039     46                            2016-02-07
5040     47                            2016-01-31
5041     48                            2016-01-24
5042     49                            2016-01-17
5043     50                            2016-01-10
5044     51                            2016-01-03
5045      0                            2016-12-25
5046      1                            2016-12-18
5047      2                            2016-12-11
5048      3                            2016-12-04
5049      4                            2016-11-27
5050      5                            2016-11-20
5051      6                            2016-11-13
5052      7                            2016-11-06
5053      8                            2016-10-30
5054      9                            2016-10-23
5055     10                            2016-10-16
5056     11                            2016-10-09
5057     12                            2016-10-02
5058     13                            2016-09-25
5059     14                            2016-09-18
5060     15                            2016-09-11
5061     16                            2016-09-04
5062     17                            2016-08-28
5063     18                            2016-08-21
5064     19                            2016-08-14
5065     20                            2016-08-07
5066     21                            2016-07-31
5067     22                            2016-07-24
5068     23                            2016-07-17
5069     24                            2016-07-10
5070     25                            2016-07-03
5071     26                            2016-06-26
5072     27                            2016-06-19
5073     28                            2016-06-12
5074     29                            2016-06-05
5075     30                            2016-05-29
5076     31                            2016-05-22
5077     32                            2016-05-15
5078     33                            2016-05-08
5079     34                            2016-05-01
5080     35                            2016-04-24
5081     36                            2016-04-17
5082     37                            2016-04-10
5083     38                            2016-04-03
5084     39                            2016-03-27
5085     40                            2016-03-20
5086     41                            2016-03-13
5087     42                            2016-03-06
5088     43                            2016-02-28
5089     44                            2016-02-21
5090     45                            2016-02-14
5091     46                            2016-02-07
5092     47                            2016-01-31
5093     48                            2016-01-24
5094     49                            2016-01-17
5095     50                            2016-01-10
5096     51                            2016-01-03
5097      0                            2016-12-25
5098      1                            2016-12-18
5099      2                            2016-12-11
5100      3                            2016-12-04
5101      4                            2016-11-27
5102      5                            2016-11-20
5103      6                            2016-11-13
5104      7                            2016-11-06
5105      8                            2016-10-30
5106      9                            2016-10-23
5107     10                            2016-10-16
5108     11                            2016-10-09
5109     12                            2016-10-02
5110     13                            2016-09-25
5111     14                            2016-09-18
5112     15                            2016-09-11
5113     16                            2016-09-04
5114     17                            2016-08-28
5115     18                            2016-08-21
5116     19                            2016-08-14
5117     20                            2016-08-07
5118     21                            2016-07-31
5119     22                            2016-07-24
5120     23                            2016-07-17
5121     24                            2016-07-10
5122     25                            2016-07-03
5123     26                            2016-06-26
5124     27                            2016-06-19
5125     28                            2016-06-12
5126     29                            2016-06-05
5127     30                            2016-05-29
5128     31                            2016-05-22
5129     32                            2016-05-15
5130     33                            2016-05-08
5131     34                            2016-05-01
5132     35                            2016-04-24
5133     36                            2016-04-17
5134     37                            2016-04-10
5135     38                            2016-04-03
5136     39                            2016-03-27
5137     40                            2016-03-20
5138     41                            2016-03-13
5139     42                            2016-03-06
5140     43                            2016-02-28
5141     44                            2016-02-21
5142     45                            2016-02-14
5143     46                            2016-02-07
5144     47                            2016-01-31
5145     48                            2016-01-24
5146     49                            2016-01-17
5147     50                            2016-01-10
5148     51                            2016-01-03
5149      0                            2016-12-25
5150      1                            2016-12-18
5151      2                            2016-12-11
5152      3                            2016-12-04
5153      4                            2016-11-27
5154      5                            2016-11-20
5155      6                            2016-11-13
5156      7                            2016-11-06
5157      8                            2016-10-30
5158      9                            2016-10-23
5159     10                            2016-10-16
5160     11                            2016-10-09
5161     12                            2016-10-02
5162     13                            2016-09-25
5163     14                            2016-09-18
5164     15                            2016-09-11
5165     16                            2016-09-04
5166     17                            2016-08-28
5167     18                            2016-08-21
5168     19                            2016-08-14
5169     20                            2016-08-07
5170     21                            2016-07-31
5171     22                            2016-07-24
5172     23                            2016-07-17
5173     24                            2016-07-10
5174     25                            2016-07-03
5175     26                            2016-06-26
5176     27                            2016-06-19
5177     28                            2016-06-12
5178     29                            2016-06-05
5179     30                            2016-05-29
5180     31                            2016-05-22
5181     32                            2016-05-15
5182     33                            2016-05-08
5183     34                            2016-05-01
5184     35                            2016-04-24
5185     36                            2016-04-17
5186     37                            2016-04-10
5187     38                            2016-04-03
5188     39                            2016-03-27
5189     40                            2016-03-20
5190     41                            2016-03-13
5191     42                            2016-03-06
5192     43                            2016-02-28
5193     44                            2016-02-21
5194     45                            2016-02-14
5195     46                            2016-02-07
5196     47                            2016-01-31
5197     48                            2016-01-24
5198     49                            2016-01-17
5199     50                            2016-01-10
5200     51                            2016-01-03
5201      0                            2016-12-25
5202      1                            2016-12-18
5203      2                            2016-12-11
5204      3                            2016-12-04
5205      4                            2016-11-27
5206      5                            2016-11-20
5207      6                            2016-11-13
5208      7                            2016-11-06
5209      8                            2016-10-30
5210      9                            2016-10-23
5211     10                            2016-10-16
5212     11                            2016-10-09
5213     12                            2016-10-02
5214     13                            2016-09-25
5215     14                            2016-09-18
5216     15                            2016-09-11
5217     16                            2016-09-04
5218     17                            2016-08-28
5219     18                            2016-08-21
5220     19                            2016-08-14
5221     20                            2016-08-07
5222     21                            2016-07-31
5223     22                            2016-07-24
5224     23                            2016-07-17
5225     24                            2016-07-10
5226     25                            2016-07-03
5227     26                            2016-06-26
5228     27                            2016-06-19
5229     28                            2016-06-12
5230     29                            2016-06-05
5231     30                            2016-05-29
5232     31                            2016-05-22
5233     32                            2016-05-15
5234     33                            2016-05-08
5235     34                            2016-05-01
5236     35                            2016-04-24
5237     36                            2016-04-17
5238     37                            2016-04-10
5239     38                            2016-04-03
5240     39                            2016-03-27
5241     40                            2016-03-20
5242     41                            2016-03-13
5243     42                            2016-03-06
5244     43                            2016-02-28
5245     44                            2016-02-21
5246     45                            2016-02-14
5247     46                            2016-02-07
5248     47                            2016-01-31
5249     48                            2016-01-24
5250     49                            2016-01-17
5251     50                            2016-01-10
5252     51                            2016-01-03
5253      0                            2016-12-25
5254      1                            2016-12-18
5255      2                            2016-12-11
5256      3                            2016-12-04
5257      4                            2016-11-27
5258      5                            2016-11-20
5259      6                            2016-11-13
5260      7                            2016-11-06
5261      8                            2016-10-30
5262      9                            2016-10-23
5263     10                            2016-10-16
5264     11                            2016-10-09
5265     12                            2016-10-02
5266     13                            2016-09-25
5267     14                            2016-09-18
5268     15                            2016-09-11
5269     16                            2016-09-04
5270     17                            2016-08-28
5271     18                            2016-08-21
5272     19                            2016-08-14
5273     20                            2016-08-07
5274     21                            2016-07-31
5275     22                            2016-07-24
5276     23                            2016-07-17
5277     24                            2016-07-10
5278     25                            2016-07-03
5279     26                            2016-06-26
5280     27                            2016-06-19
5281     28                            2016-06-12
5282     29                            2016-06-05
5283     30                            2016-05-29
5284     31                            2016-05-22
5285     32                            2016-05-15
5286     33                            2016-05-08
5287     34                            2016-05-01
5288     35                            2016-04-24
5289     36                            2016-04-17
5290     37                            2016-04-10
5291     38                            2016-04-03
5292     39                            2016-03-27
5293     40                            2016-03-20
5294     41                            2016-03-13
5295     42                            2016-03-06
5296     43                            2016-02-28
5297     44                            2016-02-21
5298     45                            2016-02-14
5299     46                            2016-02-07
5300     47                            2016-01-31
5301     48                            2016-01-24
5302     49                            2016-01-17
5303     50                            2016-01-10
5304     51                            2016-01-03
5305      0                            2016-12-25
5306      1                            2016-12-18
5307      2                            2016-12-11
5308      3                            2016-12-04
5309      4                            2016-11-27
5310      5                            2016-11-20
5311      6                            2016-11-13
5312      7                            2016-11-06
5313      8                            2016-10-30
5314      9                            2016-10-23
5315     10                            2016-10-16
5316     11                            2016-10-09
5317     12                            2016-10-02
5318     13                            2016-09-25
5319     14                            2016-09-18
5320     15                            2016-09-11
5321     16                            2016-09-04
5322     17                            2016-08-28
5323     18                            2016-08-21
5324     19                            2016-08-14
5325     20                            2016-08-07
5326     21                            2016-07-31
5327     22                            2016-07-24
5328     23                            2016-07-17
5329     24                            2016-07-10
5330     25                            2016-07-03
5331     26                            2016-06-26
5332     27                            2016-06-19
5333     28                            2016-06-12
5334     29                            2016-06-05
5335     30                            2016-05-29
5336     31                            2016-05-22
5337     32                            2016-05-15
5338     33                            2016-05-08
5339     34                            2016-05-01
5340     35                            2016-04-24
5341     36                            2016-04-17
5342     37                            2016-04-10
5343     38                            2016-04-03
5344     39                            2016-03-27
5345     40                            2016-03-20
5346     41                            2016-03-13
5347     42                            2016-03-06
5348     43                            2016-02-28
5349     44                            2016-02-21
5350     45                            2016-02-14
5351     46                            2016-02-07
5352     47                            2016-01-31
5353     48                            2016-01-24
5354     49                            2016-01-17
5355     50                            2016-01-10
5356     51                            2016-01-03
5357      0                            2016-12-25
5358      1                            2016-12-18
5359      2                            2016-12-11
5360      3                            2016-12-04
5361      4                            2016-11-27
5362      5                            2016-11-20
5363      6                            2016-11-13
5364      7                            2016-11-06
5365      8                            2016-10-30
5366      9                            2016-10-23
5367     10                            2016-10-16
5368     11                            2016-10-09
5369     12                            2016-10-02
5370     13                            2016-09-25
5371     14                            2016-09-18
5372     15                            2016-09-11
5373     16                            2016-09-04
5374     17                            2016-08-28
5375     18                            2016-08-21
5376     19                            2016-08-14
5377     20                            2016-08-07
5378     21                            2016-07-31
5379     22                            2016-07-24
5380     23                            2016-07-17
5381     24                            2016-07-10
5382     25                            2016-07-03
5383     26                            2016-06-26
5384     27                            2016-06-19
5385     28                            2016-06-12
5386     29                            2016-06-05
5387     30                            2016-05-29
5388     31                            2016-05-22
5389     32                            2016-05-15
5390     33                            2016-05-08
5391     34                            2016-05-01
5392     35                            2016-04-24
5393     36                            2016-04-17
5394     37                            2016-04-10
5395     38                            2016-04-03
5396     39                            2016-03-27
5397     40                            2016-03-20
5398     41                            2016-03-13
5399     42                            2016-03-06
5400     43                            2016-02-28
5401     44                            2016-02-21
5402     45                            2016-02-14
5403     46                            2016-02-07
5404     47                            2016-01-31
5405     48                            2016-01-24
5406     49                            2016-01-17
5407     50                            2016-01-10
5408     51                            2016-01-03
5409      0                            2016-12-25
5410      1                            2016-12-18
5411      2                            2016-12-11
5412      3                            2016-12-04
5413      4                            2016-11-27
5414      5                            2016-11-20
5415      6                            2016-11-13
5416      7                            2016-11-06
5417      8                            2016-10-30
5418      9                            2016-10-23
5419     10                            2016-10-16
5420     11                            2016-10-09
5421     12                            2016-10-02
5422     13                            2016-09-25
5423     14                            2016-09-18
5424     15                            2016-09-11
5425     16                            2016-09-04
5426     17                            2016-08-28
5427     18                            2016-08-21
5428     19                            2016-08-14
5429     20                            2016-08-07
5430     21                            2016-07-31
5431     22                            2016-07-24
5432     23                            2016-07-17
5433     24                            2016-07-10
5434     25                            2016-07-03
5435     26                            2016-06-26
5436     27                            2016-06-19
5437     28                            2016-06-12
5438     29                            2016-06-05
5439     30                            2016-05-29
5440     31                            2016-05-22
5441     32                            2016-05-15
5442     33                            2016-05-08
5443     34                            2016-05-01
5444     35                            2016-04-24
5445     36                            2016-04-17
5446     37                            2016-04-10
5447     38                            2016-04-03
5448     39                            2016-03-27
5449     40                            2016-03-20
5450     41                            2016-03-13
5451     42                            2016-03-06
5452     43                            2016-02-28
5453     44                            2016-02-21
5454     45                            2016-02-14
5455     46                            2016-02-07
5456     47                            2016-01-31
5457     48                            2016-01-24
5458     49                            2016-01-17
5459     50                            2016-01-10
5460     51                            2016-01-03
5461      0                            2016-12-25
5462      1                            2016-12-18
5463      2                            2016-12-11
5464      3                            2016-12-04
5465      4                            2016-11-27
5466      5                            2016-11-20
5467      6                            2016-11-13
5468      7                            2016-11-06
5469      8                            2016-10-30
5470      9                            2016-10-23
5471     10                            2016-10-16
5472     11                            2016-10-09
5473     12                            2016-10-02
5474     13                            2016-09-25
5475     14                            2016-09-18
5476     15                            2016-09-11
5477     16                            2016-09-04
5478     17                            2016-08-28
5479     18                            2016-08-21
5480     19                            2016-08-14
5481     20                            2016-08-07
5482     21                            2016-07-31
5483     22                            2016-07-24
5484     23                            2016-07-17
5485     24                            2016-07-10
5486     25                            2016-07-03
5487     26                            2016-06-26
5488     27                            2016-06-19
5489     28                            2016-06-12
5490     29                            2016-06-05
5491     30                            2016-05-29
5492     31                            2016-05-22
5493     32                            2016-05-15
5494     33                            2016-05-08
5495     34                            2016-05-01
5496     35                            2016-04-24
5497     36                            2016-04-17
5498     37                            2016-04-10
5499     38                            2016-04-03
5500     39                            2016-03-27
5501     40                            2016-03-20
5502     41                            2016-03-13
5503     42                            2016-03-06
5504     43                            2016-02-28
5505     44                            2016-02-21
5506     45                            2016-02-14
5507     46                            2016-02-07
5508     47                            2016-01-31
5509     48                            2016-01-24
5510     49                            2016-01-17
5511     50                            2016-01-10
5512     51                            2016-01-03
5513      0                            2017-12-31
5514      1                            2017-12-24
5515      2                            2017-12-17
5516      3                            2017-12-10
5517      4                            2017-12-03
5518      5                            2017-11-26
5519      6                            2017-11-19
5520      7                            2017-11-12
5521      8                            2017-11-05
5522      9                            2017-10-29
5523     10                            2017-10-22
5524     11                            2017-10-15
5525     12                            2017-10-08
5526     13                            2017-10-01
5527     14                            2017-09-24
5528     15                            2017-09-17
5529     16                            2017-09-10
5530     17                            2017-09-03
5531     18                            2017-08-27
5532     19                            2017-08-20
5533     20                            2017-08-13
5534     21                            2017-08-06
5535     22                            2017-07-30
5536     23                            2017-07-23
5537     24                            2017-07-16
5538     25                            2017-07-09
5539     26                            2017-07-02
5540     27                            2017-06-25
5541     28                            2017-06-18
5542     29                            2017-06-11
5543     30                            2017-06-04
5544     31                            2017-05-28
5545     32                            2017-05-21
5546     33                            2017-05-14
5547     34                            2017-05-07
5548     35                            2017-04-30
5549     36                            2017-04-23
5550     37                            2017-04-16
5551     38                            2017-04-09
5552     39                            2017-04-02
5553     40                            2017-03-26
5554     41                            2017-03-19
5555     42                            2017-03-12
5556     43                            2017-03-05
5557     44                            2017-02-26
5558     45                            2017-02-19
5559     46                            2017-02-12
5560     47                            2017-02-05
5561     48                            2017-01-29
5562     49                            2017-01-22
5563     50                            2017-01-15
5564     51                            2017-01-08
5565     52                            2017-01-01
5566      0                            2017-12-31
5567      1                            2017-12-24
5568      2                            2017-12-17
5569      3                            2017-12-10
5570      4                            2017-12-03
5571      5                            2017-11-26
5572      6                            2017-11-19
5573      7                            2017-11-12
5574      8                            2017-11-05
5575      9                            2017-10-29
5576     10                            2017-10-22
5577     11                            2017-10-15
5578     12                            2017-10-08
5579     13                            2017-10-01
5580     14                            2017-09-24
5581     15                            2017-09-17
5582     16                            2017-09-10
5583     17                            2017-09-03
5584     18                            2017-08-27
5585     19                            2017-08-20
5586     20                            2017-08-13
5587     21                            2017-08-06
5588     22                            2017-07-30
5589     23                            2017-07-23
5590     24                            2017-07-16
5591     25                            2017-07-09
5592     26                            2017-07-02
5593     27                            2017-06-25
5594     28                            2017-06-18
5595     29                            2017-06-11
5596     30                            2017-06-04
5597     31                            2017-05-28
5598     32                            2017-05-21
5599     33                            2017-05-14
5600     34                            2017-05-07
5601     35                            2017-04-30
5602     36                            2017-04-23
5603     37                            2017-04-16
5604     38                            2017-04-09
5605     39                            2017-04-02
5606     40                            2017-03-26
5607     41                            2017-03-19
5608     42                            2017-03-12
5609     43                            2017-03-05
5610     44                            2017-02-26
5611     45                            2017-02-19
5612     46                            2017-02-12
5613     47                            2017-02-05
5614     48                            2017-01-29
5615     49                            2017-01-22
5616     50                            2017-01-15
5617     51                            2017-01-08
5618     52                            2017-01-01
5619      0                            2017-12-31
5620      1                            2017-12-24
5621      2                            2017-12-17
5622      3                            2017-12-10
5623      4                            2017-12-03
5624      5                            2017-11-26
5625      6                            2017-11-19
5626      7                            2017-11-12
5627      8                            2017-11-05
5628      9                            2017-10-29
5629     10                            2017-10-22
5630     11                            2017-10-15
5631     12                            2017-10-08
5632     13                            2017-10-01
5633     14                            2017-09-24
5634     15                            2017-09-17
5635     16                            2017-09-10
5636     17                            2017-09-03
5637     18                            2017-08-27
5638     19                            2017-08-20
5639     20                            2017-08-13
5640     21                            2017-08-06
5641     22                            2017-07-30
5642     23                            2017-07-23
5643     24                            2017-07-16
5644     25                            2017-07-09
5645     26                            2017-07-02
5646     27                            2017-06-25
5647     28                            2017-06-18
5648     29                            2017-06-11
5649     30                            2017-06-04
5650     31                            2017-05-28
5651     32                            2017-05-21
5652     33                            2017-05-14
5653     34                            2017-05-07
5654     35                            2017-04-30
5655     36                            2017-04-23
5656     37                            2017-04-16
5657     38                            2017-04-09
5658     39                            2017-04-02
5659     40                            2017-03-26
5660     41                            2017-03-19
5661     42                            2017-03-12
5662     43                            2017-03-05
5663     44                            2017-02-26
5664     45                            2017-02-19
5665     46                            2017-02-12
5666     47                            2017-02-05
5667     48                            2017-01-29
5668     49                            2017-01-22
5669     50                            2017-01-15
5670     51                            2017-01-08
5671     52                            2017-01-01
5672      0                            2017-12-31
5673      1                            2017-12-24
5674      2                            2017-12-17
5675      3                            2017-12-10
5676      4                            2017-12-03
5677      5                            2017-11-26
5678      6                            2017-11-19
5679      7                            2017-11-12
5680      8                            2017-11-05
5681      9                            2017-10-29
5682     10                            2017-10-22
5683     11                            2017-10-15
5684     12                            2017-10-08
5685     13                            2017-10-01
5686     14                            2017-09-24
5687     15                            2017-09-17
5688     16                            2017-09-10
5689     17                            2017-09-03
5690     18                            2017-08-27
5691     19                            2017-08-20
5692     20                            2017-08-13
5693     21                            2017-08-06
5694     22                            2017-07-30
5695     23                            2017-07-23
5696     24                            2017-07-16
5697     25                            2017-07-09
5698     26                            2017-07-02
5699     27                            2017-06-25
5700     28                            2017-06-18
5701     29                            2017-06-11
5702     30                            2017-06-04
5703     31                            2017-05-28
5704     32                            2017-05-21
5705     33                            2017-05-14
5706     34                            2017-05-07
5707     35                            2017-04-30
5708     36                            2017-04-23
5709     37                            2017-04-16
5710     38                            2017-04-09
5711     39                            2017-04-02
5712     40                            2017-03-26
5713     41                            2017-03-19
5714     42                            2017-03-12
5715     43                            2017-03-05
5716     44                            2017-02-26
5717     45                            2017-02-19
5718     46                            2017-02-12
5719     47                            2017-02-05
5720     48                            2017-01-29
5721     49                            2017-01-22
5722     50                            2017-01-15
5723     51                            2017-01-08
5724     52                            2017-01-01
5725      0                            2017-12-31
5726      1                            2017-12-24
5727      2                            2017-12-17
5728      3                            2017-12-10
5729      4                            2017-12-03
5730      5                            2017-11-26
5731      6                            2017-11-19
5732      7                            2017-11-12
5733      8                            2017-11-05
5734      9                            2017-10-29
5735     10                            2017-10-22
5736     11                            2017-10-15
5737     12                            2017-10-08
5738     13                            2017-10-01
5739     14                            2017-09-24
5740     15                            2017-09-17
5741     16                            2017-09-10
5742     17                            2017-09-03
5743     18                            2017-08-27
5744     19                            2017-08-20
5745     20                            2017-08-13
5746     21                            2017-08-06
5747     22                            2017-07-30
5748     23                            2017-07-23
5749     24                            2017-07-16
5750     25                            2017-07-09
5751     26                            2017-07-02
5752     27                            2017-06-25
5753     28                            2017-06-18
5754     29                            2017-06-11
5755     30                            2017-06-04
5756     31                            2017-05-28
5757     32                            2017-05-21
5758     33                            2017-05-14
5759     34                            2017-05-07
5760     35                            2017-04-30
5761     36                            2017-04-23
5762     37                            2017-04-16
5763     38                            2017-04-09
5764     39                            2017-04-02
5765     40                            2017-03-26
5766     41                            2017-03-19
5767     42                            2017-03-12
5768     43                            2017-03-05
5769     44                            2017-02-26
5770     45                            2017-02-19
5771     46                            2017-02-12
5772     47                            2017-02-05
5773     48                            2017-01-29
5774     49                            2017-01-22
5775     50                            2017-01-15
5776     51                            2017-01-08
5777     52                            2017-01-01
5778      0                            2017-12-31
5779      1                            2017-12-24
5780      2                            2017-12-17
5781      3                            2017-12-10
5782      4                            2017-12-03
5783      5                            2017-11-26
5784      6                            2017-11-19
5785      7                            2017-11-12
5786      8                            2017-11-05
5787      9                            2017-10-29
5788     10                            2017-10-22
5789     11                            2017-10-15
5790     12                            2017-10-08
5791     13                            2017-10-01
5792     14                            2017-09-24
5793     15                            2017-09-17
5794     16                            2017-09-10
5795     17                            2017-09-03
5796     18                            2017-08-27
5797     19                            2017-08-20
5798     20                            2017-08-13
5799     21                            2017-08-06
5800     22                            2017-07-30
5801     23                            2017-07-23
5802     24                            2017-07-16
5803     25                            2017-07-09
5804     26                            2017-07-02
5805     27                            2017-06-25
5806     28                            2017-06-18
5807     29                            2017-06-11
5808     30                            2017-06-04
5809     31                            2017-05-28
5810     32                            2017-05-21
5811     33                            2017-05-14
5812     34                            2017-05-07
5813     35                            2017-04-30
5814     36                            2017-04-23
5815     37                            2017-04-16
5816     38                            2017-04-09
5817     39                            2017-04-02
5818     40                            2017-03-26
5819     41                            2017-03-19
5820     42                            2017-03-12
5821     43                            2017-03-05
5822     44                            2017-02-26
5823     45                            2017-02-19
5824     46                            2017-02-12
5825     47                            2017-02-05
5826     48                            2017-01-29
5827     49                            2017-01-22
5828     50                            2017-01-15
5829     51                            2017-01-08
5830     52                            2017-01-01
5831      0                            2017-12-31
5832      1                            2017-12-24
5833      2                            2017-12-17
5834      3                            2017-12-10
5835      4                            2017-12-03
5836      5                            2017-11-26
5837      6                            2017-11-19
5838      7                            2017-11-12
5839      8                            2017-11-05
5840      9                            2017-10-29
5841     10                            2017-10-22
5842     11                            2017-10-15
5843     12                            2017-10-08
5844     13                            2017-10-01
5845     14                            2017-09-24
5846     15                            2017-09-17
5847     16                            2017-09-10
5848     17                            2017-09-03
5849     18                            2017-08-27
5850     19                            2017-08-20
5851     20                            2017-08-13
5852     21                            2017-08-06
5853     22                            2017-07-30
5854     23                            2017-07-23
5855     24                            2017-07-16
5856     25                            2017-07-09
5857     26                            2017-07-02
5858     27                            2017-06-25
5859     28                            2017-06-18
5860     29                            2017-06-11
5861     30                            2017-06-04
5862     31                            2017-05-28
5863     32                            2017-05-21
5864     33                            2017-05-14
5865     34                            2017-05-07
5866     35                            2017-04-30
5867     36                            2017-04-23
5868     37                            2017-04-16
5869     38                            2017-04-09
5870     39                            2017-04-02
5871     40                            2017-03-26
5872     41                            2017-03-19
5873     42                            2017-03-12
5874     43                            2017-03-05
5875     44                            2017-02-26
5876     45                            2017-02-19
5877     46                            2017-02-12
5878     47                            2017-02-05
5879     48                            2017-01-29
5880     49                            2017-01-22
5881     50                            2017-01-15
5882     51                            2017-01-08
5883     52                            2017-01-01
5884      0                            2017-12-31
5885      1                            2017-12-24
5886      2                            2017-12-17
5887      3                            2017-12-10
5888      4                            2017-12-03
5889      5                            2017-11-26
5890      6                            2017-11-19
5891      7                            2017-11-12
5892      8                            2017-11-05
5893      9                            2017-10-29
5894     10                            2017-10-22
5895     11                            2017-10-15
5896     12                            2017-10-08
5897     13                            2017-10-01
5898     14                            2017-09-24
5899     15                            2017-09-17
5900     16                            2017-09-10
5901     17                            2017-09-03
5902     18                            2017-08-27
5903     19                            2017-08-20
5904     20                            2017-08-13
5905     21                            2017-08-06
5906     22                            2017-07-30
5907     23                            2017-07-23
5908     24                            2017-07-16
5909     25                            2017-07-09
5910     26                            2017-07-02
5911     27                            2017-06-25
5912     28                            2017-06-18
5913     29                            2017-06-11
5914     30                            2017-06-04
5915     31                            2017-05-28
5916     32                            2017-05-21
5917     33                            2017-05-14
5918     34                            2017-05-07
5919     35                            2017-04-30
5920     36                            2017-04-23
5921     37                            2017-04-16
5922     38                            2017-04-09
5923     39                            2017-04-02
5924     40                            2017-03-26
5925     41                            2017-03-19
5926     42                            2017-03-12
5927     43                            2017-03-05
5928     44                            2017-02-26
5929     45                            2017-02-19
5930     46                            2017-02-12
5931     47                            2017-02-05
5932     48                            2017-01-29
5933     49                            2017-01-22
5934     50                            2017-01-15
5935     51                            2017-01-08
5936     52                            2017-01-01
5937      0                            2017-12-31
5938      1                            2017-12-24
5939      2                            2017-12-17
5940      3                            2017-12-10
5941      4                            2017-12-03
5942      5                            2017-11-26
5943      6                            2017-11-19
5944      7                            2017-11-12
5945      8                            2017-11-05
5946      9                            2017-10-29
5947     10                            2017-10-22
5948     11                            2017-10-15
5949     12                            2017-10-08
5950     13                            2017-10-01
5951     14                            2017-09-24
5952     15                            2017-09-17
5953     16                            2017-09-10
5954     17                            2017-09-03
5955     18                            2017-08-27
5956     19                            2017-08-20
5957     20                            2017-08-13
5958     21                            2017-08-06
5959     22                            2017-07-30
5960     23                            2017-07-23
5961     24                            2017-07-16
5962     25                            2017-07-09
5963     26                            2017-07-02
5964     27                            2017-06-25
5965     28                            2017-06-18
5966     29                            2017-06-11
5967     30                            2017-06-04
5968     31                            2017-05-28
5969     32                            2017-05-21
5970     33                            2017-05-14
5971     34                            2017-05-07
5972     35                            2017-04-30
5973     36                            2017-04-23
5974     37                            2017-04-16
5975     38                            2017-04-09
5976     39                            2017-04-02
5977     40                            2017-03-26
5978     41                            2017-03-19
5979     42                            2017-03-12
5980     43                            2017-03-05
5981     44                            2017-02-26
5982     45                            2017-02-19
5983     46                            2017-02-12
5984     47                            2017-02-05
5985     48                            2017-01-29
5986     49                            2017-01-22
5987     50                            2017-01-15
5988     51                            2017-01-08
5989     52                            2017-01-01
5990      0                            2017-12-31
5991      1                            2017-12-24
5992      2                            2017-12-17
5993      3                            2017-12-10
5994      4                            2017-12-03
5995      5                            2017-11-26
5996      6                            2017-11-19
5997      7                            2017-11-12
5998      8                            2017-11-05
5999      9                            2017-10-29
6000     10                            2017-10-22
6001     11                            2017-10-15
6002     12                            2017-10-08
6003     13                            2017-10-01
6004     14                            2017-09-24
6005     15                            2017-09-17
6006     16                            2017-09-10
6007     17                            2017-09-03
6008     18                            2017-08-27
6009     19                            2017-08-20
6010     20                            2017-08-13
6011     21                            2017-08-06
6012     22                            2017-07-30
6013     23                            2017-07-23
6014     24                            2017-07-16
6015     25                            2017-07-09
6016     26                            2017-07-02
6017     27                            2017-06-25
6018     28                            2017-06-18
6019     29                            2017-06-11
6020     30                            2017-06-04
6021     31                            2017-05-28
6022     32                            2017-05-21
6023     33                            2017-05-14
6024     34                            2017-05-07
6025     35                            2017-04-30
6026     36                            2017-04-23
6027     37                            2017-04-16
6028     38                            2017-04-09
6029     39                            2017-04-02
6030     40                            2017-03-26
6031     41                            2017-03-19
6032     42                            2017-03-12
6033     43                            2017-03-05
6034     44                            2017-02-26
6035     45                            2017-02-19
6036     46                            2017-02-12
6037     47                            2017-02-05
6038     48                            2017-01-29
6039     49                            2017-01-22
6040     50                            2017-01-15
6041     51                            2017-01-08
6042     52                            2017-01-01
6043      0                            2017-12-31
6044      1                            2017-12-24
6045      2                            2017-12-17
6046      3                            2017-12-10
6047      4                            2017-12-03
6048      5                            2017-11-26
6049      6                            2017-11-19
6050      7                            2017-11-12
6051      8                            2017-11-05
6052      9                            2017-10-29
6053     10                            2017-10-22
6054     11                            2017-10-15
6055     12                            2017-10-08
6056     13                            2017-10-01
6057     14                            2017-09-24
6058     15                            2017-09-17
6059     16                            2017-09-10
6060     17                            2017-09-03
6061     18                            2017-08-27
6062     19                            2017-08-20
6063     20                            2017-08-13
6064     21                            2017-08-06
6065     22                            2017-07-30
6066     23                            2017-07-23
6067     24                            2017-07-16
6068     25                            2017-07-09
6069     26                            2017-07-02
6070     27                            2017-06-25
6071     28                            2017-06-18
6072     29                            2017-06-11
6073     30                            2017-06-04
6074     31                            2017-05-28
6075     32                            2017-05-21
6076     33                            2017-05-14
6077     34                            2017-05-07
6078     35                            2017-04-30
6079     36                            2017-04-23
6080     37                            2017-04-16
6081     38                            2017-04-09
6082     39                            2017-04-02
6083     40                            2017-03-26
6084     41                            2017-03-19
6085     42                            2017-03-12
6086     43                            2017-03-05
6087     44                            2017-02-26
6088     45                            2017-02-19
6089     46                            2017-02-12
6090     47                            2017-02-05
6091     48                            2017-01-29
6092     49                            2017-01-22
6093     50                            2017-01-15
6094     51                            2017-01-08
6095     52                            2017-01-01
6096      0                            2017-12-31
6097      1                            2017-12-24
6098      2                            2017-12-17
6099      3                            2017-12-10
6100      4                            2017-12-03
6101      5                            2017-11-26
6102      6                            2017-11-19
6103      7                            2017-11-12
6104      8                            2017-11-05
6105      9                            2017-10-29
6106     10                            2017-10-22
6107     11                            2017-10-15
6108     12                            2017-10-08
6109     13                            2017-10-01
6110     14                            2017-09-24
6111     15                            2017-09-17
6112     16                            2017-09-10
6113     17                            2017-09-03
6114     18                            2017-08-27
6115     19                            2017-08-20
6116     20                            2017-08-13
6117     21                            2017-08-06
6118     22                            2017-07-30
6119     23                            2017-07-23
6120     24                            2017-07-16
6121     25                            2017-07-09
6122     26                            2017-07-02
6123     27                            2017-06-25
6124     28                            2017-06-18
6125     29                            2017-06-11
6126     30                            2017-06-04
6127     31                            2017-05-28
6128     32                            2017-05-21
6129     33                            2017-05-14
6130     34                            2017-05-07
6131     35                            2017-04-30
6132     36                            2017-04-23
6133     37                            2017-04-16
6134     38                            2017-04-09
6135     39                            2017-04-02
6136     40                            2017-03-26
6137     41                            2017-03-19
6138     42                            2017-03-12
6139     43                            2017-03-05
6140     44                            2017-02-26
6141     45                            2017-02-19
6142     46                            2017-02-12
6143     47                            2017-02-05
6144     48                            2017-01-29
6145     49                            2017-01-22
6146     50                            2017-01-15
6147     51                            2017-01-08
6148     52                            2017-01-01
6149      0                            2017-12-31
6150      1                            2017-12-24
6151      2                            2017-12-17
6152      3                            2017-12-10
6153      4                            2017-12-03
6154      5                            2017-11-26
6155      6                            2017-11-19
6156      7                            2017-11-12
6157      8                            2017-11-05
6158      9                            2017-10-29
6159     10                            2017-10-22
6160     11                            2017-10-15
6161     12                            2017-10-08
6162     13                            2017-10-01
6163     14                            2017-09-24
6164     15                            2017-09-17
6165     16                            2017-09-10
6166     17                            2017-09-03
6167     18                            2017-08-27
6168     19                            2017-08-20
6169     20                            2017-08-13
6170     21                            2017-08-06
6171     22                            2017-07-30
6172     23                            2017-07-23
6173     24                            2017-07-16
6174     25                            2017-07-09
6175     26                            2017-07-02
6176     27                            2017-06-25
6177     28                            2017-06-18
6178     29                            2017-06-11
6179     30                            2017-06-04
6180     31                            2017-05-28
6181     32                            2017-05-21
6182     33                            2017-05-14
6183     34                            2017-05-07
6184     35                            2017-04-30
6185     36                            2017-04-23
6186     37                            2017-04-16
6187     38                            2017-04-09
6188     39                            2017-04-02
6189     40                            2017-03-26
6190     41                            2017-03-19
6191     42                            2017-03-12
6192     43                            2017-03-05
6193     44                            2017-02-26
6194     45                            2017-02-19
6195     46                            2017-02-12
6196     47                            2017-02-05
6197     48                            2017-01-29
6198     49                            2017-01-22
6199     50                            2017-01-15
6200     51                            2017-01-08
6201     52                            2017-01-01
6202      0                            2017-12-31
6203      1                            2017-12-24
6204      2                            2017-12-17
6205      3                            2017-12-10
6206      4                            2017-12-03
6207      5                            2017-11-26
6208      6                            2017-11-19
6209      7                            2017-11-12
6210      8                            2017-11-05
6211      9                            2017-10-29
6212     10                            2017-10-22
6213     11                            2017-10-15
6214     12                            2017-10-08
6215     13                            2017-10-01
6216     14                            2017-09-24
6217     15                            2017-09-17
6218     16                            2017-09-10
6219     17                            2017-09-03
6220     18                            2017-08-27
6221     19                            2017-08-20
6222     20                            2017-08-13
6223     21                            2017-08-06
6224     22                            2017-07-30
6225     23                            2017-07-23
6226     24                            2017-07-16
6227     25                            2017-07-09
6228     26                            2017-07-02
6229     27                            2017-06-25
6230     28                            2017-06-18
6231     29                            2017-06-11
6232     30                            2017-06-04
6233     31                            2017-05-28
6234     32                            2017-05-21
6235     33                            2017-05-14
6236     34                            2017-05-07
6237     35                            2017-04-30
6238     36                            2017-04-23
6239     37                            2017-04-16
6240     38                            2017-04-09
6241     39                            2017-04-02
6242     40                            2017-03-26
6243     41                            2017-03-19
6244     42                            2017-03-12
6245     43                            2017-03-05
6246     44                            2017-02-26
6247     45                            2017-02-19
6248     46                            2017-02-12
6249     47                            2017-02-05
6250     48                            2017-01-29
6251     49                            2017-01-22
6252     50                            2017-01-15
6253     51                            2017-01-08
6254     52                            2017-01-01
6255      0                            2017-12-31
6256      1                            2017-12-24
6257      2                            2017-12-17
6258      3                            2017-12-10
6259      4                            2017-12-03
6260      5                            2017-11-26
6261      6                            2017-11-19
6262      7                            2017-11-12
6263      8                            2017-11-05
6264      9                            2017-10-29
6265     10                            2017-10-22
6266     11                            2017-10-15
6267     12                            2017-10-08
6268     13                            2017-10-01
6269     14                            2017-09-24
6270     15                            2017-09-17
6271     16                            2017-09-10
6272     17                            2017-09-03
6273     18                            2017-08-27
6274     19                            2017-08-20
6275     20                            2017-08-13
6276     21                            2017-08-06
6277     22                            2017-07-30
6278     23                            2017-07-23
6279     24                            2017-07-16
6280     25                            2017-07-09
6281     26                            2017-07-02
6282     27                            2017-06-25
6283     28                            2017-06-18
6284     29                            2017-06-11
6285     30                            2017-06-04
6286     31                            2017-05-28
6287     32                            2017-05-21
6288     33                            2017-05-14
6289     34                            2017-05-07
6290     35                            2017-04-30
6291     36                            2017-04-23
6292     37                            2017-04-16
6293     38                            2017-04-09
6294     39                            2017-04-02
6295     40                            2017-03-26
6296     41                            2017-03-19
6297     42                            2017-03-12
6298     43                            2017-03-05
6299     44                            2017-02-26
6300     45                            2017-02-19
6301     46                            2017-02-12
6302     47                            2017-02-05
6303     48                            2017-01-29
6304     49                            2017-01-22
6305     50                            2017-01-15
6306     51                            2017-01-08
6307     52                            2017-01-01
6308      0                            2017-12-31
6309      1                            2017-12-24
6310      2                            2017-12-17
6311      3                            2017-12-10
6312      4                            2017-12-03
6313      5                            2017-11-26
6314      6                            2017-11-19
6315      7                            2017-11-12
6316      8                            2017-11-05
6317      9                            2017-10-29
6318     10                            2017-10-22
6319     11                            2017-10-15
6320     12                            2017-10-08
6321     13                            2017-10-01
6322     14                            2017-09-24
6323     15                            2017-09-17
6324     16                            2017-09-10
6325     17                            2017-09-03
6326     18                            2017-08-27
6327     19                            2017-08-20
6328     20                            2017-08-13
6329     21                            2017-08-06
6330     22                            2017-07-30
6331     23                            2017-07-23
6332     24                            2017-07-16
6333     25                            2017-07-09
6334     26                            2017-07-02
6335     27                            2017-06-25
6336     28                            2017-06-18
6337     29                            2017-06-11
6338     30                            2017-06-04
6339     31                            2017-05-28
6340     32                            2017-05-21
6341     33                            2017-05-14
6342     34                            2017-05-07
6343     35                            2017-04-30
6344     36                            2017-04-23
6345     37                            2017-04-16
6346     38                            2017-04-09
6347     39                            2017-04-02
6348     40                            2017-03-26
6349     41                            2017-03-19
6350     42                            2017-03-12
6351     43                            2017-03-05
6352     44                            2017-02-26
6353     45                            2017-02-19
6354     46                            2017-02-12
6355     47                            2017-02-05
6356     48                            2017-01-29
6357     49                            2017-01-22
6358     50                            2017-01-15
6359     51                            2017-01-08
6360     52                            2017-01-01
6361      0                            2017-12-31
6362      1                            2017-12-24
6363      2                            2017-12-17
6364      3                            2017-12-10
6365      4                            2017-12-03
6366      5                            2017-11-26
6367      6                            2017-11-19
6368      7                            2017-11-12
6369      8                            2017-11-05
6370      9                            2017-10-29
6371     10                            2017-10-22
6372     11                            2017-10-15
6373     12                            2017-10-08
6374     13                            2017-10-01
6375     14                            2017-09-24
6376     15                            2017-09-17
6377     16                            2017-09-10
6378     17                            2017-09-03
6379     18                            2017-08-27
6380     19                            2017-08-20
6381     20                            2017-08-13
6382     21                            2017-08-06
6383     22                            2017-07-30
6384     23                            2017-07-23
6385     24                            2017-07-16
6386     25                            2017-07-09
6387     26                            2017-07-02
6388     27                            2017-06-25
6389     28                            2017-06-18
6390     29                            2017-06-11
6391     30                            2017-06-04
6392     31                            2017-05-28
6393     32                            2017-05-21
6394     33                            2017-05-14
6395     34                            2017-05-07
6396     35                            2017-04-30
6397     36                            2017-04-23
6398     37                            2017-04-16
6399     38                            2017-04-09
6400     39                            2017-04-02
6401     40                            2017-03-26
6402     41                            2017-03-19
6403     42                            2017-03-12
6404     43                            2017-03-05
6405     44                            2017-02-26
6406     45                            2017-02-19
6407     46                            2017-02-12
6408     47                            2017-02-05
6409     48                            2017-01-29
6410     49                            2017-01-22
6411     50                            2017-01-15
6412     51                            2017-01-08
6413     52                            2017-01-01
6414      0                            2017-12-31
6415      1                            2017-12-24
6416      2                            2017-12-17
6417      3                            2017-12-10
6418      4                            2017-12-03
6419      5                            2017-11-26
6420      6                            2017-11-19
6421      7                            2017-11-12
6422      8                            2017-11-05
6423      9                            2017-10-29
6424     10                            2017-10-22
6425     11                            2017-10-15
6426     12                            2017-10-08
6427     13                            2017-10-01
6428     14                            2017-09-24
6429     15                            2017-09-17
6430     16                            2017-09-10
6431     17                            2017-09-03
6432     18                            2017-08-27
6433     19                            2017-08-20
6434     20                            2017-08-13
6435     21                            2017-08-06
6436     22                            2017-07-30
6437     23                            2017-07-23
6438     24                            2017-07-16
6439     25                            2017-07-09
6440     26                            2017-07-02
6441     27                            2017-06-25
6442     28                            2017-06-18
6443     29                            2017-06-11
6444     30                            2017-06-04
6445     31                            2017-05-28
6446     32                            2017-05-21
6447     33                            2017-05-14
6448     34                            2017-05-07
6449     35                            2017-04-30
6450     36                            2017-04-23
6451     37                            2017-04-16
6452     38                            2017-04-09
6453     39                            2017-04-02
6454     40                            2017-03-26
6455     41                            2017-03-19
6456     42                            2017-03-12
6457     43                            2017-03-05
6458     44                            2017-02-26
6459     45                            2017-02-19
6460     46                            2017-02-12
6461     47                            2017-02-05
6462     48                            2017-01-29
6463     49                            2017-01-22
6464     50                            2017-01-15
6465     51                            2017-01-08
6466     52                            2017-01-01
6467      0                            2017-12-31
6468      1                            2017-12-24
6469      2                            2017-12-17
6470      3                            2017-12-10
6471      4                            2017-12-03
6472      5                            2017-11-26
6473      6                            2017-11-19
6474      7                            2017-11-12
6475      8                            2017-11-05
6476      9                            2017-10-29
6477     10                            2017-10-22
6478     11                            2017-10-15
6479     12                            2017-10-08
6480     13                            2017-10-01
6481     14                            2017-09-24
6482     15                            2017-09-17
6483     16                            2017-09-10
6484     17                            2017-09-03
6485     18                            2017-08-27
6486     19                            2017-08-20
6487     20                            2017-08-13
6488     21                            2017-08-06
6489     22                            2017-07-30
6490     23                            2017-07-23
6491     24                            2017-07-16
6492     25                            2017-07-09
6493     26                            2017-07-02
6494     27                            2017-06-25
6495     28                            2017-06-18
6496     29                            2017-06-11
6497     30                            2017-06-04
6498     31                            2017-05-28
6499     32                            2017-05-21
6500     33                            2017-05-14
6501     34                            2017-05-07
6502     35                            2017-04-30
6503     36                            2017-04-23
6504     37                            2017-04-16
6505     38                            2017-04-09
6506     39                            2017-04-02
6507     40                            2017-03-26
6508     41                            2017-03-19
6509     42                            2017-03-12
6510     43                            2017-03-05
6511     44                            2017-02-26
6512     45                            2017-02-19
6513     46                            2017-02-12
6514     47                            2017-02-05
6515     48                            2017-01-29
6516     49                            2017-01-22
6517     50                            2017-01-15
6518     51                            2017-01-08
6519     52                            2017-01-01
6520      0                            2017-12-31
6521      1                            2017-12-24
6522      2                            2017-12-17
6523      3                            2017-12-10
6524      4                            2017-12-03
6525      5                            2017-11-26
6526      6                            2017-11-19
6527      7                            2017-11-12
6528      8                            2017-11-05
6529      9                            2017-10-29
6530     10                            2017-10-22
6531     11                            2017-10-15
6532     12                            2017-10-08
6533     13                            2017-10-01
6534     14                            2017-09-24
6535     15                            2017-09-17
6536     16                            2017-09-10
6537     17                            2017-09-03
6538     18                            2017-08-27
6539     19                            2017-08-20
6540     20                            2017-08-13
6541     21                            2017-08-06
6542     22                            2017-07-30
6543     23                            2017-07-23
6544     24                            2017-07-16
6545     25                            2017-07-09
6546     26                            2017-07-02
6547     27                            2017-06-25
6548     28                            2017-06-18
6549     29                            2017-06-11
6550     30                            2017-06-04
6551     31                            2017-05-28
6552     32                            2017-05-21
6553     33                            2017-05-14
6554     34                            2017-05-07
6555     35                            2017-04-30
6556     36                            2017-04-23
6557     37                            2017-04-16
6558     38                            2017-04-09
6559     39                            2017-04-02
6560     40                            2017-03-26
6561     41                            2017-03-19
6562     42                            2017-03-12
6563     43                            2017-03-05
6564     44                            2017-02-26
6565     45                            2017-02-19
6566     46                            2017-02-12
6567     47                            2017-02-05
6568     48                            2017-01-29
6569     49                            2017-01-22
6570     50                            2017-01-15
6571     51                            2017-01-08
6572     52                            2017-01-01
6573      0                            2017-12-31
6574      1                            2017-12-24
6575      2                            2017-12-17
6576      3                            2017-12-10
6577      4                            2017-12-03
6578      5                            2017-11-26
6579      6                            2017-11-19
6580      7                            2017-11-12
6581      8                            2017-11-05
6582      9                            2017-10-29
6583     10                            2017-10-22
6584     11                            2017-10-15
6585     12                            2017-10-08
6586     13                            2017-10-01
6587     14                            2017-09-24
6588     15                            2017-09-17
6589     16                            2017-09-10
6590     17                            2017-09-03
6591     18                            2017-08-27
6592     19                            2017-08-20
6593     20                            2017-08-13
6594     21                            2017-08-06
6595     22                            2017-07-30
6596     23                            2017-07-23
6597     24                            2017-07-16
6598     25                            2017-07-09
6599     26                            2017-07-02
6600     27                            2017-06-25
6601     28                            2017-06-18
6602     29                            2017-06-11
6603     30                            2017-06-04
6604     31                            2017-05-28
6605     32                            2017-05-21
6606     33                            2017-05-14
6607     34                            2017-05-07
6608     35                            2017-04-30
6609     36                            2017-04-23
6610     37                            2017-04-16
6611     38                            2017-04-09
6612     39                            2017-04-02
6613     40                            2017-03-26
6614     41                            2017-03-19
6615     42                            2017-03-12
6616     43                            2017-03-05
6617     44                            2017-02-26
6618     45                            2017-02-19
6619     46                            2017-02-12
6620     47                            2017-02-05
6621     48                            2017-01-29
6622     49                            2017-01-22
6623     50                            2017-01-15
6624     51                            2017-01-08
6625     52                            2017-01-01
6626      0                            2017-12-31
6627      1                            2017-12-24
6628      2                            2017-12-17
6629      3                            2017-12-10
6630      4                            2017-12-03
6631      5                            2017-11-26
6632      6                            2017-11-19
6633      7                            2017-11-12
6634      8                            2017-11-05
6635      9                            2017-10-29
6636     10                            2017-10-22
6637     11                            2017-10-15
6638     12                            2017-10-08
6639     13                            2017-10-01
6640     14                            2017-09-24
6641     15                            2017-09-17
6642     16                            2017-09-10
6643     17                            2017-09-03
6644     18                            2017-08-27
6645     19                            2017-08-20
6646     20                            2017-08-13
6647     21                            2017-08-06
6648     22                            2017-07-30
6649     23                            2017-07-23
6650     24                            2017-07-16
6651     25                            2017-07-09
6652     26                            2017-07-02
6653     27                            2017-06-25
6654     28                            2017-06-18
6655     29                            2017-06-11
6656     30                            2017-06-04
6657     31                            2017-05-28
6658     32                            2017-05-21
6659     33                            2017-05-14
6660     34                            2017-05-07
6661     35                            2017-04-30
6662     36                            2017-04-23
6663     37                            2017-04-16
6664     38                            2017-04-09
6665     39                            2017-04-02
6666     40                            2017-03-26
6667     41                            2017-03-19
6668     42                            2017-03-12
6669     43                            2017-03-05
6670     44                            2017-02-26
6671     45                            2017-02-19
6672     46                            2017-02-12
6673     47                            2017-02-05
6674     48                            2017-01-29
6675     49                            2017-01-22
6676     50                            2017-01-15
6677     51                            2017-01-08
6678     52                            2017-01-01
6679      0                            2017-12-31
6680      1                            2017-12-24
6681      2                            2017-12-17
6682      3                            2017-12-10
6683      4                            2017-12-03
6684      5                            2017-11-26
6685      6                            2017-11-19
6686      7                            2017-11-12
6687      8                            2017-11-05
6688      9                            2017-10-29
6689     10                            2017-10-22
6690     11                            2017-10-15
6691     12                            2017-10-08
6692     13                            2017-10-01
6693     14                            2017-09-24
6694     15                            2017-09-17
6695     16                            2017-09-10
6696     17                            2017-09-03
6697     18                            2017-08-27
6698     19                            2017-08-20
6699     20                            2017-08-13
6700     21                            2017-08-06
6701     22                            2017-07-30
6702     23                            2017-07-23
6703     24                            2017-07-16
6704     25                            2017-07-09
6705     26                            2017-07-02
6706     27                            2017-06-25
6707     28                            2017-06-18
6708     29                            2017-06-11
6709     30                            2017-06-04
6710     31                            2017-05-28
6711     32                            2017-05-21
6712     33                            2017-05-14
6713     34                            2017-05-07
6714     35                            2017-04-30
6715     36                            2017-04-23
6716     37                            2017-04-16
6717     38                            2017-04-09
6718     39                            2017-04-02
6719     40                            2017-03-26
6720     41                            2017-03-19
6721     42                            2017-03-12
6722     43                            2017-03-05
6723     44                            2017-02-26
6724     45                            2017-02-19
6725     46                            2017-02-12
6726     47                            2017-02-05
6727     48                            2017-01-29
6728     49                            2017-01-22
6729     50                            2017-01-15
6730     51                            2017-01-08
6731     52                            2017-01-01
6732      0                            2017-12-31
6733      1                            2017-12-24
6734      2                            2017-12-17
6735      3                            2017-12-10
6736      4                            2017-12-03
6737      5                            2017-11-26
6738      6                            2017-11-19
6739      7                            2017-11-12
6740      8                            2017-11-05
6741      9                            2017-10-29
6742     10                            2017-10-22
6743     11                            2017-10-15
6744     12                            2017-10-08
6745     13                            2017-10-01
6746     14                            2017-09-24
6747     15                            2017-09-17
6748     16                            2017-09-10
6749     17                            2017-09-03
6750     18                            2017-08-27
6751     19                            2017-08-20
6752     20                            2017-08-13
6753     21                            2017-08-06
6754     22                            2017-07-30
6755     23                            2017-07-23
6756     24                            2017-07-16
6757     25                            2017-07-09
6758     26                            2017-07-02
6759     27                            2017-06-25
6760     28                            2017-06-18
6761     29                            2017-06-11
6762     30                            2017-06-04
6763     31                            2017-05-28
6764     32                            2017-05-21
6765     33                            2017-05-14
6766     34                            2017-05-07
6767     35                            2017-04-30
6768     36                            2017-04-23
6769     37                            2017-04-16
6770     38                            2017-04-09
6771     39                            2017-04-02
6772     40                            2017-03-26
6773     41                            2017-03-19
6774     42                            2017-03-12
6775     43                            2017-03-05
6776     44                            2017-02-26
6777     45                            2017-02-19
6778     46                            2017-02-12
6779     47                            2017-02-05
6780     48                            2017-01-29
6781     49                            2017-01-22
6782     50                            2017-01-15
6783     51                            2017-01-08
6784     52                            2017-01-01
6785      0                            2017-12-31
6786      1                            2017-12-24
6787      2                            2017-12-17
6788      3                            2017-12-10
6789      4                            2017-12-03
6790      5                            2017-11-26
6791      6                            2017-11-19
6792      7                            2017-11-12
6793      8                            2017-11-05
6794      9                            2017-10-29
6795     10                            2017-10-22
6796     11                            2017-10-15
6797     12                            2017-10-08
6798     13                            2017-10-01
6799     14                            2017-09-24
6800     15                            2017-09-17
6801     16                            2017-09-10
6802     17                            2017-09-03
6803     18                            2017-08-27
6804     19                            2017-08-20
6805     20                            2017-08-13
6806     21                            2017-08-06
6807     22                            2017-07-30
6808     23                            2017-07-23
6809     24                            2017-07-16
6810     25                            2017-07-09
6811     26                            2017-07-02
6812     27                            2017-06-25
6813     28                            2017-06-18
6814     29                            2017-06-11
6815     30                            2017-06-04
6816     31                            2017-05-28
6817     32                            2017-05-21
6818     33                            2017-05-14
6819     34                            2017-05-07
6820     35                            2017-04-30
6821     36                            2017-04-23
6822     37                            2017-04-16
6823     38                            2017-04-09
6824     39                            2017-04-02
6825     40                            2017-03-26
6826     41                            2017-03-19
6827     42                            2017-03-12
6828     43                            2017-03-05
6829     44                            2017-02-26
6830     45                            2017-02-19
6831     46                            2017-02-12
6832     47                            2017-02-05
6833     48                            2017-01-29
6834     49                            2017-01-22
6835     50                            2017-01-15
6836     51                            2017-01-08
6837     52                            2017-01-01
6838      0                            2017-12-31
6839      1                            2017-12-24
6840      2                            2017-12-17
6841      3                            2017-12-10
6842      4                            2017-12-03
6843      5                            2017-11-26
6844      6                            2017-11-19
6845      7                            2017-11-12
6846      8                            2017-11-05
6847      9                            2017-10-29
6848     10                            2017-10-22
6849     11                            2017-10-15
6850     12                            2017-10-08
6851     13                            2017-10-01
6852     14                            2017-09-24
6853     15                            2017-09-17
6854     16                            2017-09-10
6855     17                            2017-09-03
6856     18                            2017-08-27
6857     19                            2017-08-20
6858     20                            2017-08-13
6859     21                            2017-08-06
6860     22                            2017-07-30
6861     23                            2017-07-23
6862     24                            2017-07-16
6863     25                            2017-07-09
6864     26                            2017-07-02
6865     27                            2017-06-25
6866     28                            2017-06-18
6867     29                            2017-06-11
6868     30                            2017-06-04
6869     31                            2017-05-28
6870     32                            2017-05-21
6871     33                            2017-05-14
6872     34                            2017-05-07
6873     35                            2017-04-30
6874     36                            2017-04-23
6875     37                            2017-04-16
6876     38                            2017-04-09
6877     39                            2017-04-02
6878     40                            2017-03-26
6879     41                            2017-03-19
6880     42                            2017-03-12
6881     43                            2017-03-05
6882     44                            2017-02-26
6883     45                            2017-02-19
6884     46                            2017-02-12
6885     47                            2017-02-05
6886     48                            2017-01-29
6887     49                            2017-01-22
6888     50                            2017-01-15
6889     51                            2017-01-08
6890     52                            2017-01-01
6891      0                            2017-12-31
6892      1                            2017-12-24
6893      2                            2017-12-17
6894      3                            2017-12-10
6895      4                            2017-12-03
6896      5                            2017-11-26
6897      6                            2017-11-19
6898      7                            2017-11-12
6899      8                            2017-11-05
6900      9                            2017-10-29
6901     10                            2017-10-22
6902     11                            2017-10-15
6903     12                            2017-10-08
6904     13                            2017-10-01
6905     14                            2017-09-24
6906     15                            2017-09-17
6907     16                            2017-09-10
6908     17                            2017-09-03
6909     18                            2017-08-27
6910     19                            2017-08-20
6911     20                            2017-08-13
6912     21                            2017-08-06
6913     22                            2017-07-30
6914     23                            2017-07-23
6915     24                            2017-07-16
6916     25                            2017-07-09
6917     26                            2017-07-02
6918     27                            2017-06-25
6919     28                            2017-06-18
6920     29                            2017-06-11
6921     30                            2017-06-04
6922     31                            2017-05-28
6923     32                            2017-05-21
6924     33                            2017-05-14
6925     34                            2017-05-07
6926     35                            2017-04-30
6927     36                            2017-04-23
6928     37                            2017-04-16
6929     38                            2017-04-09
6930     39                            2017-04-02
6931     40                            2017-03-26
6932     41                            2017-03-19
6933     42                            2017-03-12
6934     43                            2017-03-05
6935     44                            2017-02-26
6936     45                            2017-02-19
6937     46                            2017-02-12
6938     47                            2017-02-05
6939     48                            2017-01-29
6940     49                            2017-01-22
6941     50                            2017-01-15
6942     51                            2017-01-08
6943     52                            2017-01-01
6944      0                            2017-12-31
6945      1                            2017-12-24
6946      2                            2017-12-17
6947      3                            2017-12-10
6948      4                            2017-12-03
6949      5                            2017-11-26
6950      6                            2017-11-19
6951      7                            2017-11-12
6952      8                            2017-11-05
6953      9                            2017-10-29
6954     10                            2017-10-22
6955     11                            2017-10-15
6956     12                            2017-10-08
6957     13                            2017-10-01
6958     14                            2017-09-24
6959     15                            2017-09-17
6960     16                            2017-09-10
6961     17                            2017-09-03
6962     18                            2017-08-27
6963     19                            2017-08-20
6964     20                            2017-08-13
6965     21                            2017-08-06
6966     22                            2017-07-30
6967     23                            2017-07-23
6968     24                            2017-07-16
6969     25                            2017-07-09
6970     26                            2017-07-02
6971     27                            2017-06-25
6972     28                            2017-06-18
6973     29                            2017-06-11
6974     30                            2017-06-04
6975     31                            2017-05-28
6976     32                            2017-05-21
6977     33                            2017-05-14
6978     34                            2017-05-07
6979     35                            2017-04-30
6980     36                            2017-04-23
6981     37                            2017-04-16
6982     38                            2017-04-09
6983     39                            2017-04-02
6984     40                            2017-03-26
6985     41                            2017-03-19
6986     42                            2017-03-12
6987     43                            2017-03-05
6988     44                            2017-02-26
6989     45                            2017-02-19
6990     46                            2017-02-12
6991     47                            2017-02-05
6992     48                            2017-01-29
6993     49                            2017-01-22
6994     50                            2017-01-15
6995     51                            2017-01-08
6996     52                            2017-01-01
6997      0                            2017-12-31
6998      1                            2017-12-24
6999      2                            2017-12-17
7000      3                            2017-12-10
7001      4                            2017-12-03
7002      5                            2017-11-26
7003      6                            2017-11-19
7004      7                            2017-11-12
7005      8                            2017-11-05
7006      9                            2017-10-29
7007     10                            2017-10-22
7008     11                            2017-10-15
7009     12                            2017-10-08
7010     13                            2017-10-01
7011     14                            2017-09-24
7012     15                            2017-09-17
7013     16                            2017-09-10
7014     17                            2017-09-03
7015     18                            2017-08-27
7016     19                            2017-08-20
7017     20                            2017-08-13
7018     21                            2017-08-06
7019     22                            2017-07-30
7020     23                            2017-07-23
7021     24                            2017-07-16
7022     25                            2017-07-09
7023     26                            2017-07-02
7024     27                            2017-06-25
7025     28                            2017-06-18
7026     29                            2017-06-11
7027     30                            2017-06-04
7028     31                            2017-05-28
7029     32                            2017-05-21
7030     33                            2017-05-14
7031     34                            2017-05-07
7032     35                            2017-04-30
7033     36                            2017-04-23
7034     37                            2017-04-16
7035     38                            2017-04-09
7036     39                            2017-04-02
7037     40                            2017-03-26
7038     41                            2017-03-19
7039     42                            2017-03-12
7040     43                            2017-03-05
7041     44                            2017-02-26
7042     45                            2017-02-19
7043     46                            2017-02-12
7044     47                            2017-02-05
7045     48                            2017-01-29
7046     49                            2017-01-22
7047     50                            2017-01-15
7048     51                            2017-01-08
7049     52                            2017-01-01
7050      0                            2017-12-31
7051      1                            2017-12-24
7052      2                            2017-12-17
7053      3                            2017-12-10
7054      4                            2017-12-03
7055      5                            2017-11-26
7056      6                            2017-11-19
7057      7                            2017-11-12
7058      8                            2017-11-05
7059      9                            2017-10-29
7060     10                            2017-10-22
7061     11                            2017-10-15
7062     12                            2017-10-08
7063     13                            2017-10-01
7064     14                            2017-09-24
7065     15                            2017-09-17
7066     16                            2017-09-10
7067     17                            2017-09-03
7068     18                            2017-08-27
7069     19                            2017-08-20
7070     20                            2017-08-13
7071     21                            2017-08-06
7072     22                            2017-07-30
7073     23                            2017-07-23
7074     24                            2017-07-16
7075     25                            2017-07-09
7076     26                            2017-07-02
7077     27                            2017-06-25
7078     28                            2017-06-18
7079     29                            2017-06-11
7080     30                            2017-06-04
7081     31                            2017-05-28
7082     32                            2017-05-21
7083     33                            2017-05-14
7084     34                            2017-05-07
7085     35                            2017-04-30
7086     36                            2017-04-23
7087     37                            2017-04-16
7088     38                            2017-04-09
7089     39                            2017-04-02
7090     40                            2017-03-26
7091     41                            2017-03-19
7092     42                            2017-03-12
7093     43                            2017-03-05
7094     44                            2017-02-26
7095     45                            2017-02-19
7096     46                            2017-02-12
7097     47                            2017-02-05
7098     48                            2017-01-29
7099     49                            2017-01-22
7100     50                            2017-01-15
7101     51                            2017-01-08
7102     52                            2017-01-01
7103      0                            2017-12-31
7104      1                            2017-12-24
7105      2                            2017-12-17
7106      3                            2017-12-10
7107      4                            2017-12-03
7108      5                            2017-11-26
7109      6                            2017-11-19
7110      7                            2017-11-12
7111      8                            2017-11-05
7112      9                            2017-10-29
7113     10                            2017-10-22
7114     11                            2017-10-15
7115     12                            2017-10-08
7116     13                            2017-10-01
7117     14                            2017-09-24
7118     15                            2017-09-17
7119     16                            2017-09-10
7120     17                            2017-09-03
7121     18                            2017-08-27
7122     19                            2017-08-20
7123     20                            2017-08-13
7124     21                            2017-08-06
7125     22                            2017-07-30
7126     23                            2017-07-23
7127     24                            2017-07-16
7128     25                            2017-07-09
7129     26                            2017-07-02
7130     27                            2017-06-25
7131     28                            2017-06-18
7132     29                            2017-06-11
7133     30                            2017-06-04
7134     31                            2017-05-28
7135     32                            2017-05-21
7136     33                            2017-05-14
7137     34                            2017-05-07
7138     35                            2017-04-30
7139     36                            2017-04-23
7140     37                            2017-04-16
7141     38                            2017-04-09
7142     39                            2017-04-02
     AveragePrice       (PRECIO PROMEDIO)
1                                    0.99
2                                    1.08
3                                    0.96
4                                    1.07
5                                    0.99
6                                    1.00
7                                    1.13
8                                    1.12
9                                    0.99
10                                   1.09
11                                   1.09
12                                   0.95
13                                   0.96
14                                   1.07
15                                   0.93
16                                   1.07
17                                   0.97
18                                   1.15
19                                   1.12
20                                   1.09
21                                   1.01
22                                   1.15
23                                   1.08
24                                   0.97
25                                   1.14
26                                   1.01
27                                   1.13
28                                   0.99
29                                   1.10
30                                   0.99
31                                   1.10
32                                   0.96
33                                   1.11
34                                   1.10
35                                   1.00
36                                   1.12
37                                   1.12
38                                   0.99
39                                   1.04
40                                   1.11
41                                   1.00
42                                   1.12
43                                   1.10
44                                   0.99
45                                   1.10
46                                   1.06
47                                   1.03
48                                   0.96
49                                   1.10
50                                   1.11
51                                   1.11
52                                   1.00
53                                   1.17
54                                   1.11
55                                   1.15
56                                   1.04
57                                   1.16
58                                   1.12
59                                   1.04
60                                   1.05
61                                   1.12
62                                   1.19
63                                   0.99
64                                   1.24
65                                   1.28
66                                   1.19
67                                   1.17
68                                   1.09
69                                   1.18
70                                   1.24
71                                   1.16
72                                   1.14
73                                   1.16
74                                   1.17
75                                   1.20
76                                   1.18
77                                   1.10
78                                   1.16
79                                   1.15
80                                   1.16
81                                   1.09
82                                   1.26
83                                   1.19
84                                   1.18
85                                   1.27
86                                   1.26
87                                   1.17
88                                   1.29
89                                   1.28
90                                   1.15
91                                   1.29
92                                   1.25
93                                   1.10
94                                   1.24
95                                   1.26
96                                   1.16
97                                   1.11
98                                   1.25
99                                   1.09
100                                  1.06
101                                  1.20
102                                  1.23
103                                  1.17
104                                  1.08
105                                  0.97
106                                  1.03
107                                  0.99
108                                  0.71
109                                  1.06
110                                  1.09
111                                  1.01
112                                  1.11
113                                  1.14
114                                  1.11
115                                  1.16
116                                  0.94
117                                  1.12
118                                  0.99
119                                  1.03
120                                  1.08
121                                  1.16
122                                  1.19
123                                  1.05
124                                  1.12
125                                  1.10
126                                  1.07
127                                  1.07
128                                  1.09
129                                  1.05
130                                  1.15
131                                  1.04
132                                  1.06
133                                  0.99
134                                  1.12
135                                  0.97
136                                  1.03
137                                  0.96
138                                  1.06
139                                  1.00
140                                  0.96
141                                  0.99
142                                  1.19
143                                  1.09
144                                  0.98
145                                  1.17
146                                  1.00
147                                  1.14
148                                  1.06
149                                  0.99
150                                  1.14
151                                  1.07
152                                  0.91
153                                  1.03
154                                  1.08
155                                  1.18
156                                  1.01
157                                  1.13
158                                  1.07
159                                  1.01
160                                  1.02
161                                  1.19
162                                  1.07
163                                  1.05
164                                  1.04
165                                  1.06
166                                  1.02
167                                  0.94
168                                  1.14
169                                  1.07
170                                  1.07
171                                  1.15
172                                  1.03
173                                  1.11
174                                  1.13
175                                  1.07
176                                  1.15
177                                  1.07
178                                  1.17
179                                  1.28
180                                  1.18
181                                  1.14
182                                  1.27
183                                  1.25
184                                  1.24
185                                  1.08
186                                  1.25
187                                  1.26
188                                  1.14
189                                  1.26
190                                  1.14
191                                  1.17
192                                  1.28
193                                  1.15
194                                  1.26
195                                  1.27
196                                  1.19
197                                  1.18
198                                  1.25
199                                  1.17
200                                  1.11
201                                  1.23
202                                  1.20
203                                  1.04
204                                  1.22
205                                  1.17
206                                  1.23
207                                  1.10
208                                  1.02
209                                  1.35
210                                  1.37
211                                  1.35
212                                  1.23
213                                  1.39
214                                  1.40
215                                  1.36
216                                  1.30
217                                  1.23
218                                  1.36
219                                  1.29
220                                  1.30
221                                  1.33
222                                  1.31
223                                  1.54
224                                  1.59
225                                  1.56
226                                  1.38
227                                  1.49
228                                  1.50
229                                  1.47
230                                  1.47
231                                  1.39
232                                  1.36
233                                  1.45
234                                  1.47
235                                  1.36
236                                  1.50
237                                  1.34
238                                  1.38
239                                  1.40
240                                  1.43
241                                  1.35
242                                  1.33
243                                  1.42
244                                  1.41
245                                  1.42
246                                  1.42
247                                  1.44
248                                  1.39
249                                  1.40
250                                  1.47
251                                  1.35
252                                  1.43
253                                  1.41
254                                  1.44
255                                  1.36
256                                  1.33
257                                  1.50
258                                  1.52
259                                  1.54
260                                  1.40
261                                  0.90
262                                  0.94
263                                  0.87
264                                  0.78
265                                  0.91
266                                  0.92
267                                  0.83
268                                  0.98
269                                  0.95
270                                  1.12
271                                  1.07
272                                  1.08
273                                  1.02
274                                  1.04
275                                  1.14
276                                  1.13
277                                  1.09
278                                  1.08
279                                  1.18
280                                  1.11
281                                  1.10
282                                  1.16
283                                  1.13
284                                  1.18
285                                  1.13
286                                  1.12
287                                  1.10
288                                  1.07
289                                  0.97
290                                  0.98
291                                  0.98
292                                  1.10
293                                  1.08
294                                  0.93
295                                  0.88
296                                  1.15
297                                  1.05
298                                  1.06
299                                  1.12
300                                  1.10
301                                  1.06
302                                  1.06
303                                  0.96
304                                  0.84
305                                  0.96
306                                  0.96
307                                  0.91
308                                  0.85
309                                  1.06
310                                  1.02
311                                  0.92
312                                  0.93
313                                  0.96
314                                  0.98
315                                  0.95
316                                  0.99
317                                  0.95
318                                  1.00
319                                  1.01
320                                  1.03
321                                  1.11
322                                  1.27
323                                  1.26
324                                  1.14
325                                  1.22
326                                  1.09
327                                  1.20
328                                  1.19
329                                  1.01
330                                  1.20
331                                  1.15
332                                  1.24
333                                  1.21
334                                  1.24
335                                  1.23
336                                  1.19
337                                  1.18
338                                  1.18
339                                  1.17
340                                  1.17
341                                  1.15
342                                  1.15
343                                  1.19
344                                  1.20
345                                  1.21
346                                  1.19
347                                  1.00
348                                  1.20
349                                  1.18
350                                  1.17
351                                  1.19
352                                  1.23
353                                  1.19
354                                  1.19
355                                  1.25
356                                  1.18
357                                  1.08
358                                  1.22
359                                  1.17
360                                  0.98
361                                  1.18
362                                  1.25
363                                  1.26
364                                  1.19
365                                  0.93
366                                  0.91
367                                  1.07
368                                  1.14
369                                  1.11
370                                  0.94
371                                  1.17
372                                  1.01
373                                  1.00
374                                  1.12
375                                  1.15
376                                  1.08
377                                  1.18
378                                  1.15
379                                  1.19
380                                  1.19
381                                  1.11
382                                  1.12
383                                  1.20
384                                  1.16
385                                  1.25
386                                  1.27
387                                  1.12
388                                  1.24
389                                  1.26
390                                  1.24
391                                  1.21
392                                  1.24
393                                  1.21
394                                  1.24
395                                  1.26
396                                  1.23
397                                  1.23
398                                  1.23
399                                  1.04
400                                  1.24
401                                  1.24
402                                  1.24
403                                  1.27
404                                  1.22
405                                  1.21
406                                  1.09
407                                  1.18
408                                  1.09
409                                  1.18
410                                  1.17
411                                  1.13
412                                  0.91
413                                  1.22
414                                  1.14
415                                  1.15
416                                  1.11
417                                  0.87
418                                  0.85
419                                  0.79
420                                  0.83
421                                  0.88
422                                  0.89
423                                  0.88
424                                  0.87
425                                  0.93
426                                  1.01
427                                  0.98
428                                  0.91
429                                  0.93
430                                  1.08
431                                  1.05
432                                  1.05
433                                  1.02
434                                  1.01
435                                  1.05
436                                  1.01
437                                  1.08
438                                  1.09
439                                  1.03
440                                  1.06
441                                  1.03
442                                  1.03
443                                  1.01
444                                  1.02
445                                  1.05
446                                  1.07
447                                  1.06
448                                  1.10
449                                  1.04
450                                  1.06
451                                  1.08
452                                  1.06
453                                  1.02
454                                  1.02
455                                  1.06
456                                  0.95
457                                  0.98
458                                  0.94
459                                  0.87
460                                  0.89
461                                  0.93
462                                  0.94
463                                  0.93
464                                  0.86
465                                  0.93
466                                  0.93
467                                  0.92
468                                  0.88
469                                  0.99
470                                  1.03
471                                  1.03
472                                  0.99
473                                  1.03
474                                  1.04
475                                  0.99
476                                  0.95
477                                  0.99
478                                  1.04
479                                  0.98
480                                  0.90
481                                  0.93
482                                  1.02
483                                  1.00
484                                  1.02
485                                  1.04
486                                  1.03
487                                  1.08
488                                  1.03
489                                  1.00
490                                  1.05
491                                  1.02
492                                  1.05
493                                  1.04
494                                  0.98
495                                  0.94
496                                  0.99
497                                  1.01
498                                  1.03
499                                  1.10
500                                  1.01
501                                  1.00
502                                  1.10
503                                  0.99
504                                  1.02
505                                  1.00
506                                  1.07
507                                  1.09
508                                  0.96
509                                  0.94
510                                  1.01
511                                  0.95
512                                  1.03
513                                  1.09
514                                  1.05
515                                  0.96
516                                  0.87
517                                  1.08
518                                  1.02
519                                  0.97
520                                  0.89
521                                  0.80
522                                  0.82
523                                  0.79
524                                  0.74
525                                  0.80
526                                  0.78
527                                  0.71
528                                  0.80
529                                  0.78
530                                  0.86
531                                  0.83
532                                  0.81
533                                  0.82
534                                  0.84
535                                  0.77
536                                  0.86
537                                  0.84
538                                  0.82
539                                  0.85
540                                  0.88
541                                  0.85
542                                  0.87
543                                  0.80
544                                  0.82
545                                  0.82
546                                  0.83
547                                  0.77
548                                  0.75
549                                  0.65
550                                  0.73
551                                  0.68
552                                  0.81
553                                  0.73
554                                  0.75
555                                  0.77
556                                  0.81
557                                  0.80
558                                  0.72
559                                  0.77
560                                  0.79
561                                  0.67
562                                  0.72
563                                  0.75
564                                  0.82
565                                  0.80
566                                  0.77
567                                  0.67
568                                  0.68
569                                  0.80
570                                  0.76
571                                  0.76
572                                  0.74
573                                  0.98
574                                  1.05
575                                  0.83
576                                  0.76
577                                  1.12
578                                  0.85
579                                  0.82
580                                  0.93
581                                  0.82
582                                  0.93
583                                  0.87
584                                  0.90
585                                  1.02
586                                  0.97
587                                  0.98
588                                  1.01
589                                  1.09
590                                  1.14
591                                  1.20
592                                  1.17
593                                  1.09
594                                  1.05
595                                  1.18
596                                  1.10
597                                  1.18
598                                  1.19
599                                  1.20
600                                  1.16
601                                  1.16
602                                  1.11
603                                  1.26
604                                  1.16
605                                  1.21
606                                  1.08
607                                  1.01
608                                  1.19
609                                  1.08
610                                  1.05
611                                  1.19
612                                  1.11
613                                  1.15
614                                  1.03
615                                  1.03
616                                  1.03
617                                  1.00
618                                  1.12
619                                  0.95
620                                  0.93
621                                  1.02
622                                  0.99
623                                  1.09
624                                  0.99
625                                  1.08
626                                  1.10
627                                  1.05
628                                  0.98
629                                  1.11
630                                  1.09
631                                  1.10
632                                  1.03
633                                  1.04
634                                  1.17
635                                  0.97
636                                  0.99
637                                  1.10
638                                  1.17
639                                  1.00
640                                  1.03
641                                  1.09
642                                  0.96
643                                  1.11
644                                  0.97
645                                  1.07
646                                  1.04
647                                  0.99
648                                  1.04
649                                  1.02
650                                  1.06
651                                  1.00
652                                  0.97
653                                  1.04
654                                  0.97
655                                  1.09
656                                  1.03
657                                  0.95
658                                  1.11
659                                  1.06
660                                  1.01
661                                  0.96
662                                  1.02
663                                  1.11
664                                  0.97
665                                  0.97
666                                  1.13
667                                  1.01
668                                  0.97
669                                  1.15
670                                  1.16
671                                  1.11
672                                  0.92
673                                  1.19
674                                  1.10
675                                  1.08
676                                  1.01
677                                  1.13
678                                  1.13
679                                  1.24
680                                  0.93
681                                  1.12
682                                  1.11
683                                  1.20
684                                  0.93
685                                  0.91
686                                  1.14
687                                  0.94
688                                  0.97
689                                  0.99
690                                  1.15
691                                  0.88
692                                  0.95
693                                  1.09
694                                  0.91
695                                  1.28
696                                  0.89
697                                  1.08
698                                  1.05
699                                  1.12
700                                  1.05
701                                  1.19
702                                  1.16
703                                  1.10
704                                  0.96
705                                  1.07
706                                  1.14
707                                  1.31
708                                  1.30
709                                  0.97
710                                  1.36
711                                  1.06
712                                  1.09
713                                  0.93
714                                  1.13
715                                  1.22
716                                  1.11
717                                  0.91
718                                  1.35
719                                  1.08
720                                  0.95
721                                  1.31
722                                  1.21
723                                  1.24
724                                  0.94
725                                  1.19
726                                  1.07
727                                  1.03
728                                  0.95
729                                  1.01
730                                  1.01
731                                  1.03
732                                  1.00
733                                  1.07
734                                  1.03
735                                  1.09
736                                  0.98
737                                  1.00
738                                  1.10
739                                  1.03
740                                  1.02
741                                  1.05
742                                  1.10
743                                  1.02
744                                  1.03
745                                  1.07
746                                  1.04
747                                  1.14
748                                  1.03
749                                  1.12
750                                  1.14
751                                  1.10
752                                  1.12
753                                  1.14
754                                  1.13
755                                  1.07
756                                  1.08
757                                  1.12
758                                  1.13
759                                  1.20
760                                  1.15
761                                  1.09
762                                  1.15
763                                  1.05
764                                  1.14
765                                  1.06
766                                  1.11
767                                  1.18
768                                  1.09
769                                  1.04
770                                  1.10
771                                  1.04
772                                  1.02
773                                  1.16
774                                  1.15
775                                  1.07
776                                  0.91
777                                  1.13
778                                  1.08
779                                  1.10
780                                  1.02
781                                  1.16
782                                  1.11
783                                  1.14
784                                  1.10
785                                  1.17
786                                  1.16
787                                  1.09
788                                  1.09
789                                  1.13
790                                  1.11
791                                  0.93
792                                  1.05
793                                  1.16
794                                  1.15
795                                  1.17
796                                  1.07
797                                  1.19
798                                  1.18
799                                  1.10
800                                  1.09
801                                  1.07
802                                  1.10
803                                  1.17
804                                  1.19
805                                  1.17
806                                  1.19
807                                  1.20
808                                  1.19
809                                  1.13
810                                  1.21
811                                  1.22
812                                  1.21
813                                  1.19
814                                  1.19
815                                  1.17
816                                  1.21
817                                  1.17
818                                  1.18
819                                  1.21
820                                  1.14
821                                  1.08
822                                  1.20
823                                  1.15
824                                  1.07
825                                  1.20
826                                  1.22
827                                  1.02
828                                  1.06
829                                  1.17
830                                  1.24
831                                  1.26
832                                  1.05
833                                  1.27
834                                  1.18
835                                  1.24
836                                  1.19
837                                  1.32
838                                  1.27
839                                  1.12
840                                  1.16
841                                  1.16
842                                  1.20
843                                  0.93
844                                  1.38
845                                  1.30
846                                  1.29
847                                  1.25
848                                  1.11
849                                  1.27
850                                  1.26
851                                  1.14
852                                  1.12
853                                  1.12
854                                  1.16
855                                  1.30
856                                  1.32
857                                  1.06
858                                  1.25
859                                  1.27
860                                  1.25
861                                  1.15
862                                  1.29
863                                  1.33
864                                  1.34
865                                  1.20
866                                  1.25
867                                  1.25
868                                  1.36
869                                  1.35
870                                  1.25
871                                  1.33
872                                  1.22
873                                  1.11
874                                  1.40
875                                  1.43
876                                  1.12
877                                  1.38
878                                  1.39
879                                  1.09
880                                  1.32
881                                  1.35
882                                  1.39
883                                  1.38
884                                  1.06
885                                  0.78
886                                  0.75
887                                  0.73
888                                  0.74
889                                  0.79
890                                  0.73
891                                  0.72
892                                  0.75
893                                  0.77
894                                  0.88
895                                  0.90
896                                  0.79
897                                  0.82
898                                  0.86
899                                  0.83
900                                  0.89
901                                  0.89
902                                  0.88
903                                  0.89
904                                  0.92
905                                  0.92
906                                  0.90
907                                  0.79
908                                  0.78
909                                  0.79
910                                  0.79
911                                  0.74
912                                  0.74
913                                  0.62
914                                  0.72
915                                  0.72
916                                  0.83
917                                  0.82
918                                  0.76
919                                  0.74
920                                  0.79
921                                  0.82
922                                  0.79
923                                  0.83
924                                  0.79
925                                  0.80
926                                  0.77
927                                  0.78
928                                  0.87
929                                  0.82
930                                  0.73
931                                  0.70
932                                  0.72
933                                  0.77
934                                  0.77
935                                  0.78
936                                  0.71
937                                  1.04
938                                  1.10
939                                  1.03
940                                  0.92
941                                  1.08
942                                  1.11
943                                  1.08
944                                  0.96
945                                  1.01
946                                  1.02
947                                  0.97
948                                  1.10
949                                  0.98
950                                  1.04
951                                  0.91
952                                  0.87
953                                  1.11
954                                  1.17
955                                  1.22
956                                  1.14
957                                  1.20
958                                  1.21
959                                  1.22
960                                  1.07
961                                  1.05
962                                  1.05
963                                  0.95
964                                  1.03
965                                  1.15
966                                  1.28
967                                  1.37
968                                  1.29
969                                  1.26
970                                  1.06
971                                  1.13
972                                  1.24
973                                  1.08
974                                  1.15
975                                  1.17
976                                  1.09
977                                  1.11
978                                  1.21
979                                  1.07
980                                  1.13
981                                  1.34
982                                  1.30
983                                  0.98
984                                  0.92
985                                  1.06
986                                  1.14
987                                  1.25
988                                  1.02
989                                  0.99
990                                  1.19
991                                  0.96
992                                  1.19
993                                  0.96
994                                  0.98
995                                  1.25
996                                  1.25
997                                  0.97
998                                  1.22
999                                  1.25
1000                                 0.99
1001                                 0.99
1002                                 1.27
1003                                 0.99
1004                                 1.24
1005                                 0.98
1006                                 1.26
1007                                 1.25
1008                                 1.25
1009                                 0.99
1010                                 1.24
1011                                 1.25
1012                                 1.00
1013                                 1.22
1014                                 0.95
1015                                 1.16
1016                                 0.95
1017                                 1.20
1018                                 0.98
1019                                 1.24
1020                                 1.00
1021                                 1.22
1022                                 1.24
1023                                 0.96
1024                                 1.21
1025                                 1.17
1026                                 0.99
1027                                 1.10
1028                                 1.20
1029                                 0.96
1030                                 1.27
1031                                 1.24
1032                                 1.01
1033                                 1.10
1034                                 1.24
1035                                 1.21
1036                                 0.92
1037                                 1.20
1038                                 1.27
1039                                 1.20
1040                                 0.97
1041                                 0.83
1042                                 0.96
1043                                 0.95
1044                                 0.89
1045                                 0.95
1046                                 0.98
1047                                 0.95
1048                                 0.92
1049                                 0.99
1050                                 0.98
1051                                 0.91
1052                                 0.94
1053                                 0.97
1054                                 0.97
1055                                 0.97
1056                                 0.88
1057                                 1.02
1058                                 1.09
1059                                 1.06
1060                                 0.96
1061                                 0.96
1062                                 1.09
1063                                 1.06
1064                                 1.03
1065                                 1.02
1066                                 1.05
1067                                 1.01
1068                                 0.90
1069                                 0.88
1070                                 1.02
1071                                 1.03
1072                                 0.98
1073                                 0.95
1074                                 0.98
1075                                 0.94
1076                                 0.88
1077                                 0.82
1078                                 0.76
1079                                 0.81
1080                                 0.84
1081                                 0.90
1082                                 1.07
1083                                 1.01
1084                                 1.05
1085                                 1.16
1086                                 1.12
1087                                 1.01
1088                                 0.94
1089                                 1.06
1090                                 1.06
1091                                 0.93
1092                                 0.80
1093                                 0.80
1094                                 0.85
1095                                 0.74
1096                                 0.66
1097                                 0.83
1098                                 0.81
1099                                 0.74
1100                                 0.84
1101                                 0.89
1102                                 0.95
1103                                 0.89
1104                                 0.92
1105                                 0.98
1106                                 0.90
1107                                 0.99
1108                                 0.98
1109                                 0.92
1110                                 0.90
1111                                 1.03
1112                                 0.93
1113                                 0.94
1114                                 1.00
1115                                 0.95
1116                                 1.02
1117                                 1.03
1118                                 0.96
1119                                 0.94
1120                                 0.91
1121                                 0.79
1122                                 0.84
1123                                 0.85
1124                                 0.97
1125                                 0.98
1126                                 0.78
1127                                 0.78
1128                                 1.02
1129                                 0.93
1130                                 0.93
1131                                 1.01
1132                                 1.00
1133                                 1.01
1134                                 0.94
1135                                 0.86
1136                                 0.75
1137                                 0.83
1138                                 0.83
1139                                 0.90
1140                                 0.74
1141                                 0.96
1142                                 0.89
1143                                 0.85
1144                                 0.85
1145                                 1.04
1146                                 1.05
1147                                 0.91
1148                                 0.83
1149                                 0.97
1150                                 1.01
1151                                 1.04
1152                                 0.93
1153                                 0.89
1154                                 1.06
1155                                 1.03
1156                                 1.03
1157                                 1.11
1158                                 1.18
1159                                 1.05
1160                                 0.98
1161                                 0.98
1162                                 1.13
1163                                 1.15
1164                                 1.09
1165                                 1.08
1166                                 0.93
1167                                 0.88
1168                                 1.08
1169                                 1.13
1170                                 1.15
1171                                 1.15
1172                                 1.17
1173                                 1.07
1174                                 1.01
1175                                 1.00
1176                                 1.05
1177                                 1.20
1178                                 1.10
1179                                 1.03
1180                                 1.21
1181                                 1.01
1182                                 0.97
1183                                 1.08
1184                                 1.00
1185                                 0.99
1186                                 1.21
1187                                 1.18
1188                                 1.02
1189                                 1.01
1190                                 1.13
1191                                 1.00
1192                                 0.90
1193                                 1.02
1194                                 1.06
1195                                 1.05
1196                                 0.92
1197                                 0.99
1198                                 1.21
1199                                 0.97
1200                                 1.25
1201                                 0.98
1202                                 0.98
1203                                 1.22
1204                                 1.22
1205                                 0.98
1206                                 1.25
1207                                 1.24
1208                                 1.00
1209                                 0.99
1210                                 1.31
1211                                 0.98
1212                                 1.26
1213                                 0.98
1214                                 1.24
1215                                 1.24
1216                                 1.24
1217                                 0.97
1218                                 1.22
1219                                 1.24
1220                                 0.96
1221                                 1.24
1222                                 0.98
1223                                 1.21
1224                                 0.96
1225                                 1.26
1226                                 0.99
1227                                 1.27
1228                                 1.01
1229                                 1.24
1230                                 1.28
1231                                 0.98
1232                                 1.25
1233                                 1.23
1234                                 1.00
1235                                 1.11
1236                                 1.25
1237                                 0.97
1238                                 1.33
1239                                 1.30
1240                                 1.01
1241                                 1.24
1242                                 1.29
1243                                 1.25
1244                                 0.95
1245                                 1.27
1246                                 1.30
1247                                 1.28
1248                                 0.97
1249                                 1.05
1250                                 1.05
1251                                 1.03
1252                                 1.00
1253                                 1.05
1254                                 1.06
1255                                 1.02
1256                                 1.04
1257                                 1.08
1258                                 1.13
1259                                 1.05
1260                                 1.13
1261                                 1.18
1262                                 1.11
1263                                 1.13
1264                                 1.09
1265                                 1.08
1266                                 1.18
1267                                 1.12
1268                                 1.14
1269                                 1.15
1270                                 1.14
1271                                 1.15
1272                                 1.14
1273                                 1.13
1274                                 1.13
1275                                 1.14
1276                                 1.13
1277                                 1.09
1278                                 1.14
1279                                 1.14
1280                                 1.14
1281                                 1.18
1282                                 1.17
1283                                 1.07
1284                                 1.20
1285                                 1.18
1286                                 1.13
1287                                 1.19
1288                                 1.18
1289                                 1.11
1290                                 1.19
1291                                 1.21
1292                                 1.14
1293                                 1.10
1294                                 1.17
1295                                 1.06
1296                                 0.99
1297                                 1.15
1298                                 1.19
1299                                 1.17
1300                                 1.10
1301                                 0.96
1302                                 0.99
1303                                 0.91
1304                                 1.00
1305                                 0.95
1306                                 0.96
1307                                 1.04
1308                                 1.03
1309                                 0.94
1310                                 0.91
1311                                 0.91
1312                                 0.96
1313                                 0.96
1314                                 1.04
1315                                 0.95
1316                                 1.05
1317                                 0.97
1318                                 1.09
1319                                 0.97
1320                                 0.96
1321                                 0.98
1322                                 1.08
1323                                 1.07
1324                                 0.98
1325                                 1.09
1326                                 0.97
1327                                 1.06
1328                                 0.96
1329                                 1.03
1330                                 0.96
1331                                 1.04
1332                                 0.98
1333                                 1.07
1334                                 1.07
1335                                 0.98
1336                                 1.08
1337                                 1.11
1338                                 1.00
1339                                 1.06
1340                                 1.07
1341                                 1.01
1342                                 1.08
1343                                 1.08
1344                                 0.99
1345                                 1.05
1346                                 1.03
1347                                 0.94
1348                                 0.94
1349                                 1.07
1350                                 1.08
1351                                 1.07
1352                                 1.00
1353                                 0.91
1354                                 0.92
1355                                 0.86
1356                                 0.94
1357                                 0.90
1358                                 0.94
1359                                 0.98
1360                                 0.96
1361                                 0.97
1362                                 1.01
1363                                 1.02
1364                                 1.00
1365                                 1.00
1366                                 1.06
1367                                 1.00
1368                                 1.02
1369                                 0.99
1370                                 1.03
1371                                 1.04
1372                                 1.04
1373                                 1.00
1374                                 1.04
1375                                 1.03
1376                                 0.98
1377                                 1.05
1378                                 1.01
1379                                 1.03
1380                                 0.93
1381                                 1.02
1382                                 0.99
1383                                 1.04
1384                                 1.03
1385                                 0.96
1386                                 1.05
1387                                 0.93
1388                                 0.96
1389                                 0.93
1390                                 0.97
1391                                 0.99
1392                                 0.97
1393                                 0.90
1394                                 1.09
1395                                 1.06
1396                                 1.08
1397                                 0.92
1398                                 1.02
1399                                 0.93
1400                                 0.81
1401                                 0.94
1402                                 1.03
1403                                 0.97
1404                                 0.94
1405                                 1.17
1406                                 1.23
1407                                 1.12
1408                                 1.20
1409                                 1.16
1410                                 1.14
1411                                 1.04
1412                                 1.13
1413                                 1.06
1414                                 1.23
1415                                 0.97
1416                                 1.28
1417                                 1.26
1418                                 1.16
1419                                 1.18
1420                                 1.16
1421                                 1.22
1422                                 1.22
1423                                 1.10
1424                                 1.14
1425                                 1.10
1426                                 1.14
1427                                 1.28
1428                                 1.37
1429                                 1.27
1430                                 1.18
1431                                 1.36
1432                                 1.28
1433                                 1.32
1434                                 1.32
1435                                 1.43
1436                                 1.37
1437                                 1.43
1438                                 1.22
1439                                 1.32
1440                                 1.44
1441                                 1.42
1442                                 1.43
1443                                 1.41
1444                                 1.36
1445                                 1.33
1446                                 1.45
1447                                 1.36
1448                                 1.18
1449                                 1.33
1450                                 1.36
1451                                 1.11
1452                                 1.36
1453                                 1.36
1454                                 1.37
1455                                 1.34
1456                                 1.09
1457                                 1.20
1458                                 1.20
1459                                 1.09
1460                                 1.14
1461                                 1.22
1462                                 1.16
1463                                 1.09
1464                                 1.10
1465                                 1.09
1466                                 1.15
1467                                 0.99
1468                                 1.23
1469                                 1.21
1470                                 1.13
1471                                 1.21
1472                                 1.14
1473                                 1.18
1474                                 1.20
1475                                 1.13
1476                                 1.17
1477                                 1.10
1478                                 1.19
1479                                 1.28
1480                                 1.27
1481                                 1.20
1482                                 1.24
1483                                 1.30
1484                                 1.27
1485                                 1.20
1486                                 1.27
1487                                 1.34
1488                                 1.26
1489                                 1.33
1490                                 1.21
1491                                 1.24
1492                                 1.36
1493                                 1.31
1494                                 1.33
1495                                 1.34
1496                                 1.26
1497                                 1.22
1498                                 1.34
1499                                 1.27
1500                                 1.15
1501                                 1.29
1502                                 1.29
1503                                 1.09
1504                                 1.23
1505                                 1.27
1506                                 1.32
1507                                 1.28
1508                                 1.09
1509                                 1.21
1510                                 1.17
1511                                 0.95
1512                                 1.11
1513                                 1.25
1514                                 1.08
1515                                 1.07
1516                                 0.96
1517                                 1.07
1518                                 1.08
1519                                 1.00
1520                                 1.19
1521                                 1.12
1522                                 0.98
1523                                 1.17
1524                                 1.09
1525                                 1.01
1526                                 1.13
1527                                 1.18
1528                                 1.23
1529                                 1.03
1530                                 1.25
1531                                 1.25
1532                                 1.03
1533                                 1.10
1534                                 1.15
1535                                 1.14
1536                                 1.18
1537                                 1.04
1538                                 1.17
1539                                 1.20
1540                                 1.04
1541                                 1.15
1542                                 1.05
1543                                 1.16
1544                                 1.24
1545                                 1.13
1546                                 1.16
1547                                 1.19
1548                                 1.07
1549                                 1.19
1550                                 1.15
1551                                 1.09
1552                                 1.05
1553                                 1.13
1554                                 1.11
1555                                 1.03
1556                                 1.06
1557                                 1.06
1558                                 1.12
1559                                 1.06
1560                                 1.05
1561                                 0.99
1562                                 1.21
1563                                 0.96
1564                                 1.20
1565                                 0.96
1566                                 0.98
1567                                 1.24
1568                                 1.24
1569                                 0.97
1570                                 1.25
1571                                 1.24
1572                                 1.00
1573                                 1.00
1574                                 1.28
1575                                 0.99
1576                                 1.23
1577                                 0.99
1578                                 1.25
1579                                 1.21
1580                                 1.23
1581                                 0.99
1582                                 1.24
1583                                 1.22
1584                                 0.98
1585                                 1.22
1586                                 0.97
1587                                 1.15
1588                                 0.96
1589                                 1.22
1590                                 0.98
1591                                 1.26
1592                                 1.00
1593                                 1.23
1594                                 1.23
1595                                 0.98
1596                                 1.23
1597                                 1.23
1598                                 0.99
1599                                 1.10
1600                                 1.25
1601                                 0.98
1602                                 1.27
1603                                 1.27
1604                                 1.00
1605                                 1.18
1606                                 1.26
1607                                 1.23
1608                                 0.95
1609                                 1.28
1610                                 1.33
1611                                 1.29
1612                                 1.00
1613                                 1.25
1614                                 1.33
1615                                 1.18
1616                                 1.18
1617                                 1.23
1618                                 1.23
1619                                 1.17
1620                                 1.27
1621                                 1.13
1622                                 1.19
1623                                 1.06
1624                                 1.26
1625                                 1.28
1626                                 1.25
1627                                 1.25
1628                                 1.19
1629                                 1.25
1630                                 1.26
1631                                 1.09
1632                                 1.20
1633                                 1.19
1634                                 1.21
1635                                 1.36
1636                                 1.39
1637                                 1.38
1638                                 1.25
1639                                 1.38
1640                                 1.33
1641                                 1.32
1642                                 1.35
1643                                 1.43
1644                                 1.40
1645                                 1.44
1646                                 1.32
1647                                 1.22
1648                                 1.46
1649                                 1.43
1650                                 1.44
1651                                 1.43
1652                                 1.39
1653                                 1.18
1654                                 1.44
1655                                 1.40
1656                                 1.24
1657                                 1.36
1658                                 1.34
1659                                 1.09
1660                                 1.14
1661                                 1.36
1662                                 1.40
1663                                 1.38
1664                                 1.10
1665                                 0.49
1666                                 0.53
1667                                 0.66
1668                                 0.56
1669                                 0.75
1670                                 0.77
1671                                 0.62
1672                                 0.60
1673                                 0.71
1674                                 0.83
1675                                 0.65
1676                                 0.89
1677                                 0.89
1678                                 0.91
1679                                 0.71
1680                                 0.71
1681                                 0.58
1682                                 0.74
1683                                 0.78
1684                                 0.66
1685                                 0.79
1686                                 0.78
1687                                 0.77
1688                                 0.76
1689                                 0.70
1690                                 0.56
1691                                 0.70
1692                                 0.54
1693                                 0.53
1694                                 0.52
1695                                 0.56
1696                                 0.58
1697                                 0.67
1698                                 0.67
1699                                 0.60
1700                                 0.53
1701                                 0.51
1702                                 0.66
1703                                 0.57
1704                                 0.57
1705                                 0.71
1706                                 0.60
1707                                 0.72
1708                                 0.70
1709                                 0.63
1710                                 0.60
1711                                 0.64
1712                                 0.56
1713                                 0.61
1714                                 0.67
1715                                 0.61
1716                                 0.65
1717                                 1.25
1718                                 1.22
1719                                 1.19
1720                                 1.21
1721                                 1.26
1722                                 1.30
1723                                 1.24
1724                                 0.93
1725                                 1.16
1726                                 1.22
1727                                 1.23
1728                                 0.96
1729                                 0.99
1730                                 1.11
1731                                 1.19
1732                                 1.16
1733                                 1.12
1734                                 1.37
1735                                 1.20
1736                                 1.23
1737                                 0.96
1738                                 1.43
1739                                 1.43
1740                                 1.44
1741                                 1.48
1742                                 1.23
1743                                 1.20
1744                                 1.34
1745                                 1.30
1746                                 1.33
1747                                 1.32
1748                                 1.01
1749                                 1.41
1750                                 1.46
1751                                 0.98
1752                                 1.44
1753                                 1.49
1754                                 1.50
1755                                 1.29
1756                                 1.25
1757                                 1.23
1758                                 1.23
1759                                 0.95
1760                                 1.25
1761                                 1.26
1762                                 1.43
1763                                 1.38
1764                                 1.25
1765                                 1.32
1766                                 1.47
1767                                 1.54
1768                                 1.52
1769                                 1.10
1770                                 1.13
1771                                 1.02
1772                                 1.08
1773                                 1.11
1774                                 1.10
1775                                 1.09
1776                                 1.12
1777                                 1.12
1778                                 1.11
1779                                 1.12
1780                                 1.05
1781                                 1.14
1782                                 0.99
1783                                 1.16
1784                                 1.13
1785                                 1.12
1786                                 1.13
1787                                 1.06
1788                                 1.08
1789                                 1.14
1790                                 1.13
1791                                 1.04
1792                                 1.09
1793                                 1.07
1794                                 1.06
1795                                 1.08
1796                                 1.08
1797                                 1.06
1798                                 1.04
1799                                 1.09
1800                                 1.03
1801                                 1.06
1802                                 1.03
1803                                 1.01
1804                                 1.13
1805                                 1.12
1806                                 0.97
1807                                 1.13
1808                                 1.08
1809                                 1.09
1810                                 1.10
1811                                 1.11
1812                                 1.09
1813                                 1.08
1814                                 1.05
1815                                 0.98
1816                                 0.92
1817                                 1.08
1818                                 1.02
1819                                 1.09
1820                                 1.01
1821                                 1.01
1822                                 0.98
1823                                 0.93
1824                                 0.73
1825                                 1.04
1826                                 1.03
1827                                 0.90
1828                                 1.04
1829                                 1.06
1830                                 0.91
1831                                 1.05
1832                                 0.79
1833                                 1.13
1834                                 0.90
1835                                 0.94
1836                                 1.00
1837                                 1.10
1838                                 1.14
1839                                 1.08
1840                                 1.17
1841                                 1.19
1842                                 1.14
1843                                 1.18
1844                                 1.18
1845                                 1.02
1846                                 1.19
1847                                 1.16
1848                                 1.08
1849                                 1.08
1850                                 1.16
1851                                 1.01
1852                                 1.01
1853                                 1.06
1854                                 0.91
1855                                 0.95
1856                                 0.95
1857                                 0.99
1858                                 1.16
1859                                 1.22
1860                                 1.20
1861                                 1.10
1862                                 1.21
1863                                 1.17
1864                                 0.94
1865                                 1.11
1866                                 1.23
1867                                 1.08
1868                                 0.98
1869                                 1.09
1870                                 1.11
1871                                 1.05
1872                                 0.97
1873                                 0.96
1874                                 0.98
1875                                 0.98
1876                                 0.97
1877                                 0.98
1878                                 1.02
1879                                 1.00
1880                                 1.07
1881                                 1.12
1882                                 1.22
1883                                 1.23
1884                                 1.17
1885                                 1.29
1886                                 1.12
1887                                 1.22
1888                                 1.16
1889                                 1.04
1890                                 1.16
1891                                 1.13
1892                                 1.23
1893                                 1.23
1894                                 1.22
1895                                 1.20
1896                                 1.20
1897                                 1.19
1898                                 1.16
1899                                 1.17
1900                                 1.17
1901                                 1.11
1902                                 1.14
1903                                 1.16
1904                                 1.21
1905                                 1.16
1906                                 1.11
1907                                 1.01
1908                                 1.16
1909                                 1.13
1910                                 1.10
1911                                 1.12
1912                                 1.23
1913                                 1.19
1914                                 1.18
1915                                 1.24
1916                                 1.20
1917                                 1.11
1918                                 1.21
1919                                 1.14
1920                                 0.99
1921                                 1.16
1922                                 1.22
1923                                 1.24
1924                                 1.20
1925                                 0.98
1926                                 0.99
1927                                 0.98
1928                                 0.98
1929                                 0.99
1930                                 1.01
1931                                 0.94
1932                                 0.95
1933                                 1.00
1934                                 1.02
1935                                 1.00
1936                                 1.01
1937                                 1.04
1938                                 0.97
1939                                 1.04
1940                                 1.01
1941                                 0.98
1942                                 1.06
1943                                 1.04
1944                                 1.05
1945                                 1.06
1946                                 1.05
1947                                 1.03
1948                                 1.02
1949                                 1.02
1950                                 1.01
1951                                 1.00
1952                                 1.01
1953                                 0.98
1954                                 1.02
1955                                 1.02
1956                                 1.03
1957                                 1.04
1958                                 1.06
1959                                 0.99
1960                                 1.11
1961                                 1.10
1962                                 1.11
1963                                 1.14
1964                                 1.15
1965                                 1.12
1966                                 1.16
1967                                 1.19
1968                                 1.13
1969                                 1.10
1970                                 1.13
1971                                 1.06
1972                                 0.97
1973                                 1.17
1974                                 1.18
1975                                 1.15
1976                                 1.13
1977                                 0.96
1978                                 1.00
1979                                 1.01
1980                                 1.01
1981                                 1.03
1982                                 1.00
1983                                 1.00
1984                                 1.01
1985                                 1.00
1986                                 0.99
1987                                 0.98
1988                                 1.01
1989                                 1.04
1990                                 1.01
1991                                 1.00
1992                                 0.99
1993                                 1.09
1994                                 1.14
1995                                 1.12
1996                                 1.13
1997                                 1.09
1998                                 1.04
1999                                 1.04
2000                                 1.04
2001                                 1.06
2002                                 1.05
2003                                 1.04
2004                                 1.05
2005                                 1.02
2006                                 1.05
2007                                 1.06
2008                                 1.07
2009                                 1.08
2010                                 1.09
2011                                 1.03
2012                                 1.09
2013                                 1.08
2014                                 1.13
2015                                 1.19
2016                                 1.13
2017                                 1.09
2018                                 1.12
2019                                 1.16
2020                                 1.11
2021                                 1.09
2022                                 1.07
2023                                 1.02
2024                                 1.00
2025                                 1.15
2026                                 1.18
2027                                 1.16
2028                                 1.13
2029                                 0.98
2030                                 1.00
2031                                 1.00
2032                                 1.07
2033                                 0.99
2034                                 1.06
2035                                 0.94
2036                                 1.14
2037                                 1.02
2038                                 1.26
2039                                 1.28
2040                                 1.29
2041                                 1.10
2042                                 1.28
2043                                 1.25
2044                                 1.24
2045                                 1.21
2046                                 1.30
2047                                 1.26
2048                                 1.30
2049                                 1.28
2050                                 1.33
2051                                 1.32
2052                                 1.29
2053                                 1.23
2054                                 1.26
2055                                 1.26
2056                                 1.27
2057                                 1.22
2058                                 1.18
2059                                 1.17
2060                                 1.26
2061                                 1.18
2062                                 1.14
2063                                 1.05
2064                                 1.27
2065                                 1.19
2066                                 1.24
2067                                 1.23
2068                                 1.20
2069                                 1.13
2070                                 1.22
2071                                 1.12
2072                                 1.02
2073                                 1.14
2074                                 1.13
2075                                 0.98
2076                                 1.04
2077                                 1.19
2078                                 1.22
2079                                 1.09
2080                                 1.05
2081                                 0.92
2082                                 0.94
2083                                 0.84
2084                                 0.67
2085                                 0.91
2086                                 0.98
2087                                 0.85
2088                                 0.92
2089                                 1.01
2090                                 1.08
2091                                 1.03
2092                                 0.93
2093                                 1.11
2094                                 0.93
2095                                 1.07
2096                                 1.08
2097                                 1.02
2098                                 1.04
2099                                 1.15
2100                                 1.05
2101                                 1.03
2102                                 1.07
2103                                 1.10
2104                                 1.15
2105                                 1.10
2106                                 1.05
2107                                 1.02
2108                                 0.94
2109                                 0.87
2110                                 0.89
2111                                 0.90
2112                                 1.08
2113                                 1.02
2114                                 0.85
2115                                 0.80
2116                                 1.11
2117                                 1.04
2118                                 1.01
2119                                 1.11
2120                                 1.08
2121                                 0.96
2122                                 1.06
2123                                 0.95
2124                                 0.83
2125                                 0.92
2126                                 0.94
2127                                 0.98
2128                                 0.85
2129                                 1.02
2130                                 1.01
2131                                 0.82
2132                                 0.94
2133                                 1.05
2134                                 1.15
2135                                 1.22
2136                                 1.06
2137                                 1.05
2138                                 1.04
2139                                 0.99
2140                                 1.40
2141                                 0.97
2142                                 1.55
2143                                 1.52
2144                                 1.58
2145                                 1.04
2146                                 1.38
2147                                 1.56
2148                                 1.53
2149                                 1.54
2150                                 1.53
2151                                 1.59
2152                                 1.59
2153                                 1.56
2154                                 1.57
2155                                 1.58
2156                                 1.56
2157                                 1.39
2158                                 1.53
2159                                 1.54
2160                                 1.52
2161                                 1.51
2162                                 1.31
2163                                 1.29
2164                                 1.37
2165                                 1.32
2166                                 1.30
2167                                 1.00
2168                                 1.39
2169                                 1.23
2170                                 1.33
2171                                 1.33
2172                                 1.30
2173                                 1.19
2174                                 1.26
2175                                 1.16
2176                                 0.95
2177                                 1.23
2178                                 1.23
2179                                 0.92
2180                                 0.91
2181                                 1.21
2182                                 1.22
2183                                 1.03
2184                                 0.99
2185                                 1.09
2186                                 1.15
2187                                 1.05
2188                                 0.81
2189                                 1.17
2190                                 1.07
2191                                 0.93
2192                                 1.06
2193                                 1.14
2194                                 1.03
2195                                 1.08
2196                                 0.90
2197                                 1.06
2198                                 1.10
2199                                 1.02
2200                                 1.02
2201                                 1.17
2202                                 1.18
2203                                 1.13
2204                                 1.15
2205                                 1.15
2206                                 1.18
2207                                 1.29
2208                                 1.25
2209                                 1.14
2210                                 1.35
2211                                 1.31
2212                                 1.19
2213                                 1.18
2214                                 1.27
2215                                 1.12
2216                                 1.14
2217                                 1.22
2218                                 1.08
2219                                 1.02
2220                                 1.19
2221                                 1.13
2222                                 1.33
2223                                 1.26
2224                                 1.22
2225                                 1.13
2226                                 1.24
2227                                 1.24
2228                                 1.07
2229                                 1.11
2230                                 1.33
2231                                 1.08
2232                                 0.97
2233                                 1.26
2234                                 1.20
2235                                 1.06
2236                                 0.97
2237                                 0.98
2238                                 1.04
2239                                 0.96
2240                                 1.03
2241                                 0.97
2242                                 0.99
2243                                 1.07
2244                                 1.08
2245                                 1.00
2246                                 1.11
2247                                 1.12
2248                                 1.03
2249                                 1.04
2250                                 1.08
2251                                 1.02
2252                                 1.14
2253                                 1.00
2254                                 1.15
2255                                 1.09
2256                                 1.12
2257                                 1.05
2258                                 1.14
2259                                 1.11
2260                                 1.05
2261                                 1.14
2262                                 1.05
2263                                 1.11
2264                                 1.03
2265                                 1.10
2266                                 1.04
2267                                 1.13
2268                                 1.05
2269                                 1.09
2270                                 1.13
2271                                 0.97
2272                                 1.10
2273                                 1.08
2274                                 1.05
2275                                 1.10
2276                                 1.11
2277                                 1.00
2278                                 1.15
2279                                 1.14
2280                                 1.05
2281                                 1.02
2282                                 1.11
2283                                 1.06
2284                                 0.91
2285                                 1.06
2286                                 1.15
2287                                 1.10
2288                                 1.01
2289                                 0.81
2290                                 0.81
2291                                 0.78
2292                                 0.76
2293                                 0.82
2294                                 0.80
2295                                 0.76
2296                                 0.80
2297                                 0.81
2298                                 0.86
2299                                 0.87
2300                                 0.83
2301                                 0.84
2302                                 0.87
2303                                 0.83
2304                                 0.88
2305                                 0.86
2306                                 0.87
2307                                 0.89
2308                                 0.89
2309                                 0.89
2310                                 0.90
2311                                 0.81
2312                                 0.83
2313                                 0.82
2314                                 0.83
2315                                 0.77
2316                                 0.79
2317                                 0.69
2318                                 0.75
2319                                 0.74
2320                                 0.83
2321                                 0.79
2322                                 0.79
2323                                 0.78
2324                                 0.83
2325                                 0.82
2326                                 0.80
2327                                 0.83
2328                                 0.82
2329                                 0.76
2330                                 0.79
2331                                 0.80
2332                                 0.87
2333                                 0.85
2334                                 0.80
2335                                 0.73
2336                                 0.71
2337                                 0.81
2338                                 0.79
2339                                 0.80
2340                                 0.77
2341                                 0.98
2342                                 1.12
2343                                 0.96
2344                                 1.13
2345                                 0.97
2346                                 0.98
2347                                 1.16
2348                                 1.16
2349                                 0.98
2350                                 1.16
2351                                 1.15
2352                                 0.97
2353                                 0.98
2354                                 1.17
2355                                 0.96
2356                                 1.15
2357                                 0.97
2358                                 1.19
2359                                 1.16
2360                                 1.16
2361                                 1.00
2362                                 1.18
2363                                 1.15
2364                                 0.99
2365                                 1.17
2366                                 0.99
2367                                 1.14
2368                                 0.97
2369                                 1.15
2370                                 0.99
2371                                 1.17
2372                                 1.00
2373                                 1.15
2374                                 1.17
2375                                 0.97
2376                                 1.16
2377                                 1.14
2378                                 1.00
2379                                 1.08
2380                                 1.16
2381                                 0.98
2382                                 1.21
2383                                 1.18
2384                                 1.01
2385                                 1.11
2386                                 1.16
2387                                 1.11
2388                                 0.93
2389                                 1.15
2390                                 1.19
2391                                 1.18
2392                                 0.98
2393                                 1.05
2394                                 1.12
2395                                 0.99
2396                                 0.85
2397                                 1.17
2398                                 1.12
2399                                 1.00
2400                                 1.08
2401                                 1.13
2402                                 1.08
2403                                 1.13
2404                                 0.94
2405                                 0.99
2406                                 1.09
2407                                 1.05
2408                                 1.03
2409                                 1.08
2410                                 1.11
2411                                 1.08
2412                                 1.15
2413                                 1.21
2414                                 1.19
2415                                 1.18
2416                                 1.16
2417                                 1.05
2418                                 1.22
2419                                 1.20
2420                                 1.12
2421                                 1.13
2422                                 1.19
2423                                 1.08
2424                                 1.07
2425                                 1.09
2426                                 1.03
2427                                 0.98
2428                                 1.08
2429                                 1.03
2430                                 1.21
2431                                 1.15
2432                                 1.12
2433                                 1.10
2434                                 1.19
2435                                 1.18
2436                                 1.03
2437                                 1.03
2438                                 1.24
2439                                 1.03
2440                                 0.97
2441                                 1.21
2442                                 1.18
2443                                 1.07
2444                                 1.00
2445                                 1.10
2446                                 1.13
2447                                 0.99
2448                                 1.09
2449                                 1.16
2450                                 1.15
2451                                 1.07
2452                                 1.18
2453                                 1.21
2454                                 1.21
2455                                 1.26
2456                                 1.15
2457                                 1.23
2458                                 1.12
2459                                 1.24
2460                                 1.15
2461                                 1.30
2462                                 1.32
2463                                 1.11
2464                                 0.88
2465                                 1.15
2466                                 1.26
2467                                 1.06
2468                                 1.20
2469                                 1.13
2470                                 1.32
2471                                 1.17
2472                                 1.26
2473                                 1.28
2474                                 1.30
2475                                 1.16
2476                                 1.18
2477                                 1.32
2478                                 1.25
2479                                 1.09
2480                                 1.37
2481                                 1.34
2482                                 1.21
2483                                 1.36
2484                                 1.21
2485                                 1.34
2486                                 1.33
2487                                 1.36
2488                                 1.24
2489                                 1.32
2490                                 1.23
2491                                 1.09
2492                                 1.10
2493                                 1.17
2494                                 1.28
2495                                 1.29
2496                                 1.15
2497                                 1.36
2498                                 1.36
2499                                 1.32
2500                                 1.17
2501                                 1.41
2502                                 1.38
2503                                 1.21
2504                                 1.23
2505                                 1.16
2506                                 1.26
2507                                 1.26
2508                                 1.32
2509                                 1.34
2510                                 1.16
2511                                 1.44
2512                                 1.44
2513                                 1.36
2514                                 1.20
2515                                 1.44
2516                                 1.42
2517                                 1.35
2518                                 1.48
2519                                 1.23
2520                                 1.38
2521                                 1.25
2522                                 1.45
2523                                 1.39
2524                                 1.40
2525                                 1.35
2526                                 1.22
2527                                 1.36
2528                                 1.35
2529                                 1.44
2530                                 1.34
2531                                 1.40
2532                                 1.40
2533                                 1.40
2534                                 1.36
2535                                 1.38
2536                                 1.29
2537                                 1.33
2538                                 1.36
2539                                 1.28
2540                                 1.32
2541                                 1.33
2542                                 1.35
2543                                 1.25
2544                                 1.26
2545                                 1.37
2546                                 1.40
2547                                 1.45
2548                                 1.33
2549                                 0.97
2550                                 1.15
2551                                 0.96
2552                                 1.17
2553                                 0.96
2554                                 0.97
2555                                 1.22
2556                                 1.21
2557                                 0.97
2558                                 1.12
2559                                 1.11
2560                                 0.88
2561                                 0.89
2562                                 1.13
2563                                 0.88
2564                                 1.10
2565                                 0.91
2566                                 1.20
2567                                 1.17
2568                                 1.17
2569                                 0.97
2570                                 1.18
2571                                 1.16
2572                                 0.97
2573                                 1.17
2574                                 0.95
2575                                 1.11
2576                                 0.95
2577                                 1.17
2578                                 0.97
2579                                 1.22
2580                                 0.99
2581                                 1.18
2582                                 1.21
2583                                 0.97
2584                                 1.19
2585                                 1.16
2586                                 0.99
2587                                 1.09
2588                                 1.20
2589                                 0.97
2590                                 1.25
2591                                 1.22
2592                                 1.00
2593                                 1.12
2594                                 1.21
2595                                 1.19
2596                                 0.92
2597                                 1.21
2598                                 1.27
2599                                 1.24
2600                                 0.97
2601                                 0.95
2602                                 0.98
2603                                 0.93
2604                                 0.89
2605                                 0.99
2606                                 0.96
2607                                 0.92
2608                                 0.97
2609                                 0.97
2610                                 1.04
2611                                 0.99
2612                                 1.00
2613                                 1.02
2614                                 1.03
2615                                 1.02
2616                                 1.03
2617                                 1.02
2618                                 1.07
2619                                 1.08
2620                                 1.05
2621                                 1.05
2622                                 1.09
2623                                 1.07
2624                                 1.07
2625                                 1.07
2626                                 1.04
2627                                 1.06
2628                                 1.02
2629                                 0.98
2630                                 1.00
2631                                 1.03
2632                                 1.04
2633                                 1.06
2634                                 1.02
2635                                 0.96
2636                                 1.07
2637                                 1.03
2638                                 1.02
2639                                 1.06
2640                                 1.04
2641                                 1.01
2642                                 1.04
2643                                 1.02
2644                                 0.97
2645                                 1.02
2646                                 1.03
2647                                 0.95
2648                                 0.89
2649                                 1.04
2650                                 1.03
2651                                 1.01
2652                                 0.95
2653                                 0.83
2654                                 0.88
2655                                 0.85
2656                                 0.75
2657                                 0.99
2658                                 0.92
2659                                 0.83
2660                                 0.88
2661                                 0.90
2662                                 0.95
2663                                 0.89
2664                                 0.91
2665                                 1.00
2666                                 0.97
2667                                 0.92
2668                                 0.92
2669                                 0.93
2670                                 1.03
2671                                 1.04
2672                                 0.98
2673                                 1.01
2674                                 1.02
2675                                 1.07
2676                                 1.04
2677                                 1.01
2678                                 0.98
2679                                 1.03
2680                                 0.93
2681                                 0.92
2682                                 0.92
2683                                 0.93
2684                                 0.93
2685                                 0.98
2686                                 0.94
2687                                 0.89
2688                                 0.90
2689                                 0.88
2690                                 0.98
2691                                 0.95
2692                                 0.93
2693                                 0.99
2694                                 0.94
2695                                 0.99
2696                                 0.95
2697                                 0.95
2698                                 0.98
2699                                 0.89
2700                                 0.84
2701                                 0.94
2702                                 0.96
2703                                 0.95
2704                                 0.89
2705                                 0.71
2706                                 0.83
2707                                 0.78
2708                                 0.74
2709                                 0.81
2710                                 0.78
2711                                 0.71
2712                                 0.76
2713                                 0.80
2714                                 0.82
2715                                 0.81
2716                                 0.89
2717                                 0.85
2718                                 0.79
2719                                 0.78
2720                                 0.75
2721                                 0.80
2722                                 0.82
2723                                 0.80
2724                                 0.77
2725                                 0.74
2726                                 0.79
2727                                 0.81
2728                                 0.76
2729                                 0.77
2730                                 0.78
2731                                 0.71
2732                                 0.74
2733                                 0.70
2734                                 0.68
2735                                 0.74
2736                                 0.75
2737                                 0.70
2738                                 0.71
2739                                 0.74
2740                                 0.74
2741                                 0.70
2742                                 0.76
2743                                 0.76
2744                                 0.74
2745                                 0.85
2746                                 0.75
2747                                 0.73
2748                                 0.84
2749                                 0.85
2750                                 0.78
2751                                 0.72
2752                                 0.71
2753                                 0.80
2754                                 0.80
2755                                 0.92
2756                                 0.75
2757                                 0.91
2758                                 0.94
2759                                 1.06
2760                                 1.03
2761                                 1.22
2762                                 1.14
2763                                 1.25
2764                                 1.29
2765                                 1.26
2766                                 1.23
2767                                 1.16
2768                                 1.23
2769                                 1.26
2770                                 1.26
2771                                 1.01
2772                                 0.90
2773                                 0.89
2774                                 0.95
2775                                 0.94
2776                                 0.87
2777                                 1.04
2778                                 0.98
2779                                 1.00
2780                                 1.01
2781                                 0.92
2782                                 0.77
2783                                 0.85
2784                                 0.78
2785                                 0.78
2786                                 0.75
2787                                 0.78
2788                                 0.79
2789                                 0.68
2790                                 0.81
2791                                 0.77
2792                                 0.79
2793                                 0.89
2794                                 0.83
2795                                 1.03
2796                                 0.98
2797                                 0.98
2798                                 0.90
2799                                 1.03
2800                                 0.90
2801                                 1.04
2802                                 0.97
2803                                 0.76
2804                                 1.04
2805                                 0.92
2806                                 1.04
2807                                 0.93
2808                                 1.05
2809                                 1.47
2810                                 1.21
2811                                 1.35
2812                                 1.41
2813                                 1.49
2814                                 1.60
2815                                 1.73
2816                                 1.80
2817                                 1.86
2818                                 1.85
2819                                 1.69
2820                                 1.59
2821                                 1.66
2822                                 1.58
2823                                 1.50
2824                                 1.34
2825                                 1.51
2826                                 1.57
2827                                 1.48
2828                                 1.52
2829                                 1.52
2830                                 1.65
2831                                 1.64
2832                                 1.47
2833                                 1.37
2834                                 1.38
2835                                 1.36
2836                                 1.37
2837                                 1.34
2838                                 1.33
2839                                 1.19
2840                                 1.19
2841                                 1.12
2842                                 0.95
2843                                 1.07
2844                                 1.13
2845                                 1.13
2846                                 1.12
2847                                 1.14
2848                                 1.19
2849                                 1.10
2850                                 1.18
2851                                 1.21
2852                                 1.12
2853                                 1.20
2854                                 1.11
2855                                 1.10
2856                                 1.11
2857                                 1.09
2858                                 1.17
2859                                 1.17
2860                                 1.11
2861                                 1.03
2862                                 1.02
2863                                 0.80
2864                                 1.01
2865                                 1.22
2866                                 1.27
2867                                 1.28
2868                                 1.37
2869                                 1.34
2870                                 1.17
2871                                 1.09
2872                                 1.03
2873                                 0.90
2874                                 0.91
2875                                 0.97
2876                                 0.89
2877                                 1.01
2878                                 0.99
2879                                 0.90
2880                                 0.93
2881                                 0.76
2882                                 0.78
2883                                 0.74
2884                                 0.70
2885                                 0.75
2886                                 0.77
2887                                 0.69
2888                                 0.70
2889                                 0.67
2890                                 0.63
2891                                 0.63
2892                                 0.65
2893                                 0.58
2894                                 0.61
2895                                 0.63
2896                                 0.65
2897                                 0.67
2898                                 0.82
2899                                 0.82
2900                                 0.81
2901                                 0.94
2902                                 0.83
2903                                 0.86
2904                                 0.89
2905                                 0.74
2906                                 0.94
2907                                 0.82
2908                                 0.94
2909                                 0.90
2910                                 0.92
2911                                 0.93
2912                                 0.77
2913                                 1.28
2914                                 1.09
2915                                 1.22
2916                                 1.26
2917                                 1.45
2918                                 1.39
2919                                 1.56
2920                                 1.62
2921                                 1.67
2922                                 1.58
2923                                 1.60
2924                                 1.49
2925                                 1.59
2926                                 1.53
2927                                 1.45
2928                                 1.27
2929                                 1.41
2930                                 1.37
2931                                 1.31
2932                                 1.29
2933                                 1.48
2934                                 1.61
2935                                 1.52
2936                                 1.56
2937                                 1.32
2938                                 1.38
2939                                 1.33
2940                                 1.32
2941                                 1.29
2942                                 1.26
2943                                 1.08
2944                                 1.05
2945                                 1.06
2946                                 0.85
2947                                 1.05
2948                                 1.07
2949                                 1.08
2950                                 0.99
2951                                 1.11
2952                                 1.08
2953                                 1.10
2954                                 1.05
2955                                 1.10
2956                                 1.08
2957                                 1.14
2958                                 0.98
2959                                 1.05
2960                                 1.03
2961                                 1.05
2962                                 1.02
2963                                 1.15
2964                                 1.01
2965                                 1.41
2966                                 1.36
2967                                 1.47
2968                                 1.66
2969                                 1.57
2970                                 1.63
2971                                 1.60
2972                                 1.64
2973                                 1.65
2974                                 1.60
2975                                 1.36
2976                                 1.37
2977                                 1.35
2978                                 1.40
2979                                 1.54
2980                                 1.38
2981                                 1.48
2982                                 1.40
2983                                 1.33
2984                                 1.41
2985                                 1.50
2986                                 1.45
2987                                 1.44
2988                                 1.30
2989                                 1.25
2990                                 1.30
2991                                 1.26
2992                                 1.23
2993                                 1.15
2994                                 1.15
2995                                 1.19
2996                                 1.12
2997                                 1.09
2998                                 1.09
2999                                 1.11
3000                                 1.15
3001                                 1.14
3002                                 1.10
3003                                 1.04
3004                                 1.13
3005                                 1.14
3006                                 1.11
3007                                 1.36
3008                                 1.22
3009                                 1.31
3010                                 1.29
3011                                 1.30
3012                                 1.21
3013                                 1.31
3014                                 1.38
3015                                 1.35
3016                                 1.39
3017                                 0.94
3018                                 0.95
3019                                 0.90
3020                                 0.98
3021                                 1.21
3022                                 1.32
3023                                 1.48
3024                                 1.68
3025                                 1.68
3026                                 1.39
3027                                 1.40
3028                                 1.34
3029                                 1.19
3030                                 1.15
3031                                 1.22
3032                                 1.12
3033                                 1.08
3034                                 0.99
3035                                 1.05
3036                                 1.07
3037                                 1.17
3038                                 1.22
3039                                 1.20
3040                                 1.14
3041                                 1.08
3042                                 1.10
3043                                 1.03
3044                                 1.06
3045                                 1.01
3046                                 0.94
3047                                 0.98
3048                                 0.90
3049                                 0.97
3050                                 0.79
3051                                 0.75
3052                                 0.84
3053                                 0.93
3054                                 0.94
3055                                 0.93
3056                                 0.93
3057                                 0.91
3058                                 0.96
3059                                 0.92
3060                                 0.89
3061                                 0.89
3062                                 0.82
3063                                 0.70
3064                                 0.88
3065                                 0.88
3066                                 0.90
3067                                 0.87
3068                                 0.73
3069                                 1.25
3070                                 1.24
3071                                 1.33
3072                                 1.34
3073                                 1.54
3074                                 1.57
3075                                 1.64
3076                                 1.57
3077                                 1.58
3078                                 1.52
3079                                 1.39
3080                                 1.51
3081                                 1.48
3082                                 1.47
3083                                 1.43
3084                                 1.42
3085                                 1.33
3086                                 1.40
3087                                 1.38
3088                                 1.40
3089                                 1.43
3090                                 1.48
3091                                 1.46
3092                                 1.43
3093                                 1.26
3094                                 1.20
3095                                 1.28
3096                                 1.21
3097                                 1.25
3098                                 1.25
3099                                 1.21
3100                                 1.26
3101                                 1.12
3102                                 1.05
3103                                 1.04
3104                                 1.12
3105                                 1.14
3106                                 1.10
3107                                 1.12
3108                                 1.14
3109                                 1.15
3110                                 1.05
3111                                 1.09
3112                                 1.05
3113                                 1.07
3114                                 1.00
3115                                 0.80
3116                                 0.95
3117                                 0.92
3118                                 0.98
3119                                 0.95
3120                                 0.96
3121                                 1.22
3122                                 1.18
3123                                 1.09
3124                                 1.27
3125                                 1.10
3126                                 1.13
3127                                 1.82
3128                                 2.07
3129                                 2.07
3130                                 1.84
3131                                 1.80
3132                                 1.82
3133                                 1.83
3134                                 1.80
3135                                 1.70
3136                                 1.67
3137                                 1.60
3138                                 1.60
3139                                 1.63
3140                                 1.67
3141                                 1.68
3142                                 1.68
3143                                 1.66
3144                                 1.51
3145                                 1.53
3146                                 1.23
3147                                 1.18
3148                                 1.20
3149                                 1.30
3150                                 1.20
3151                                 1.15
3152                                 1.11
3153                                 1.04
3154                                 0.97
3155                                 1.00
3156                                 1.08
3157                                 1.08
3158                                 1.11
3159                                 1.15
3160                                 0.90
3161                                 1.11
3162                                 1.00
3163                                 1.13
3164                                 1.15
3165                                 1.09
3166                                 1.00
3167                                 0.82
3168                                 1.12
3169                                 1.01
3170                                 1.11
3171                                 1.08
3172                                 0.93
3173                                 0.82
3174                                 0.99
3175                                 0.77
3176                                 0.70
3177                                 1.09
3178                                 0.98
3179                                 1.07
3180                                 1.08
3181                                 1.02
3182                                 0.96
3183                                 1.07
3184                                 1.01
3185                                 1.03
3186                                 1.09
3187                                 0.96
3188                                 1.04
3189                                 1.12
3190                                 1.13
3191                                 1.07
3192                                 1.03
3193                                 1.03
3194                                 1.07
3195                                 1.10
3196                                 1.05
3197                                 1.06
3198                                 0.84
3199                                 0.92
3200                                 0.91
3201                                 1.05
3202                                 0.85
3203                                 0.84
3204                                 0.82
3205                                 0.88
3206                                 0.86
3207                                 0.94
3208                                 0.94
3209                                 0.93
3210                                 0.89
3211                                 0.89
3212                                 0.90
3213                                 0.90
3214                                 0.88
3215                                 0.85
3216                                 0.87
3217                                 0.86
3218                                 0.86
3219                                 0.81
3220                                 0.94
3221                                 0.89
3222                                 0.86
3223                                 0.92
3224                                 0.90
3225                                 1.07
3226                                 1.06
3227                                 0.98
3228                                 0.84
3229                                 1.10
3230                                 1.33
3231                                 1.38
3232                                 1.41
3233                                 1.10
3234                                 1.11
3235                                 1.31
3236                                 1.33
3237                                 1.30
3238                                 1.14
3239                                 1.07
3240                                 1.06
3241                                 1.06
3242                                 1.07
3243                                 1.20
3244                                 1.17
3245                                 1.18
3246                                 1.21
3247                                 1.15
3248                                 1.18
3249                                 1.06
3250                                 0.94
3251                                 1.04
3252                                 1.13
3253                                 1.13
3254                                 1.07
3255                                 0.93
3256                                 0.83
3257                                 0.84
3258                                 0.90
3259                                 0.71
3260                                 0.72
3261                                 0.97
3262                                 0.96
3263                                 0.95
3264                                 1.01
3265                                 1.04
3266                                 1.05
3267                                 0.95
3268                                 1.03
3269                                 1.05
3270                                 0.91
3271                                 0.81
3272                                 0.92
3273                                 0.89
3274                                 1.03
3275                                 0.97
3276                                 0.91
3277                                 0.76
3278                                 0.69
3279                                 0.69
3280                                 0.69
3281                                 0.90
3282                                 1.00
3283                                 1.08
3284                                 1.14
3285                                 1.14
3286                                 1.08
3287                                 0.99
3288                                 0.93
3289                                 0.95
3290                                 0.92
3291                                 0.80
3292                                 0.79
3293                                 0.74
3294                                 0.74
3295                                 0.77
3296                                 0.88
3297                                 0.83
3298                                 0.88
3299                                 0.94
3300                                 0.96
3301                                 0.91
3302                                 0.89
3303                                 0.85
3304                                 0.87
3305                                 0.84
3306                                 0.82
3307                                 0.77
3308                                 0.70
3309                                 0.71
3310                                 0.72
3311                                 0.71
3312                                 0.65
3313                                 0.69
3314                                 0.69
3315                                 0.70
3316                                 0.76
3317                                 0.74
3318                                 0.78
3319                                 0.76
3320                                 0.74
3321                                 0.83
3322                                 0.65
3323                                 0.71
3324                                 0.80
3325                                 1.02
3326                                 0.79
3327                                 0.85
3328                                 0.78
3329                                 1.04
3330                                 1.04
3331                                 0.95
3332                                 0.91
3333                                 1.30
3334                                 1.28
3335                                 1.18
3336                                 1.31
3337                                 1.13
3338                                 1.24
3339                                 1.15
3340                                 1.08
3341                                 1.18
3342                                 1.15
3343                                 1.02
3344                                 0.98
3345                                 0.91
3346                                 0.91
3347                                 1.22
3348                                 1.18
3349                                 1.14
3350                                 1.15
3351                                 1.17
3352                                 1.07
3353                                 1.04
3354                                 1.03
3355                                 0.98
3356                                 1.00
3357                                 0.96
3358                                 0.85
3359                                 0.85
3360                                 0.90
3361                                 0.90
3362                                 0.80
3363                                 0.87
3364                                 0.93
3365                                 0.78
3366                                 0.77
3367                                 0.83
3368                                 0.95
3369                                 0.73
3370                                 0.83
3371                                 0.98
3372                                 0.74
3373                                 0.73
3374                                 0.70
3375                                 0.63
3376                                 0.80
3377                                 0.60
3378                                 0.66
3379                                 0.72
3380                                 0.60
3381                                 1.06
3382                                 1.05
3383                                 0.95
3384                                 0.81
3385                                 1.18
3386                                 1.35
3387                                 1.39
3388                                 1.40
3389                                 1.40
3390                                 1.35
3391                                 1.26
3392                                 1.27
3393                                 1.25
3394                                 1.24
3395                                 1.10
3396                                 1.09
3397                                 1.08
3398                                 1.01
3399                                 1.15
3400                                 1.08
3401                                 1.13
3402                                 1.16
3403                                 1.15
3404                                 1.17
3405                                 1.18
3406                                 1.17
3407                                 1.13
3408                                 1.00
3409                                 0.98
3410                                 0.92
3411                                 1.04
3412                                 1.07
3413                                 0.86
3414                                 0.96
3415                                 1.00
3416                                 1.00
3417                                 0.97
3418                                 1.03
3419                                 1.02
3420                                 1.05
3421                                 1.09
3422                                 1.12
3423                                 0.97
3424                                 1.13
3425                                 1.20
3426                                 1.00
3427                                 0.77
3428                                 1.04
3429                                 0.94
3430                                 1.11
3431                                 1.10
3432                                 0.86
3433                                 1.33
3434                                 1.14
3435                                 1.20
3436                                 0.92
3437                                 1.44
3438                                 1.46
3439                                 1.59
3440                                 1.67
3441                                 1.42
3442                                 1.72
3443                                 1.63
3444                                 1.62
3445                                 1.60
3446                                 1.55
3447                                 1.49
3448                                 1.58
3449                                 1.52
3450                                 1.45
3451                                 1.63
3452                                 1.53
3453                                 1.59
3454                                 1.60
3455                                 1.60
3456                                 1.58
3457                                 1.60
3458                                 1.49
3459                                 1.26
3460                                 1.26
3461                                 1.36
3462                                 0.93
3463                                 1.32
3464                                 1.31
3465                                 0.88
3466                                 1.04
3467                                 1.12
3468                                 1.07
3469                                 0.89
3470                                 1.17
3471                                 1.10
3472                                 0.99
3473                                 1.07
3474                                 1.15
3475                                 0.91
3476                                 1.07
3477                                 1.16
3478                                 1.13
3479                                 0.94
3480                                 1.13
3481                                 0.94
3482                                 1.05
3483                                 1.17
3484                                 0.92
3485                                 1.11
3486                                 1.11
3487                                 1.03
3488                                 0.97
3489                                 1.18
3490                                 1.23
3491                                 1.41
3492                                 1.48
3493                                 1.36
3494                                 1.35
3495                                 1.40
3496                                 1.35
3497                                 1.38
3498                                 1.37
3499                                 1.28
3500                                 1.30
3501                                 1.30
3502                                 1.27
3503                                 1.34
3504                                 1.30
3505                                 1.33
3506                                 1.34
3507                                 1.32
3508                                 1.25
3509                                 1.24
3510                                 1.13
3511                                 1.13
3512                                 1.10
3513                                 1.15
3514                                 1.01
3515                                 1.05
3516                                 1.00
3517                                 0.91
3518                                 0.94
3519                                 0.94
3520                                 0.96
3521                                 0.98
3522                                 1.05
3523                                 1.04
3524                                 0.97
3525                                 1.06
3526                                 1.03
3527                                 0.98
3528                                 1.05
3529                                 1.07
3530                                 0.96
3531                                 0.85
3532                                 1.04
3533                                 0.95
3534                                 1.05
3535                                 1.06
3536                                 0.92
3537                                 1.45
3538                                 1.21
3539                                 1.26
3540                                 1.40
3541                                 1.40
3542                                 1.37
3543                                 1.42
3544                                 1.55
3545                                 1.59
3546                                 1.60
3547                                 1.49
3548                                 1.42
3549                                 1.40
3550                                 1.37
3551                                 1.26
3552                                 1.19
3553                                 1.15
3554                                 1.32
3555                                 1.28
3556                                 1.22
3557                                 1.24
3558                                 1.37
3559                                 1.36
3560                                 1.25
3561                                 1.21
3562                                 1.23
3563                                 1.24
3564                                 1.26
3565                                 1.24
3566                                 1.23
3567                                 1.13
3568                                 1.12
3569                                 1.08
3570                                 0.91
3571                                 0.99
3572                                 1.09
3573                                 1.05
3574                                 1.05
3575                                 1.13
3576                                 1.15
3577                                 1.08
3578                                 1.13
3579                                 1.17
3580                                 1.11
3581                                 1.15
3582                                 1.09
3583                                 1.10
3584                                 1.07
3585                                 1.13
3586                                 1.15
3587                                 1.14
3588                                 1.09
3589                                 1.49
3590                                 1.22
3591                                 1.42
3592                                 1.54
3593                                 1.57
3594                                 1.62
3595                                 1.82
3596                                 1.83
3597                                 1.81
3598                                 1.78
3599                                 1.82
3600                                 1.62
3601                                 1.69
3602                                 1.63
3603                                 1.51
3604                                 1.22
3605                                 1.54
3606                                 1.59
3607                                 1.46
3608                                 1.46
3609                                 1.50
3610                                 1.72
3611                                 1.70
3612                                 1.63
3613                                 1.46
3614                                 1.47
3615                                 1.41
3616                                 1.50
3617                                 1.47
3618                                 1.46
3619                                 1.15
3620                                 1.26
3621                                 1.24
3622                                 0.86
3623                                 1.18
3624                                 1.25
3625                                 1.18
3626                                 1.17
3627                                 1.36
3628                                 1.31
3629                                 1.17
3630                                 1.30
3631                                 1.27
3632                                 1.17
3633                                 1.28
3634                                 1.10
3635                                 1.16
3636                                 1.12
3637                                 1.27
3638                                 1.18
3639                                 1.26
3640                                 1.07
3641                                 0.72
3642                                 0.63
3643                                 0.73
3644                                 0.71
3645                                 0.82
3646                                 0.99
3647                                 1.05
3648                                 1.12
3649                                 1.15
3650                                 1.00
3651                                 0.98
3652                                 0.98
3653                                 0.98
3654                                 0.96
3655                                 0.83
3656                                 0.76
3657                                 0.72
3658                                 0.88
3659                                 0.90
3660                                 0.90
3661                                 0.92
3662                                 0.98
3663                                 0.96
3664                                 0.92
3665                                 0.89
3666                                 0.92
3667                                 0.88
3668                                 0.89
3669                                 0.83
3670                                 0.85
3671                                 0.82
3672                                 0.68
3673                                 0.69
3674                                 0.65
3675                                 0.68
3676                                 0.67
3677                                 0.69
3678                                 0.70
3679                                 0.72
3680                                 0.75
3681                                 0.76
3682                                 0.76
3683                                 0.76
3684                                 0.76
3685                                 0.80
3686                                 0.67
3687                                 0.69
3688                                 0.74
3689                                 0.91
3690                                 0.83
3691                                 0.84
3692                                 0.78
3693                                 1.13
3694                                 1.19
3695                                 1.17
3696                                 1.18
3697                                 1.34
3698                                 1.29
3699                                 1.29
3700                                 1.37
3701                                 1.20
3702                                 1.31
3703                                 1.27
3704                                 1.20
3705                                 1.31
3706                                 1.39
3707                                 1.26
3708                                 1.29
3709                                 1.31
3710                                 1.27
3711                                 1.30
3712                                 1.27
3713                                 1.33
3714                                 1.27
3715                                 1.20
3716                                 1.08
3717                                 1.12
3718                                 1.10
3719                                 1.15
3720                                 1.13
3721                                 1.12
3722                                 1.05
3723                                 1.01
3724                                 0.87
3725                                 0.88
3726                                 0.93
3727                                 0.92
3728                                 0.95
3729                                 0.97
3730                                 1.07
3731                                 0.99
3732                                 0.99
3733                                 1.12
3734                                 1.03
3735                                 0.96
3736                                 0.99
3737                                 1.03
3738                                 0.83
3739                                 0.88
3740                                 0.98
3741                                 0.93
3742                                 0.97
3743                                 1.00
3744                                 0.95
3745                                 0.81
3746                                 0.84
3747                                 1.17
3748                                 0.89
3749                                 1.36
3750                                 1.36
3751                                 1.31
3752                                 1.41
3753                                 1.41
3754                                 1.35
3755                                 1.12
3756                                 1.31
3757                                 1.31
3758                                 1.26
3759                                 1.05
3760                                 1.10
3761                                 0.94
3762                                 1.14
3763                                 1.11
3764                                 1.11
3765                                 1.23
3766                                 1.23
3767                                 1.21
3768                                 1.22
3769                                 1.19
3770                                 0.93
3771                                 1.19
3772                                 0.94
3773                                 1.20
3774                                 0.95
3775                                 0.92
3776                                 1.17
3777                                 0.79
3778                                 0.80
3779                                 0.68
3780                                 0.80
3781                                 1.00
3782                                 0.80
3783                                 1.01
3784                                 1.06
3785                                 1.07
3786                                 0.81
3787                                 1.06
3788                                 0.77
3789                                 1.01
3790                                 0.95
3791                                 0.54
3792                                 1.04
3793                                 0.93
3794                                 1.21
3795                                 0.95
3796                                 1.09
3797                                 0.82
3798                                 0.81
3799                                 0.83
3800                                 0.91
3801                                 0.86
3802                                 1.12
3803                                 1.10
3804                                 1.20
3805                                 1.16
3806                                 1.13
3807                                 1.08
3808                                 1.16
3809                                 1.22
3810                                 1.20
3811                                 1.12
3812                                 0.89
3813                                 1.03
3814                                 1.03
3815                                 1.00
3816                                 1.08
3817                                 1.11
3818                                 1.17
3819                                 1.15
3820                                 1.08
3821                                 1.00
3822                                 1.00
3823                                 0.94
3824                                 0.91
3825                                 0.94
3826                                 0.89
3827                                 0.89
3828                                 0.93
3829                                 0.86
3830                                 0.83
3831                                 0.85
3832                                 0.83
3833                                 0.81
3834                                 0.87
3835                                 0.84
3836                                 0.85
3837                                 0.82
3838                                 0.79
3839                                 0.91
3840                                 0.86
3841                                 0.83
3842                                 0.79
3843                                 0.74
3844                                 0.92
3845                                 1.08
3846                                 0.88
3847                                 0.83
3848                                 0.80
3849                                 0.84
3850                                 0.84
3851                                 0.75
3852                                 0.78
3853                                 1.01
3854                                 1.10
3855                                 1.29
3856                                 1.52
3857                                 1.48
3858                                 1.23
3859                                 1.17
3860                                 1.16
3861                                 1.06
3862                                 1.00
3863                                 1.06
3864                                 0.95
3865                                 0.88
3866                                 0.81
3867                                 0.93
3868                                 1.03
3869                                 1.00
3870                                 1.06
3871                                 1.01
3872                                 0.97
3873                                 0.93
3874                                 0.95
3875                                 0.85
3876                                 0.90
3877                                 0.83
3878                                 0.76
3879                                 0.83
3880                                 0.76
3881                                 0.82
3882                                 0.64
3883                                 0.62
3884                                 0.75
3885                                 0.76
3886                                 0.77
3887                                 0.82
3888                                 0.73
3889                                 0.74
3890                                 0.79
3891                                 0.76
3892                                 0.72
3893                                 0.76
3894                                 0.65
3895                                 0.58
3896                                 0.74
3897                                 0.76
3898                                 0.76
3899                                 0.74
3900                                 0.64
3901                                 1.01
3902                                 1.10
3903                                 0.79
3904                                 0.83
3905                                 1.26
3906                                 1.43
3907                                 1.34
3908                                 1.27
3909                                 1.28
3910                                 1.23
3911                                 1.10
3912                                 1.15
3913                                 1.24
3914                                 1.37
3915                                 1.26
3916                                 1.21
3917                                 1.11
3918                                 1.13
3919                                 1.16
3920                                 1.25
3921                                 1.30
3922                                 1.24
3923                                 1.19
3924                                 1.13
3925                                 1.15
3926                                 1.00
3927                                 1.06
3928                                 1.09
3929                                 1.16
3930                                 1.09
3931                                 0.99
3932                                 0.91
3933                                 0.86
3934                                 0.86
3935                                 0.88
3936                                 0.93
3937                                 0.92
3938                                 0.90
3939                                 0.85
3940                                 0.89
3941                                 0.95
3942                                 1.07
3943                                 1.02
3944                                 0.94
3945                                 0.86
3946                                 0.86
3947                                 0.85
3948                                 0.92
3949                                 0.89
3950                                 0.90
3951                                 0.89
3952                                 0.88
3953                                 0.97
3954                                 0.97
3955                                 1.39
3956                                 0.98
3957                                 1.49
3958                                 1.52
3959                                 1.43
3960                                 1.51
3961                                 1.57
3962                                 1.59
3963                                 1.28
3964                                 1.49
3965                                 1.51
3966                                 1.43
3967                                 1.19
3968                                 1.20
3969                                 0.97
3970                                 1.22
3971                                 1.23
3972                                 1.17
3973                                 1.25
3974                                 1.30
3975                                 1.28
3976                                 1.24
3977                                 1.24
3978                                 0.96
3979                                 1.25
3980                                 0.99
3981                                 1.28
3982                                 0.99
3983                                 0.97
3984                                 1.26
3985                                 0.88
3986                                 1.01
3987                                 0.79
3988                                 0.88
3989                                 1.12
3990                                 0.87
3991                                 1.15
3992                                 1.17
3993                                 1.13
3994                                 0.88
3995                                 1.16
3996                                 0.83
3997                                 1.10
3998                                 1.12
3999                                 0.59
4000                                 1.11
4001                                 0.96
4002                                 1.20
4003                                 0.97
4004                                 1.13
4005                                 1.23
4006                                 1.16
4007                                 1.15
4008                                 1.20
4009                                 1.40
4010                                 1.48
4011                                 1.52
4012                                 1.54
4013                                 1.48
4014                                 1.47
4015                                 1.40
4016                                 1.39
4017                                 1.38
4018                                 1.37
4019                                 1.28
4020                                 1.18
4021                                 1.20
4022                                 1.30
4023                                 1.27
4024                                 1.29
4025                                 1.30
4026                                 1.35
4027                                 1.32
4028                                 1.26
4029                                 1.19
4030                                 1.15
4031                                 1.17
4032                                 1.16
4033                                 1.15
4034                                 1.14
4035                                 1.09
4036                                 1.08
4037                                 1.04
4038                                 0.95
4039                                 0.99
4040                                 1.04
4041                                 1.06
4042                                 1.05
4043                                 1.07
4044                                 1.08
4045                                 1.05
4046                                 1.07
4047                                 1.10
4048                                 1.05
4049                                 1.06
4050                                 0.99
4051                                 0.91
4052                                 1.00
4053                                 1.01
4054                                 1.05
4055                                 1.04
4056                                 1.01
4057                                 0.93
4058                                 0.92
4059                                 0.90
4060                                 0.96
4061                                 1.24
4062                                 1.33
4063                                 1.39
4064                                 1.31
4065                                 1.18
4066                                 1.19
4067                                 1.06
4068                                 1.20
4069                                 1.15
4070                                 1.16
4071                                 1.01
4072                                 0.75
4073                                 0.73
4074                                 1.09
4075                                 1.09
4076                                 1.06
4077                                 1.12
4078                                 1.10
4079                                 1.07
4080                                 1.07
4081                                 1.00
4082                                 0.87
4083                                 0.98
4084                                 0.89
4085                                 0.97
4086                                 0.88
4087                                 0.87
4088                                 0.92
4089                                 0.81
4090                                 0.88
4091                                 0.81
4092                                 0.81
4093                                 0.90
4094                                 0.82
4095                                 0.95
4096                                 0.93
4097                                 0.93
4098                                 0.87
4099                                 0.97
4100                                 0.88
4101                                 0.94
4102                                 0.88
4103                                 0.77
4104                                 0.95
4105                                 0.87
4106                                 0.95
4107                                 0.90
4108                                 0.98
4109                                 0.94
4110                                 1.08
4111                                 1.21
4112                                 1.05
4113                                 1.38
4114                                 1.35
4115                                 1.26
4116                                 1.49
4117                                 1.48
4118                                 1.44
4119                                 1.36
4120                                 1.25
4121                                 1.29
4122                                 1.19
4123                                 1.18
4124                                 1.13
4125                                 0.94
4126                                 1.02
4127                                 1.04
4128                                 1.11
4129                                 1.13
4130                                 1.20
4131                                 1.16
4132                                 1.09
4133                                 1.06
4134                                 0.93
4135                                 1.05
4136                                 0.97
4137                                 0.95
4138                                 0.89
4139                                 0.85
4140                                 0.96
4141                                 0.86
4142                                 0.63
4143                                 0.58
4144                                 0.87
4145                                 0.87
4146                                 0.87
4147                                 0.89
4148                                 0.94
4149                                 0.94
4150                                 0.91
4151                                 0.97
4152                                 0.80
4153                                 0.89
4154                                 0.81
4155                                 0.58
4156                                 0.88
4157                                 0.90
4158                                 0.88
4159                                 0.90
4160                                 0.86
4161                                 1.36
4162                                 1.26
4163                                 1.32
4164                                 1.52
4165                                 1.56
4166                                 1.59
4167                                 1.90
4168                                 1.93
4169                                 1.99
4170                                 1.95
4171                                 1.89
4172                                 1.76
4173                                 1.72
4174                                 1.62
4175                                 1.50
4176                                 1.26
4177                                 1.47
4178                                 1.58
4179                                 1.47
4180                                 1.49
4181                                 1.54
4182                                 1.70
4183                                 1.68
4184                                 1.64
4185                                 1.51
4186                                 1.53
4187                                 1.20
4188                                 1.50
4189                                 1.44
4190                                 1.47
4191                                 1.08
4192                                 1.14
4193                                 1.14
4194                                 0.77
4195                                 1.22
4196                                 1.12
4197                                 1.08
4198                                 1.09
4199                                 1.31
4200                                 1.32
4201                                 1.09
4202                                 1.17
4203                                 1.24
4204                                 1.15
4205                                 1.21
4206                                 1.09
4207                                 0.95
4208                                 1.02
4209                                 1.30
4210                                 1.01
4211                                 1.15
4212                                 1.07
4213                                 1.36
4214                                 1.22
4215                                 1.32
4216                                 1.40
4217                                 1.51
4218                                 1.51
4219                                 1.67
4220                                 1.71
4221                                 1.72
4222                                 1.67
4223                                 1.65
4224                                 1.54
4225                                 1.59
4226                                 1.53
4227                                 1.45
4228                                 1.28
4229                                 1.40
4230                                 1.40
4231                                 1.40
4232                                 1.37
4233                                 1.47
4234                                 1.60
4235                                 1.54
4236                                 1.49
4237                                 1.33
4238                                 1.41
4239                                 1.28
4240                                 1.40
4241                                 1.34
4242                                 1.35
4243                                 1.14
4244                                 1.14
4245                                 1.13
4246                                 0.87
4247                                 1.12
4248                                 1.13
4249                                 1.12
4250                                 1.09
4251                                 1.18
4252                                 1.23
4253                                 1.11
4254                                 1.13
4255                                 1.21
4256                                 1.15
4257                                 1.21
4258                                 1.08
4259                                 1.03
4260                                 1.06
4261                                 1.21
4262                                 1.09
4263                                 1.20
4264                                 1.07
4265                                 1.24
4266                                 1.19
4267                                 1.29
4268                                 1.12
4269                                 1.41
4270                                 1.39
4271                                 1.48
4272                                 1.47
4273                                 1.52
4274                                 1.48
4275                                 1.47
4276                                 1.40
4277                                 1.52
4278                                 1.58
4279                                 1.48
4280                                 1.44
4281                                 1.38
4282                                 1.08
4283                                 1.34
4284                                 1.21
4285                                 1.41
4286                                 1.49
4287                                 1.36
4288                                 1.37
4289                                 1.06
4290                                 1.29
4291                                 1.28
4292                                 1.26
4293                                 1.19
4294                                 1.18
4295                                 1.10
4296                                 1.02
4297                                 1.07
4298                                 0.97
4299                                 1.02
4300                                 1.07
4301                                 1.12
4302                                 1.04
4303                                 0.99
4304                                 1.13
4305                                 1.14
4306                                 1.01
4307                                 1.08
4308                                 1.10
4309                                 1.16
4310                                 0.99
4311                                 0.97
4312                                 1.07
4313                                 1.07
4314                                 1.08
4315                                 1.24
4316                                 0.96
4317                                 0.94
4318                                 0.92
4319                                 1.22
4320                                 0.97
4321                                 1.46
4322                                 1.46
4323                                 1.40
4324                                 1.47
4325                                 1.54
4326                                 1.52
4327                                 1.23
4328                                 1.44
4329                                 1.45
4330                                 1.40
4331                                 1.16
4332                                 1.18
4333                                 0.97
4334                                 1.18
4335                                 1.19
4336                                 1.14
4337                                 1.23
4338                                 1.24
4339                                 1.22
4340                                 1.17
4341                                 1.17
4342                                 0.93
4343                                 1.18
4344                                 0.97
4345                                 1.24
4346                                 0.97
4347                                 0.95
4348                                 1.17
4349                                 0.83
4350                                 0.95
4351                                 0.76
4352                                 0.83
4353                                 1.06
4354                                 0.83
4355                                 1.05
4356                                 1.06
4357                                 1.09
4358                                 0.84
4359                                 1.08
4360                                 0.82
4361                                 1.05
4362                                 0.96
4363                                 0.58
4364                                 1.03
4365                                 0.93
4366                                 1.19
4367                                 0.96
4368                                 1.11
4369                                 1.43
4370                                 1.38
4371                                 1.37
4372                                 1.54
4373                                 1.57
4374                                 1.57
4375                                 1.72
4376                                 1.86
4377                                 1.83
4378                                 1.89
4379                                 1.74
4380                                 1.71
4381                                 1.61
4382                                 1.54
4383                                 1.41
4384                                 1.24
4385                                 1.30
4386                                 1.49
4387                                 1.45
4388                                 1.43
4389                                 1.45
4390                                 1.57
4391                                 1.56
4392                                 1.52
4393                                 1.47
4394                                 1.47
4395                                 1.24
4396                                 1.46
4397                                 1.44
4398                                 1.44
4399                                 1.18
4400                                 1.20
4401                                 1.22
4402                                 0.91
4403                                 1.21
4404                                 1.17
4405                                 1.17
4406                                 1.17
4407                                 1.28
4408                                 1.29
4409                                 1.05
4410                                 1.10
4411                                 1.33
4412                                 1.27
4413                                 1.26
4414                                 1.19
4415                                 0.96
4416                                 1.04
4417                                 1.34
4418                                 1.14
4419                                 1.23
4420                                 1.19
4421                                 0.64
4422                                 0.56
4423                                 0.67
4424                                 0.63
4425                                 0.72
4426                                 0.70
4427                                 0.94
4428                                 1.00
4429                                 1.11
4430                                 1.02
4431                                 1.03
4432                                 0.99
4433                                 1.03
4434                                 1.04
4435                                 1.00
4436                                 0.88
4437                                 0.64
4438                                 0.79
4439                                 0.58
4440                                 0.69
4441                                 0.64
4442                                 1.00
4443                                 0.94
4444                                 0.92
4445                                 0.89
4446                                 0.77
4447                                 0.60
4448                                 0.62
4449                                 0.81
4450                                 0.67
4451                                 0.58
4452                                 0.68
4453                                 0.55
4454                                 0.57
4455                                 0.62
4456                                 0.54
4457                                 0.61
4458                                 0.56
4459                                 0.61
4460                                 0.54
4461                                 0.56
4462                                 0.64
4463                                 0.51
4464                                 0.57
4465                                 0.67
4466                                 0.61
4467                                 0.55
4468                                 0.64
4469                                 0.61
4470                                 0.71
4471                                 0.59
4472                                 0.62
4473                                 1.26
4474                                 1.02
4475                                 1.21
4476                                 1.27
4477                                 1.27
4478                                 1.27
4479                                 1.26
4480                                 1.25
4481                                 1.25
4482                                 1.30
4483                                 1.27
4484                                 1.29
4485                                 1.30
4486                                 1.01
4487                                 1.27
4488                                 1.33
4489                                 1.23
4490                                 1.40
4491                                 1.42
4492                                 1.42
4493                                 1.37
4494                                 1.42
4495                                 1.35
4496                                 1.25
4497                                 1.29
4498                                 1.36
4499                                 1.39
4500                                 1.42
4501                                 1.41
4502                                 1.38
4503                                 1.40
4504                                 1.17
4505                                 0.87
4506                                 0.89
4507                                 0.92
4508                                 1.02
4509                                 1.17
4510                                 1.18
4511                                 1.26
4512                                 1.15
4513                                 1.17
4514                                 1.17
4515                                 1.18
4516                                 1.21
4517                                 1.23
4518                                 1.14
4519                                 1.18
4520                                 1.22
4521                                 1.20
4522                                 1.22
4523                                 1.23
4524                                 1.27
4525                                 1.09
4526                                 1.06
4527                                 1.08
4528                                 1.09
4529                                 1.35
4530                                 1.49
4531                                 1.57
4532                                 1.55
4533                                 1.54
4534                                 1.53
4535                                 1.49
4536                                 1.41
4537                                 1.37
4538                                 1.35
4539                                 1.24
4540                                 1.18
4541                                 1.10
4542                                 1.22
4543                                 1.21
4544                                 1.12
4545                                 1.17
4546                                 1.25
4547                                 1.22
4548                                 1.15
4549                                 1.09
4550                                 1.05
4551                                 1.03
4552                                 0.87
4553                                 1.04
4554                                 0.93
4555                                 0.90
4556                                 0.94
4557                                 0.95
4558                                 0.86
4559                                 0.97
4560                                 0.95
4561                                 0.95
4562                                 1.00
4563                                 1.04
4564                                 1.07
4565                                 0.95
4566                                 0.91
4567                                 1.06
4568                                 1.07
4569                                 1.03
4570                                 0.97
4571                                 0.83
4572                                 1.05
4573                                 1.16
4574                                 1.12
4575                                 1.08
4576                                 0.94
4577                                 0.94
4578                                 0.93
4579                                 0.70
4580                                 1.00
4581                                 1.22
4582                                 1.23
4583                                 1.22
4584                                 1.35
4585                                 1.40
4586                                 1.12
4587                                 1.16
4588                                 1.08
4589                                 0.83
4590                                 0.87
4591                                 0.94
4592                                 0.88
4593                                 1.01
4594                                 0.99
4595                                 0.92
4596                                 0.98
4597                                 0.96
4598                                 1.02
4599                                 0.97
4600                                 0.93
4601                                 0.98
4602                                 0.98
4603                                 0.92
4604                                 0.86
4605                                 0.85
4606                                 0.78
4607                                 0.77
4608                                 0.78
4609                                 0.75
4610                                 0.75
4611                                 0.76
4612                                 0.79
4613                                 0.69
4614                                 0.88
4615                                 0.79
4616                                 0.71
4617                                 0.94
4618                                 0.79
4619                                 0.83
4620                                 0.83
4621                                 0.71
4622                                 0.87
4623                                 0.72
4624                                 0.88
4625                                 0.90
4626                                 0.87
4627                                 0.88
4628                                 0.75
4629                                 1.24
4630                                 1.26
4631                                 1.24
4632                                 1.31
4633                                 1.49
4634                                 1.56
4635                                 1.47
4636                                 1.53
4637                                 1.42
4638                                 1.40
4639                                 1.37
4640                                 1.39
4641                                 1.36
4642                                 1.35
4643                                 1.27
4644                                 1.31
4645                                 1.27
4646                                 1.29
4647                                 1.29
4648                                 1.27
4649                                 1.31
4650                                 1.33
4651                                 1.31
4652                                 1.28
4653                                 1.20
4654                                 1.14
4655                                 1.12
4656                                 1.12
4657                                 1.09
4658                                 1.11
4659                                 1.18
4660                                 1.16
4661                                 1.10
4662                                 1.07
4663                                 1.06
4664                                 1.07
4665                                 1.11
4666                                 1.09
4667                                 1.13
4668                                 1.14
4669                                 1.13
4670                                 1.08
4671                                 1.08
4672                                 1.08
4673                                 1.05
4674                                 0.99
4675                                 0.86
4676                                 0.96
4677                                 0.96
4678                                 1.00
4679                                 0.99
4680                                 0.92
4681                                 1.20
4682                                 1.15
4683                                 1.10
4684                                 1.18
4685                                 1.21
4686                                 1.29
4687                                 1.33
4688                                 1.39
4689                                 1.28
4690                                 1.34
4691                                 1.28
4692                                 1.25
4693                                 1.19
4694                                 1.27
4695                                 1.18
4696                                 1.13
4697                                 1.11
4698                                 1.06
4699                                 1.11
4700                                 1.12
4701                                 1.10
4702                                 1.17
4703                                 1.07
4704                                 1.06
4705                                 1.02
4706                                 0.99
4707                                 1.00
4708                                 0.99
4709                                 0.96
4710                                 0.98
4711                                 1.00
4712                                 0.96
4713                                 1.00
4714                                 0.90
4715                                 0.95
4716                                 0.98
4717                                 0.99
4718                                 1.01
4719                                 1.03
4720                                 1.02
4721                                 0.99
4722                                 1.02
4723                                 0.99
4724                                 1.04
4725                                 0.98
4726                                 0.92
4727                                 0.78
4728                                 0.98
4729                                 0.97
4730                                 0.97
4731                                 0.97
4732                                 0.96
4733                                 1.16
4734                                 1.15
4735                                 1.04
4736                                 1.17
4737                                 1.31
4738                                 1.33
4739                                 1.41
4740                                 1.39
4741                                 1.26
4742                                 1.26
4743                                 1.22
4744                                 1.23
4745                                 1.13
4746                                 1.07
4747                                 1.06
4748                                 1.02
4749                                 1.01
4750                                 1.03
4751                                 1.04
4752                                 1.04
4753                                 1.04
4754                                 1.07
4755                                 1.04
4756                                 1.04
4757                                 1.01
4758                                 0.99
4759                                 1.02
4760                                 1.00
4761                                 0.99
4762                                 0.96
4763                                 0.93
4764                                 0.90
4765                                 0.94
4766                                 0.87
4767                                 0.87
4768                                 0.91
4769                                 0.93
4770                                 0.93
4771                                 0.97
4772                                 0.96
4773                                 0.96
4774                                 0.99
4775                                 0.98
4776                                 0.99
4777                                 0.98
4778                                 0.90
4779                                 0.91
4780                                 0.99
4781                                 0.99
4782                                 0.98
4783                                 0.97
4784                                 0.91
4785                                 1.07
4786                                 1.04
4787                                 1.03
4788                                 1.29
4789                                 1.43
4790                                 1.53
4791                                 1.62
4792                                 1.78
4793                                 1.79
4794                                 1.59
4795                                 1.61
4796                                 1.49
4797                                 1.35
4798                                 1.34
4799                                 1.39
4800                                 1.34
4801                                 1.32
4802                                 1.33
4803                                 1.27
4804                                 1.19
4805                                 1.37
4806                                 1.40
4807                                 1.42
4808                                 1.31
4809                                 1.26
4810                                 1.24
4811                                 1.25
4812                                 1.20
4813                                 1.15
4814                                 1.17
4815                                 1.18
4816                                 1.10
4817                                 1.17
4818                                 1.00
4819                                 1.06
4820                                 1.01
4821                                 1.15
4822                                 1.15
4823                                 1.05
4824                                 1.18
4825                                 1.18
4826                                 1.14
4827                                 1.13
4828                                 1.13
4829                                 1.09
4830                                 1.04
4831                                 0.91
4832                                 1.13
4833                                 1.11
4834                                 1.11
4835                                 1.08
4836                                 0.96
4837                                 0.89
4838                                 0.90
4839                                 0.81
4840                                 0.85
4841                                 1.08
4842                                 1.25
4843                                 1.37
4844                                 1.68
4845                                 1.65
4846                                 1.32
4847                                 1.27
4848                                 1.25
4849                                 1.09
4850                                 1.05
4851                                 1.18
4852                                 1.08
4853                                 1.06
4854                                 0.90
4855                                 0.94
4856                                 1.19
4857                                 1.14
4858                                 1.16
4859                                 1.18
4860                                 1.12
4861                                 0.98
4862                                 1.04
4863                                 0.89
4864                                 0.98
4865                                 0.88
4866                                 0.83
4867                                 0.92
4868                                 0.78
4869                                 0.86
4870                                 0.78
4871                                 0.68
4872                                 0.73
4873                                 0.80
4874                                 0.84
4875                                 0.90
4876                                 0.80
4877                                 0.76
4878                                 0.84
4879                                 0.81
4880                                 0.80
4881                                 0.86
4882                                 0.79
4883                                 0.61
4884                                 0.72
4885                                 0.85
4886                                 0.79
4887                                 0.81
4888                                 0.65
4889                                 1.18
4890                                 1.22
4891                                 1.29
4892                                 1.52
4893                                 1.75
4894                                 1.89
4895                                 1.94
4896                                 2.07
4897                                 2.20
4898                                 1.87
4899                                 1.99
4900                                 1.82
4901                                 1.52
4902                                 1.43
4903                                 1.50
4904                                 1.43
4905                                 1.47
4906                                 1.38
4907                                 1.28
4908                                 1.03
4909                                 1.49
4910                                 1.52
4911                                 1.54
4912                                 1.46
4913                                 1.40
4914                                 1.41
4915                                 1.50
4916                                 1.44
4917                                 1.45
4918                                 1.35
4919                                 1.34
4920                                 1.31
4921                                 1.37
4922                                 1.06
4923                                 0.99
4924                                 1.00
4925                                 1.39
4926                                 1.38
4927                                 1.12
4928                                 1.47
4929                                 1.40
4930                                 1.41
4931                                 1.29
4932                                 1.29
4933                                 1.15
4934                                 1.34
4935                                 0.89
4936                                 1.27
4937                                 1.05
4938                                 1.24
4939                                 1.21
4940                                 0.93
4941                                 1.17
4942                                 1.09
4943                                 0.88
4944                                 1.23
4945                                 1.45
4946                                 1.41
4947                                 1.43
4948                                 1.43
4949                                 1.42
4950                                 1.12
4951                                 1.20
4952                                 1.23
4953                                 0.89
4954                                 1.03
4955                                 1.03
4956                                 1.00
4957                                 1.13
4958                                 1.08
4959                                 1.11
4960                                 1.14
4961                                 1.11
4962                                 1.12
4963                                 1.10
4964                                 1.03
4965                                 1.11
4966                                 1.10
4967                                 1.03
4968                                 0.97
4969                                 1.01
4970                                 0.86
4971                                 0.87
4972                                 0.87
4973                                 0.83
4974                                 0.82
4975                                 0.82
4976                                 0.88
4977                                 0.84
4978                                 0.93
4979                                 0.86
4980                                 0.85
4981                                 1.02
4982                                 0.94
4983                                 0.88
4984                                 0.91
4985                                 0.86
4986                                 0.98
4987                                 0.75
4988                                 0.98
4989                                 0.92
4990                                 0.94
4991                                 0.86
4992                                 0.89
4993                                 1.02
4994                                 1.07
4995                                 1.20
4996                                 1.09
4997                                 1.33
4998                                 1.34
4999                                 1.41
5000                                 1.50
5001                                 1.43
5002                                 1.40
5003                                 1.30
5004                                 1.32
5005                                 1.30
5006                                 1.25
5007                                 1.12
5008                                 1.08
5009                                 1.03
5010                                 1.11
5011                                 1.08
5012                                 1.11
5013                                 1.17
5014                                 1.18
5015                                 1.18
5016                                 1.17
5017                                 1.08
5018                                 0.95
5019                                 1.07
5020                                 0.97
5021                                 1.04
5022                                 0.94
5023                                 0.97
5024                                 1.04
5025                                 0.89
5026                                 0.82
5027                                 0.76
5028                                 0.93
5029                                 1.01
5030                                 0.96
5031                                 1.05
5032                                 1.07
5033                                 1.07
5034                                 0.96
5035                                 1.06
5036                                 0.93
5037                                 1.04
5038                                 0.91
5039                                 0.69
5040                                 1.01
5041                                 0.95
5042                                 1.05
5043                                 0.98
5044                                 1.03
5045                                 0.79
5046                                 0.72
5047                                 0.76
5048                                 0.76
5049                                 0.93
5050                                 1.06
5051                                 1.11
5052                                 1.16
5053                                 1.19
5054                                 1.09
5055                                 1.03
5056                                 1.00
5057                                 1.01
5058                                 0.98
5059                                 0.86
5060                                 0.82
5061                                 0.78
5062                                 0.84
5063                                 0.87
5064                                 0.94
5065                                 0.93
5066                                 0.98
5067                                 0.97
5068                                 0.94
5069                                 0.91
5070                                 0.91
5071                                 0.89
5072                                 0.89
5073                                 0.85
5074                                 0.83
5075                                 0.80
5076                                 0.72
5077                                 0.73
5078                                 0.72
5079                                 0.71
5080                                 0.70
5081                                 0.71
5082                                 0.73
5083                                 0.74
5084                                 0.77
5085                                 0.77
5086                                 0.79
5087                                 0.78
5088                                 0.77
5089                                 0.82
5090                                 0.70
5091                                 0.70
5092                                 0.79
5093                                 0.94
5094                                 0.81
5095                                 0.84
5096                                 0.79
5097                                 0.94
5098                                 0.96
5099                                 1.21
5100                                 0.99
5101                                 1.39
5102                                 1.38
5103                                 1.37
5104                                 1.44
5105                                 1.44
5106                                 1.43
5107                                 1.24
5108                                 1.37
5109                                 1.38
5110                                 1.32
5111                                 1.11
5112                                 1.08
5113                                 0.96
5114                                 1.11
5115                                 1.11
5116                                 1.09
5117                                 1.18
5118                                 1.18
5119                                 1.17
5120                                 1.15
5121                                 1.10
5122                                 0.91
5123                                 1.09
5124                                 0.94
5125                                 1.07
5126                                 0.91
5127                                 0.92
5128                                 1.05
5129                                 0.82
5130                                 0.86
5131                                 0.75
5132                                 0.84
5133                                 1.01
5134                                 0.86
5135                                 1.04
5136                                 1.05
5137                                 1.05
5138                                 0.88
5139                                 1.07
5140                                 0.84
5141                                 1.04
5142                                 0.98
5143                                 0.62
5144                                 1.02
5145                                 0.90
5146                                 1.09
5147                                 0.93
5148                                 1.06
5149                                 1.15
5150                                 0.97
5151                                 0.96
5152                                 1.40
5153                                 1.49
5154                                 1.14
5155                                 1.07
5156                                 1.48
5157                                 1.39
5158                                 1.23
5159                                 1.33
5160                                 1.19
5161                                 0.87
5162                                 1.09
5163                                 1.05
5164                                 0.98
5165                                 1.12
5166                                 1.12
5167                                 1.09
5168                                 1.14
5169                                 1.16
5170                                 1.14
5171                                 1.08
5172                                 0.98
5173                                 1.06
5174                                 1.09
5175                                 1.02
5176                                 0.96
5177                                 0.99
5178                                 0.87
5179                                 0.87
5180                                 0.89
5181                                 0.85
5182                                 0.84
5183                                 0.86
5184                                 0.95
5185                                 0.82
5186                                 0.96
5187                                 0.92
5188                                 0.81
5189                                 1.02
5190                                 0.93
5191                                 0.91
5192                                 0.95
5193                                 0.82
5194                                 0.95
5195                                 0.74
5196                                 1.00
5197                                 0.97
5198                                 0.98
5199                                 0.88
5200                                 0.90
5201                                 1.02
5202                                 0.97
5203                                 1.11
5204                                 1.10
5205                                 1.16
5206                                 1.29
5207                                 1.34
5208                                 1.25
5209                                 1.01
5210                                 0.95
5211                                 1.29
5212                                 1.30
5213                                 1.16
5214                                 1.06
5215                                 1.17
5216                                 1.05
5217                                 1.16
5218                                 1.15
5219                                 1.03
5220                                 0.91
5221                                 0.85
5222                                 1.03
5223                                 0.94
5224                                 0.88
5225                                 0.74
5226                                 0.76
5227                                 0.97
5228                                 0.95
5229                                 0.92
5230                                 0.83
5231                                 0.80
5232                                 0.81
5233                                 0.75
5234                                 0.85
5235                                 0.79
5236                                 0.80
5237                                 0.91
5238                                 0.87
5239                                 0.94
5240                                 0.97
5241                                 0.88
5242                                 0.89
5243                                 0.96
5244                                 0.98
5245                                 1.00
5246                                 0.98
5247                                 0.87
5248                                 1.01
5249                                 1.10
5250                                 1.15
5251                                 1.01
5252                                 1.00
5253                                 1.46
5254                                 1.42
5255                                 1.50
5256                                 1.64
5257                                 1.55
5258                                 1.61
5259                                 1.62
5260                                 1.59
5261                                 1.56
5262                                 1.38
5263                                 1.36
5264                                 1.23
5265                                 1.43
5266                                 1.54
5267                                 1.46
5268                                 1.35
5269                                 1.53
5270                                 1.38
5271                                 1.44
5272                                 1.35
5273                                 1.53
5274                                 1.60
5275                                 1.50
5276                                 1.31
5277                                 1.29
5278                                 1.37
5279                                 1.43
5280                                 1.35
5281                                 1.29
5282                                 1.31
5283                                 1.36
5284                                 1.27
5285                                 1.23
5286                                 1.23
5287                                 1.31
5288                                 1.22
5289                                 1.21
5290                                 1.28
5291                                 1.03
5292                                 1.29
5293                                 1.24
5294                                 1.18
5295                                 1.36
5296                                 1.27
5297                                 1.34
5298                                 1.28
5299                                 1.28
5300                                 1.20
5301                                 1.32
5302                                 1.37
5303                                 1.36
5304                                 1.34
5305                                 0.93
5306                                 0.93
5307                                 1.22
5308                                 0.96
5309                                 1.45
5310                                 1.47
5311                                 1.38
5312                                 1.46
5313                                 1.52
5314                                 1.53
5315                                 1.26
5316                                 1.45
5317                                 1.45
5318                                 1.37
5319                                 1.14
5320                                 1.16
5321                                 0.95
5322                                 1.14
5323                                 1.14
5324                                 1.14
5325                                 1.21
5326                                 1.25
5327                                 1.22
5328                                 1.17
5329                                 1.15
5330                                 0.93
5331                                 1.16
5332                                 0.98
5333                                 1.23
5334                                 0.97
5335                                 0.96
5336                                 1.18
5337                                 0.86
5338                                 0.92
5339                                 0.75
5340                                 0.86
5341                                 1.06
5342                                 0.85
5343                                 1.04
5344                                 1.08
5345                                 1.10
5346                                 0.86
5347                                 1.08
5348                                 0.82
5349                                 1.05
5350                                 1.00
5351                                 0.56
5352                                 0.98
5353                                 0.81
5354                                 1.05
5355                                 0.85
5356                                 1.07
5357                                 1.00
5358                                 0.96
5359                                 0.98
5360                                 1.00
5361                                 1.21
5362                                 1.27
5363                                 1.36
5364                                 1.44
5365                                 1.43
5366                                 1.34
5367                                 1.30
5368                                 1.27
5369                                 1.23
5370                                 1.22
5371                                 1.15
5372                                 1.08
5373                                 1.04
5374                                 1.09
5375                                 1.10
5376                                 1.12
5377                                 1.15
5378                                 1.23
5379                                 1.20
5380                                 1.15
5381                                 1.10
5382                                 1.06
5383                                 1.04
5384                                 1.02
5385                                 1.04
5386                                 0.97
5387                                 0.94
5388                                 0.93
5389                                 0.89
5390                                 0.82
5391                                 0.84
5392                                 0.87
5393                                 0.90
5394                                 0.90
5395                                 0.94
5396                                 0.94
5397                                 0.93
5398                                 0.93
5399                                 0.95
5400                                 0.91
5401                                 0.94
5402                                 0.88
5403                                 0.76
5404                                 0.93
5405                                 0.95
5406                                 0.94
5407                                 0.93
5408                                 0.86
5409                                 0.92
5410                                 0.88
5411                                 0.84
5412                                 0.93
5413                                 1.09
5414                                 1.10
5415                                 1.18
5416                                 1.26
5417                                 1.26
5418                                 1.17
5419                                 1.15
5420                                 1.13
5421                                 1.03
5422                                 1.08
5423                                 1.04
5424                                 0.96
5425                                 0.92
5426                                 0.96
5427                                 0.93
5428                                 1.00
5429                                 0.95
5430                                 1.10
5431                                 1.08
5432                                 1.02
5433                                 1.01
5434                                 0.97
5435                                 0.87
5436                                 0.86
5437                                 0.92
5438                                 0.82
5439                                 0.79
5440                                 0.83
5441                                 0.77
5442                                 0.75
5443                                 0.79
5444                                 0.78
5445                                 0.77
5446                                 0.79
5447                                 0.79
5448                                 0.78
5449                                 0.78
5450                                 0.81
5451                                 0.80
5452                                 0.78
5453                                 0.77
5454                                 0.78
5455                                 0.69
5456                                 0.85
5457                                 0.78
5458                                 0.81
5459                                 0.77
5460                                 0.73
5461                                 0.73
5462                                 0.76
5463                                 0.79
5464                                 0.85
5465                                 0.80
5466                                 0.99
5467                                 0.96
5468                                 0.99
5469                                 1.11
5470                                 1.00
5471                                 0.87
5472                                 1.05
5473                                 1.14
5474                                 1.07
5475                                 0.95
5476                                 0.73
5477                                 0.88
5478                                 0.93
5479                                 0.92
5480                                 0.93
5481                                 0.95
5482                                 1.06
5483                                 1.03
5484                                 0.95
5485                                 0.87
5486                                 0.86
5487                                 0.80
5488                                 0.79
5489                                 0.82
5490                                 0.75
5491                                 0.77
5492                                 0.80
5493                                 0.70
5494                                 0.74
5495                                 0.73
5496                                 0.77
5497                                 0.73
5498                                 0.77
5499                                 0.73
5500                                 0.71
5501                                 0.70
5502                                 0.72
5503                                 0.77
5504                                 0.73
5505                                 0.70
5506                                 0.70
5507                                 0.68
5508                                 0.79
5509                                 1.12
5510                                 0.83
5511                                 0.74
5512                                 0.76
5513                                 0.95
5514                                 1.11
5515                                 1.00
5516                                 0.99
5517                                 1.07
5518                                 1.12
5519                                 1.13
5520                                 1.11
5521                                 1.08
5522                                 1.28
5523                                 1.49
5524                                 1.64
5525                                 1.60
5526                                 1.55
5527                                 1.50
5528                                 1.59
5529                                 1.54
5530                                 1.53
5531                                 1.49
5532                                 1.43
5533                                 1.37
5534                                 1.36
5535                                 1.34
5536                                 1.24
5537                                 1.20
5538                                 1.19
5539                                 1.16
5540                                 1.12
5541                                 1.20
5542                                 1.13
5543                                 1.08
5544                                 1.23
5545                                 1.20
5546                                 1.18
5547                                 1.10
5548                                 1.17
5549                                 1.21
5550                                 1.15
5551                                 1.23
5552                                 1.26
5553                                 1.32
5554                                 1.25
5555                                 1.21
5556                                 1.08
5557                                 0.85
5558                                 0.86
5559                                 0.79
5560                                 0.83
5561                                 0.95
5562                                 0.84
5563                                 0.99
5564                                 0.98
5565                                 0.93
5566                                 1.15
5567                                 1.41
5568                                 1.44
5569                                 1.13
5570                                 1.43
5571                                 1.43
5572                                 1.45
5573                                 1.49
5574                                 1.41
5575                                 1.55
5576                                 1.60
5577                                 1.66
5578                                 1.71
5579                                 1.59
5580                                 1.59
5581                                 1.58
5582                                 1.57
5583                                 1.62
5584                                 1.66
5585                                 1.57
5586                                 1.48
5587                                 1.47
5588                                 1.47
5589                                 1.48
5590                                 1.48
5591                                 1.64
5592                                 1.60
5593                                 1.65
5594                                 1.67
5595                                 1.65
5596                                 1.80
5597                                 1.75
5598                                 1.67
5599                                 1.59
5600                                 1.37
5601                                 1.69
5602                                 1.67
5603                                 1.70
5604                                 1.64
5605                                 1.50
5606                                 1.60
5607                                 1.58
5608                                 1.60
5609                                 1.33
5610                                 1.48
5611                                 1.38
5612                                 1.24
5613                                 1.09
5614                                 1.46
5615                                 1.42
5616                                 1.48
5617                                 1.14
5618                                 1.47
5619                                 1.13
5620                                 1.18
5621                                 1.29
5622                                 1.08
5623                                 1.14
5624                                 1.44
5625                                 1.42
5626                                 1.23
5627                                 1.21
5628                                 1.44
5629                                 1.43
5630                                 1.83
5631                                 1.89
5632                                 1.80
5633                                 1.78
5634                                 1.73
5635                                 1.76
5636                                 1.68
5637                                 1.30
5638                                 1.37
5639                                 1.51
5640                                 1.54
5641                                 1.54
5642                                 1.51
5643                                 1.49
5644                                 0.98
5645                                 1.17
5646                                 1.20
5647                                 1.21
5648                                 1.21
5649                                 1.19
5650                                 1.21
5651                                 1.29
5652                                 1.20
5653                                 1.09
5654                                 1.03
5655                                 1.14
5656                                 1.15
5657                                 1.21
5658                                 1.20
5659                                 1.16
5660                                 1.15
5661                                 0.98
5662                                 1.11
5663                                 0.91
5664                                 0.94
5665                                 0.98
5666                                 0.90
5667                                 0.93
5668                                 1.01
5669                                 1.00
5670                                 1.02
5671                                 0.92
5672                                 1.40
5673                                 1.45
5674                                 1.28
5675                                 1.14
5676                                 1.40
5677                                 1.39
5678                                 1.36
5679                                 1.23
5680                                 1.49
5681                                 1.49
5682                                 1.48
5683                                 1.59
5684                                 1.61
5685                                 1.62
5686                                 1.62
5687                                 1.58
5688                                 1.63
5689                                 1.81
5690                                 1.79
5691                                 1.77
5692                                 1.52
5693                                 1.55
5694                                 1.48
5695                                 1.37
5696                                 1.56
5697                                 1.69
5698                                 1.67
5699                                 1.68
5700                                 1.66
5701                                 1.72
5702                                 1.73
5703                                 1.73
5704                                 1.69
5705                                 1.62
5706                                 1.49
5707                                 1.61
5708                                 1.63
5709                                 1.61
5710                                 1.53
5711                                 1.56
5712                                 1.51
5713                                 1.54
5714                                 1.55
5715                                 1.30
5716                                 1.24
5717                                 1.31
5718                                 1.12
5719                                 1.19
5720                                 1.32
5721                                 1.26
5722                                 1.30
5723                                 1.09
5724                                 1.29
5725                                 1.27
5726                                 1.28
5727                                 1.26
5728                                 1.25
5729                                 1.13
5730                                 1.23
5731                                 1.30
5732                                 1.37
5733                                 1.37
5734                                 1.36
5735                                 1.50
5736                                 1.50
5737                                 1.49
5738                                 1.53
5739                                 1.42
5740                                 1.37
5741                                 1.46
5742                                 1.56
5743                                 1.33
5744                                 1.34
5745                                 1.32
5746                                 1.32
5747                                 1.32
5748                                 1.34
5749                                 1.35
5750                                 1.31
5751                                 1.34
5752                                 1.46
5753                                 1.50
5754                                 1.62
5755                                 1.60
5756                                 1.64
5757                                 1.71
5758                                 1.55
5759                                 1.71
5760                                 1.54
5761                                 1.55
5762                                 1.54
5763                                 1.56
5764                                 1.54
5765                                 1.53
5766                                 1.54
5767                                 1.48
5768                                 1.68
5769                                 1.69
5770                                 1.68
5771                                 1.56
5772                                 1.40
5773                                 1.37
5774                                 1.34
5775                                 1.29
5776                                 1.37
5777                                 1.43
5778                                 0.93
5779                                 1.13
5780                                 0.98
5781                                 1.06
5782                                 1.09
5783                                 1.30
5784                                 1.26
5785                                 1.15
5786                                 1.15
5787                                 1.20
5788                                 1.53
5789                                 1.68
5790                                 1.74
5791                                 1.77
5792                                 1.74
5793                                 1.72
5794                                 1.71
5795                                 1.65
5796                                 1.78
5797                                 1.64
5798                                 1.26
5799                                 1.36
5800                                 1.38
5801                                 1.46
5802                                 1.49
5803                                 1.28
5804                                 1.28
5805                                 1.15
5806                                 1.20
5807                                 1.22
5808                                 1.20
5809                                 1.32
5810                                 1.35
5811                                 1.17
5812                                 1.08
5813                                 1.25
5814                                 1.26
5815                                 1.34
5816                                 1.13
5817                                 1.22
5818                                 1.33
5819                                 1.31
5820                                 1.31
5821                                 1.15
5822                                 0.95
5823                                 0.95
5824                                 0.79
5825                                 0.67
5826                                 0.76
5827                                 0.76
5828                                 0.93
5829                                 1.00
5830                                 0.89
5831                                 0.93
5832                                 1.33
5833                                 1.26
5834                                 1.02
5835                                 1.26
5836                                 1.40
5837                                 1.40
5838                                 1.44
5839                                 1.47
5840                                 1.49
5841                                 1.64
5842                                 1.70
5843                                 1.77
5844                                 1.76
5845                                 1.72
5846                                 1.61
5847                                 1.69
5848                                 1.65
5849                                 1.58
5850                                 1.52
5851                                 1.47
5852                                 1.43
5853                                 1.40
5854                                 1.39
5855                                 1.38
5856                                 1.32
5857                                 1.36
5858                                 1.33
5859                                 1.43
5860                                 1.38
5861                                 1.49
5862                                 1.50
5863                                 1.50
5864                                 1.41
5865                                 1.36
5866                                 1.53
5867                                 1.50
5868                                 1.56
5869                                 1.54
5870                                 1.48
5871                                 1.48
5872                                 1.47
5873                                 1.55
5874                                 1.41
5875                                 1.26
5876                                 1.33
5877                                 1.25
5878                                 0.95
5879                                 1.33
5880                                 1.18
5881                                 1.37
5882                                 1.28
5883                                 1.21
5884                                 0.93
5885                                 1.36
5886                                 1.49
5887                                 1.13
5888                                 1.56
5889                                 1.70
5890                                 1.71
5891                                 1.78
5892                                 1.77
5893                                 1.94
5894                                 2.06
5895                                 2.11
5896                                 2.22
5897                                 2.14
5898                                 2.07
5899                                 2.15
5900                                 2.02
5901                                 2.00
5902                                 1.93
5903                                 1.88
5904                                 1.89
5905                                 1.72
5906                                 1.62
5907                                 1.59
5908                                 1.54
5909                                 1.54
5910                                 1.45
5911                                 1.44
5912                                 1.53
5913                                 1.60
5914                                 1.64
5915                                 1.63
5916                                 1.64
5917                                 1.60
5918                                 1.51
5919                                 1.62
5920                                 1.63
5921                                 1.65
5922                                 1.65
5923                                 1.65
5924                                 1.64
5925                                 1.64
5926                                 1.66
5927                                 1.62
5928                                 1.61
5929                                 1.27
5930                                 1.05
5931                                 0.70
5932                                 1.10
5933                                 1.21
5934                                 1.23
5935                                 1.16
5936                                 1.15
5937                                 0.86
5938                                 1.36
5939                                 1.30
5940                                 1.16
5941                                 1.05
5942                                 1.23
5943                                 1.01
5944                                 0.90
5945                                 1.01
5946                                 1.42
5947                                 1.75
5948                                 1.81
5949                                 1.90
5950                                 1.86
5951                                 1.79
5952                                 1.79
5953                                 1.75
5954                                 1.72
5955                                 1.31
5956                                 1.15
5957                                 1.34
5958                                 1.46
5959                                 1.48
5960                                 1.47
5961                                 1.50
5962                                 1.09
5963                                 0.79
5964                                 0.80
5965                                 1.09
5966                                 0.87
5967                                 1.00
5968                                 0.96
5969                                 1.00
5970                                 0.76
5971                                 0.60
5972                                 1.10
5973                                 1.13
5974                                 1.06
5975                                 1.17
5976                                 1.01
5977                                 1.16
5978                                 0.95
5979                                 0.90
5980                                 0.78
5981                                 0.78
5982                                 0.70
5983                                 0.65
5984                                 0.65
5985                                 0.71
5986                                 0.69
5987                                 0.76
5988                                 0.82
5989                                 0.64
5990                                 0.80
5991                                 1.06
5992                                 1.03
5993                                 1.10
5994                                 0.99
5995                                 1.04
5996                                 0.97
5997                                 0.97
5998                                 0.96
5999                                 1.22
6000                                 1.55
6001                                 1.71
6002                                 1.83
6003                                 1.72
6004                                 1.69
6005                                 1.70
6006                                 1.68
6007                                 1.62
6008                                 1.26
6009                                 1.23
6010                                 1.52
6011                                 1.21
6012                                 1.22
6013                                 1.39
6014                                 1.36
6015                                 0.95
6016                                 0.85
6017                                 0.86
6018                                 0.81
6019                                 0.98
6020                                 1.10
6021                                 1.24
6022                                 1.16
6023                                 0.99
6024                                 0.93
6025                                 1.18
6026                                 1.26
6027                                 0.99
6028                                 1.07
6029                                 1.23
6030                                 1.26
6031                                 1.30
6032                                 1.29
6033                                 1.14
6034                                 1.04
6035                                 1.07
6036                                 0.78
6037                                 0.69
6038                                 1.06
6039                                 0.91
6040                                 0.97
6041                                 0.86
6042                                 0.83
6043                                 0.90
6044                                 0.99
6045                                 0.83
6046                                 0.75
6047                                 0.85
6048                                 0.95
6049                                 0.94
6050                                 0.96
6051                                 0.96
6052                                 1.05
6053                                 1.10
6054                                 1.28
6055                                 1.29
6056                                 1.30
6057                                 1.29
6058                                 1.24
6059                                 1.20
6060                                 1.23
6061                                 1.13
6062                                 0.99
6063                                 1.00
6064                                 0.98
6065                                 1.03
6066                                 0.99
6067                                 0.98
6068                                 0.84
6069                                 0.90
6070                                 0.89
6071                                 0.90
6072                                 0.90
6073                                 0.93
6074                                 0.93
6075                                 0.91
6076                                 0.95
6077                                 0.89
6078                                 0.90
6079                                 0.85
6080                                 0.87
6081                                 0.90
6082                                 0.83
6083                                 0.91
6084                                 0.94
6085                                 0.90
6086                                 0.93
6087                                 0.73
6088                                 0.76
6089                                 0.70
6090                                 0.65
6091                                 0.73
6092                                 0.70
6093                                 0.70
6094                                 0.78
6095                                 0.68
6096                                 0.94
6097                                 1.19
6098                                 1.13
6099                                 0.97
6100                                 1.10
6101                                 1.36
6102                                 1.13
6103                                 1.03
6104                                 1.07
6105                                 1.20
6106                                 1.43
6107                                 1.57
6108                                 1.60
6109                                 1.47
6110                                 1.60
6111                                 1.47
6112                                 1.56
6113                                 1.50
6114                                 1.10
6115                                 1.20
6116                                 1.46
6117                                 1.43
6118                                 1.19
6119                                 1.15
6120                                 1.46
6121                                 1.11
6122                                 1.19
6123                                 1.17
6124                                 1.14
6125                                 1.18
6126                                 1.16
6127                                 1.19
6128                                 1.23
6129                                 1.23
6130                                 1.13
6131                                 1.33
6132                                 1.15
6133                                 1.23
6134                                 1.31
6135                                 1.33
6136                                 1.42
6137                                 1.32
6138                                 1.32
6139                                 1.32
6140                                 1.15
6141                                 1.07
6142                                 0.96
6143                                 0.77
6144                                 1.05
6145                                 1.03
6146                                 1.04
6147                                 0.92
6148                                 0.80
6149                                 0.84
6150                                 1.25
6151                                 1.08
6152                                 1.13
6153                                 0.97
6154                                 1.21
6155                                 0.99
6156                                 0.93
6157                                 1.00
6158                                 1.28
6159                                 1.59
6160                                 1.79
6161                                 1.94
6162                                 1.88
6163                                 1.82
6164                                 1.84
6165                                 1.80
6166                                 1.68
6167                                 1.32
6168                                 1.25
6169                                 1.55
6170                                 1.25
6171                                 1.29
6172                                 1.55
6173                                 1.18
6174                                 0.99
6175                                 1.22
6176                                 1.01
6177                                 0.85
6178                                 1.28
6179                                 1.26
6180                                 1.29
6181                                 1.32
6182                                 1.03
6183                                 0.99
6184                                 1.48
6185                                 1.46
6186                                 1.45
6187                                 1.51
6188                                 1.48
6189                                 1.48
6190                                 1.48
6191                                 1.44
6192                                 0.97
6193                                 0.83
6194                                 1.07
6195                                 0.74
6196                                 0.65
6197                                 1.01
6198                                 0.84
6199                                 0.98
6200                                 0.90
6201                                 0.75
6202                                 1.09
6203                                 1.64
6204                                 1.25
6205                                 1.61
6206                                 0.99
6207                                 1.65
6208                                 1.40
6209                                 1.59
6210                                 1.70
6211                                 1.55
6212                                 1.96
6213                                 2.07
6214                                 2.19
6215                                 2.09
6216                                 1.96
6217                                 1.99
6218                                 1.86
6219                                 1.65
6220                                 1.74
6221                                 1.70
6222                                 1.70
6223                                 1.45
6224                                 1.63
6225                                 1.68
6226                                 1.42
6227                                 1.43
6228                                 1.51
6229                                 1.74
6230                                 1.29
6231                                 1.79
6232                                 1.88
6233                                 1.85
6234                                 1.88
6235                                 1.87
6236                                 1.46
6237                                 1.83
6238                                 1.67
6239                                 1.67
6240                                 1.73
6241                                 1.73
6242                                 1.71
6243                                 1.73
6244                                 1.73
6245                                 1.50
6246                                 1.02
6247                                 1.42
6248                                 1.13
6249                                 0.81
6250                                 1.29
6251                                 0.92
6252                                 1.29
6253                                 1.26
6254                                 0.77
6255                                 0.92
6256                                 1.30
6257                                 1.22
6258                                 1.18
6259                                 1.15
6260                                 1.38
6261                                 1.23
6262                                 1.19
6263                                 1.26
6264                                 1.52
6265                                 1.75
6266                                 1.86
6267                                 1.98
6268                                 1.89
6269                                 1.83
6270                                 1.86
6271                                 1.81
6272                                 1.73
6273                                 1.49
6274                                 1.44
6275                                 1.57
6276                                 1.42
6277                                 1.44
6278                                 1.47
6279                                 1.38
6280                                 1.20
6281                                 1.18
6282                                 1.15
6283                                 1.12
6284                                 1.27
6285                                 1.33
6286                                 1.37
6287                                 1.34
6288                                 1.19
6289                                 1.10
6290                                 1.38
6291                                 1.38
6292                                 1.36
6293                                 1.41
6294                                 1.41
6295                                 1.42
6296                                 1.39
6297                                 1.38
6298                                 1.24
6299                                 1.08
6300                                 1.10
6301                                 0.88
6302                                 0.73
6303                                 1.01
6304                                 0.95
6305                                 1.05
6306                                 0.99
6307                                 0.88
6308                                 1.37
6309                                 1.37
6310                                 1.37
6311                                 1.13
6312                                 1.27
6313                                 1.30
6314                                 1.30
6315                                 1.38
6316                                 1.45
6317                                 1.47
6318                                 1.43
6319                                 1.48
6320                                 1.54
6321                                 1.45
6322                                 1.44
6323                                 1.46
6324                                 1.51
6325                                 1.53
6326                                 1.48
6327                                 1.47
6328                                 1.43
6329                                 1.37
6330                                 1.36
6331                                 1.38
6332                                 1.38
6333                                 1.47
6334                                 1.48
6335                                 1.46
6336                                 1.50
6337                                 1.50
6338                                 1.55
6339                                 1.56
6340                                 1.51
6341                                 1.54
6342                                 1.51
6343                                 1.48
6344                                 1.49
6345                                 1.56
6346                                 1.48
6347                                 1.46
6348                                 1.38
6349                                 1.40
6350                                 1.42
6351                                 1.19
6352                                 1.29
6353                                 1.28
6354                                 1.13
6355                                 1.14
6356                                 1.25
6357                                 1.40
6358                                 1.44
6359                                 1.30
6360                                 1.35
6361                                 1.42
6362                                 1.50
6363                                 1.44
6364                                 1.14
6365                                 1.55
6366                                 1.38
6367                                 1.38
6368                                 1.56
6369                                 1.53
6370                                 1.53
6371                                 1.50
6372                                 1.58
6373                                 1.60
6374                                 1.60
6375                                 1.59
6376                                 1.54
6377                                 1.57
6378                                 1.74
6379                                 1.78
6380                                 1.74
6381                                 1.63
6382                                 1.60
6383                                 1.56
6384                                 1.59
6385                                 1.59
6386                                 1.72
6387                                 1.76
6388                                 1.68
6389                                 1.79
6390                                 1.75
6391                                 1.81
6392                                 1.85
6393                                 1.80
6394                                 1.76
6395                                 1.61
6396                                 1.66
6397                                 1.76
6398                                 1.80
6399                                 1.74
6400                                 1.71
6401                                 1.58
6402                                 1.66
6403                                 1.65
6404                                 1.25
6405                                 1.59
6406                                 1.30
6407                                 1.14
6408                                 1.20
6409                                 1.46
6410                                 1.47
6411                                 1.43
6412                                 1.25
6413                                 1.64
6414                                 0.78
6415                                 0.99
6416                                 0.98
6417                                 0.79
6418                                 0.77
6419                                 0.88
6420                                 0.89
6421                                 0.88
6422                                 0.95
6423                                 1.12
6424                                 1.16
6425                                 1.26
6426                                 1.29
6427                                 1.29
6428                                 1.25
6429                                 1.20
6430                                 1.10
6431                                 1.19
6432                                 1.16
6433                                 1.01
6434                                 0.99
6435                                 0.99
6436                                 1.00
6437                                 1.02
6438                                 1.01
6439                                 0.78
6440                                 0.83
6441                                 0.82
6442                                 0.77
6443                                 0.89
6444                                 0.83
6445                                 0.87
6446                                 0.83
6447                                 0.79
6448                                 0.74
6449                                 0.72
6450                                 0.68
6451                                 0.76
6452                                 0.81
6453                                 0.70
6454                                 0.83
6455                                 0.85
6456                                 0.90
6457                                 0.74
6458                                 0.53
6459                                 0.67
6460                                 0.58
6461                                 0.55
6462                                 0.70
6463                                 0.68
6464                                 0.53
6465                                 0.57
6466                                 0.51
6467                                 0.96
6468                                 1.30
6469                                 1.26
6470                                 1.26
6471                                 1.25
6472                                 1.40
6473                                 1.08
6474                                 1.03
6475                                 1.26
6476                                 1.63
6477                                 1.67
6478                                 1.76
6479                                 1.97
6480                                 1.84
6481                                 1.74
6482                                 1.86
6483                                 1.86
6484                                 1.70
6485                                 1.29
6486                                 1.39
6487                                 1.49
6488                                 1.35
6489                                 1.41
6490                                 1.36
6491                                 1.35
6492                                 1.08
6493                                 1.09
6494                                 1.04
6495                                 1.03
6496                                 0.98
6497                                 1.07
6498                                 1.19
6499                                 1.09
6500                                 0.85
6501                                 0.93
6502                                 1.18
6503                                 1.06
6504                                 1.14
6505                                 1.30
6506                                 1.26
6507                                 1.27
6508                                 1.25
6509                                 1.35
6510                                 1.35
6511                                 1.02
6512                                 0.94
6513                                 0.77
6514                                 0.84
6515                                 0.87
6516                                 0.93
6517                                 0.96
6518                                 0.86
6519                                 0.91
6520                                 1.12
6521                                 1.38
6522                                 0.99
6523                                 1.01
6524                                 1.26
6525                                 1.42
6526                                 1.21
6527                                 1.33
6528                                 1.48
6529                                 1.17
6530                                 1.56
6531                                 1.76
6532                                 1.79
6533                                 2.00
6534                                 1.82
6535                                 1.73
6536                                 1.77
6537                                 1.88
6538                                 1.63
6539                                 1.63
6540                                 1.49
6541                                 1.44
6542                                 1.43
6543                                 1.44
6544                                 1.48
6545                                 1.42
6546                                 1.41
6547                                 1.36
6548                                 1.45
6549                                 1.43
6550                                 1.46
6551                                 1.43
6552                                 1.44
6553                                 1.47
6554                                 1.13
6555                                 1.26
6556                                 1.47
6557                                 1.46
6558                                 1.50
6559                                 1.64
6560                                 1.62
6561                                 1.56
6562                                 1.55
6563                                 1.56
6564                                 1.16
6565                                 1.23
6566                                 0.90
6567                                 0.74
6568                                 1.11
6569                                 0.91
6570                                 1.16
6571                                 1.15
6572                                 0.81
6573                                 1.04
6574                                 1.24
6575                                 1.03
6576                                 1.03
6577                                 1.01
6578                                 1.16
6579                                 1.13
6580                                 1.06
6581                                 1.12
6582                                 1.29
6583                                 1.37
6584                                 1.45
6585                                 1.64
6586                                 1.61
6587                                 1.61
6588                                 1.58
6589                                 1.49
6590                                 1.53
6591                                 1.48
6592                                 1.26
6593                                 1.18
6594                                 1.30
6595                                 1.29
6596                                 1.28
6597                                 1.22
6598                                 0.99
6599                                 1.06
6600                                 1.03
6601                                 1.01
6602                                 0.99
6603                                 1.05
6604                                 1.06
6605                                 1.02
6606                                 0.98
6607                                 0.94
6608                                 0.95
6609                                 0.84
6610                                 0.93
6611                                 1.04
6612                                 1.04
6613                                 1.02
6614                                 1.02
6615                                 0.99
6616                                 0.96
6617                                 0.89
6618                                 0.93
6619                                 0.72
6620                                 0.54
6621                                 0.93
6622                                 0.79
6623                                 0.78
6624                                 0.81
6625                                 0.77
6626                                 0.88
6627                                 1.10
6628                                 0.89
6629                                 1.07
6630                                 1.01
6631                                 1.19
6632                                 1.14
6633                                 1.08
6634                                 1.04
6635                                 1.09
6636                                 1.49
6637                                 1.67
6638                                 1.80
6639                                 1.77
6640                                 1.75
6641                                 1.73
6642                                 1.74
6643                                 1.61
6644                                 1.66
6645                                 1.45
6646                                 1.19
6647                                 1.22
6648                                 1.39
6649                                 1.38
6650                                 1.37
6651                                 1.12
6652                                 1.07
6653                                 0.92
6654                                 0.99
6655                                 0.99
6656                                 0.96
6657                                 1.13
6658                                 1.14
6659                                 0.94
6660                                 0.87
6661                                 0.99
6662                                 1.04
6663                                 1.18
6664                                 1.01
6665                                 0.98
6666                                 1.12
6667                                 1.11
6668                                 1.12
6669                                 0.99
6670                                 0.82
6671                                 0.79
6672                                 0.64
6673                                 0.53
6674                                 0.60
6675                                 0.62
6676                                 0.76
6677                                 0.89
6678                                 0.84
6679                                 0.87
6680                                 1.18
6681                                 1.07
6682                                 1.01
6683                                 1.11
6684                                 1.45
6685                                 1.18
6686                                 1.14
6687                                 1.18
6688                                 1.23
6689                                 1.70
6690                                 1.79
6691                                 1.98
6692                                 1.89
6693                                 1.88
6694                                 1.73
6695                                 1.65
6696                                 1.64
6697                                 1.62
6698                                 1.56
6699                                 1.38
6700                                 1.30
6701                                 1.30
6702                                 1.37
6703                                 1.44
6704                                 1.01
6705                                 1.02
6706                                 0.97
6707                                 1.06
6708                                 1.04
6709                                 1.06
6710                                 1.08
6711                                 1.10
6712                                 1.27
6713                                 1.06
6714                                 1.26
6715                                 1.17
6716                                 1.22
6717                                 1.20
6718                                 1.15
6719                                 1.11
6720                                 1.29
6721                                 1.18
6722                                 0.99
6723                                 0.95
6724                                 0.94
6725                                 0.75
6726                                 0.91
6727                                 0.94
6728                                 0.94
6729                                 1.06
6730                                 0.86
6731                                 0.77
6732                                 1.17
6733                                 1.45
6734                                 1.01
6735                                 1.03
6736                                 1.35
6737                                 1.45
6738                                 1.23
6739                                 1.42
6740                                 1.53
6741                                 1.22
6742                                 1.59
6743                                 1.79
6744                                 1.92
6745                                 2.04
6746                                 1.93
6747                                 1.84
6748                                 1.81
6749                                 1.98
6750                                 1.65
6751                                 1.70
6752                                 1.51
6753                                 1.48
6754                                 1.46
6755                                 1.47
6756                                 1.48
6757                                 1.43
6758                                 1.44
6759                                 1.43
6760                                 1.52
6761                                 1.48
6762                                 1.49
6763                                 1.45
6764                                 1.49
6765                                 1.50
6766                                 1.17
6767                                 1.26
6768                                 1.51
6769                                 1.50
6770                                 1.54
6771                                 1.71
6772                                 1.71
6773                                 1.62
6774                                 1.70
6775                                 1.67
6776                                 1.26
6777                                 1.35
6778                                 0.97
6779                                 0.87
6780                                 1.30
6781                                 1.05
6782                                 1.34
6783                                 1.40
6784                                 0.98
6785                                 0.96
6786                                 1.26
6787                                 1.23
6788                                 1.07
6789                                 1.18
6790                                 1.33
6791                                 1.30
6792                                 1.33
6793                                 1.28
6794                                 1.41
6795                                 1.56
6796                                 1.63
6797                                 1.72
6798                                 1.64
6799                                 1.60
6800                                 1.55
6801                                 1.56
6802                                 1.54
6803                                 1.50
6804                                 1.41
6805                                 1.37
6806                                 1.34
6807                                 1.34
6808                                 1.34
6809                                 1.34
6810                                 1.29
6811                                 1.26
6812                                 1.27
6813                                 1.34
6814                                 1.34
6815                                 1.43
6816                                 1.38
6817                                 1.34
6818                                 1.31
6819                                 1.19
6820                                 1.38
6821                                 1.40
6822                                 1.43
6823                                 1.39
6824                                 1.30
6825                                 1.33
6826                                 1.35
6827                                 1.33
6828                                 1.14
6829                                 1.20
6830                                 1.19
6831                                 1.07
6832                                 0.95
6833                                 1.22
6834                                 1.17
6835                                 1.23
6836                                 1.11
6837                                 1.12
6838                                 0.81
6839                                 1.04
6840                                 0.91
6841                                 0.90
6842                                 1.01
6843                                 1.08
6844                                 1.02
6845                                 1.07
6846                                 1.02
6847                                 1.14
6848                                 1.41
6849                                 1.57
6850                                 1.76
6851                                 1.70
6852                                 1.66
6853                                 1.48
6854                                 1.42
6855                                 1.34
6856                                 1.28
6857                                 1.07
6858                                 1.05
6859                                 1.13
6860                                 1.14
6861                                 1.21
6862                                 1.18
6863                                 0.99
6864                                 0.96
6865                                 0.90
6866                                 1.00
6867                                 1.13
6868                                 1.07
6869                                 0.97
6870                                 0.99
6871                                 1.02
6872                                 0.84
6873                                 0.99
6874                                 1.10
6875                                 1.09
6876                                 1.03
6877                                 0.95
6878                                 0.91
6879                                 0.96
6880                                 0.75
6881                                 0.60
6882                                 0.88
6883                                 0.82
6884                                 0.66
6885                                 0.68
6886                                 0.93
6887                                 0.87
6888                                 0.89
6889                                 0.84
6890                                 0.73
6891                                 1.06
6892                                 1.14
6893                                 1.03
6894                                 1.06
6895                                 0.97
6896                                 1.27
6897                                 1.27
6898                                 1.11
6899                                 1.32
6900                                 1.11
6901                                 1.26
6902                                 1.46
6903                                 1.34
6904                                 1.72
6905                                 1.70
6906                                 1.62
6907                                 1.62
6908                                 1.57
6909                                 1.46
6910                                 1.46
6911                                 1.39
6912                                 1.33
6913                                 1.40
6914                                 1.39
6915                                 1.32
6916                                 1.26
6917                                 1.27
6918                                 1.30
6919                                 1.29
6920                                 1.32
6921                                 1.38
6922                                 1.39
6923                                 1.36
6924                                 1.35
6925                                 1.02
6926                                 1.32
6927                                 1.35
6928                                 1.27
6929                                 1.34
6930                                 1.37
6931                                 1.38
6932                                 1.32
6933                                 1.32
6934                                 1.13
6935                                 0.98
6936                                 1.11
6937                                 0.90
6938                                 0.61
6939                                 0.97
6940                                 1.06
6941                                 1.01
6942                                 1.10
6943                                 0.81
6944                                 1.33
6945                                 1.34
6946                                 1.41
6947                                 1.14
6948                                 1.41
6949                                 1.42
6950                                 1.37
6951                                 1.52
6952                                 1.41
6953                                 1.57
6954                                 1.54
6955                                 1.68
6956                                 1.69
6957                                 1.67
6958                                 1.65
6959                                 1.61
6960                                 1.61
6961                                 1.80
6962                                 1.81
6963                                 1.75
6964                                 1.58
6965                                 1.56
6966                                 1.52
6967                                 1.55
6968                                 1.57
6969                                 1.63
6970                                 1.72
6971                                 1.47
6972                                 1.82
6973                                 1.74
6974                                 1.83
6975                                 1.75
6976                                 1.80
6977                                 1.75
6978                                 1.65
6979                                 1.84
6980                                 1.68
6981                                 1.76
6982                                 1.75
6983                                 1.74
6984                                 1.72
6985                                 1.70
6986                                 1.76
6987                                 1.39
6988                                 1.55
6989                                 1.28
6990                                 1.19
6991                                 1.24
6992                                 1.52
6993                                 1.48
6994                                 1.38
6995                                 1.29
6996                                 1.44
6997                                 1.31
6998                                 1.37
6999                                 1.35
7000                                 1.17
7001                                 1.32
7002                                 1.37
7003                                 1.37
7004                                 1.35
7005                                 1.45
7006                                 1.52
7007                                 1.51
7008                                 1.62
7009                                 1.63
7010                                 1.61
7011                                 1.59
7012                                 1.54
7013                                 1.61
7014                                 1.75
7015                                 1.70
7016                                 1.68
7017                                 1.49
7018                                 1.52
7019                                 1.49
7020                                 1.46
7021                                 1.50
7022                                 1.58
7023                                 1.63
7024                                 1.54
7025                                 1.68
7026                                 1.68
7027                                 1.74
7028                                 1.71
7029                                 1.66
7030                                 1.67
7031                                 1.53
7032                                 1.60
7033                                 1.59
7034                                 1.65
7035                                 1.60
7036                                 1.62
7037                                 1.54
7038                                 1.59
7039                                 1.60
7040                                 1.34
7041                                 1.43
7042                                 1.36
7043                                 1.19
7044                                 1.23
7045                                 1.39
7046                                 1.39
7047                                 1.36
7048                                 1.25
7049                                 1.35
7050                                 1.13
7051                                 1.36
7052                                 1.26
7053                                 1.29
7054                                 1.10
7055                                 1.41
7056                                 1.36
7057                                 1.01
7058                                 1.51
7059                                 1.50
7060                                 1.52
7061                                 1.58
7062                                 1.61
7063                                 1.64
7064                                 1.63
7065                                 1.59
7066                                 1.74
7067                                 1.88
7068                                 1.83
7069                                 1.82
7070                                 1.24
7071                                 1.59
7072                                 1.55
7073                                 1.38
7074                                 1.39
7075                                 1.48
7076                                 1.57
7077                                 1.62
7078                                 1.52
7079                                 1.62
7080                                 1.66
7081                                 1.66
7082                                 1.54
7083                                 1.53
7084                                 1.23
7085                                 1.39
7086                                 1.38
7087                                 1.46
7088                                 1.33
7089                                 1.45
7090                                 1.38
7091                                 1.43
7092                                 1.41
7093                                 1.38
7094                                 1.25
7095                                 1.37
7096                                 1.13
7097                                 1.13
7098                                 1.21
7099                                 1.17
7100                                 1.25
7101                                 1.19
7102                                 1.11
7103                                 1.16
7104                                 1.39
7105                                 1.01
7106                                 1.02
7107                                 1.31
7108                                 1.40
7109                                 1.20
7110                                 1.38
7111                                 1.48
7112                                 1.22
7113                                 1.56
7114                                 1.74
7115                                 1.85
7116                                 2.00
7117                                 1.83
7118                                 1.76
7119                                 1.70
7120                                 1.80
7121                                 1.57
7122                                 1.57
7123                                 1.44
7124                                 1.41
7125                                 1.40
7126                                 1.38
7127                                 1.42
7128                                 1.40
7129                                 1.40
7130                                 1.35
7131                                 1.40
7132                                 1.41
7133                                 1.41
7134                                 1.40
7135                                 1.41
7136                                 1.42
7137                                 1.17
7138                                 1.24
7139                                 1.44
7140                                 1.47
7141                                 1.49
7142                                 1.59
     Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                    386100
2                                                    331378
3                                                    417772
4                                                    357637
5                                                    333281
6                                                    356415
7                                                    339861
8                                                    334042
9                                                    419089
10                                                   358478
11                                                   349072
12                                                   433874
13                                                   418682
14                                                   370321
15                                                   516433
16                                                   417232
17                                                   472137
18                                                   382973
19                                                   379054
20                                                   465214
21                                                   503792
22                                                   405898
23                                                   437378
24                                                   557213
25                                                   407205
26                                                   562462
27                                                   435211
28                                                   554764
29                                                   465805
30                                                   551009
31                                                   454702
32                                                   623212
33                                                   451251
34                                                   480071
35                                                   634213
36                                                   448597
37                                                   430966
38                                                   451102
39                                                   383139
40                                                   365722
41                                                   479591
42                                                   399566
43                                                   420826
44                                                   512532
45                                                   431309
46                                                   427391
47                                                   433884
48                                                   636771
49                                                   449333
50                                                   431491
51                                                   397543
52                                                   435021
53                                                   596819
54                                                   642682
55                                                   619509
56                                                   649141
57                                                   545800
58                                                   572020
59                                                   718330
60                                                   830967
61                                                   742221
62                                                   656892
63                                                  1005604
64                                                   653560
65                                                   657444
66                                                   696282
67                                                   709269
68                                                   924994
69                                                   823623
70                                                   734721
71                                                   783935
72                                                   882755
73                                                   821523
74                                                   800603
75                                                   772926
76                                                   800194
77                                                   850932
78                                                   896299
79                                                   862262
80                                                   862841
81                                                   955047
82                                                   794310
83                                                   949177
84                                                   908662
85                                                   790854
86                                                   855206
87                                                   896972
88                                                   747841
89                                                   762863
90                                                   837630
91                                                   688065
92                                                   663677
93                                                   808897
94                                                   693698
95                                                   657746
96                                                   770115
97                                                   749846
98                                                   637319
99                                                   844931
100                                                 1007419
101                                                  692934
102                                                  657741
103                                                  670232
104                                                  788025
105                                                   62910
106                                                   57504
107                                                   58461
108                                                   95295
109                                                   49069
110                                                   52876
111                                                   68648
112                                                   55848
113                                                   53586
114                                                   59874
115                                                   54191
116                                                   80904
117                                                   59496
118                                                   64188
119                                                   73953
120                                                   64209
121                                                   64465
122                                                   60100
123                                                   70774
124                                                   64002
125                                                   61287
126                                                   67764
127                                                   67826
128                                                   63958
129                                                   74678
130                                                   85044
131                                                   75280
132                                                   81397
133                                                   87608
134                                                   80751
135                                                   76689
136                                                   83210
137                                                   77988
138                                                   95789
139                                                   85467
140                                                   88111
141                                                   89695
142                                                   66246
143                                                   76704
144                                                   74544
145                                                   61419
146                                                   65918
147                                                   65350
148                                                   75046
149                                                   76836
150                                                   61222
151                                                   69971
152                                                  113578
153                                                   66069
154                                                   62870
155                                                   57356
156                                                   80034
157                                                  450816
158                                                  489803
159                                                  549946
160                                                  488679
161                                                  350560
162                                                  466760
163                                                  513739
164                                                  641760
165                                                  553097
166                                                  534249
167                                                  725296
168                                                  485707
169                                                  536479
170                                                  553307
171                                                  498640
172                                                  655683
173                                                  577775
174                                                  526665
175                                                  589471
176                                                  565795
177                                                  690517
178                                                  571995
179                                                  500234
180                                                  597168
181                                                  634516
182                                                  582910
183                                                  560495
184                                                  543505
185                                                  684346
186                                                  562543
187                                                  565161
188                                                  633522
189                                                  534489
190                                                  625558
191                                                  552369
192                                                  465911
193                                                  504620
194                                                  408485
195                                                  449818
196                                                  453631
197                                                  453173
198                                                  417750
199                                                  408404
200                                                  485736
201                                                  355432
202                                                  399884
203                                                  609985
204                                                  490022
205                                                  409344
206                                                  401331
207                                                  437772
208                                                  491738
209                                                   96233
210                                                   90868
211                                                   98473
212                                                  108458
213                                                   79973
214                                                   90242
215                                                   99704
216                                                  111039
217                                                  118541
218                                                   99555
219                                                  106084
220                                                  109154
221                                                   98900
222                                                   90746
223                                                   60624
224                                                   73043
225                                                   76140
226                                                   83731
227                                                   68953
228                                                   69798
229                                                   81830
230                                                   78163
231                                                   91825
232                                                  128846
233                                                  127351
234                                                  140414
235                                                  137247
236                                                  108655
237                                                  149377
238                                                  130908
239                                                  130841
240                                                  121943
241                                                  137050
242                                                  170547
243                                                  136772
244                                                  136964
245                                                  139613
246                                                  118173
247                                                  124146
248                                                  119891
249                                                  119903
250                                                  103413
251                                                  125725
252                                                  112364
253                                                  109547
254                                                  100207
255                                                  132760
256                                                  153920
257                                                  114053
258                                                  107040
259                                                  106221
260                                                  116253
261                                                 5040365
262                                                 4695737
263                                                 5259354
264                                                 5775536
265                                                 4575711
266                                                 4804278
267                                                 5755191
268                                                 5148984
269                                                 5830428
270                                                 4592462
271                                                 4999032
272                                                 5063309
273                                                 4943781
274                                                 5216785
275                                                 4759791
276                                                 5106508
277                                                 5806393
278                                                 5647385
279                                                 5193221
280                                                 5616434
281                                                 6232081
282                                                 5428239
283                                                 5557616
284                                                 5225201
285                                                 5451637
286                                                 6718012
287                                                 5641742
288                                                 5952597
289                                                 6741662
290                                                 6374843
291                                                 6236903
292                                                 5621714
293                                                 5289139
294                                                 6650358
295                                                 8567534
296                                                 4923565
297                                                 5871081
298                                                 5636645
299                                                 5467156
300                                                 5341822
301                                                 5571813
302                                                 5557163
303                                                 5990244
304                                                 6700134
305                                                 5951871
306                                                 5699945
307                                                 5871225
308                                                 9032181
309                                                 4929884
310                                                 5570915
311                                                 6024932
312                                                 5777335
313                                                  156698
314                                                  139918
315                                                  157146
316                                                  156114
317                                                  138859
318                                                  133618
319                                                  169281
320                                                  164322
321                                                  171794
322                                                  140921
323                                                  156566
324                                                  167397
325                                                  146738
326                                                  168780
327                                                  161444
328                                                  171078
329                                                  227728
330                                                  179027
331                                                  203298
332                                                  178526
333                                                  173059
334                                                  179322
335                                                  173897
336                                                  187575
337                                                  182857
338                                                  216119
339                                                  193654
340                                                  201173
341                                                  207094
342                                                  199980
343                                                  194631
344                                                  212528
345                                                  190800
346                                                  192767
347                                                  261492
348                                                  182142
349                                                  180944
350                                                  204005
351                                                  177919
352                                                  178788
353                                                  182876
354                                                  183944
355                                                  159387
356                                                  176146
357                                                  201741
358                                                  156799
359                                                  150139
360                                                  254010
361                                                  167270
362                                                  152671
363                                                  159943
364                                                  166006
365                                                  661137
366                                                  690669
367                                                  668602
368                                                  664020
369                                                  602481
370                                                  751898
371                                                  641882
372                                                  711147
373                                                  807041
374                                                  687650
375                                                  690303
376                                                  708914
377                                                  675173
378                                                  720502
379                                                  729117
380                                                  775671
381                                                  808678
382                                                  773774
383                                                  751850
384                                                  817691
385                                                  731125
386                                                  761027
387                                                  791332
388                                                  797060
389                                                  772151
390                                                  937317
391                                                  786250
392                                                  804903
393                                                  868197
394                                                  824216
395                                                  803572
396                                                  887105
397                                                  817870
398                                                  835939
399                                                  978376
400                                                  779868
401                                                  832529
402                                                  710719
403                                                  751812
404                                                  757272
405                                                  799947
406                                                  827010
407                                                  772997
408                                                  863392
409                                                  773078
410                                                  726401
411                                                  729326
412                                                 1133492
413                                                  745439
414                                                  797741
415                                                  802875
416                                                  783068
417                                                  162994
418                                                  175426
419                                                  207386
420                                                  207513
421                                                  141356
422                                                  174893
423                                                  193723
424                                                  239070
425                                                  254760
426                                                  203682
427                                                  186045
428                                                  213528
429                                                  235244
430                                                  202013
431                                                  210445
432                                                  216549
433                                                  232158
434                                                  234132
435                                                  208609
436                                                  234349
437                                                  214374
438                                                  206121
439                                                  216611
440                                                  223479
441                                                  218171
442                                                  250626
443                                                  225166
444                                                  243012
445                                                  229364
446                                                  234982
447                                                  222383
448                                                  222390
449                                                  234579
450                                                  259599
451                                                  238141
452                                                  214470
453                                                  226979
454                                                  188938
455                                                  196169
456                                                  198365
457                                                  212720
458                                                  196009
459                                                  219111
460                                                  226952
461                                                  183072
462                                                  169950
463                                                  186617
464                                                  300905
465                                                  213554
466                                                  175681
467                                                  201392
468                                                  228570
469                                                  107565
470                                                  117393
471                                                  124617
472                                                  137196
473                                                   97236
474                                                  115090
475                                                  117463
476                                                  152085
477                                                  135237
478                                                  119210
479                                                  137774
480                                                  145306
481                                                  134327
482                                                  137299
483                                                  165069
484                                                  169025
485                                                  144563
486                                                  147231
487                                                  130921
488                                                  155882
489                                                  167388
490                                                  148598
491                                                  159846
492                                                  159137
493                                                  143993
494                                                  173371
495                                                  159971
496                                                  164161
497                                                  171354
498                                                  187984
499                                                  143986
500                                                  171880
501                                                  180512
502                                                  162803
503                                                  176738
504                                                  161438
505                                                  172913
506                                                  129397
507                                                  126110
508                                                  139065
509                                                  182625
510                                                  149884
511                                                  141282
512                                                  136795
513                                                  114281
514                                                  106664
515                                                  128078
516                                                  216653
517                                                  116996
518                                                  116450
519                                                  125742
520                                                  158638
521                                                 1020391
522                                                  928051
523                                                  980891
524                                                 1054850
525                                                  839819
526                                                  885067
527                                                 1040440
528                                                  977717
529                                                 1114178
530                                                 1010395
531                                                  992984
532                                                 1100679
533                                                 1104602
534                                                 1063584
535                                                 1155213
536                                                 1212585
537                                                 1270740
538                                                 1101681
539                                                 1120172
540                                                 1122668
541                                                 1124260
542                                                 1067498
543                                                 1191311
544                                                 1186879
545                                                 1144448
546                                                 1320696
547                                                 1203554
548                                                 1283503
549                                                 1508750
550                                                 1255576
551                                                 1377671
552                                                 1184131
553                                                 1219398
554                                                 1298826
555                                                 1282852
556                                                 1102640
557                                                 1137812
558                                                 1266900
559                                                 1324349
560                                                 1164808
561                                                 1333424
562                                                 1211159
563                                                 1218684
564                                                 1144032
565                                                 1116601
566                                                 1020857
567                                                 1207168
568                                                 1391089
569                                                 1008295
570                                                 1091677
571                                                 1128693
572                                                 1086364
573                                                  625475
574                                                  528945
575                                                  741703
576                                                  838225
577                                                  429110
578                                                  724866
579                                                  925618
580                                                  690634
581                                                  831994
582                                                  735207
583                                                  805438
584                                                  775977
585                                                  678936
586                                                  694872
587                                                  760083
588                                                  735437
589                                                  729047
590                                                  721704
591                                                  598195
592                                                  648148
593                                                  669377
594                                                  727917
595                                                  703673
596                                                  857873
597                                                  738934
598                                                  736913
599                                                  696698
600                                                  730827
601                                                  743006
602                                                  782887
603                                                  600378
604                                                  657593
605                                                  592588
606                                                  735145
607                                                  781496
608                                                  620827
609                                                  797021
610                                                  858681
611                                                  645728
612                                                  627546
613                                                  603112
614                                                  662132
615                                                  719793
616                                                  670821
617                                                  899303
618                                                  629074
619                                                  766576
620                                                  990212
621                                                  695659
622                                                  808194
623                                                  666579
624                                                  668086
625                                                  255500
626                                                  250436
627                                                  275588
628                                                  339797
629                                                  228427
630                                                  270529
631                                                  248933
632                                                  343646
633                                                  340747
634                                                  251337
635                                                  358143
636                                                  362401
637                                                  286401
638                                                  257472
639                                                  373545
640                                                  401473
641                                                  336982
642                                                  422763
643                                                  267969
644                                                  400252
645                                                  341290
646                                                  364736
647                                                  326234
648                                                  370831
649                                                  310050
650                                                  373692
651                                                  329754
652                                                  424581
653                                                  372414
654                                                  447814
655                                                  324401
656                                                  373245
657                                                  495156
658                                                  360918
659                                                  374660
660                                                  361243
661                                                  468643
662                                                  271182
663                                                  295385
664                                                  304048
665                                                  455372
666                                                  254975
667                                                  278695
668                                                  397900
669                                                  250889
670                                                  255598
671                                                  268196
672                                                  539751
673                                                  277325
674                                                  291788
675                                                  332165
676                                                  369694
677                                                  147714
678                                                  126262
679                                                  117646
680                                                  217175
681                                                  120552
682                                                  140981
683                                                  129449
684                                                  198258
685                                                  205592
686                                                  134921
687                                                  184807
688                                                  198770
689                                                  160322
690                                                  137850
691                                                  244696
692                                                  219381
693                                                  170309
694                                                  226899
695                                                  128682
696                                                  268902
697                                                  186733
698                                                  184067
699                                                  153869
700                                                  215736
701                                                  153113
702                                                  202843
703                                                  155972
704                                                  265556
705                                                  197388
706                                                  212599
707                                                  167908
708                                                  158917
709                                                  277502
710                                                  159643
711                                                  238551
712                                                  189609
713                                                  310672
714                                                  147494
715                                                  157722
716                                                  149631
717                                                  311877
718                                                  123895
719                                                  146836
720                                                  263987
721                                                  129296
722                                                  136761
723                                                  132621
724                                                  309472
725                                                  144302
726                                                  150201
727                                                  185135
728                                                  258980
729                                                 2580603
730                                                 2504745
731                                                 2608448
732                                                 2981347
733                                                 2198409
734                                                 2601822
735                                                 2494044
736                                                 3184947
737                                                 3229125
738                                                 2671536
739                                                 2981550
740                                                 3004133
741                                                 2814679
742                                                 2770075
743                                                 3336245
744                                                 3532481
745                                                 3272555
746                                                 3388804
747                                                 2849127
748                                                 3653376
749                                                 3230140
750                                                 3162448
751                                                 3135698
752                                                 3436864
753                                                 3077237
754                                                 3774004
755                                                 3336314
756                                                 3720459
757                                                 3511185
758                                                 3602113
759                                                 3151714
760                                                 3574051
761                                                 3753201
762                                                 3501344
763                                                 3901054
764                                                 3234024
765                                                 3857605
766                                                 2895993
767                                                 2938919
768                                                 2971444
769                                                 3746598
770                                                 2948199
771                                                 3134753
772                                                 3566752
773                                                 2730224
774                                                 2610004
775                                                 2856456
776                                                 4874124
777                                                 2928692
778                                                 3006207
779                                                 3067638
780                                                 3382800
781                                                  173646
782                                                  180186
783                                                  187059
784                                                  171196
785                                                  146103
786                                                  162429
787                                                  189917
788                                                  214993
789                                                  219970
790                                                  183277
791                                                  264223
792                                                  225080
793                                                  188437
794                                                  192478
795                                                  188314
796                                                  254745
797                                                  225495
798                                                  219909
799                                                  222637
800                                                  247813
801                                                  247575
802                                                  242281
803                                                  225228
804                                                  229651
805                                                  233639
806                                                  275845
807                                                  243537
808                                                  255432
809                                                  277579
810                                                  265638
811                                                  260058
812                                                  270098
813                                                  252844
814                                                  299148
815                                                  255914
816                                                  234322
817                                                  237429
818                                                  201545
819                                                  216377
820                                                  197282
821                                                  219150
822                                                  190760
823                                                  192278
824                                                  230913
825                                                  191040
826                                                  187672
827                                                  239757
828                                                  283138
829                                                  206074
830                                                  182605
831                                                  178735
832                                                  203939
833                                                  243557
834                                                  264156
835                                                  238558
836                                                  239945
837                                                  213632
838                                                  212091
839                                                  275218
840                                                  309186
841                                                  326067
842                                                  234361
843                                                  407866
844                                                  264228
845                                                  262639
846                                                  247142
847                                                  241533
848                                                  341176
849                                                  281256
850                                                  292827
851                                                  298493
852                                                  351074
853                                                  354491
854                                                  323450
855                                                  266050
856                                                  258239
857                                                  389782
858                                                  339064
859                                                  304624
860                                                  341629
861                                                  338037
862                                                  353475
863                                                  319503
864                                                  314931
865                                                  358753
866                                                  370924
867                                                  329589
868                                                  277178
869                                                  271199
870                                                  251083
871                                                  246967
872                                                  241495
873                                                  292821
874                                                  225762
875                                                  210375
876                                                  314918
877                                                  220210
878                                                  223170
879                                                  364572
880                                                  297969
881                                                  241174
882                                                  229216
883                                                  232640
884                                                  332208
885                                                  944507
886                                                  922356
887                                                  998753
888                                                  989677
889                                                  783226
890                                                  913003
891                                                  998802
892                                                  983910
893                                                 1007806
894                                                  933624
895                                                  847813
896                                                 1036270
897                                                 1019284
898                                                  968988
899                                                  967228
900                                                 1095790
901                                                 1090493
902                                                  926125
903                                                  933166
904                                                  968899
905                                                  935150
906                                                  948127
907                                                 1086740
908                                                 1093425
909                                                  999608
910                                                 1173820
911                                                 1135915
912                                                 1196121
913                                                 1533409
914                                                 1172178
915                                                 1262933
916                                                 1089679
917                                                 1025660
918                                                 1201673
919                                                 1296308
920                                                 1082232
921                                                  933033
922                                                 1096075
923                                                 1249645
924                                                 1116225
925                                                 1036664
926                                                 1043173
927                                                 1166056
928                                                  991328
929                                                  978808
930                                                 1062388
931                                                 1180723
932                                                 1280364
933                                                  983911
934                                                 1017854
935                                                 1062072
936                                                 1062991
937                                                  123096
938                                                  116354
939                                                  125343
940                                                  145740
941                                                  108444
942                                                  115385
943                                                  124219
944                                                  147800
945                                                  147460
946                                                  151559
947                                                  159464
948                                                  128849
949                                                  139679
950                                                  139491
951                                                  185963
952                                                  201621
953                                                  156608
954                                                  147066
955                                                  131935
956                                                  160060
957                                                  148385
958                                                  151883
959                                                  144476
960                                                  168164
961                                                  161432
962                                                  190716
963                                                  198267
964                                                  205199
965                                                  173545
966                                                  155731
967                                                  142818
968                                                  168798
969                                                  164077
970                                                  195532
971                                                  178890
972                                                  158499
973                                                  179103
974                                                  146422
975                                                  151260
976                                                  161289
977                                                  160558
978                                                  140488
979                                                  160438
980                                                  169556
981                                                  127501
982                                                  121768
983                                                  158792
984                                                  245353
985                                                  149474
986                                                  149320
987                                                  138617
988                                                  160130
989                                                  132983
990                                                   95936
991                                                  140036
992                                                   93337
993                                                  121237
994                                                  115301
995                                                   90999
996                                                   94496
997                                                  162560
998                                                   98097
999                                                   92600
1000                                                 141875
1001                                                 153146
1002                                                  92326
1003                                                 157688
1004                                                 102871
1005                                                 179838
1006                                                 116109
1007                                                 111825
1008                                                 107523
1009                                                 188721
1010                                                 112332
1011                                                 112997
1012                                                 173741
1013                                                 110965
1014                                                 211960
1015                                                 135740
1016                                                 192111
1017                                                 129527
1018                                                 190397
1019                                                 128105
1020                                                 195411
1021                                                 120930
1022                                                 125605
1023                                                 254514
1024                                                 127939
1025                                                 124796
1026                                                 180970
1027                                                 146744
1028                                                 109050
1029                                                 185570
1030                                                 110129
1031                                                 112487
1032                                                 167255
1033                                                 121049
1034                                                 105176
1035                                                  91841
1036                                                 237911
1037                                                 109941
1038                                                  99496
1039                                                  99757
1040                                                 153507
1041                                                 292707
1042                                                 232295
1043                                                 216119
1044                                                 244025
1045                                                 205477
1046                                                 215985
1047                                                 247795
1048                                                 237248
1049                                                 230414
1050                                                 245167
1051                                                 279364
1052                                                 268709
1053                                                 269072
1054                                                 272926
1055                                                 284247
1056                                                 346994
1057                                                 311124
1058                                                 284309
1059                                                 261084
1060                                                 314774
1061                                                 353118
1062                                                 272441
1063                                                 272268
1064                                                 269642
1065                                                 277827
1066                                                 332735
1067                                                 293409
1068                                                 338639
1069                                                 389600
1070                                                 335693
1071                                                 285741
1072                                                 293059
1073                                                 279843
1074                                                 325085
1075                                                 406840
1076                                                 334719
1077                                                 336521
1078                                                 369818
1079                                                 360356
1080                                                 354049
1081                                                 311228
1082                                                 261650
1083                                                 291047
1084                                                 293036
1085                                                 242732
1086                                                 255465
1087                                                 318771
1088                                                 370223
1089                                                 249510
1090                                                 233186
1091                                                 274481
1092                                                 317861
1093                                                2326942
1094                                                2149872
1095                                                2690296
1096                                                3048291
1097                                                2156009
1098                                                2268076
1099                                                2828362
1100                                                2621078
1101                                                2617807
1102                                                2327634
1103                                                2661345
1104                                                2591982
1105                                                2278629
1106                                                2674659
1107                                                2392449
1108                                                2549513
1109                                                2983163
1110                                                3037664
1111                                                2604991
1112                                                2943219
1113                                                3371114
1114                                                2742211
1115                                                2893888
1116                                                2614726
1117                                                2652481
1118                                                3435375
1119                                                2921149
1120                                                3040023
1121                                                3689141
1122                                                3261844
1123                                                3196936
1124                                                2853905
1125                                                2557701
1126                                                3553643
1127                                                4015563
1128                                                2355704
1129                                                2901188
1130                                                2799667
1131                                                2603115
1132                                                2566690
1133                                                2466735
1134                                                2690257
1135                                                2797746
1136                                                3094279
1137                                                2954706
1138                                                2926436
1139                                                2641033
1140                                                4031949
1141                                                2329987
1142                                                2800680
1143                                                2713700
1144                                                2682160
1145                                                  61655
1146                                                  56443
1147                                                  76544
1148                                                 103277
1149                                                  58668
1150                                                  60971
1151                                                  58817
1152                                                  86930
1153                                                 103769
1154                                                  64603
1155                                                  74093
1156                                                  74537
1157                                                  63157
1158                                                  60981
1159                                                  71065
1160                                                  85920
1161                                                  98154
1162                                                  70165
1163                                                  65333
1164                                                  78927
1165                                                  83593
1166                                                  91137
1167                                                  99545
1168                                                  77503
1169                                                  72694
1170                                                  81749
1171                                                  69231
1172                                                  78273
1173                                                  82364
1174                                                  98866
1175                                                  92345
1176                                                  79568
1177                                                  73537
1178                                                  85446
1179                                                  95551
1180                                                  65742
1181                                                  95959
1182                                                  88236
1183                                                  75626
1184                                                  93802
1185                                                  95101
1186                                                  56870
1187                                                  62729
1188                                                  78627
1189                                                 107443
1190                                                  80538
1191                                                  87054
1192                                                 125505
1193                                                  86635
1194                                                  85580
1195                                                  75129
1196                                                 101163
1197                                                 545065
1198                                                 350534
1199                                                 529317
1200                                                 340514
1201                                                 470218
1202                                                 499396
1203                                                 368996
1204                                                 329065
1205                                                 566031
1206                                                 307073
1207                                                 333934
1208                                                 538384
1209                                                 570367
1210                                                 318048
1211                                                 559818
1212                                                 331078
1213                                                 637327
1214                                                 362232
1215                                                 372525
1216                                                 360309
1217                                                 655822
1218                                                 371660
1219                                                 379954
1220                                                 626842
1221                                                 402707
1222                                                 718152
1223                                                 443971
1224                                                 669409
1225                                                 437897
1226                                                 683878
1227                                                 419159
1228                                                 757305
1229                                                 450603
1230                                                 435547
1231                                                 917425
1232                                                 476017
1233                                                 434025
1234                                                 692570
1235                                                 510739
1236                                                 370066
1237                                                 642934
1238                                                 371716
1239                                                 356312
1240                                                 647014
1241                                                 369820
1242                                                 353521
1243                                                 348211
1244                                                 753301
1245                                                 398056
1246                                                 405138
1247                                                 342797
1248                                                 540234
1249                                                2065131
1250                                                2044021
1251                                                2193143
1252                                                2233138
1253                                                1845443
1254                                                1903245
1255                                                2355839
1256                                                2503008
1257                                                2511760
1258                                                2188485
1259                                                2783170
1260                                                2329758
1261                                                2233936
1262                                                2390611
1263                                                2447265
1264                                                2814803
1265                                                3013826
1266                                                2535193
1267                                                2765838
1268                                                2823405
1269                                                2710710
1270                                                2752082
1271                                                2664424
1272                                                2751193
1273                                                2783555
1274                                                3183420
1275                                                2835630
1276                                                2979418
1277                                                3173051
1278                                                2918299
1279                                                3039403
1280                                                3119051
1281                                                2817008
1282                                                2956859
1283                                                3410468
1284                                                2699615
1285                                                2711008
1286                                                2829417
1287                                                2519677
1288                                                2523110
1289                                                2779013
1290                                                2462108
1291                                                2297509
1292                                                2538982
1293                                                2720347
1294                                                2420829
1295                                                2734007
1296                                                3668038
1297                                                2480821
1298                                                2330829
1299                                                2335986
1300                                                2578275
1301                                                 123670
1302                                                 127374
1303                                                 153426
1304                                                 130989
1305                                                 119920
1306                                                 127166
1307                                                 124671
1308                                                 135506
1309                                                 159318
1310                                                 148660
1311                                                 182648
1312                                                 167656
1313                                                 157490
1314                                                 160548
1315                                                 197650
1316                                                 154622
1317                                                 175978
1318                                                 142154
1319                                                 171575
1320                                                 187310
1321                                                 176410
1322                                                 151807
1323                                                 149263
1324                                                 186259
1325                                                 152992
1326                                                 201798
1327                                                 159982
1328                                                 188763
1329                                                 172302
1330                                                 189470
1331                                                 166214
1332                                                 194991
1333                                                 149400
1334                                                 165727
1335                                                 222813
1336                                                 166557
1337                                                 140649
1338                                                 158490
1339                                                 155074
1340                                                 151301
1341                                                 173980
1342                                                 131054
1343                                                 149239
1344                                                 169424
1345                                                 148164
1346                                                 153852
1347                                                 171749
1348                                                 221471
1349                                                 140855
1350                                                 143465
1351                                                 149832
1352                                                 162163
1353                                                 187664
1354                                                 191937
1355                                                 204217
1356                                                 185395
1357                                                 175834
1358                                                 192075
1359                                                 195780
1360                                                 197714
1361                                                 204738
1362                                                 191181
1363                                                 206563
1364                                                 217777
1365                                                 222488
1366                                                 199908
1367                                                 224017
1368                                                 219776
1369                                                 248355
1370                                                 234308
1371                                                 240561
1372                                                 253159
1373                                                 272465
1374                                                 248671
1375                                                 258960
1376                                                 258559
1377                                                 239909
1378                                                 297481
1379                                                 261199
1380                                                 293735
1381                                                 262250
1382                                                 288860
1383                                                 245294
1384                                                 265237
1385                                                 257403
1386                                                 256292
1387                                                 308656
1388                                                 265740
1389                                                 263487
1390                                                 235710
1391                                                 237822
1392                                                 237188
1393                                                 282494
1394                                                 233696
1395                                                 248274
1396                                                 224752
1397                                                 256175
1398                                                 230069
1399                                                 242065
1400                                                 367712
1401                                                 271448
1402                                                 267666
1403                                                 239232
1404                                                 222752
1405                                                1129876
1406                                                1139348
1407                                                1254805
1408                                                1068972
1409                                                 999170
1410                                                1111803
1411                                                1357393
1412                                                1406262
1413                                                2180520
1414                                                1048046
1415                                                1856338
1416                                                1099283
1417                                                1342963
1418                                                1201066
1419                                                1192211
1420                                                1479335
1421                                                1340926
1422                                                1251081
1423                                                1477964
1424                                                1535981
1425                                                1563915
1426                                                1458723
1427                                                1211731
1428                                                1251919
1429                                                1338282
1430                                                1666826
1431                                                1284789
1432                                                1667026
1433                                                1363134
1434                                                1731061
1435                                                1493219
1436                                                1515023
1437                                                1255553
1438                                                2118594
1439                                                1679103
1440                                                1295590
1441                                                1332515
1442                                                1084408
1443                                                1244324
1444                                                1183815
1445                                                1192732
1446                                                1097738
1447                                                1129334
1448                                                1338130
1449                                                1088977
1450                                                 997562
1451                                                1658709
1452                                                1433763
1453                                                1102868
1454                                                1044281
1455                                                1018226
1456                                                1402890
1457                                                3156360
1458                                                3190120
1459                                                3696552
1460                                                3218495
1461                                                2593781
1462                                                3026217
1463                                                3538946
1464                                                4205775
1465                                                4801621
1466                                                3306614
1467                                                4866607
1468                                                3307829
1469                                                3585183
1470                                                3739073
1471                                                3334592
1472                                                4205295
1473                                                4088062
1474                                                3825967
1475                                                4146221
1476                                                4221435
1477                                                4786334
1478                                                4154659
1479                                                3757525
1480                                                4169213
1481                                                4454139
1482                                                4855274
1483                                                4100932
1484                                                4508474
1485                                                4561750
1486                                                4721927
1487                                                4329240
1488                                                4661457
1489                                                4094678
1490                                                5498650
1491                                                4597313
1492                                                3646364
1493                                                3786141
1494                                                3203213
1495                                                3467771
1496                                                3497027
1497                                                3520409
1498                                                3135992
1499                                                3250833
1500                                                3780455
1501                                                3042447
1502                                                2983696
1503                                                4457049
1504                                                4298883
1505                                                3238502
1506                                                3066790
1507                                                3056025
1508                                                3759283
1509                                                 304598
1510                                                 284808
1511                                                 407483
1512                                                 303058
1513                                                 219690
1514                                                 274209
1515                                                 287016
1516                                                 489340
1517                                                 350261
1518                                                 313881
1519                                                 402466
1520                                                 278473
1521                                                 298223
1522                                                 458603
1523                                                 322730
1524                                                 356105
1525                                                 508208
1526                                                 395127
1527                                                 400102
1528                                                 372516
1529                                                 579226
1530                                                 417083
1531                                                 402792
1532                                                 594452
1533                                                 509215
1534                                                 536643
1535                                                 452801
1536                                                 425886
1537                                                 537725
1538                                                 427217
1539                                                 413699
1540                                                 512172
1541                                                 422484
1542                                                 578437
1543                                                 366987
1544                                                 311879
1545                                                 346562
1546                                                 306251
1547                                                 309144
1548                                                 412639
1549                                                 282155
1550                                                 301853
1551                                                 287964
1552                                                 355678
1553                                                 264119
1554                                                 288515
1555                                                 363935
1556                                                 412753
1557                                                 290611
1558                                                 309203
1559                                                 314717
1560                                                 321824
1561                                                 305774
1562                                                 200075
1563                                                 310102
1564                                                 199064
1565                                                 262684
1566                                                 266951
1567                                                 200715
1568                                                 202955
1569                                                 330071
1570                                                 210266
1571                                                 204526
1572                                                 308033
1573                                                 332997
1574                                                 202457
1575                                                 329685
1576                                                 221548
1577                                                 375737
1578                                                 238270
1579                                                 228926
1580                                                 240186
1581                                                 388550
1582                                                 240822
1583                                                 239842
1584                                                 363733
1585                                                 245529
1586                                                 420329
1587                                                 277854
1588                                                 394035
1589                                                 256150
1590                                                 391557
1591                                                 250040
1592                                                 401991
1593                                                 243266
1594                                                 257033
1595                                                 501574
1596                                                 257308
1597                                                 231777
1598                                                 375364
1599                                                 300680
1600                                                 216925
1601                                                 363504
1602                                                 226248
1603                                                 219072
1604                                                 316199
1605                                                 226965
1606                                                 204812
1607                                                 204397
1608                                                 489225
1609                                                 211991
1610                                                 191078
1611                                                 202035
1612                                                 281803
1613                                                 308547
1614                                                 306843
1615                                                 352369
1616                                                 346896
1617                                                 275092
1618                                                 320058
1619                                                 363548
1620                                                 374934
1621                                                 559567
1622                                                 398338
1623                                                 496237
1624                                                 373651
1625                                                 388206
1626                                                 368780
1627                                                 361362
1628                                                 454796
1629                                                 399062
1630                                                 381319
1631                                                 449716
1632                                                 425708
1633                                                 405556
1634                                                 399212
1635                                                 373032
1636                                                 369974
1637                                                 372062
1638                                                 460459
1639                                                 378931
1640                                                 456983
1641                                                 421514
1642                                                 476827
1643                                                 436028
1644                                                 440574
1645                                                 388800
1646                                                 535923
1647                                                 548557
1648                                                 385542
1649                                                 389414
1650                                                 335390
1651                                                 365947
1652                                                 339877
1653                                                 449262
1654                                                 331457
1655                                                 349610
1656                                                 392412
1657                                                 348215
1658                                                 335173
1659                                                 477876
1660                                                 569305
1661                                                 355646
1662                                                 331495
1663                                                 315984
1664                                                 407676
1665                                                1137707
1666                                                1097224
1667                                                 907470
1668                                                1105500
1669                                                 724916
1670                                                 737834
1671                                                1010132
1672                                                1102272
1673                                                 907452
1674                                                 761262
1675                                                1094731
1676                                                 795733
1677                                                 726096
1678                                                 664202
1679                                                 892151
1680                                                1100902
1681                                                1390418
1682                                                 939786
1683                                                 873857
1684                                                1203150
1685                                                 981975
1686                                                 946868
1687                                                 903242
1688                                                 928600
1689                                                1015567
1690                                                1456836
1691                                                 955511
1692                                                1343181
1693                                                1353850
1694                                                1457360
1695                                                1282096
1696                                                1261540
1697                                                1013050
1698                                                1072300
1699                                                1268607
1700                                                1272429
1701                                                1366845
1702                                                1019281
1703                                                1320321
1704                                                1231267
1705                                                1089117
1706                                                1326721
1707                                                1042159
1708                                                1031351
1709                                                1163115
1710                                                1159510
1711                                                1151157
1712                                                1544751
1713                                                1233503
1714                                                1088609
1715                                                1110753
1716                                                1048062
1717                                                  73110
1718                                                  68973
1719                                                  65333
1720                                                  61870
1721                                                  54780
1722                                                  63346
1723                                                  64519
1724                                                 123489
1725                                                  81574
1726                                                  69192
1727                                                  70133
1728                                                  84054
1729                                                  89538
1730                                                  91559
1731                                                  74826
1732                                                  74962
1733                                                 114217
1734                                                  74510
1735                                                  83196
1736                                                  87688
1737                                                 145930
1738                                                  74681
1739                                                  68936
1740                                                  73321
1741                                                  68847
1742                                                 115580
1743                                                 111690
1744                                                  88214
1745                                                  92713
1746                                                  84557
1747                                                  83008
1748                                                 181170
1749                                                  85406
1750                                                  82110
1751                                                 208821
1752                                                  79977
1753                                                  75775
1754                                                  69340
1755                                                  76147
1756                                                  69747
1757                                                  68500
1758                                                  71907
1759                                                 159736
1760                                                  65484
1761                                                  70345
1762                                                  60214
1763                                                  66361
1764                                                 112066
1765                                                  98723
1766                                                  59312
1767                                                  54644
1768                                                  54957
1769                                                1306923
1770                                                1139862
1771                                                1472501
1772                                                1245290
1773                                                1099646
1774                                                1281613
1775                                                1294867
1776                                                1285587
1777                                                1350092
1778                                                1411355
1779                                                1368888
1780                                                1560846
1781                                                1309246
1782                                                1542658
1783                                                1386952
1784                                                1526985
1785                                                1714650
1786                                                1481150
1787                                                1731575
1788                                                1727852
1789                                                1605914
1790                                                1593031
1791                                                1844887
1792                                                1701987
1793                                                1808842
1794                                                1988312
1795                                                1826182
1796                                                1921720
1797                                                1974806
1798                                                2026464
1799                                                1853451
1800                                                2026640
1801                                                1966712
1802                                                2105831
1803                                                2333239
1804                                                1787072
1805                                                1801957
1806                                                2160086
1807                                                1668243
1808                                                1657405
1809                                                1651115
1810                                                1590080
1811                                                1531086
1812                                                1619341
1813                                                1547969
1814                                                1507822
1815                                                1794544
1816                                                2561325
1817                                                1510837
1818                                                1674946
1819                                                1402842
1820                                                1683795
1821                                                 417190
1822                                                 416299
1823                                                 429104
1824                                                 743770
1825                                                 353818
1826                                                 380726
1827                                                 568414
1828                                                 406548
1829                                                 423476
1830                                                 480396
1831                                                 438183
1832                                                 657656
1833                                                 421431
1834                                                 484598
1835                                                 566386
1836                                                 535519
1837                                                 465258
1838                                                 427777
1839                                                 545297
1840                                                 465897
1841                                                 448136
1842                                                 501107
1843                                                 433999
1844                                                 446863
1845                                                 568130
1846                                                 574999
1847                                                 508174
1848                                                 579558
1849                                                 622881
1850                                                 543944
1851                                                 600303
1852                                                 606039
1853                                                 487025
1854                                                 675270
1855                                                 644419
1856                                                 571443
1857                                                 610659
1858                                                 433703
1859                                                 432730
1860                                                 401825
1861                                                 426181
1862                                                 392803
1863                                                 419850
1864                                                 598755
1865                                                 495032
1866                                                 363889
1867                                                 447702
1868                                                 776238
1869                                                 432770
1870                                                 439618
1871                                                 510153
1872                                                 599966
1873                                                 208426
1874                                                 189584
1875                                                 207628
1876                                                 210379
1877                                                 185734
1878                                                 179083
1879                                                 238990
1880                                                 223564
1881                                                 229530
1882                                                 199223
1883                                                 217581
1884                                                 222607
1885                                                 187693
1886                                                 222850
1887                                                 216519
1888                                                 238904
1889                                                 301641
1890                                                 253578
1891                                                 277978
1892                                                 241121
1893                                                 234071
1894                                                 243249
1895                                                 232205
1896                                                 246513
1897                                                 247167
1898                                                 275671
1899                                                 255922
1900                                                 264236
1901                                                 286815
1902                                                 259977
1903                                                 262289
1904                                                 267023
1905                                                 264909
1906                                                 267656
1907                                                 335465
1908                                                 259624
1909                                                 255437
1910                                                 274985
1911                                                 245492
1912                                                 238992
1913                                                 244658
1914                                                 252527
1915                                                 198900
1916                                                 216841
1917                                                 258728
1918                                                 230632
1919                                                 222484
1920                                                 344289
1921                                                 233277
1922                                                 204505
1923                                                 205761
1924                                                 221086
1925                                                 161578
1926                                                 158870
1927                                                 174381
1928                                                 176731
1929                                                 140940
1930                                                 148243
1931                                                 198934
1932                                                 202832
1933                                                 212854
1934                                                 180316
1935                                                 217221
1936                                                 192231
1937                                                 200821
1938                                                 203675
1939                                                 195742
1940                                                 229221
1941                                                 252853
1942                                                 213121
1943                                                 232074
1944                                                 222696
1945                                                 216580
1946                                                 235506
1947                                                 222883
1948                                                 225260
1949                                                 234569
1950                                                 287572
1951                                                 236211
1952                                                 264923
1953                                                 289291
1954                                                 248646
1955                                                 270601
1956                                                 280241
1957                                                 262510
1958                                                 263028
1959                                                 292744
1960                                                 235546
1961                                                 231641
1962                                                 213032
1963                                                 222123
1964                                                 205954
1965                                                 213087
1966                                                 210124
1967                                                 177541
1968                                                 194798
1969                                                 225830
1970                                                 207250
1971                                                 212888
1972                                                 308461
1973                                                 194086
1974                                                 179038
1975                                                 194461
1976                                                 182698
1977                                                  98585
1978                                                  88183
1979                                                  99886
1980                                                  99520
1981                                                  73734
1982                                                  83964
1983                                                 109929
1984                                                 114125
1985                                                 116799
1986                                                 110896
1987                                                 117517
1988                                                 118010
1989                                                 114487
1990                                                 109275
1991                                                 125683
1992                                                 147618
1993                                                 131198
1994                                                 114054
1995                                                 115608
1996                                                 113816
1997                                                 116318
1998                                                 122569
1999                                                 118455
2000                                                 124247
2001                                                 128054
2002                                                 147749
2003                                                 131276
2004                                                 135895
2005                                                 147634
2006                                                 139465
2007                                                 133856
2008                                                 142274
2009                                                 135281
2010                                                 141860
2011                                                 147690
2012                                                 137886
2013                                                 144665
2014                                                 129699
2015                                                 121570
2016                                                 117662
2017                                                 126536
2018                                                 119124
2019                                                 111703
2020                                                 110991
2021                                                 127856
2022                                                 136951
2023                                                 145648
2024                                                 168218
2025                                                 123070
2026                                                 112106
2027                                                 113236
2028                                                 109215
2029                                                 403742
2030                                                 385518
2031                                                 376690
2032                                                 318280
2033                                                 347407
2034                                                 354986
2035                                                 414161
2036                                                 357133
2037                                                 532467
2038                                                 343757
2039                                                 326458
2040                                                 355472
2041                                                 377192
2042                                                 350982
2043                                                 353232
2044                                                 384193
2045                                                 466706
2046                                                 377229
2047                                                 405275
2048                                                 401708
2049                                                 414824
2050                                                 404664
2051                                                 395472
2052                                                 404605
2053                                                 411928
2054                                                 550811
2055                                                 423984
2056                                                 422724
2057                                                 431791
2058                                                 435087
2059                                                 435724
2060                                                 403794
2061                                                 397215
2062                                                 437823
2063                                                 662034
2064                                                 366720
2065                                                 415841
2066                                                 382584
2067                                                 404334
2068                                                 391179
2069                                                 424708
2070                                                 380761
2071                                                 415148
2072                                                 452845
2073                                                 405013
2074                                                 381042
2075                                                 432572
2076                                                 771975
2077                                                 360028
2078                                                 367047
2079                                                 429492
2080                                                 430139
2081                                                 439968
2082                                                 420476
2083                                                 462548
2084                                                 565517
2085                                                 385290
2086                                                 385301
2087                                                 501838
2088                                                 492385
2089                                                 468473
2090                                                 408336
2091                                                 447663
2092                                                 492277
2093                                                 404302
2094                                                 491991
2095                                                 448488
2096                                                 464305
2097                                                 502677
2098                                                 490269
2099                                                 459471
2100                                                 514203
2101                                                 630942
2102                                                 500999
2103                                                 495344
2104                                                 462526
2105                                                 490313
2106                                                 587741
2107                                                 495309
2108                                                 594488
2109                                                 630747
2110                                                 607468
2111                                                 569415
2112                                                 477416
2113                                                 458192
2114                                                 594740
2115                                                 740760
2116                                                 435990
2117                                                 488095
2118                                                 515247
2119                                                 469884
2120                                                 450371
2121                                                 515765
2122                                                 463106
2123                                                 504284
2124                                                 572552
2125                                                 516149
2126                                                 486114
2127                                                 448395
2128                                                 692276
2129                                                 406591
2130                                                 461064
2131                                                 544667
2132                                                 461607
2133                                                 692206
2134                                                 637091
2135                                                 616016
2136                                                 694982
2137                                                 651639
2138                                                 709444
2139                                                 775849
2140                                                 599884
2141                                                 869927
2142                                                 561342
2143                                                 586074
2144                                                 564457
2145                                                 762867
2146                                                 651697
2147                                                 578501
2148                                                 603841
2149                                                 646810
2150                                                 649892
2151                                                 610213
2152                                                 618238
2153                                                 603877
2154                                                 645158
2155                                                 628331
2156                                                 633327
2157                                                 680352
2158                                                 752192
2159                                                 646325
2160                                                 673721
2161                                                 696873
2162                                                 758817
2163                                                 764114
2164                                                 700411
2165                                                 701099
2166                                                 742672
2167                                                1310365
2168                                                 680839
2169                                                 818817
2170                                                 729890
2171                                                 742540
2172                                                 742583
2173                                                 841724
2174                                                 779754
2175                                                 830775
2176                                                1039265
2177                                                 776336
2178                                                 696515
2179                                                 928837
2180                                                1352028
2181                                                 713523
2182                                                 753747
2183                                                 916451
2184                                                 907796
2185                                                 450186
2186                                                 404862
2187                                                 454428
2188                                                 726505
2189                                                 373310
2190                                                 426338
2191                                                 643403
2192                                                 490827
2193                                                 435921
2194                                                 520698
2195                                                 484106
2196                                                 640332
2197                                                 513269
2198                                                 467792
2199                                                 590722
2200                                                 586503
2201                                                 459794
2202                                                 446851
2203                                                 551498
2204                                                 497527
2205                                                 523157
2206                                                 519887
2207                                                 436208
2208                                                 491654
2209                                                 597860
2210                                                 582037
2211                                                 496303
2212                                                 577605
2213                                                 615500
2214                                                 494856
2215                                                 543908
2216                                                 577947
2217                                                 474082
2218                                                 638697
2219                                                 687972
2220                                                 490426
2221                                                 570031
2222                                                 396728
2223                                                 466120
2224                                                 452743
2225                                                 514197
2226                                                 453590
2227                                                 439846
2228                                                 613535
2229                                                 552037
2230                                                 352335
2231                                                 488981
2232                                                 933148
2233                                                 420124
2234                                                 463473
2235                                                 527351
2236                                                 634522
2237                                                 251443
2238                                                 211066
2239                                                 257167
2240                                                 233274
2241                                                 217965
2242                                                 216768
2243                                                 224373
2244                                                 221080
2245                                                 280887
2246                                                 223607
2247                                                 226246
2248                                                 267962
2249                                                 267920
2250                                                 253423
2251                                                 312177
2252                                                 269755
2253                                                 353755
2254                                                 280700
2255                                                 310382
2256                                                 320751
2257                                                 353931
2258                                                 309612
2259                                                 327630
2260                                                 379506
2261                                                 320934
2262                                                 406711
2263                                                 340425
2264                                                 392755
2265                                                 339919
2266                                                 378845
2267                                                 322891
2268                                                 407500
2269                                                 346700
2270                                                 329845
2271                                                 457411
2272                                                 319659
2273                                                 322941
2274                                                 356627
2275                                                 311647
2276                                                 284840
2277                                                 366680
2278                                                 297856
2279                                                 289680
2280                                                 337577
2281                                                 332919
2282                                                 278514
2283                                                 282823
2284                                                 469684
2285                                                 311348
2286                                                 276206
2287                                                 279707
2288                                                 309024
2289                                                4831665
2290                                                4565208
2291                                                4869309
2292                                                4938526
2293                                                3969579
2294                                                4347511
2295                                                4943687
2296                                                4864814
2297                                                5072551
2298                                                4912068
2299                                                4687706
2300                                                5236048
2301                                                5201535
2302                                                4987381
2303                                                5211738
2304                                                5761849
2305                                                5979528
2306                                                5200253
2307                                                5235579
2308                                                5409823
2309                                                5353394
2310                                                5142336
2311                                                5822522
2312                                                5703941
2313                                                5544367
2314                                                6380288
2315                                                6024104
2316                                                6153609
2317                                                7281804
2318                                                6234006
2319                                                6349958
2320                                                5903596
2321                                                5831782
2322                                                6400341
2323                                                6558729
2324                                                5578981
2325                                                5593885
2326                                                5930073
2327                                                6368729
2328                                                5713017
2329                                                6008818
2330                                                5703759
2331                                                5865000
2332                                                5314432
2333                                                5208273
2334                                                5204972
2335                                                5900232
2336                                                6934356
2337                                                5142260
2338                                                5322626
2339                                                5409726
2340                                                5144267
2341                                                3024956
2342                                                2206305
2343                                                3042588
2344                                                2205551
2345                                                2615828
2346                                                2667552
2347                                                2242688
2348                                                2197764
2349                                                3227049
2350                                                2211717
2351                                                2274639
2352                                                3179825
2353                                                3259659
2354                                                2314057
2355                                                3496412
2356                                                2486655
2357                                                3750714
2358                                                2544631
2359                                                2580705
2360                                                2766391
2361                                                3804851
2362                                                2674633
2363                                                2742950
2364                                                3810950
2365                                                2748746
2366                                                4295280
2367                                                3026048
2368                                                4019385
2369                                                3021826
2370                                                4003122
2371                                                2884508
2372                                                4298515
2373                                                2936174
2374                                                2963778
2375                                                4986271
2376                                                3011225
2377                                                2857157
2378                                                3781505
2379                                                3140456
2380                                                2558925
2381                                                3867454
2382                                                2602342
2383                                                2642582
2384                                                3633174
2385                                                2796196
2386                                                2558564
2387                                                2573974
2388                                                4924050
2389                                                2778001
2390                                                2595784
2391                                                2433296
2392                                                3204112
2393                                                  67099
2394                                                  61556
2395                                                  67431
2396                                                 100234
2397                                                  51432
2398                                                  56013
2399                                                  84399
2400                                                  63821
2401                                                  60152
2402                                                  66853
2403                                                  60733
2404                                                  88580
2405                                                  77515
2406                                                  63903
2407                                                  79503
2408                                                  78771
2409                                                  67102
2410                                                  61177
2411                                                  84334
2412                                                  72392
2413                                                  70351
2414                                                  74840
2415                                                  71150
2416                                                  77305
2417                                                  86319
2418                                                  91196
2419                                                  81276
2420                                                  84739
2421                                                  88579
2422                                                  79734
2423                                                  82470
2424                                                  92664
2425                                                  77997
2426                                                  95615
2427                                                 108052
2428                                                  80444
2429                                                  91379
2430                                                  64530
2431                                                  73681
2432                                                  74999
2433                                                  74725
2434                                                  71766
2435                                                  69849
2436                                                  88304
2437                                                  85295
2438                                                  57870
2439                                                  74139
2440                                                 135656
2441                                                  64117
2442                                                  69600
2443                                                  70697
2444                                                  84612
2445                                                 152121
2446                                                 135428
2447                                                 166084
2448                                                 147544
2449                                                 129475
2450                                                 134989
2451                                                 160186
2452                                                 148031
2453                                                 152077
2454                                                 151268
2455                                                 143944
2456                                                 159011
2457                                                 151219
2458                                                 175958
2459                                                 165255
2460                                                 200118
2461                                                 180706
2462                                                 164717
2463                                                 202862
2464                                                 290906
2465                                                 200795
2466                                                 184501
2467                                                 216993
2468                                                 204465
2469                                                 233580
2470                                                 224902
2471                                                 217234
2472                                                 198137
2473                                                 203247
2474                                                 194668
2475                                                 247196
2476                                                 236189
2477                                                 186936
2478                                                 218563
2479                                                 275081
2480                                                 178200
2481                                                 184980
2482                                                 214125
2483                                                 159462
2484                                                 198396
2485                                                 163325
2486                                                 157799
2487                                                 147526
2488                                                 179277
2489                                                 156113
2490                                                 169119
2491                                                 214719
2492                                                 308372
2493                                                 176820
2494                                                 170591
2495                                                 164918
2496                                                 198735
2497                                                  42344
2498                                                  39365
2499                                                  50385
2500                                                  50633
2501                                                  35853
2502                                                  39100
2503                                                  51726
2504                                                  55560
2505                                                  55096
2506                                                  48972
2507                                                  48655
2508                                                  45171
2509                                                  41904
2510                                                  54195
2511                                                  37046
2512                                                  43061
2513                                                  48359
2514                                                  53700
2515                                                  42934
2516                                                  44245
2517                                                  51095
2518                                                  41000
2519                                                  59947
2520                                                  59428
2521                                                  75145
2522                                                  68922
2523                                                  63939
2524                                                  60370
2525                                                  65185
2526                                                  69777
2527                                                  64840
2528                                                  61584
2529                                                  69650
2530                                                  78708
2531                                                  50591
2532                                                  48811
2533                                                  52801
2534                                                  46829
2535                                                  50016
2536                                                  52420
2537                                                  48181
2538                                                  42079
2539                                                  46199
2540                                                  47890
2541                                                  42663
2542                                                  38751
2543                                                  51557
2544                                                  57424
2545                                                  44518
2546                                                  40392
2547                                                  42017
2548                                                  41144
2549                                                 376188
2550                                                 238951
2551                                                 365644
2552                                                 227131
2553                                                 330061
2554                                                 311785
2555                                                 236179
2556                                                 228585
2557                                                 391514
2558                                                 234024
2559                                                 256610
2560                                                 402228
2561                                                 413840
2562                                                 252128
2563                                                 432962
2564                                                 257375
2565                                                 436529
2566                                                 262575
2567                                                 264170
2568                                                 283648
2569                                                 427229
2570                                                 274424
2571                                                 265368
2572                                                 421574
2573                                                 289138
2574                                                 482089
2575                                                 325434
2576                                                 438582
2577                                                 294964
2578                                                 433152
2579                                                 273610
2580                                                 460041
2581                                                 275260
2582                                                 287069
2583                                                 558113
2584                                                 304136
2585                                                 280465
2586                                                 425033
2587                                                 354134
2588                                                 254521
2589                                                 440107
2590                                                 257173
2591                                                 259318
2592                                                 373462
2593                                                 268415
2594                                                 242479
2595                                                 236434
2596                                                 562243
2597                                                 260471
2598                                                 228921
2599                                                 235231
2600                                                 339909
2601                                               27297984
2602                                               25083647
2603                                               28041335
2604                                               28800397
2605                                               22617999
2606                                               25114228
2607                                               28597756
2608                                               28485716
2609                                               31047484
2610                                               26240072
2611                                               29375124
2612                                               29216198
2613                                               28243506
2614                                               27753508
2615                                               29569087
2616                                               31245836
2617                                               33526480
2618                                               29761638
2619                                               29699846
2620                                               31936856
2621                                               33254912
2622                                               30358468
2623                                               30652211
2624                                               32324648
2625                                               31660032
2626                                               37943670
2627                                               32408706
2628                                               35734614
2629                                               37026086
2630                                               36549996
2631                                               33720159
2632                                               35344183
2633                                               32027686
2634                                               36400887
2635                                               41291704
2636                                               30894158
2637                                               33091256
2638                                               32046402
2639                                               31500669
2640                                               29982648
2641                                               32513551
2642                                               29572226
2643                                               30094699
2644                                               32994014
2645                                               29936730
2646                                               28012521
2647                                               32137333
2648                                               44655462
2649                                               28470311
2650                                               29043459
2651                                               29063543
2652                                               31324278
2653                                                5291980
2654                                                4737649
2655                                                4899440
2656                                                6202514
2657                                                3719603
2658                                                4481990
2659                                                5972494
2660                                                5094838
2661                                                5024858
2662                                                4945836
2663                                                5413533
2664                                                5534451
2665                                                4895486
2666                                                4792868
2667                                                5596091
2668                                                5811260
2669                                                5900752
2670                                                5138257
2671                                                5197578
2672                                                5718139
2673                                                5531488
2674                                                5451041
2675                                                5126589
2676                                                5525299
2677                                                5791509
2678                                                6749081
2679                                                5617752
2680                                                6478952
2681                                                6760002
2682                                                6669221
2683                                                5874982
2684                                                6139160
2685                                                5338992
2686                                                6323725
2687                                                6937096
2688                                                6013312
2689                                                6612422
2690                                                5609471
2691                                                5929719
2692                                                5719898
2693                                                5368331
2694                                                5572582
2695                                                5382694
2696                                                5840743
2697                                                5939403
2698                                                5026689
2699                                                5949846
2700                                                8362504
2701                                                5461314
2702                                                5475363
2703                                                5333098
2704                                                5794411
2705                                                 776404
2706                                                 649886
2707                                                 646042
2708                                                 623232
2709                                                 519028
2710                                                 615077
2711                                                 732695
2712                                                 661406
2713                                                 592116
2714                                                 635874
2715                                                 681501
2716                                                 638486
2717                                                 649050
2718                                                 714977
2719                                                 746250
2720                                                 829728
2721                                                 790421
2722                                                 750669
2723                                                 740214
2724                                                 815639
2725                                                 885884
2726                                                 795372
2727                                                 777883
2728                                                 803340
2729                                                 754672
2730                                                 913361
2731                                                 941136
2732                                                 948943
2733                                                1035973
2734                                                1053998
2735                                                 887045
2736                                                 914967
2737                                                 942310
2738                                                1019161
2739                                                 967144
2740                                                 899633
2741                                                 961001
2742                                                 840315
2743                                                 938881
2744                                                 908323
2745                                                 752576
2746                                                 827795
2747                                                 805731
2748                                                 723489
2749                                                 681410
2750                                                 743066
2751                                                 811664
2752                                                 916367
2753                                                 720801
2754                                                 729796
2755                                                 584897
2756                                                 758119
2757                                                 502787
2758                                                 463483
2759                                                 422027
2760                                                 475815
2761                                                 372144
2762                                                 448936
2763                                                 408261
2764                                                 393826
2765                                                 408315
2766                                                 422281
2767                                                 459565
2768                                                 452109
2769                                                 440044
2770                                                 435757
2771                                                 527701
2772                                                 597759
2773                                                 614657
2774                                                 539643
2775                                                 549139
2776                                                 666493
2777                                                 508354
2778                                                 537633
2779                                                 495687
2780                                                 474064
2781                                                 560865
2782                                                 789398
2783                                                 606857
2784                                                 692767
2785                                                 608386
2786                                                 691201
2787                                                 691344
2788                                                 585352
2789                                                 755307
2790                                                 643700
2791                                                 735635
2792                                                 654019
2793                                                 512348
2794                                                 590002
2795                                                 423486
2796                                                 458635
2797                                                 496191
2798                                                 588657
2799                                                 458837
2800                                                 555471
2801                                                 417206
2802                                                 481484
2803                                                 722211
2804                                                 437491
2805                                                 528777
2806                                                 445090
2807                                                 558349
2808                                                 449263
2809                                                 550948
2810                                                 691009
2811                                                 599161
2812                                                 566956
2813                                                 539925
2814                                                 566160
2815                                                 559979
2816                                                 537946
2817                                                 522547
2818                                                 584276
2819                                                 638848
2820                                                 676189
2821                                                 672760
2822                                                 678672
2823                                                 732425
2824                                                 885728
2825                                                 762218
2826                                                 732546
2827                                                 727280
2828                                                 742292
2829                                                 746494
2830                                                 698628
2831                                                 719104
2832                                                 730875
2833                                                 831188
2834                                                 844338
2835                                                 830073
2836                                                 850692
2837                                                 850863
2838                                                 860858
2839                                                 890197
2840                                                 837573
2841                                                 901690
2842                                                1103888
2843                                                 929492
2844                                                 915500
2845                                                 841840
2846                                                 789348
2847                                                 770877
2848                                                 781628
2849                                                 880239
2850                                                 845575
2851                                                 819707
2852                                                 888570
2853                                                 739486
2854                                                 905145
2855                                                 966321
2856                                                 748107
2857                                                1022653
2858                                                 836226
2859                                                 780979
2860                                                 816760
2861                                                  71169
2862                                                  64422
2863                                                  98347
2864                                                  72472
2865                                                  51941
2866                                                  62527
2867                                                  67212
2868                                                  59587
2869                                                  59789
2870                                                  70652
2871                                                  77805
2872                                                  84235
2873                                                 106260
2874                                                  87557
2875                                                  82378
2876                                                  89823
2877                                                  79683
2878                                                  78600
2879                                                  84013
2880                                                  88787
2881                                                  70711
2882                                                  69620
2883                                                  65580
2884                                                  69053
2885                                                 132511
2886                                                 136378
2887                                                 127962
2888                                                 129020
2889                                                  68722
2890                                                  95948
2891                                                  82549
2892                                                  75997
2893                                                  95144
2894                                                 106410
2895                                                  82586
2896                                                  79562
2897                                                 109590
2898                                                  86898
2899                                                  97650
2900                                                 101268
2901                                                  83081
2902                                                 100145
2903                                                  97421
2904                                                  89982
2905                                                  93951
2906                                                  78070
2907                                                 123715
2908                                                  83755
2909                                                  58434
2910                                                  92385
2911                                                  89881
2912                                                 106107
2913                                                 447601
2914                                                 579577
2915                                                 510801
2916                                                 473428
2917                                                 391257
2918                                                 475677
2919                                                 397601
2920                                                 366175
2921                                                 376501
2922                                                 439552
2923                                                 453605
2924                                                 468135
2925                                                 459164
2926                                                 483057
2927                                                 489601
2928                                                 672673
2929                                                 541671
2930                                                 582023
2931                                                 586073
2932                                                 602605
2933                                                 525387
2934                                                 508950
2935                                                 509095
2936                                                 488508
2937                                                 549815
2938                                                 585485
2939                                                 626973
2940                                                 649660
2941                                                 632856
2942                                                 634990
2943                                                 673496
2944                                                 665086
2945                                                 709563
2946                                                 924194
2947                                                 716003
2948                                                 626895
2949                                                 617180
2950                                                 652547
2951                                                 559718
2952                                                 639420
2953                                                 645235
2954                                                 651211
2955                                                 600640
2956                                                 652943
2957                                                 553709
2958                                                 751657
2959                                                 678810
2960                                                 651617
2961                                                 670377
2962                                                 665218
2963                                                 536675
2964                                                 610622
2965                                                 103035
2966                                                  85340
2967                                                  89038
2968                                                  72203
2969                                                  73261
2970                                                  78676
2971                                                  87367
2972                                                  81692
2973                                                  71164
2974                                                 110745
2975                                                 131181
2976                                                 135059
2977                                                 132144
2978                                                 134327
2979                                                 122909
2980                                                 124096
2981                                                  95474
2982                                                 114646
2983                                                 119865
2984                                                 114328
2985                                                 104315
2986                                                 108088
2987                                                 104126
2988                                                 141881
2989                                                 183741
2990                                                 180609
2991                                                 160806
2992                                                 169756
2993                                                 182472
2994                                                 173445
2995                                                 147423
2996                                                 168251
2997                                                 164791
2998                                                 201143
2999                                                 171441
3000                                                 171142
3001                                                 169355
3002                                                 152124
3003                                                 154802
3004                                                 149463
3005                                                 140364
3006                                                 163501
3007                                                 141229
3008                                                 154058
3009                                                 126537
3010                                                 137984
3011                                                 177910
3012                                                 164454
3013                                                 147470
3014                                                 132286
3015                                                 134523
3016                                                 130621
3017                                                5414937
3018                                                4922622
3019                                                5526646
3020                                                5062953
3021                                                4185901
3022                                                4253816
3023                                                3848128
3024                                                3395058
3025                                                3139834
3026                                                3899041
3027                                                4878038
3028                                                5375979
3029                                                5652496
3030                                                6075589
3031                                                5471565
3032                                                6059765
3033                                                6681646
3034                                                6696300
3035                                                6308000
3036                                                6538336
3037                                                6144828
3038                                                5947160
3039                                                6104047
3040                                                6200614
3041                                                6721691
3042                                                7087455
3043                                                6407277
3044                                                6528056
3045                                                6506235
3046                                                7365675
3047                                                6700986
3048                                                6501981
3049                                                6068873
3050                                                7808462
3051                                                7661483
3052                                                6933382
3053                                                6397813
3054                                                6509001
3055                                                6060844
3056                                                6603708
3057                                                6476207
3058                                                6017564
3059                                                6429870
3060                                                6588278
3061                                                6374019
3062                                                6807283
3063                                               10361698
3064                                                6506674
3065                                                6246381
3066                                                6000013
3067                                                6303407
3068                                                7730431
3069                                                 155793
3070                                                 144634
3071                                                 145815
3072                                                 154743
3073                                                 131454
3074                                                 135608
3075                                                 144089
3076                                                 142096
3077                                                 142955
3078                                                 167741
3079                                                 190846
3080                                                 178236
3081                                                 178411
3082                                                 189132
3083                                                 182978
3084                                                 180989
3085                                                 204964
3086                                                 187985
3087                                                 193593
3088                                                 195251
3089                                                 196381
3090                                                 187969
3091                                                 193909
3092                                                 196467
3093                                                 233262
3094                                                 233544
3095                                                 200521
3096                                                 238721
3097                                                 209096
3098                                                 209797
3099                                                 235009
3100                                                 203493
3101                                                 215807
3102                                                 253623
3103                                                 249786
3104                                                 217385
3105                                                 212441
3106                                                 210588
3107                                                 192342
3108                                                 189945
3109                                                 205367
3110                                                 236131
3111                                                 208506
3112                                                 215161
3113                                                 193132
3114                                                 204111
3115                                                 325941
3116                                                 214136
3117                                                 207961
3118                                                 206778
3119                                                 196216
3120                                                 203962
3121                                                 616654
3122                                                 631117
3123                                                 734954
3124                                                 624751
3125                                                 581639
3126                                                 694873
3127                                                 436711
3128                                                 376477
3129                                                 375214
3130                                                 431274
3131                                                 523683
3132                                                 515146
3133                                                 509216
3134                                                 553864
3135                                                 600390
3136                                                 635036
3137                                                 670453
3138                                                 621716
3139                                                 628099
3140                                                 626087
3141                                                 644670
3142                                                 614939
3143                                                 658914
3144                                                 717279
3145                                                 712081
3146                                                 974278
3147                                                 860171
3148                                                 882074
3149                                                 770843
3150                                                 885603
3151                                                 958567
3152                                                 903865
3153                                                 930403
3154                                                 974740
3155                                                 890282
3156                                                 879308
3157                                                 913422
3158                                                 770662
3159                                                 712210
3160                                                 865585
3161                                                 770557
3162                                                 823797
3163                                                 809326
3164                                                 780952
3165                                                 752336
3166                                                 803121
3167                                                1134049
3168                                                 774091
3169                                                 794030
3170                                                 778413
3171                                                 844277
3172                                                1009667
3173                                                 276388
3174                                                 216881
3175                                                 268166
3176                                                 356617
3177                                                 183176
3178                                                 242174
3179                                                 249073
3180                                                 239234
3181                                                 241671
3182                                                 273804
3183                                                 246802
3184                                                 276820
3185                                                 280396
3186                                                 268805
3187                                                 288857
3188                                                 266720
3189                                                 252059
3190                                                 259143
3191                                                 256195
3192                                                 274250
3193                                                 266196
3194                                                 254690
3195                                                 264195
3196                                                 280542
3197                                                 266812
3198                                                 330182
3199                                                 280230
3200                                                 311128
3201                                                 237774
3202                                                 310345
3203                                                 268328
3204                                                 250388
3205                                                 250333
3206                                                 314243
3207                                                 233581
3208                                                 218247
3209                                                 228211
3210                                                 210310
3211                                                 191169
3212                                                 225486
3213                                                 224943
3214                                                 210905
3215                                                 234512
3216                                                 227594
3217                                                 190350
3218                                                 229211
3219                                                 302338
3220                                                 203006
3221                                                 252317
3222                                                 228861
3223                                                 218907
3224                                                 222535
3225                                                 136733
3226                                                 131322
3227                                                 144355
3228                                                 237639
3229                                                 134306
3230                                                 117299
3231                                                 116815
3232                                                 114208
3233                                                 138566
3234                                                 156831
3235                                                 123389
3236                                                 120833
3237                                                 123300
3238                                                 151979
3239                                                 167438
3240                                                 177299
3241                                                 161362
3242                                                 168758
3243                                                 154117
3244                                                 166463
3245                                                 164282
3246                                                 153804
3247                                                 173335
3248                                                 160413
3249                                                 170763
3250                                                 234975
3251                                                 201924
3252                                                 172220
3253                                                 163639
3254                                                 175046
3255                                                 201748
3256                                                 210264
3257                                                 202002
3258                                                 201206
3259                                                 224515
3260                                                 242277
3261                                                 172184
3262                                                 135905
3263                                                 147520
3264                                                 153523
3265                                                 152572
3266                                                 140244
3267                                                 173826
3268                                                 154968
3269                                                 126068
3270                                                 173980
3271                                                 233906
3272                                                 173312
3273                                                 213215
3274                                                 134605
3275                                                 163977
3276                                                 192774
3277                                                1199637
3278                                                1148251
3279                                                1121306
3280                                                1245472
3281                                                 851579
3282                                                 910226
3283                                                 894000
3284                                                 894905
3285                                                 801082
3286                                                 993986
3287                                                1021029
3288                                                1162335
3289                                                1033290
3290                                                1150789
3291                                                1382358
3292                                                1308970
3293                                                1390891
3294                                                1260686
3295                                                1215162
3296                                                1132112
3297                                                1244081
3298                                                1163785
3299                                                1188812
3300                                                1070350
3301                                                1080238
3302                                                1350870
3303                                                1277489
3304                                                1236820
3305                                                1272166
3306                                                1343656
3307                                                1354697
3308                                                1378889
3309                                                1366440
3310                                                1475782
3311                                                1433697
3312                                                1482923
3313                                                1339726
3314                                                1424318
3315                                                1339210
3316                                                1341740
3317                                                1347884
3318                                                1177309
3319                                                1201769
3320                                                1199631
3321                                                1006181
3322                                                1358553
3323                                                1515264
3324                                                1128639
3325                                                 676032
3326                                                1164936
3327                                                1145737
3328                                                1191928
3329                                                 765511
3330                                                 705751
3331                                                 764135
3332                                                 855989
3333                                                 455470
3334                                                 543817
3335                                                 661297
3336                                                 533948
3337                                                 576354
3338                                                 594393
3339                                                 673393
3340                                                 758237
3341                                                 677072
3342                                                 680947
3343                                                 757358
3344                                                 791566
3345                                                 924278
3346                                                 957464
3347                                                 603008
3348                                                 657981
3349                                                 695116
3350                                                 673588
3351                                                 690893
3352                                                 771606
3353                                                 835116
3354                                                 815699
3355                                                 773678
3356                                                 791014
3357                                                 819665
3358                                                 939081
3359                                                 977871
3360                                                 932147
3361                                                 952355
3362                                                1113913
3363                                                 819111
3364                                                 661914
3365                                                1011266
3366                                                 982818
3367                                                 829424
3368                                                 716900
3369                                                1005860
3370                                                 824793
3371                                                 671668
3372                                                1058089
3373                                                 955583
3374                                                 966134
3375                                                1365558
3376                                                 892702
3377                                                1195521
3378                                                1245174
3379                                                1094946
3380                                                1295246
3381                                                 319957
3382                                                 298755
3383                                                 333110
3384                                                 545217
3385                                                 262530
3386                                                 243577
3387                                                 236523
3388                                                 231422
3389                                                 193941
3390                                                 227234
3391                                                 256744
3392                                                 253887
3393                                                 266892
3394                                                 274937
3395                                                 320748
3396                                                 339890
3397                                                 326336
3398                                                 353421
3399                                                 316860
3400                                                 367007
3401                                                 352764
3402                                                 340176
3403                                                 354577
3404                                                 328238
3405                                                 311241
3406                                                 336702
3407                                                 344391
3408                                                 442961
3409                                                 414532
3410                                                 473131
3411                                                 348557
3412                                                 303331
3413                                                 485653
3414                                                 500425
3415                                                 319392
3416                                                 331110
3417                                                 447347
3418                                                 312996
3419                                                 335108
3420                                                 378432
3421                                                 371639
3422                                                 299528
3423                                                 441920
3424                                                 342465
3425                                                 247820
3426                                                 334545
3427                                                 594785
3428                                                 364613
3429                                                 489585
3430                                                 293247
3431                                                 325998
3432                                                 492700
3433                                                 149349
3434                                                 161137
3435                                                 128166
3436                                                 263904
3437                                                 103698
3438                                                 127393
3439                                                 118567
3440                                                 100001
3441                                                 107014
3442                                                 100905
3443                                                 117843
3444                                                 116478
3445                                                 122092
3446                                                 137599
3447                                                 139512
3448                                                 136492
3449                                                 142914
3450                                                 143050
3451                                                 132895
3452                                                 147711
3453                                                 145208
3454                                                 142302
3455                                                 149003
3456                                                 146731
3457                                                 133748
3458                                                 159567
3459                                                 183547
3460                                                 216300
3461                                                 167703
3462                                                 310904
3463                                                 193460
3464                                                 151841
3465                                                 295707
3466                                                 272057
3467                                                 191903
3468                                                 181857
3469                                                 332192
3470                                                 155144
3471                                                 156883
3472                                                 216789
3473                                                 208712
3474                                                 149120
3475                                                 259568
3476                                                 202356
3477                                                 142682
3478                                                 154975
3479                                                 290556
3480                                                 182987
3481                                                 260599
3482                                                 172166
3483                                                 160433
3484                                                 258889
3485                                                2954315
3486                                                2791515
3487                                                3048518
3488                                                3854100
3489                                                2385048
3490                                                2637622
3491                                                2348814
3492                                                2222383
3493                                                2275352
3494                                                2528597
3495                                                2517672
3496                                                2624203
3497                                                2618806
3498                                                2834326
3499                                                2996317
3500                                                3078052
3501                                                3084199
3502                                                3025330
3503                                                2933974
3504                                                3134414
3505                                                3106109
3506                                                3013426
3507                                                3212818
3508                                                3267858
3509                                                3327062
3510                                                4020725
3511                                                3643417
3512                                                3955099
3513                                                3443334
3514                                                4188246
3515                                                3925300
3516                                                3705262
3517                                                4324700
3518                                                4460482
3519                                                3801508
3520                                                3735389
3521                                                4154218
3522                                                3126127
3523                                                2968139
3524                                                3557777
3525                                                3368334
3526                                                3145898
3527                                                3818114
3528                                                3419910
3529                                                2837627
3530                                                3386951
3531                                                4865296
3532                                                3330752
3533                                                3806975
3534                                                3166942
3535                                                3310201
3536                                                4065583
3537                                                 186180
3538                                                 210917
3539                                                 202601
3540                                                 172416
3541                                                 155286
3542                                                 191756
3543                                                 197921
3544                                                 174837
3545                                                 171652
3546                                                 195809
3547                                                 205728
3548                                                 219090
3549                                                 214727
3550                                                 222019
3551                                                 220698
3552                                                 272611
3553                                                 311177
3554                                                 269378
3555                                                 258309
3556                                                 272099
3557                                                 267083
3558                                                 253672
3559                                                 247275
3560                                                 249118
3561                                                 274783
3562                                                 287688
3563                                                 277479
3564                                                 267236
3565                                                 250231
3566                                                 267226
3567                                                 280015
3568                                                 257599
3569                                                 270639
3570                                                 373545
3571                                                 316411
3572                                                 283535
3573                                                 257744
3574                                                 237139
3575                                                 186674
3576                                                 247390
3577                                                 269457
3578                                                 256786
3579                                                 240850
3580                                                 254954
3581                                                 235440
3582                                                 264904
3583                                                 310166
3584                                                 240912
3585                                                 269860
3586                                                 251772
3587                                                 231258
3588                                                 252693
3589                                                 238100
3590                                                 304051
3591                                                 245722
3592                                                 207483
3593                                                 195221
3594                                                 240656
3595                                                 184929
3596                                                 173621
3597                                                 180113
3598                                                 213547
3599                                                 208966
3600                                                 231063
3601                                                 216819
3602                                                 224392
3603                                                 233869
3604                                                 364052
3605                                                 279628
3606                                                 287630
3607                                                 299546
3608                                                 298015
3609                                                 288156
3610                                                 255026
3611                                                 254686
3612                                                 259417
3613                                                 292612
3614                                                 309897
3615                                                 329620
3616                                                 335704
3617                                                 324963
3618                                                 303118
3619                                                 382444
3620                                                 296894
3621                                                 416265
3622                                                 522565
3623                                                 353240
3624                                                 342796
3625                                                 284480
3626                                                 280729
3627                                                 254202
3628                                                 294602
3629                                                 373373
3630                                                 315394
3631                                                 311503
3632                                                 357504
3633                                                 288176
3634                                                 398441
3635                                                 393866
3636                                                 390135
3637                                                 317933
3638                                                 352473
3639                                                 284119
3640                                                 322752
3641                                                1126851
3642                                                1212933
3643                                                1015974
3644                                                1130896
3645                                                 854630
3646                                                 827346
3647                                                 828867
3648                                                 782911
3649                                                 709890
3650                                                 777848
3651                                                 992993
3652                                                1075304
3653                                                1023030
3654                                                1027782
3655                                                1127109
3656                                                1217347
3657                                                1351650
3658                                                1021607
3659                                                1046507
3660                                                1015264
3661                                                1040953
3662                                                 941066
3663                                                 985028
3664                                                1006984
3665                                                1101544
3666                                                1189787
3667                                                1186692
3668                                                1153583
3669                                                1209996
3670                                                1182842
3671                                                1128599
3672                                                1378762
3673                                                1343567
3674                                                1406284
3675                                                1308614
3676                                                1393043
3677                                                1310678
3678                                                1271741
3679                                                1256919
3680                                                1345865
3681                                                1162026
3682                                                1136963
3683                                                1091432
3684                                                1048304
3685                                                 966991
3686                                                1191352
3687                                                1323490
3688                                                1131583
3689                                                 867295
3690                                                1071139
3691                                                1095288
3692                                                1061567
3693                                                 135849
3694                                                 122036
3695                                                 133480
3696                                                 144732
3697                                                 103729
3698                                                 124674
3699                                                 127579
3700                                                 126205
3701                                                 139575
3702                                                 142946
3703                                                 138921
3704                                                 143912
3705                                                 146709
3706                                                 150805
3707                                                 153212
3708                                                 157333
3709                                                 160672
3710                                                 167402
3711                                                 160969
3712                                                 169421
3713                                                 163339
3714                                                 159574
3715                                                 178390
3716                                                 195710
3717                                                 191786
3718                                                 205563
3719                                                 183555
3720                                                 193533
3721                                                 186723
3722                                                 208087
3723                                                 210387
3724                                                 214847
3725                                                 212807
3726                                                 228601
3727                                                 207488
3728                                                 217736
3729                                                 218238
3730                                                 168009
3731                                                 154099
3732                                                 195374
3733                                                 168887
3734                                                 179067
3735                                                 208284
3736                                                 188077
3737                                                 153498
3738                                                 219872
3739                                                 240237
3740                                                 175610
3741                                                 168035
3742                                                 171405
3743                                                 173238
3744                                                 184670
3745                                                 187804
3746                                                 162502
3747                                                 116052
3748                                                 206010
3749                                                 111672
3750                                                 117496
3751                                                 140703
3752                                                 127895
3753                                                 115122
3754                                                 119840
3755                                                 157329
3756                                                 135520
3757                                                 159577
3758                                                 158194
3759                                                 175929
3760                                                 150296
3761                                                 239246
3762                                                 177300
3763                                                 189700
3764                                                 206617
3765                                                 151752
3766                                                 152777
3767                                                 156317
3768                                                 165454
3769                                                 164680
3770                                                 272151
3771                                                 159129
3772                                                 226775
3773                                                 151429
3774                                                 221144
3775                                                 242169
3776                                                 160652
3777                                                 257370
3778                                                 224520
3779                                                 370646
3780                                                 267226
3781                                                 184827
3782                                                 261081
3783                                                 181662
3784                                                 158323
3785                                                 140301
3786                                                 241654
3787                                                 155655
3788                                                 253490
3789                                                 141336
3790                                                 151724
3791                                                 369758
3792                                                 151247
3793                                                 192194
3794                                                 118231
3795                                                 181585
3796                                                 148599
3797                                                 292039
3798                                                 297506
3799                                                 339329
3800                                                 315049
3801                                                 255656
3802                                                 237141
3803                                                 259547
3804                                                 225301
3805                                                 223089
3806                                                 254999
3807                                                 315744
3808                                                 276031
3809                                                 246513
3810                                                 242300
3811                                                 278479
3812                                                 378865
3813                                                 335180
3814                                                 288423
3815                                                 302708
3816                                                 295536
3817                                                 311533
3818                                                 284566
3819                                                 283863
3820                                                 283074
3821                                                 357787
3822                                                 362137
3823                                                 352407
3824                                                 364255
3825                                                 348022
3826                                                 410771
3827                                                 391994
3828                                                 318913
3829                                                 317622
3830                                                 427575
3831                                                 363105
3832                                                 359872
3833                                                 379464
3834                                                 354098
3835                                                 298711
3836                                                 314268
3837                                                 332283
3838                                                 344613
3839                                                 311403
3840                                                 316564
3841                                                 337403
3842                                                 371468
3843                                                 437747
3844                                                 285052
3845                                                 158978
3846                                                 289298
3847                                                 309217
3848                                                 332972
3849                                                2641775
3850                                                2377800
3851                                                2793918
3852                                                2780629
3853                                                2257271
3854                                                2272023
3855                                                1913493
3856                                                1595013
3857                                                1499287
3858                                                2133563
3859                                                2548688
3860                                                2766529
3861                                                2865745
3862                                                3007073
3863                                                2589309
3864                                                2939705
3865                                                3431676
3866                                                3563269
3867                                                3086167
3868                                                2879218
3869                                                3094362
3870                                                2826836
3871                                                3033329
3872                                                3092234
3873                                                3293225
3874                                                3449361
3875                                                3258184
3876                                                3237847
3877                                                3248769
3878                                                3715458
3879                                                3203936
3880                                                3134305
3881                                                2866856
3882                                                3942054
3883                                                3863314
3884                                                3136883
3885                                                3185231
3886                                                3288357
3887                                                2793982
3888                                                3467762
3889                                                3374877
3890                                                2987394
3891                                                3138837
3892                                                3332578
3893                                                3232889
3894                                                3664089
3895                                                4982700
3896                                                3197788
3897                                                3173509
3898                                                2952577
3899                                                3172438
3900                                                3967109
3901                                                  81834
3902                                                  67720
3903                                                 105229
3904                                                 127201
3905                                                  57766
3906                                                  59211
3907                                                  64959
3908                                                  70882
3909                                                  70138
3910                                                  75593
3911                                                  81708
3912                                                  78262
3913                                                  75004
3914                                                  75513
3915                                                  87633
3916                                                  90086
3917                                                  82941
3918                                                  82663
3919                                                  89370
3920                                                  85551
3921                                                  80998
3922                                                  86031
3923                                                  95001
3924                                                 101964
3925                                                  94592
3926                                                 106600
3927                                                  98078
3928                                                  98290
3929                                                  84927
3930                                                  99180
3931                                                 109061
3932                                                 113794
3933                                                 106279
3934                                                 139476
3935                                                 128109
3936                                                  92553
3937                                                  95475
3938                                                  83505
3939                                                  91460
3940                                                 120080
3941                                                 123442
3942                                                  79811
3943                                                  88103
3944                                                 102197
3945                                                 114817
3946                                                 124651
3947                                                 148704
3948                                                 101620
3949                                                 120305
3950                                                  83687
3951                                                  99956
3952                                                 116364
3953                                                 648359
3954                                                 662655
3955                                                 446140
3956                                                 728191
3957                                                 405086
3958                                                 461237
3959                                                 478305
3960                                                 426160
3961                                                 403657
3962                                                 437489
3963                                                 537970
3964                                                 410181
3965                                                 539575
3966                                                 558552
3967                                                 541030
3968                                                 480735
3969                                                 862396
3970                                                 558829
3971                                                 565825
3972                                                 695231
3973                                                 515183
3974                                                 496509
3975                                                 520496
3976                                                 516716
3977                                                 566890
3978                                                 868986
3979                                                 540206
3980                                                 812335
3981                                                 503077
3982                                                 786072
3983                                                 849098
3984                                                 497820
3985                                                 889357
3986                                                 653844
3987                                                1078795
3988                                                 896845
3989                                                 558954
3990                                                 841732
3991                                                 543235
3992                                                 468636
3993                                                 507580
3994                                                 799993
3995                                                 448052
3996                                                 822403
3997                                                 481705
3998                                                 446631
3999                                                1180631
4000                                                 492691
4001                                                 611558
4002                                                 430079
4003                                                 702727
4004                                                 502584
4005                                                2180512
4006                                                2242221
4007                                                2339977
4008                                                2359837
4009                                                1858065
4010                                                1999044
4011                                                2075283
4012                                                2077507
4013                                                2083055
4014                                                2287508
4015                                                2442982
4016                                                2469382
4017                                                2540672
4018                                                2568161
4019                                                2785256
4020                                                3068639
4021                                                3127950
4022                                                2799098
4023                                                2840526
4024                                                2901787
4025                                                2900751
4026                                                2787002
4027                                                2914818
4028                                                2940449
4029                                                3221651
4030                                                3393696
4031                                                3095674
4032                                                3304968
4033                                                3122351
4034                                                3223814
4035                                                3349139
4036                                                3154318
4037                                                3205038
4038                                                3850646
4039                                                3536334
4040                                                3332610
4041                                                3029003
4042                                                2836885
4043                                                2690268
4044                                                2911903
4045                                                3198477
4046                                                3093898
4047                                                2942516
4048                                                3032920
4049                                                2747176
4050                                                3173460
4051                                                4131615
4052                                                2881461
4053                                                3147903
4054                                                3001684
4055                                                2871899
4056                                                2967930
4057                                                 166486
4058                                                 158024
4059                                                 193711
4060                                                 189526
4061                                                 129938
4062                                                 131606
4063                                                 141387
4064                                                 146937
4065                                                 151716
4066                                                 163018
4067                                                 177609
4068                                                 156477
4069                                                 172755
4070                                                 174769
4071                                                 191360
4072                                                 250165
4073                                                 292902
4074                                                 172758
4075                                                 184734
4076                                                 202834
4077                                                 188017
4078                                                 186520
4079                                                 191727
4080                                                 196774
4081                                                 198240
4082                                                 250902
4083                                                 195472
4084                                                 232084
4085                                                 190921
4086                                                 223369
4087                                                 238624
4088                                                 204129
4089                                                 219616
4090                                                 212720
4091                                                 237679
4092                                                 233759
4093                                                 178369
4094                                                 206829
4095                                                 165588
4096                                                 171568
4097                                                 179306
4098                                                 188478
4099                                                 159755
4100                                                 190263
4101                                                 182025
4102                                                 203205
4103                                                 268609
4104                                                 173690
4105                                                 167159
4106                                                 181361
4107                                                 212753
4108                                                 185316
4109                                                 225497
4110                                                 183103
4111                                                 177582
4112                                                 253242
4113                                                 148538
4114                                                 167233
4115                                                 225722
4116                                                 183542
4117                                                 163511
4118                                                 203438
4119                                                 222713
4120                                                 233899
4121                                                 214691
4122                                                 264726
4123                                                 244914
4124                                                 250493
4125                                                 324151
4126                                                 309239
4127                                                 314573
4128                                                 265538
4129                                                 287114
4130                                                 254878
4131                                                 261492
4132                                                 284926
4133                                                 291978
4134                                                 360420
4135                                                 267116
4136                                                 293340
4137                                                 283923
4138                                                 291490
4139                                                 300078
4140                                                 271554
4141                                                 288245
4142                                                 495733
4143                                                 564739
4144                                                 295499
4145                                                 323909
4146                                                 312471
4147                                                 316709
4148                                                 263582
4149                                                 273647
4150                                                 304058
4151                                                 267954
4152                                                 320343
4153                                                 263057
4154                                                 269319
4155                                                 542751
4156                                                 282934
4157                                                 228086
4158                                                 286863
4159                                                 264477
4160                                                 274498
4161                                                1087985
4162                                                1241382
4163                                                1163696
4164                                                 960476
4165                                                 970753
4166                                                1093097
4167                                                 830018
4168                                                 767191
4169                                                 618280
4170                                                 807565
4171                                                 969847
4172                                                1031060
4173                                                1057931
4174                                                1061133
4175                                                1108446
4176                                                1558414
4177                                                1278749
4178                                                1212400
4179                                                1334938
4180                                                1275953
4181                                                1256918
4182                                                1122163
4183                                                1180374
4184                                                1076259
4185                                                1266200
4186                                                1280725
4187                                                1622152
4188                                                1372612
4189                                                1485642
4190                                                1447580
4191                                                1827100
4192                                                1586648
4193                                                1706730
4194                                                2740588
4195                                                1536110
4196                                                1718056
4197                                                1030787
4198                                                 987898
4199                                                1240608
4200                                                1395562
4201                                                1743195
4202                                                1600417
4203                                                1455656
4204                                                1594428
4205                                                1315178
4206                                                1806981
4207                                                2202128
4208                                                1615465
4209                                                1429243
4210                                                1840344
4211                                                1364273
4212                                                1454164
4213                                                3216471
4214                                                3686006
4215                                                3381321
4216                                                3222664
4217                                                2701518
4218                                                3206947
4219                                                2706838
4220                                                2507401
4221                                                2364424
4222                                                2916579
4223                                                3107049
4224                                                3350950
4225                                                3257753
4226                                                3458791
4227                                                3442454
4228                                                4456958
4229                                                4019649
4230                                                4309302
4231                                                4127080
4232                                                4195423
4233                                                4024822
4234                                                3813808
4235                                                3834291
4236                                                3736814
4237                                                4487626
4238                                                4486745
4239                                                4840950
4240                                                4506893
4241                                                4599029
4242                                                4570516
4243                                                5141315
4244                                                4609250
4245                                                4999101
4246                                                6899727
4247                                                5247267
4248                                                4815249
4249                                                3849051
4250                                                3756625
4251                                                3872681
4252                                                4239017
4253                                                4834759
4254                                                4713935
4255                                                4226926
4256                                                4481119
4257                                                3948235
4258                                                4959258
4259                                                5919226
4260                                                4650798
4261                                                4412281
4262                                                4891517
4263                                                3890225
4264                                                4524220
4265                                                 325634
4266                                                 357508
4267                                                 310425
4268                                                 440990
4269                                                 262748
4270                                                 315783
4271                                                 268389
4272                                                 242667
4273                                                 255455
4274                                                 291386
4275                                                 290885
4276                                                 305507
4277                                                 291185
4278                                                 315399
4279                                                 316981
4280                                                 343315
4281                                                 374903
4282                                                 573339
4283                                                 413497
4284                                                 463652
4285                                                 457429
4286                                                 435129
4287                                                 463063
4288                                                 412386
4289                                                 569328
4290                                                 525917
4291                                                 497817
4292                                                 485946
4293                                                 472020
4294                                                 471357
4295                                                 499944
4296                                                 433252
4297                                                 443517
4298                                                 546838
4299                                                 628512
4300                                                 431616
4301                                                 399074
4302                                                 409228
4303                                                 486717
4304                                                 423258
4305                                                 414604
4306                                                 476635
4307                                                 405931
4308                                                 387150
4309                                                 380427
4310                                                 456440
4311                                                 605847
4312                                                 419786
4313                                                 453560
4314                                                 447079
4315                                                 343407
4316                                                 553828
4317                                                 359006
4318                                                 333093
4319                                                 247660
4320                                                 398860
4321                                                 221374
4322                                                 239374
4323                                                 250639
4324                                                 236697
4325                                                 223225
4326                                                 236500
4327                                                 311364
4328                                                 267399
4329                                                 301939
4330                                                 302809
4331                                                 319544
4332                                                 312267
4333                                                 477301
4334                                                 326913
4335                                                 347563
4336                                                 416694
4337                                                 327168
4338                                                 320003
4339                                                 336367
4340                                                 348318
4341                                                 341532
4342                                                 553640
4343                                                 333569
4344                                                 454278
4345                                                 293812
4346                                                 448118
4347                                                 481069
4348                                                 312533
4349                                                 512840
4350                                                 432737
4351                                                 667818
4352                                                 533831
4353                                                 347881
4354                                                 517278
4355                                                 349122
4356                                                 311572
4357                                                 291755
4358                                                 479956
4359                                                 291732
4360                                                 496973
4361                                                 296932
4362                                                 312271
4363                                                 696369
4364                                                 329627
4365                                                 399752
4366                                                 248039
4367                                                 413414
4368                                                 308712
4369                                                 329494
4370                                                 336267
4371                                                 356716
4372                                                 301330
4373                                                 279131
4374                                                 328557
4375                                                 293853
4376                                                 269770
4377                                                 254423
4378                                                 293380
4379                                                 335408
4380                                                 355668
4381                                                 366233
4382                                                 366205
4383                                                 403065
4384                                                 499660
4385                                                 488464
4386                                                 418743
4387                                                 408491
4388                                                 415100
4389                                                 411252
4390                                                 376353
4391                                                 389535
4392                                                 392042
4393                                                 420055
4394                                                 427325
4395                                                 478875
4396                                                 421529
4397                                                 426672
4398                                                 450347
4399                                                 484287
4400                                                 459980
4401                                                 474934
4402                                                 698602
4403                                                 478385
4404                                                 504961
4405                                                 366449
4406                                                 346081
4407                                                 370754
4408                                                 417871
4409                                                 543578
4410                                                 533502
4411                                                 417689
4412                                                 419882
4413                                                 409152
4414                                                 445229
4415                                                 675833
4416                                                 469689
4417                                                 448784
4418                                                 492566
4419                                                 413225
4420                                                 421093
4421                                                1108953
4422                                                1236204
4423                                                1056806
4424                                                1164027
4425                                                 907516
4426                                                1226126
4427                                                 911367
4428                                                 734433
4429                                                 644652
4430                                                 699711
4431                                                 831121
4432                                                 885661
4433                                                 815712
4434                                                 811940
4435                                                 826739
4436                                                 961998
4437                                                1455771
4438                                                1024800
4439                                                1459911
4440                                                1325975
4441                                                1522369
4442                                                 851296
4443                                                 922526
4444                                                 864517
4445                                                 995348
4446                                                1069906
4447                                                1360169
4448                                                1348892
4449                                                 991221
4450                                                1197278
4451                                                1342825
4452                                                1063411
4453                                                1318932
4454                                                1489269
4455                                                1178000
4456                                                1352495
4457                                                1166007
4458                                                1387970
4459                                                1091234
4460                                                1423940
4461                                                1339528
4462                                                1103110
4463                                                1442973
4464                                                1290021
4465                                                1098968
4466                                                1209858
4467                                                1609195
4468                                                1113755
4469                                                1016721
4470                                                1069974
4471                                                1276129
4472                                                1092067
4473                                                  80689
4474                                                 123556
4475                                                  84145
4476                                                  80731
4477                                                  67449
4478                                                  85228
4479                                                  86306
4480                                                  92657
4481                                                  86821
4482                                                  90369
4483                                                  87503
4484                                                  89506
4485                                                  92484
4486                                                 165178
4487                                                  91299
4488                                                  80207
4489                                                  93888
4490                                                  89248
4491                                                  89949
4492                                                  93416
4493                                                  97960
4494                                                  94553
4495                                                 104421
4496                                                 113656
4497                                                 111915
4498                                                 128115
4499                                                 110772
4500                                                 104128
4501                                                 102413
4502                                                 111138
4503                                                 117487
4504                                                 113858
4505                                                 165734
4506                                                 144813
4507                                                 169483
4508                                                 109421
4509                                                 107272
4510                                                 102685
4511                                                  87992
4512                                                  93608
4513                                                  87881
4514                                                  91113
4515                                                  99549
4516                                                  96484
4517                                                  84755
4518                                                  87228
4519                                                 105805
4520                                                  88552
4521                                                  96488
4522                                                  94971
4523                                                 110156
4524                                                  90522
4525                                                1449395
4526                                                1426471
4527                                                1468902
4528                                                1676509
4529                                                1131932
4530                                                1126964
4531                                                1187397
4532                                                1281024
4533                                                1058938
4534                                                1179301
4535                                                1252400
4536                                                1360541
4537                                                1352082
4538                                                1419113
4539                                                1641724
4540                                                1697761
4541                                                1933628
4542                                                1693969
4543                                                1693419
4544                                                1873447
4545                                                1979363
4546                                                1716385
4547                                                1807152
4548                                                1865427
4549                                                2028847
4550                                                2259572
4551                                                2101836
4552                                                2559003
4553                                                2104834
4554                                                2330438
4555                                                2265038
4556                                                2248727
4557                                                2100440
4558                                                2664927
4559                                                2093999
4560                                                2088524
4561                                                2114991
4562                                                1872379
4563                                                1769050
4564                                                1740837
4565                                                1938247
4566                                                2095165
4567                                                1734415
4568                                                1647189
4569                                                1672884
4570                                                1790823
4571                                                2838853
4572                                                1851372
4573                                                1261353
4574                                                1495177
4575                                                1670525
4576                                                2171819
4577                                                 525931
4578                                                 522499
4579                                                 923022
4580                                                 594247
4581                                                 404390
4582                                                 455618
4583                                                 487763
4584                                                 467434
4585                                                 407048
4586                                                 568596
4587                                                 563725
4588                                                 598036
4589                                                 954737
4590                                                 694290
4591                                                 603235
4592                                                 671818
4593                                                 613059
4594                                                 621458
4595                                                 668004
4596                                                 623629
4597                                                 659208
4598                                                 608614
4599                                                 602085
4600                                                 612573
4601                                                 669674
4602                                                 728681
4603                                                 662145
4604                                                 682681
4605                                                 626227
4606                                                 942775
4607                                                 832870
4608                                                 689731
4609                                                 884782
4610                                                 969780
4611                                                 852119
4612                                                 714375
4613                                                 917689
4614                                                 681434
4615                                                 806265
4616                                                 806586
4617                                                 556500
4618                                                 750735
4619                                                 769499
4620                                                 725928
4621                                                 823186
4622                                                 567177
4623                                                 948838
4624                                                 674374
4625                                                 596989
4626                                                 731385
4627                                                 731602
4628                                                 830063
4629                                                 208041
4630                                                 197054
4631                                                 215138
4632                                                 216078
4633                                                 175761
4634                                                 183328
4635                                                 211409
4636                                                 215346
4637                                                 211956
4638                                                 239744
4639                                                 247657
4640                                                 254094
4641                                                 261886
4642                                                 255043
4643                                                 278130
4644                                                 248257
4645                                                 287328
4646                                                 281758
4647                                                 279091
4648                                                 295307
4649                                                 280543
4650                                                 273952
4651                                                 279160
4652                                                 279443
4653                                                 303560
4654                                                 307216
4655                                                 297551
4656                                                 313757
4657                                                 298517
4658                                                 308049
4659                                                 295357
4660                                                 288374
4661                                                 293520
4662                                                 318524
4663                                                 326469
4664                                                 311439
4665                                                 284896
4666                                                 274246
4667                                                 262808
4668                                                 260487
4669                                                 288866
4670                                                 303780
4671                                                 298088
4672                                                 281060
4673                                                 263148
4674                                                 283960
4675                                                 403850
4676                                                 290633
4677                                                 242513
4678                                                 272249
4679                                                 257990
4680                                                 280336
4681                                                 176103
4682                                                 174209
4683                                                 186496
4684                                                 183872
4685                                                 154199
4686                                                 177112
4687                                                 177641
4688                                                 169723
4689                                                 174401
4690                                                 178513
4691                                                 203089
4692                                                 213460
4693                                                 229339
4694                                                 210791
4695                                                 238849
4696                                                 240632
4697                                                 263824
4698                                                 250435
4699                                                 236350
4700                                                 247601
4701                                                 266174
4702                                                 245375
4703                                                 272728
4704                                                 264253
4705                                                 296610
4706                                                 305399
4707                                                 259282
4708                                                 278179
4709                                                 280191
4710                                                 268776
4711                                                 274103
4712                                                 271979
4713                                                 250352
4714                                                 334122
4715                                                 283660
4716                                                 273208
4717                                                 251803
4718                                                 220100
4719                                                 189989
4720                                                 233604
4721                                                 264247
4722                                                 246111
4723                                                 255420
4724                                                 230260
4725                                                 214626
4726                                                 254612
4727                                                 394461
4728                                                 222414
4729                                                 272314
4730                                                 272595
4731                                                 243705
4732                                                 235619
4733                                                 103804
4734                                                  93107
4735                                                 113395
4736                                                 105733
4737                                                  82819
4738                                                  99234
4739                                                  98075
4740                                                 104170
4741                                                 105608
4742                                                 107231
4743                                                 121792
4744                                                 118935
4745                                                 133182
4746                                                 142131
4747                                                 144273
4748                                                 156833
4749                                                 162358
4750                                                 155029
4751                                                 147961
4752                                                 145314
4753                                                 142168
4754                                                 143067
4755                                                 150127
4756                                                 144948
4757                                                 158962
4758                                                 164584
4759                                                 141407
4760                                                 158225
4761                                                 152149
4762                                                 151373
4763                                                 162618
4764                                                 171189
4765                                                 141716
4766                                                 184596
4767                                                 178488
4768                                                 164411
4769                                                 150910
4770                                                 133382
4771                                                 113028
4772                                                 139669
4773                                                 156284
4774                                                 139662
4775                                                 142027
4776                                                 135623
4777                                                 115876
4778                                                 159758
4779                                                 198011
4780                                                 121478
4781                                                 143015
4782                                                 157618
4783                                                 143704
4784                                                 156699
4785                                                 428248
4786                                                 384448
4787                                                 434567
4788                                                 315956
4789                                                 279334
4790                                                 289774
4791                                                 277735
4792                                                 266345
4793                                                 238699
4794                                                 253164
4795                                                 330213
4796                                                 370423
4797                                                 381993
4798                                                 420077
4799                                                 407814
4800                                                 432472
4801                                                 472090
4802                                                 421584
4803                                                 456755
4804                                                 512843
4805                                                 453623
4806                                                 466095
4807                                                 450896
4808                                                 471698
4809                                                 489099
4810                                                 565018
4811                                                 464446
4812                                                 508036
4813                                                 501159
4814                                                 521409
4815                                                 489338
4816                                                 488201
4817                                                 438310
4818                                                 569710
4819                                                 481861
4820                                                 529818
4821                                                 448082
4822                                                 459343
4823                                                 488548
4824                                                 458899
4825                                                 404736
4826                                                 441334
4827                                                 443387
4828                                                 439280
4829                                                 419480
4830                                                 447946
4831                                                 796524
4832                                                 434121
4833                                                 409325
4834                                                 437357
4835                                                 434239
4836                                                 512118
4837                                                 473730
4838                                                 437171
4839                                                 505123
4840                                                 499144
4841                                                 392291
4842                                                 369682
4843                                                 353829
4844                                                 292300
4845                                                 270942
4846                                                 366027
4847                                                 443368
4848                                                 473047
4849                                                 534802
4850                                                 566090
4851                                                 457197
4852                                                 498556
4853                                                 550757
4854                                                 620041
4855                                                 578630
4856                                                 499056
4857                                                 534956
4858                                                 522679
4859                                                 526657
4860                                                 519568
4861                                                 604082
4862                                                 613006
4863                                                 595918
4864                                                 573831
4865                                                 596635
4866                                                 661160
4867                                                 576543
4868                                                 569349
4869                                                 553707
4870                                                 649503
4871                                                 679213
4872                                                 623487
4873                                                 621350
4874                                                 589695
4875                                                 527115
4876                                                 615581
4877                                                 649914
4878                                                 567953
4879                                                 627398
4880                                                 585694
4881                                                 592198
4882                                                 595415
4883                                                 917661
4884                                                 643327
4885                                                 564638
4886                                                 561713
4887                                                 578611
4888                                                 719750
4889                                                 690027
4890                                                 643518
4891                                                 655428
4892                                                 542857
4893                                                 488378
4894                                                 510752
4895                                                 506544
4896                                                 492505
4897                                                 477938
4898                                                 411874
4899                                                 590535
4900                                                 673082
4901                                                 731994
4902                                                 860547
4903                                                 813576
4904                                                 862732
4905                                                 850104
4906                                                 812411
4907                                                 825338
4908                                                1114834
4909                                                 753570
4910                                                 814505
4911                                                 817357
4912                                                 804072
4913                                                 842732
4914                                                 891917
4915                                                 749555
4916                                                 800921
4917                                                 770382
4918                                                 899154
4919                                                 891069
4920                                                 817923
4921                                                 772065
4922                                                 961335
4923                                                1001227
4924                                                1017426
4925                                                 786423
4926                                                 765652
4927                                                 849740
4928                                                 716020
4929                                                 739578
4930                                                 714002
4931                                                 817240
4932                                                 824093
4933                                                 799826
4934                                                 696959
4935                                                1355047
4936                                                 805039
4937                                                 844417
4938                                                 732861
4939                                                 765840
4940                                                 918799
4941                                                 475144
4942                                                 459323
4943                                                 809404
4944                                                 531803
4945                                                 383269
4946                                                 447760
4947                                                 472868
4948                                                 446970
4949                                                 368056
4950                                                 619599
4951                                                 618367
4952                                                 556875
4953                                                 917140
4954                                                 655426
4955                                                 586212
4956                                                 644049
4957                                                 563852
4958                                                 592604
4959                                                 605653
4960                                                 591638
4961                                                 619209
4962                                                 595856
4963                                                 581023
4964                                                 639853
4965                                                 628610
4966                                                 663580
4967                                                 638550
4968                                                 677710
4969                                                 666341
4970                                                 866343
4971                                                 771236
4972                                                 726065
4973                                                 844349
4974                                                1007801
4975                                                 858037
4976                                                 752138
4977                                                 862451
4978                                                 728447
4979                                                 793188
4980                                                 781582
4981                                                 596111
4982                                                 712808
4983                                                 782395
4984                                                 737516
4985                                                 755726
4986                                                 593652
4987                                                1040955
4988                                                 666670
4989                                                 726079
4990                                                 788935
4991                                                 831912
4992                                                 814296
4993                                                 308343
4994                                                 269691
4995                                                 243555
4996                                                 304040
4997                                                 229072
4998                                                 246915
4999                                                 255288
5000                                                 222378
5001                                                 227994
5002                                                 260446
5003                                                 281240
5004                                                 262765
5005                                                 301002
5006                                                 327724
5007                                                 331549
5008                                                 341888
5009                                                 419927
5010                                                 352298
5011                                                 381549
5012                                                 389639
5013                                                 362626
5014                                                 344491
5015                                                 336674
5016                                                 336050
5017                                                 389300
5018                                                 515793
5019                                                 367779
5020                                                 451742
5021                                                 357902
5022                                                 416168
5023                                                 441398
5024                                                 343576
5025                                                 422276
5026                                                 504149
5027                                                 591963
5028                                                 420067
5029                                                 370691
5030                                                 397991
5031                                                 340565
5032                                                 315024
5033                                                 331531
5034                                                 414943
5035                                                 325787
5036                                                 387740
5037                                                 302654
5038                                                 342705
5039                                                 593760
5040                                                 312455
5041                                                 317032
5042                                                 287599
5043                                                 322435
5044                                                 319228
5045                                                5630042
5046                                                5483208
5047                                                5031207
5048                                                5584115
5049                                                4064847
5050                                                4150511
5051                                                4224677
5052                                                4214624
5053                                                3733135
5054                                                4477595
5055                                                4967651
5056                                                5416592
5057                                                5006660
5058                                                5344837
5059                                                6130654
5060                                                6236079
5061                                                6802635
5062                                                5775722
5063                                                5682047
5064                                                5385035
5065                                                5647940
5066                                                5130900
5067                                                5528475
5068                                                5449442
5069                                                5646460
5070                                                6494533
5071                                                6046264
5072                                                6005535
5073                                                6195285
5074                                                6351401
5075                                                6239677
5076                                                6680323
5077                                                6728121
5078                                                7281887
5079                                                6953489
5080                                                6893901
5081                                                6657074
5082                                                6414263
5083                                                6154503
5084                                                6553309
5085                                                6276765
5086                                                5894070
5087                                                5848141
5088                                                5698454
5089                                                5108381
5090                                                6349602
5091                                                7606352
5092                                                5850128
5093                                                3898235
5094                                                5735627
5095                                                5647635
5096                                                5693942
5097                                                3722102
5098                                                3413411
5099                                                2648135
5100                                                3941512
5101                                                2408199
5102                                                2670426
5103                                                2819889
5104                                                2590998
5105                                                2502553
5106                                                2704876
5107                                                3233029
5108                                                2885138
5109                                                3106953
5110                                                3266161
5111                                                3403999
5112                                                3431698
5113                                                4804279
5114                                                3580022
5115                                                3716887
5116                                                4230675
5117                                                3419326
5118                                                3329109
5119                                                3381733
5120                                                3408143
5121                                                3646869
5122                                                5432817
5123                                                3619364
5124                                                4665537
5125                                                3393712
5126                                                4563745
5127                                                4829487
5128                                                3416062
5129                                                5002102
5130                                                4651540
5131                                                6415228
5132                                                5062465
5133                                                3673261
5134                                                4792907
5135                                                3507226
5136                                                3242246
5137                                                3304401
5138                                                4688502
5139                                                3161231
5140                                                4740050
5141                                                3068786
5142                                                3234338
5143                                                6847219
5144                                                3318110
5145                                                3895845
5146                                                2913810
5147                                                4132192
5148                                                3280451
5149                                                  69055
5150                                                  78378
5151                                                  91423
5152                                                  59511
5153                                                  49762
5154                                                  81018
5155                                                  99461
5156                                                  61366
5157                                                  51300
5158                                                  79478
5159                                                  68850
5160                                                  76242
5161                                                 131585
5162                                                  86854
5163                                                  74748
5164                                                  83096
5165                                                  83576
5166                                                  83628
5167                                                  87249
5168                                                  83933
5169                                                  89531
5170                                                  83903
5171                                                  82617
5172                                                  92387
5173                                                  90751
5174                                                  97365
5175                                                  90302
5176                                                  91555
5177                                                  93820
5178                                                 125934
5179                                                 109604
5180                                                 100553
5181                                                 111994
5182                                                 127403
5183                                                 116348
5184                                                  95661
5185                                                 131734
5186                                                 103999
5187                                                  98398
5188                                                 110616
5189                                                  83458
5190                                                  94531
5191                                                 101869
5192                                                  92596
5193                                                 112075
5194                                                  81626
5195                                                 154733
5196                                                  88041
5197                                                  89537
5198                                                 100754
5199                                                 111605
5200                                                 113049
5201                                                 132034
5202                                                 137885
5203                                                 117573
5204                                                 118176
5205                                                 100424
5206                                                  99931
5207                                                 128094
5208                                                 139698
5209                                                 128966
5210                                                 184407
5211                                                 124201
5212                                                 125600
5213                                                 140030
5214                                                 165888
5215                                                 147518
5216                                                 182676
5217                                                 151456
5218                                                 133189
5219                                                 184061
5220                                                 230730
5221                                                 268010
5222                                                 214273
5223                                                 255733
5224                                                 261737
5225                                                 314848
5226                                                 348135
5227                                                 236900
5228                                                 254403
5229                                                 251350
5230                                                 284149
5231                                                 245482
5232                                                 279392
5233                                                 290604
5234                                                 263364
5235                                                 256180
5236                                                 233321
5237                                                 197201
5238                                                 218755
5239                                                 179485
5240                                                 156455
5241                                                 195882
5242                                                 172599
5243                                                 185570
5244                                                 173283
5245                                                 207339
5246                                                 165071
5247                                                 271355
5248                                                 219444
5249                                                 167620
5250                                                 167689
5251                                                 218461
5252                                                 213437
5253                                                  46036
5254                                                  42030
5255                                                  41911
5256                                                  50831
5257                                                  33758
5258                                                  38599
5259                                                  39271
5260                                                  38869
5261                                                  33700
5262                                                  56428
5263                                                  55054
5264                                                  69594
5265                                                  53796
5266                                                  61352
5267                                                  55922
5268                                                  60993
5269                                                  51793
5270                                                  71712
5271                                                  58498
5272                                                  60212
5273                                                  60524
5274                                                  68311
5275                                                  56952
5276                                                  66907
5277                                                  84386
5278                                                  85205
5279                                                  84340
5280                                                  78212
5281                                                  79669
5282                                                  80015
5283                                                  82174
5284                                                  72636
5285                                                  71440
5286                                                  85624
5287                                                  83408
5288                                                  68819
5289                                                  70543
5290                                                  62892
5291                                                  58862
5292                                                  72427
5293                                                  72561
5294                                                  71224
5295                                                  64867
5296                                                  64337
5297                                                  65393
5298                                                  65766
5299                                                  90935
5300                                                  70175
5301                                                  64280
5302                                                  70135
5303                                                  57677
5304                                                  69201
5305                                                 445441
5306                                                 412891
5307                                                 289765
5308                                                 500796
5309                                                 265591
5310                                                 279595
5311                                                 323761
5312                                                 284328
5313                                                 265332
5314                                                 281816
5315                                                 371149
5316                                                 337370
5317                                                 323324
5318                                                 349976
5319                                                 344938
5320                                                 338519
5321                                                 560691
5322                                                 378818
5323                                                 390053
5324                                                 452076
5325                                                 362836
5326                                                 330278
5327                                                 353863
5328                                                 376275
5329                                                 359347
5330                                                 613098
5331                                                 361182
5332                                                 497271
5333                                                 311069
5334                                                 485003
5335                                                 532427
5336                                                 327249
5337                                                 522135
5338                                                 493629
5339                                                 741725
5340                                                 566118
5341                                                 387924
5342                                                 549366
5343                                                 402546
5344                                                 342762
5345                                                 326332
5346                                                 527218
5347                                                 331997
5348                                                 569349
5349                                                 321996
5350                                                 329879
5351                                                 822549
5352                                                 391267
5353                                                 503528
5354                                                 304269
5355                                                 519360
5356                                                 375549
5357                                               30287854
5358                                               29583883
5359                                               30093541
5360                                               31621222
5361                                               22923063
5362                                               24989703
5363                                               24075126
5364                                               22534698
5365                                               21009730
5366                                               24753514
5367                                               27707047
5368                                               28857582
5369                                               29615008
5370                                               30305113
5371                                               31346091
5372                                               34126731
5373                                               37130689
5374                                               33993931
5375                                               33592098
5376                                               34386177
5377                                               33819909
5378                                               31201590
5379                                               32339377
5380                                               32656124
5381                                               35567568
5382                                               39993186
5383                                               36617024
5384                                               38489936
5385                                               35580820
5386                                               40231260
5387                                               40019075
5388                                               36958036
5389                                               39914997
5390                                               46324530
5391                                               42867609
5392                                               39607695
5393                                               37467885
5394                                               36584029
5395                                               33668451
5396                                               35930196
5397                                               36335484
5398                                               36374516
5399                                               35064506
5400                                               36801818
5401                                               32804733
5402                                               36476442
5403                                               52288698
5404                                               34721250
5405                                               32787079
5406                                               34426342
5407                                               35264336
5408                                               38142088
5409                                                5720080
5410                                                5618429
5411                                                6648834
5412                                                5919532
5413                                                4187551
5414                                                4944374
5415                                                4864100
5416                                                4245702
5417                                                3852440
5418                                                4760018
5419                                                5308225
5420                                                5374797
5421                                                6079587
5422                                                5338133
5423                                                5474122
5424                                                6097780
5425                                                6676702
5426                                                6114188
5427                                                6290165
5428                                                6127060
5429                                                6596769
5430                                                5463800
5431                                                5556043
5432                                                5787378
5433                                                6487363
5434                                                6817643
5435                                                6862241
5436                                                6964846
5437                                                6216040
5438                                                7637424
5439                                                7568132
5440                                                6642112
5441                                                7486622
5442                                                8706859
5443                                                7158301
5444                                                6746175
5445                                                7592474
5446                                                7275843
5447                                                6645739
5448                                                7081399
5449                                                6938295
5450                                                6725483
5451                                                6903293
5452                                                7193897
5453                                                7047624
5454                                                6774726
5455                                                9718439
5456                                                6331954
5457                                                6118107
5458                                                7221572
5459                                                7438253
5460                                                7707712
5461                                                 867993
5462                                                 790790
5463                                                 776454
5464                                                 699172
5465                                                 674185
5466                                                 670051
5467                                                 690821
5468                                                 643631
5469                                                 474481
5470                                                 620389
5471                                                 902725
5472                                                 732830
5473                                                 605034
5474                                                 598623
5475                                                 749931
5476                                                1012039
5477                                                 863039
5478                                                 789224
5479                                                 808013
5480                                                 798987
5481                                                 816529
5482                                                 708243
5483                                                 797994
5484                                                 802834
5485                                                 979054
5486                                                1026318
5487                                                1028846
5488                                                1048148
5489                                                 916959
5490                                                1030393
5491                                                 985834
5492                                                 857842
5493                                                 901217
5494                                                1052940
5495                                                 926206
5496                                                 859293
5497                                                 944338
5498                                                 897756
5499                                                 776233
5500                                                 936601
5501                                                 932377
5502                                                 886198
5503                                                 814615
5504                                                 824073
5505                                                 840913
5506                                                 963047
5507                                                1198680
5508                                                 788832
5509                                                 296403
5510                                                 712937
5511                                                 781037
5512                                                 761761
5513                                                 649353
5514                                                 444782
5515                                                 484327
5516                                                 543619
5517                                                 504933
5518                                                 412213
5519                                                 453755
5520                                                 518209
5521                                                 567573
5522                                                 493921
5523                                                 406009
5524                                                 406111
5525                                                 411520
5526                                                 421235
5527                                                 403780
5528                                                 392935
5529                                                 466989
5530                                                 433455
5531                                                 458036
5532                                                 475922
5533                                                 534059
5534                                                 518140
5535                                                 472013
5536                                                 518683
5537                                                 582069
5538                                                 507338
5539                                                 528298
5540                                                 501274
5541                                                 492836
5542                                                 572839
5543                                                 710039
5544                                                 523994
5545                                                 526840
5546                                                 568924
5547                                                 726727
5548                                                 595540
5549                                                 530031
5550                                                 543228
5551                                                 465350
5552                                                 481934
5553                                                 443515
5554                                                 460991
5555                                                 469278
5556                                                 511363
5557                                                 631508
5558                                                 563019
5559                                                 666871
5560                                                 888095
5561                                                 627696
5562                                                 755472
5563                                                 557378
5564                                                 601546
5565                                                 547566
5566                                                 849488
5567                                                 624269
5568                                                 628735
5569                                                 940851
5570                                                 658939
5571                                                 629719
5572                                                 644740
5573                                                 658693
5574                                                 736468
5575                                                 682237
5576                                                 672067
5577                                                 667770
5578                                                 598837
5579                                                 705452
5580                                                 676499
5581                                                 664502
5582                                                 660104
5583                                                 671505
5584                                                 653599
5585                                                 691636
5586                                                 697321
5587                                                 695849
5588                                                 655426
5589                                                 692873
5590                                                 670476
5591                                                 701870
5592                                                 672614
5593                                                 693972
5594                                                 713471
5595                                                 744159
5596                                                 757910
5597                                                 779184
5598                                                 750140
5599                                                 731953
5600                                                1097981
5601                                                 761925
5602                                                 749187
5603                                                 717940
5604                                                 738255
5605                                                 800802
5606                                                 739376
5607                                                 738957
5608                                                 763784
5609                                                 880326
5610                                                 814377
5611                                                 721257
5612                                                 925575
5613                                                1170445
5614                                                 781539
5615                                                 826942
5616                                                 749511
5617                                                1029280
5618                                                 631761
5619                                                  79647
5620                                                  71004
5621                                                  65090
5622                                                  85496
5623                                                  86646
5624                                                  54681
5625                                                  60602
5626                                                  81827
5627                                                  81105
5628                                                  68521
5629                                                  83843
5630                                                  58062
5631                                                  56087
5632                                                  58603
5633                                                  56672
5634                                                  65336
5635                                                  66479
5636                                                  64355
5637                                                  93804
5638                                                  88031
5639                                                  70717
5640                                                  73710
5641                                                  72021
5642                                                  70784
5643                                                  72245
5644                                                 125786
5645                                                  97408
5646                                                  95071
5647                                                  92906
5648                                                  92547
5649                                                  98460
5650                                                 100416
5651                                                  86533
5652                                                  94466
5653                                                 121483
5654                                                 109119
5655                                                  93656
5656                                                  99411
5657                                                  95508
5658                                                  94905
5659                                                  95293
5660                                                  86727
5661                                                 112776
5662                                                  93814
5663                                                 105024
5664                                                 107722
5665                                                  97785
5666                                                 136091
5667                                                 105133
5668                                                  88318
5669                                                  94156
5670                                                 103788
5671                                                 104510
5672                                                 419697
5673                                                 414148
5674                                                 516771
5675                                                 687252
5676                                                 488588
5677                                                 423778
5678                                                 476236
5679                                                 639092
5680                                                 440972
5681                                                 465106
5682                                                 435244
5683                                                 418234
5684                                                 451609
5685                                                 482272
5686                                                 498020
5687                                                 462797
5688                                                 524513
5689                                                 457862
5690                                                 455915
5691                                                 474982
5692                                                 624419
5693                                                 604759
5694                                                 568256
5695                                                 686735
5696                                                 594016
5697                                                 560022
5698                                                 545128
5699                                                 545889
5700                                                 581303
5701                                                 583709
5702                                                 590580
5703                                                 602638
5704                                                 572421
5705                                                 610348
5706                                                 676850
5707                                                 603284
5708                                                 520793
5709                                                 592050
5710                                                 629799
5711                                                 571902
5712                                                 550949
5713                                                 540541
5714                                                 495118
5715                                                 620308
5716                                                 599178
5717                                                 521125
5718                                                 791126
5719                                                 772110
5720                                                 604106
5721                                                 663735
5722                                                 577977
5723                                                 730358
5724                                                 458830
5725                                                 115508
5726                                                 127375
5727                                                 108352
5728                                                 127279
5729                                                 153282
5730                                                 102658
5731                                                 112445
5732                                                 118434
5733                                                 115631
5734                                                 121815
5735                                                  90911
5736                                                  86881
5737                                                 102625
5738                                                  96292
5739                                                 121502
5740                                                 140653
5741                                                 142197
5742                                                 135280
5743                                                 147840
5744                                                 142109
5745                                                 144619
5746                                                 155635
5747                                                 146069
5748                                                 148098
5749                                                 144762
5750                                                 166852
5751                                                 144309
5752                                                 115902
5753                                                 129735
5754                                                 114082
5755                                                 145204
5756                                                 160484
5757                                                 139635
5758                                                 152143
5759                                                 174746
5760                                                 178864
5761                                                 147244
5762                                                 166089
5763                                                 172946
5764                                                 167365
5765                                                 156788
5766                                                 151459
5767                                                 165975
5768                                                 140469
5769                                                 122294
5770                                                 109809
5771                                                 135287
5772                                                 188582
5773                                                 163137
5774                                                 160925
5775                                                 168231
5776                                                 158267
5777                                                 105349
5778                                                7132711
5779                                                5346536
5780                                                6205211
5781                                                5715712
5782                                                5544556
5783                                                4392810
5784                                                4782021
5785                                                5637795
5786                                                5663439
5787                                                5714677
5788                                                4420877
5789                                                4066641
5790                                                4151444
5791                                                3870633
5792                                                3937001
5793                                                4167531
5794                                                4380657
5795                                                4648718
5796                                                4360014
5797                                                4524975
5798                                                5862368
5799                                                5655955
5800                                                5571001
5801                                                5188483
5802                                                5405190
5803                                                6499668
5804                                                6607293
5805                                                6999256
5806                                                6599049
5807                                                6177216
5808                                                6507094
5809                                                6160752
5810                                                5599003
5811                                                6370622
5812                                                7872203
5813                                                5889669
5814                                                5637300
5815                                                5442086
5816                                                6249183
5817                                                5719811
5818                                                5073071
5819                                                5328958
5820                                                5208102
5821                                                5634150
5822                                                6342090
5823                                                6194369
5824                                                6862177
5825                                               11213596
5826                                                8055482
5827                                                8153340
5828                                                6656554
5829                                                6653048
5830                                                7175277
5831                                                 346357
5832                                                 182538
5833                                                 189529
5834                                                 277529
5835                                                 220837
5836                                                 170412
5837                                                 179011
5838                                                 190445
5839                                                 187381
5840                                                 183225
5841                                                 168237
5842                                                 175323
5843                                                 178992
5844                                                 180280
5845                                                 186924
5846                                                 192447
5847                                                 187823
5848                                                 200901
5849                                                 208438
5850                                                 212479
5851                                                 209771
5852                                                 206494
5853                                                 212608
5854                                                 215464
5855                                                 209534
5856                                                 222027
5857                                                 224816
5858                                                 211640
5859                                                 201838
5860                                                 224289
5861                                                 226423
5862                                                 237364
5863                                                 227842
5864                                                 224627
5865                                                 303552
5866                                                 235699
5867                                                 220970
5868                                                 203220
5869                                                 201299
5870                                                 231428
5871                                                 225272
5872                                                 206733
5873                                                 207026
5874                                                 202553
5875                                                 241553
5876                                                 198558
5877                                                 206762
5878                                                 359702
5879                                                 213609
5880                                                 247755
5881                                                 196898
5882                                                 219339
5883                                                 217052
5884                                                1182648
5885                                                 707646
5886                                                 620054
5887                                                1021445
5888                                                 654739
5889                                                 506394
5890                                                 555872
5891                                                 541010
5892                                                 538967
5893                                                 551606
5894                                                 519814
5895                                                 546056
5896                                                 516321
5897                                                 537709
5898                                                 551896
5899                                                 553215
5900                                                 590590
5901                                                 614460
5902                                                 624618
5903                                                 674811
5904                                                 640354
5905                                                 692141
5906                                                 735266
5907                                                 752799
5908                                                 801888
5909                                                 880107
5910                                                 943747
5911                                                 868771
5912                                                 862383
5913                                                 807370
5914                                                 776195
5915                                                 781086
5916                                                 764241
5917                                                 792533
5918                                                 976085
5919                                                 787324
5920                                                 719368
5921                                                 742675
5922                                                 699592
5923                                                 676301
5924                                                 656875
5925                                                 678898
5926                                                 665365
5927                                                 680803
5928                                                 674827
5929                                                 728402
5930                                                 874350
5931                                                1621254
5932                                                 830499
5933                                                 845066
5934                                                 776821
5935                                                 822522
5936                                                 803349
5937                                                 278128
5938                                                 159238
5939                                                 169220
5940                                                 234297
5941                                                 302992
5942                                                 165103
5943                                                 247158
5944                                                 324830
5945                                                 320427
5946                                                 233003
5947                                                 181203
5948                                                 182275
5949                                                 170366
5950                                                 183684
5951                                                 182715
5952                                                 184435
5953                                                 210181
5954                                                 212628
5955                                                 253877
5956                                                 307618
5957                                                 261154
5958                                                 236485
5959                                                 213593
5960                                                 215668
5961                                                 218147
5962                                                 255254
5963                                                 336087
5964                                                 337212
5965                                                 281486
5966                                                 365009
5967                                                 337444
5968                                                 303443
5969                                                 260725
5970                                                 313989
5971                                                 538519
5972                                                 242717
5973                                                 205401
5974                                                 261398
5975                                                 215850
5976                                                 290570
5977                                                 221215
5978                                                 263838
5979                                                 284998
5980                                                 272988
5981                                                 282345
5982                                                 303146
5983                                                 320493
5984                                                 411451
5985                                                 325945
5986                                                 380429
5987                                                 346524
5988                                                 285027
5989                                                 329279
5990                                                 221204
5991                                                 140322
5992                                                 162900
5993                                                 149627
5994                                                 194796
5995                                                 126378
5996                                                 169553
5997                                                 196433
5998                                                 222749
5999                                                 165261
6000                                                 111491
6001                                                 109665
6002                                                 103123
6003                                                 118344
6004                                                 120873
6005                                                 120601
6006                                                 135633
6007                                                 127613
6008                                                 176231
6009                                                 211280
6010                                                 151390
6011                                                 194759
6012                                                 170792
6013                                                 137783
6014                                                 150749
6015                                                 240071
6016                                                 276442
6017                                                 243936
6018                                                 304248
6019                                                 181254
6020                                                 196391
6021                                                 182566
6022                                                 180284
6023                                                 210349
6024                                                 276422
6025                                                 199643
6026                                                 166919
6027                                                 242721
6028                                                 225844
6029                                                 174976
6030                                                 153513
6031                                                 136371
6032                                                 140126
6033                                                 166170
6034                                                 186429
6035                                                 159055
6036                                                 226525
6037                                                 323031
6038                                                 163085
6039                                                 197073
6040                                                 200226
6041                                                 226220
6042                                                 218882
6043                                                1116393
6044                                                1060457
6045                                                1084068
6046                                                1288281
6047                                                1199422
6048                                                 898548
6049                                                 958421
6050                                                1054327
6051                                                1142500
6052                                                1071346
6053                                                1037930
6054                                                 884631
6055                                                 919709
6056                                                 893388
6057                                                 946384
6058                                                 982833
6059                                                 997275
6060                                                1043009
6061                                                1090966
6062                                                1163467
6063                                                1263766
6064                                                1253538
6065                                                1154234
6066                                                1197803
6067                                                1219893
6068                                                1514500
6069                                                1378564
6070                                                1327166
6071                                                1441941
6072                                                1361775
6073                                                1325912
6074                                                1386906
6075                                                1291606
6076                                                1292072
6077                                                1473847
6078                                                1407491
6079                                                1496362
6080                                                1517179
6081                                                1337047
6082                                                1372248
6083                                                1282797
6084                                                1153699
6085                                                1170641
6086                                                1105083
6087                                                1372811
6088                                                1177313
6089                                                1422346
6090                                                1772502
6091                                                1306293
6092                                                1382965
6093                                                1389717
6094                                                1247489
6095                                                1336539
6096                                                 938482
6097                                                 675593
6098                                                 646737
6099                                                 886842
6100                                                 849840
6101                                                 543243
6102                                                 701022
6103                                                 847836
6104                                                 934571
6105                                                 783939
6106                                                 638994
6107                                                 537139
6108                                                 537933
6109                                                 605235
6110                                                 499762
6111                                                 557213
6112                                                 585138
6113                                                 588489
6114                                                 896083
6115                                                 877603
6116                                                 635905
6117                                                 638889
6118                                                 787192
6119                                                 971351
6120                                                 642837
6121                                                 951407
6122                                                 813544
6123                                                 841763
6124                                                 890723
6125                                                 872408
6126                                                 895595
6127                                                 835834
6128                                                 750701
6129                                                 781305
6130                                                 904099
6131                                                 703503
6132                                                 766942
6133                                                 813467
6134                                                 704360
6135                                                 681541
6136                                                 630932
6137                                                 678003
6138                                                 673601
6139                                                 639567
6140                                                 782245
6141                                                 799071
6142                                                 821592
6143                                                1258953
6144                                                 887964
6145                                                 906838
6146                                                 808772
6147                                                 844690
6148                                                 959369
6149                                                 467584
6150                                                 298146
6151                                                 369197
6152                                                 311950
6153                                                 515907
6154                                                 229292
6155                                                 353938
6156                                                 432903
6157                                                 426643
6158                                                 316277
6159                                                 230385
6160                                                 205379
6161                                                 208300
6162                                                 215840
6163                                                 234793
6164                                                 231672
6165                                                 251098
6166                                                 234930
6167                                                 304000
6168                                                 388251
6169                                                 286679
6170                                                 400746
6171                                                 339850
6172                                                 267254
6173                                                 385967
6174                                                 502775
6175                                                 392514
6176                                                 402915
6177                                                 668936
6178                                                 315241
6179                                                 361513
6180                                                 361906
6181                                                 307674
6182                                                 445351
6183                                                 625476
6184                                                 324983
6185                                                 295788
6186                                                 342546
6187                                                 284715
6188                                                 288639
6189                                                 289107
6190                                                 262116
6191                                                 238211
6192                                                 383171
6193                                                 540316
6194                                                 311271
6195                                                 475603
6196                                                 797700
6197                                                 381506
6198                                                 616590
6199                                                 397116
6200                                                 470644
6201                                                 480613
6202                                                 202635
6203                                                 130736
6204                                                 162923
6205                                                 107019
6206                                                 301527
6207                                                  96700
6208                                                 139279
6209                                                 110784
6210                                                 103716
6211                                                 138190
6212                                                  97132
6213                                                  94072
6214                                                  86754
6215                                                  97412
6216                                                 113273
6217                                                 100499
6218                                                 111734
6219                                                 127148
6220                                                 112023
6221                                                 124909
6222                                                 125213
6223                                                 167235
6224                                                 127603
6225                                                 136088
6226                                                 169838
6227                                                 178186
6228                                                 192007
6229                                                 142258
6230                                                 245293
6231                                                 158876
6232                                                 162051
6233                                                 165719
6234                                                 148499
6235                                                 151273
6236                                                 254983
6237                                                 157869
6238                                                 146024
6239                                                 175862
6240                                                 144361
6241                                                 140630
6242                                                 149480
6243                                                 141712
6244                                                 129821
6245                                                 128204
6246                                                 238305
6247                                                 141776
6248                                                 176590
6249                                                 391314
6250                                                 168252
6251                                                 322367
6252                                                 166158
6253                                                 174079
6254                                                 306129
6255                                                4398888
6256                                                2860693
6257                                                3023286
6258                                                3258081
6259                                                3837027
6260                                                2254700
6261                                                2983690
6262                                                3284210
6263                                                3225072
6264                                                2739607
6265                                                2247857
6266                                                2221614
6267                                                2063574
6268                                                2289169
6269                                                2415482
6270                                                2358162
6271                                                2589500
6272                                                2638912
6273                                                2973144
6274                                                3378088
6275                                                2971011
6276                                                3357719
6277                                                3127451
6278                                                3014559
6279                                                3372298
6280                                                4104371
6281                                                4250394
6282                                                3938985
6283                                                4668135
6284                                                3714238
6285                                                3649478
6286                                                3562841
6287                                                3415474
6288                                                3901826
6289                                                5308891
6290                                                3584135
6291                                                3193270
6292                                                3543152
6293                                                3149013
6294                                                3081036
6295                                                3002196
6296                                                2975357
6297                                                2883467
6298                                                3197342
6299                                                3848716
6300                                                3184222
6301                                                4129136
6302                                                6575187
6303                                                3799154
6304                                                4696372
6305                                                3893221
6306                                                4067135
6307                                                4225245
6308                                                 195897
6309                                                 217968
6310                                                 196746
6311                                                 274939
6312                                                 231977
6313                                                 191490
6314                                                 216608
6315                                                 201442
6316                                                 191460
6317                                                 203027
6318                                                 206115
6319                                                 205859
6320                                                 164700
6321                                                 213952
6322                                                 209982
6323                                                 189036
6324                                                 180875
6325                                                 212829
6326                                                 214056
6327                                                 212935
6328                                                 238230
6329                                                 235903
6330                                                 222759
6331                                                 224207
6332                                                 224435
6333                                                 237447
6334                                                 226115
6335                                                 222447
6336                                                 238389
6337                                                 232729
6338                                                 247060
6339                                                 275488
6340                                                 244639
6341                                                 239037
6342                                                 301181
6343                                                 268832
6344                                                 225682
6345                                                 261861
6346                                                 251676
6347                                                 239413
6348                                                 254599
6349                                                 243266
6350                                                 245928
6351                                                 273485
6352                                                 260743
6353                                                 224541
6354                                                 276755
6355                                                 348381
6356                                                 267918
6357                                                 266852
6358                                                 251547
6359                                                 275065
6360                                                 235430
6361                                                 245203
6362                                                 225991
6363                                                 228292
6364                                                 447122
6365                                                 231210
6366                                                 229399
6367                                                 264765
6368                                                 226866
6369                                                 240616
6370                                                 247946
6371                                                 244786
6372                                                 236604
6373                                                 217988
6374                                                 250058
6375                                                 228616
6376                                                 222593
6377                                                 243134
6378                                                 224636
6379                                                 220520
6380                                                 223619
6381                                                 263625
6382                                                 262304
6383                                                 258166
6384                                                 264308
6385                                                 265616
6386                                                 273060
6387                                                 259783
6388                                                 275913
6389                                                 256901
6390                                                 296174
6391                                                 288517
6392                                                 304341
6393                                                 279086
6394                                                 285282
6395                                                 369500
6396                                                 300312
6397                                                 267469
6398                                                 257405
6399                                                 284522
6400                                                 269091
6401                                                 270399
6402                                                 253838
6403                                                 248806
6404                                                 373924
6405                                                 259319
6406                                                 249028
6407                                                 395980
6408                                                 486542
6409                                                 292710
6410                                                 332672
6411                                                 284386
6412                                                 369469
6413                                                 232664
6414                                                1391182
6415                                                1063385
6416                                                 928717
6417                                                1266365
6418                                                1398400
6419                                                 991547
6420                                                1142126
6421                                                1256897
6422                                                1363261
6423                                                1126403
6424                                                1008358
6425                                                1029556
6426                                                1042701
6427                                                 991939
6428                                                 949770
6429                                                 964460
6430                                                1138316
6431                                                 852111
6432                                                1109914
6433                                                1096228
6434                                                1332233
6435                                                1192889
6436                                                1117346
6437                                                1088793
6438                                                1143311
6439                                                1513597
6440                                                1348652
6441                                                1352319
6442                                                1755331
6443                                                1240308
6444                                                1377530
6445                                                1315259
6446                                                1262476
6447                                                1444023
6448                                                1789052
6449                                                1832450
6450                                                1776221
6451                                                1402905
6452                                                1244695
6453                                                1543050
6454                                                1074521
6455                                                1016537
6456                                                 903586
6457                                                1110896
6458                                                1547337
6459                                                1190709
6460                                                1420811
6461                                                1977924
6462                                                1258481
6463                                                1119168
6464                                                1613160
6465                                                1417208
6466                                                1475741
6467                                                 205203
6468                                                 148389
6469                                                 143976
6470                                                 167891
6471                                                 182891
6472                                                 115688
6473                                                 178437
6474                                                 202129
6475                                                 194103
6476                                                 152558
6477                                                 125746
6478                                                 120663
6479                                                 105044
6480                                                 129000
6481                                                 135854
6482                                                 126434
6483                                                 139315
6484                                                 145552
6485                                                 179854
6486                                                 174633
6487                                                 154354
6488                                                 170537
6489                                                 159525
6490                                                 155197
6491                                                 166601
6492                                                 209048
6493                                                 194572
6494                                                 197095
6495                                                 223222
6496                                                 224874
6497                                                 218092
6498                                                 188284
6499                                                 185609
6500                                                 268519
6501                                                 290015
6502                                                 212879
6503                                                 211978
6504                                                 205430
6505                                                 160389
6506                                                 166588
6507                                                 181489
6508                                                 168331
6509                                                 149318
6510                                                 150302
6511                                                 188900
6512                                                 179250
6513                                                 237576
6514                                                 276052
6515                                                 224036
6516                                                 204571
6517                                                 210794
6518                                                 222849
6519                                                 186465
6520                                                 206563
6521                                                 127182
6522                                                 176847
6523                                                 181426
6524                                                 152697
6525                                                 120001
6526                                                 155729
6527                                                 154511
6528                                                 131679
6529                                                 193937
6530                                                 152419
6531                                                 137504
6532                                                 152742
6533                                                 128593
6534                                                 130571
6535                                                 141726
6536                                                 117343
6537                                                 147242
6538                                                 138021
6539                                                 150829
6540                                                 171996
6541                                                 148238
6542                                                 157712
6543                                                 172994
6544                                                 160177
6545                                                 161865
6546                                                 189413
6547                                                 180200
6548                                                 151013
6549                                                 193088
6550                                                 178357
6551                                                 181588
6552                                                 155819
6553                                                 148326
6554                                                 268808
6555                                                 240228
6556                                                 156138
6557                                                 151863
6558                                                 151364
6559                                                 149670
6560                                                 149813
6561                                                 138402
6562                                                 146197
6563                                                 134582
6564                                                 172502
6565                                                 139950
6566                                                 216367
6567                                                 398544
6568                                                 206655
6569                                                 246515
6570                                                 191122
6571                                                 141693
6572                                                 263730
6573                                                 291923
6574                                                 234520
6575                                                 267988
6576                                                 288441
6577                                                 315521
6578                                                 205033
6579                                                 234265
6580                                                 291325
6581                                                 321534
6582                                                 243340
6583                                                 204095
6584                                                 202736
6585                                                 195455
6586                                                 189529
6587                                                 192285
6588                                                 201029
6589                                                 215393
6590                                                 204092
6591                                                 203948
6592                                                 261684
6593                                                 323794
6594                                                 283779
6595                                                 288906
6596                                                 296887
6597                                                 299859
6598                                                 399827
6599                                                 376796
6600                                                 362490
6601                                                 357696
6602                                                 374212
6603                                                 376990
6604                                                 364487
6605                                                 356922
6606                                                 399525
6607                                                 468976
6608                                                 359011
6609                                                 439665
6610                                                 410850
6611                                                 304604
6612                                                 329723
6613                                                 325735
6614                                                 318004
6615                                                 315445
6616                                                 345890
6617                                                 325905
6618                                                 318601
6619                                                 406866
6620                                                 680235
6621                                                 309146
6622                                                 382851
6623                                                 419687
6624                                                 411219
6625                                                 363865
6626                                                3212262
6627                                                2389829
6628                                                3130916
6629                                                2404222
6630                                                2615853
6631                                                2153918
6632                                                2391383
6633                                                2626121
6634                                                2691241
6635                                                2850377
6636                                                1968639
6637                                                1779831
6638                                                1711267
6639                                                1697029
6640                                                1760610
6641                                                1865690
6642                                                1969052
6643                                                2176974
6644                                                2117127
6645                                                2309866
6646                                                2832850
6647                                                2742628
6648                                                2426028
6649                                                2484918
6650                                                2558156
6651                                                3382975
6652                                                3507156
6653                                                3655667
6654                                                3631322
6655                                                3390851
6656                                                3637221
6657                                                3243909
6658                                                2921917
6659                                                3551403
6660                                                4214313
6661                                                3299258
6662                                                3074226
6663                                                2789630
6664                                                2993247
6665                                                3100355
6666                                                2583324
6667                                                2737872
6668                                                2633575
6669                                                2768931
6670                                                2935078
6671                                                3033918
6672                                                3625631
6673                                                5470227
6674                                                4230449
6675                                                4215553
6676                                                3363408
6677                                                3120962
6678                                                3551337
6679                                                 117941
6680                                                  80024
6681                                                  80191
6682                                                 100073
6683                                                 108947
6684                                                  53796
6685                                                  79284
6686                                                 100811
6687                                                  86085
6688                                                 102915
6689                                                  62179
6690                                                  60617
6691                                                  52866
6692                                                  62181
6693                                                  59541
6694                                                  68830
6695                                                  78605
6696                                                  80371
6697                                                  80466
6698                                                  88644
6699                                                  93448
6700                                                  95141
6701                                                  90429
6702                                                  92486
6703                                                  87217
6704                                                 124946
6705                                                 113659
6706                                                 114003
6707                                                 104370
6708                                                 112254
6709                                                 121603
6710                                                 111487
6711                                                 104440
6712                                                  82245
6713                                                 135487
6714                                                  93663
6715                                                  93503
6716                                                 100090
6717                                                  89926
6718                                                  96963
6719                                                 100036
6720                                                  74388
6721                                                  85005
6722                                                 101061
6723                                                 106098
6724                                                  94779
6725                                                 131966
6726                                                 126829
6727                                                 116310
6728                                                 127598
6729                                                  89361
6730                                                 118311
6731                                                 110696
6732                                                 728999
6733                                                 506569
6734                                                 660738
6735                                                 713866
6736                                                 550215
6737                                                 464647
6738                                                 642013
6739                                                 513109
6740                                                 463171
6741                                                 674789
6742                                                 558315
6743                                                 472075
6744                                                 455832
6745                                                 399837
6746                                                 408852
6747                                                 409206
6748                                                 362582
6749                                                 465052
6750                                                 450205
6751                                                 468515
6752                                                 568798
6753                                                 501155
6754                                                 501002
6755                                                 546834
6756                                                 523618
6757                                                 550195
6758                                                 627569
6759                                                 539847
6760                                                 505828
6761                                                 696603
6762                                                 687914
6763                                                 645769
6764                                                 605721
6765                                                 594781
6766                                                 910239
6767                                                 832704
6768                                                 556944
6769                                                 533442
6770                                                 494094
6771                                                 493611
6772                                                 498987
6773                                                 520938
6774                                                 473866
6775                                                 464211
6776                                                 553804
6777                                                 468267
6778                                                 804977
6779                                                1254201
6780                                                 609721
6781                                                 793514
6782                                                 588482
6783                                                 522278
6784                                                 787406
6785                                                3777193
6786                                                2494315
6787                                                2483818
6788                                                3370522
6789                                                3003104
6790                                                2200251
6791                                                2462798
6792                                                2631186
6793                                                2880937
6794                                                2661900
6795                                                2380544
6796                                                2395915
6797                                                2133166
6798                                                2443800
6799                                                2466210
6800                                                2466839
6801                                                2428140
6802                                                2561784
6803                                                2617108
6804                                                2865414
6805                                                2902605
6806                                                2907564
6807                                                2817092
6808                                                2886538
6809                                                2827404
6810                                                3173372
6811                                                3218962
6812                                                3147519
6813                                                3032871
6814                                                3150788
6815                                                3212276
6816                                                3380162
6817                                                3232305
6818                                                3047596
6819                                                4372729
6820                                                3291328
6821                                                3060396
6822                                                2965083
6823                                                2990138
6824                                                3350939
6825                                                3162601
6826                                                2933076
6827                                                3059010
6828                                                3397986
6829                                                3310530
6830                                                2929352
6831                                                3403724
6832                                                4703681
6833                                                3151000
6834                                                3394184
6835                                                3034320
6836                                                3454820
6837                                                2878968
6838                                                 258730
6839                                                 182003
6840                                                 197844
6841                                                 239588
6842                                                 229337
6843                                                 159826
6844                                                 188444
6845                                                 202631
6846                                                 229240
6847                                                 217724
6848                                                 167136
6849                                                 161020
6850                                                 140968
6851                                                 154957
6852                                                 159412
6853                                                 167440
6854                                                 176082
6855                                                 188702
6856                                                 184465
6857                                                 261758
6858                                                 268656
6859                                                 243526
6860                                                 217775
6861                                                 211384
6862                                                 212211
6863                                                 267297
6864                                                 281067
6865                                                 287218
6866                                                 260893
6867                                                 218540
6868                                                 269102
6869                                                 282671
6870                                                 259152
6871                                                 225324
6872                                                 368797
6873                                                 286322
6874                                                 226088
6875                                                 230566
6876                                                 251090
6877                                                 281439
6878                                                 276733
6879                                                 228023
6880                                                 261830
6881                                                 379324
6882                                                 216227
6883                                                 225664
6884                                                 271394
6885                                                 377720
6886                                                 238393
6887                                                 251190
6888                                                 251915
6889                                                 255094
6890                                                 249075
6891                                                 262282
6892                                                 224870
6893                                                 251754
6894                                                 251601
6895                                                 266547
6896                                                 176817
6897                                                 207295
6898                                                 292987
6899                                                 225563
6900                                                 277438
6901                                                 269443
6902                                                 227947
6903                                                 328830
6904                                                 227535
6905                                                 205977
6906                                                 219275
6907                                                 217336
6908                                                 227168
6909                                                 229748
6910                                                 226947
6911                                                 236699
6912                                                 240983
6913                                                 246037
6914                                                 262775
6915                                                 232912
6916                                                 267928
6917                                                 302053
6918                                                 293079
6919                                                 287735
6920                                                 312695
6921                                                 256543
6922                                                 293608
6923                                                 252110
6924                                                 241194
6925                                                 423839
6926                                                 301448
6927                                                 227634
6928                                                 268722
6929                                                 235687
6930                                                 243155
6931                                                 236515
6932                                                 231349
6933                                                 239084
6934                                                 254912
6935                                                 307637
6936                                                 220338
6937                                                 276003
6938                                                 633235
6939                                                 344239
6940                                                 267331
6941                                                 291083
6942                                                 230885
6943                                                 318673
6944                                                1201219
6945                                                1233462
6946                                                1181560
6947                                                2390309
6948                                                1191930
6949                                                1210256
6950                                                1335298
6951                                                1122350
6952                                                1319642
6953                                                1217807
6954                                                1253048
6955                                                1176751
6956                                                1105463
6957                                                1201891
6958                                                1178504
6959                                                1154925
6960                                                1150959
6961                                                1077993
6962                                                1100988
6963                                                1057189
6964                                                1267239
6965                                                1277420
6966                                                1306226
6967                                                1306878
6968                                                1327763
6969                                                1442668
6970                                                1304561
6971                                                1521598
6972                                                1242161
6973                                                1374186
6974                                                1335461
6975                                                1451147
6976                                                1298243
6977                                                1387421
6978                                                1746825
6979                                                1228100
6980                                                1247609
6981                                                1222891
6982                                                1277722
6983                                                1221328
6984                                                1154894
6985                                                1155875
6986                                                1163703
6987                                                1465569
6988                                                1241382
6989                                                1052132
6990                                                1955395
6991                                                2544483
6992                                                1270564
6993                                                1721917
6994                                                1384264
6995                                                1532075
6996                                                 940983
6997                                                3652550
6998                                                3489057
6999                                                3504254
7000                                                5543005
7001                                                4030251
7002                                                3269460
7003                                                3680754
7004                                                3925104
7005                                                3492828
7006                                                3430235
7007                                                3380058
7008                                                3251118
7009                                                3065336
7010                                                3438536
7011                                                3424954
7012                                                3350044
7013                                                3536858
7014                                                3330799
7015                                                3374546
7016                                                3417508
7017                                                4323440
7018                                                4132666
7019                                                4018834
7020                                                4222039
7021                                                4180238
7022                                                4406342
7023                                                4035234
7024                                                4121661
7025                                                3945270
7026                                                4060851
7027                                                4096561
7028                                                4529673
7029                                                4110305
7030                                                4163121
7031                                                5262336
7032                                                4289150
7033                                                3846196
7034                                                4043205
7035                                                4313431
7036                                                3988654
7037                                                3977196
7038                                                3768359
7039                                                3779296
7040                                                4468555
7041                                                3980574
7042                                                3526205
7043                                                5367770
7044                                                6724197
7045                                                4155042
7046                                                5007356
7047                                                4250959
7048                                                4691938
7049                                                3513388
7050                                                 513319
7051                                                 347812
7052                                                 394608
7053                                                 364577
7054                                                 636106
7055                                                 270865
7056                                                 311603
7057                                                 681570
7058                                                 288594
7059                                                 304167
7060                                                 300976
7061                                                 298364
7062                                                 267322
7063                                                 290522
7064                                                 296893
7065                                                 281833
7066                                                 312541
7067                                                 288210
7068                                                 277558
7069                                                 322963
7070                                                 554391
7071                                                 462413
7072                                                 412938
7073                                                 464876
7074                                                 490940
7075                                                 486214
7076                                                 432564
7077                                                 359322
7078                                                 420089
7079                                                 406486
7080                                                 401638
7081                                                 445050
7082                                                 393290
7083                                                 391190
7084                                                 544201
7085                                                 407790
7086                                                 404740
7087                                                 417480
7088                                                 515775
7089                                                 422202
7090                                                 416770
7091                                                 380613
7092                                                 397861
7093                                                 384829
7094                                                 434201
7095                                                 375322
7096                                                 501365
7097                                                 701706
7098                                                 423387
7099                                                 502345
7100                                                 421263
7101                                                 425001
7102                                                 476239
7103                                                 461914
7104                                                 292291
7105                                                 381304
7106                                                 424939
7107                                                 318626
7108                                                 272367
7109                                                 349206
7110                                                 330006
7111                                                 290421
7112                                                 399422
7113                                                 328326
7114                                                 288582
7115                                                 304863
7116                                                 262602
7117                                                 263802
7118                                                 271882
7119                                                 253628
7120                                                 295897
7121                                                 296757
7122                                                 297964
7123                                                 363917
7124                                                 326356
7125                                                 321423
7126                                                 361734
7127                                                 331752
7128                                                 343076
7129                                                 414177
7130                                                 376408
7131                                                 339228
7132                                                 401365
7133                                                 400426
7134                                                 381491
7135                                                 357406
7136                                                 322190
7137                                                 529138
7138                                                 479828
7139                                                 345972
7140                                                 305796
7141                                                 311220
7142                                                 297789
     NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                    292097
2                                                    251774
3                                                    324932
4                                                    283024
5                                                    250289
6                                                    269799
7                                                    263916
8                                                    250441
9                                                    290458
10                                                   236814
11                                                   228710
12                                                   255933
13                                                   265797
14                                                   262107
15                                                   346119
16                                                   278048
17                                                   303113
18                                                   275818
19                                                   274462
20                                                   362580
21                                                   385028
22                                                   306588
23                                                   335372
24                                                   446100
25                                                   310080
26                                                   436378
27                                                   331353
28                                                   449311
29                                                   386371
30                                                   455566
31                                                   382901
32                                                   538127
33                                                   386401
34                                                   413453
35                                                   538403
36                                                   387677
37                                                   368710
38                                                   377578
39                                                   318473
40                                                   305029
41                                                   393591
42                                                   336172
43                                                   361559
44                                                   441544
45                                                   369316
46                                                   364447
47                                                   377256
48                                                   553199
49                                                   393408
50                                                   372237
51                                                   330411
52                                                   364302
53                                                    40450
54                                                    44741
55                                                    44400
56                                                    51129
57                                                    41028
58                                                    40868
59                                                    47110
60                                                    58579
61                                                    51860
62                                                    53766
63                                                    59122
64                                                    34707
65                                                    35342
66                                                    34309
67                                                    39620
68                                                    55699
69                                                    63904
70                                                    48455
71                                                    59242
72                                                    86492
73                                                    56363
74                                                    53958
75                                                    52746
76                                                    52955
77                                                    58828
78                                                    66505
79                                                    65052
80                                                    58399
81                                                    64005
82                                                    62585
83                                                    67745
84                                                    63610
85                                                    63515
86                                                    79192
87                                                    73038
88                                                    58014
89                                                    67487
90                                                    70797
91                                                    53579
92                                                    58098
93                                                    65159
94                                                    53400
95                                                    55285
96                                                    59040
97                                                    50501
98                                                    49752
99                                                    71704
100                                                   93167
101                                                   49696
102                                                   49947
103                                                   51461
104                                                   53987
105                                                   30482
106                                                   25628
107                                                   27149
108                                                   35591
109                                                   24190
110                                                   25409
111                                                   24425
112                                                   31910
113                                                   30435
114                                                   29522
115                                                   29614
116                                                   26114
117                                                   35154
118                                                   47007
119                                                   34827
120                                                   45739
121                                                   44135
122                                                   40927
123                                                   44059
124                                                   46189
125                                                   44740
126                                                   51151
127                                                   50978
128                                                   45922
129                                                   51829
130                                                   61950
131                                                   59111
132                                                   52790
133                                                   58791
134                                                   61245
135                                                   57374
136                                                   54826
137                                                   61320
138                                                   62505
139                                                   66880
140                                                   69545
141                                                   56844
142                                                   44469
143                                                   57340
144                                                   59533
145                                                   44227
146                                                   51472
147                                                   45880
148                                                   40578
149                                                   50872
150                                                   41548
151                                                   54229
152                                                   67496
153                                                   51922
154                                                   50355
155                                                   38112
156                                                   44562
157                                                    3886
158                                                    4912
159                                                    4641
160                                                    5126
161                                                    3609
162                                                    4458
163                                                    5310
164                                                    5304
165                                                    4886
166                                                    4005
167                                                    6410
168                                                    5146
169                                                    5804
170                                                    5211
171                                                    4377
172                                                    5422
173                                                    4237
174                                                    4177
175                                                    4744
176                                                    4461
177                                                    4173
178                                                    4442
179                                                    4299
180                                                    4720
181                                                    5332
182                                                    4743
183                                                    4688
184                                                    3582
185                                                    5104
186                                                    4034
187                                                    4128
188                                                    4602
189                                                    4286
190                                                    4602
191                                                    3829
192                                                    3915
193                                                    4014
194                                                    3576
195                                                    3658
196                                                    3619
197                                                    5956
198                                                    6086
199                                                    3426
200                                                    4106
201                                                    3233
202                                                    3795
203                                                    7653
204                                                    6083
205                                                    4731
206                                                    4384
207                                                    5548
208                                                    7194
209                                                    1368
210                                                    1165
211                                                    1421
212                                                    1738
213                                                    1515
214                                                    1712
215                                                    1804
216                                                    1289
217                                                    2181
218                                                    1546
219                                                    1536
220                                                    2170
221                                                    3020
222                                                    1908
223                                                    1445
224                                                    1573
225                                                    1472
226                                                    1406
227                                                    1287
228                                                    1231
229                                                    1140
230                                                    1448
231                                                    1679
232                                                    1166
233                                                    1119
234                                                    1503
235                                                    1236
236                                                    1255
237                                                    1184
238                                                     779
239                                                    1039
240                                                    1034
241                                                     933
242                                                    1322
243                                                     946
244                                                    1118
245                                                    1022
246                                                     884
247                                                     969
248                                                    1353
249                                                    3091
250                                                    3500
251                                                    1072
252                                                    1033
253                                                    1709
254                                                    1521
255                                                    1822
256                                                    2118
257                                                    1321
258                                                    1625
259                                                    1642
260                                                    3268
261                                                 1833947
262                                                 1676601
263                                                 1806690
264                                                 1943066
265                                                 1461699
266                                                 1602216
267                                                 2243013
268                                                 2317859
269                                                 2369825
270                                                 1733791
271                                                 1847991
272                                                 1757212
273                                                 1461112
274                                                 1860050
275                                                 1702965
276                                                 1863271
277                                                 2859326
278                                                 3104608
279                                                 2626978
280                                                 3098709
281                                                 3260776
282                                                 2940146
283                                                 3112922
284                                                 2805888
285                                                 2747300
286                                                 3581150
287                                                 3163840
288                                                 3328632
289                                                 4075881
290                                                 3614314
291                                                 3620440
292                                                 2978397
293                                                 2923674
294                                                 4085859
295                                                 4340117
296                                                 2421010
297                                                 3024466
298                                                 2848184
299                                                 2754465
300                                                 2609533
301                                                 2348618
302                                                 2962520
303                                                 3484275
304                                                 3516551
305                                                 3210177
306                                                 3315164
307                                                 2908845
308                                                 4794142
309                                                 2380956
310                                                 2780860
311                                                 2889591
312                                                 2843648
313                                                   33070
314                                                   29500
315                                                   31727
316                                                   34117
317                                                   31911
318                                                   30029
319                                                   28544
320                                                   30861
321                                                   33372
322                                                   23094
323                                                   22805
324                                                   22942
325                                                   23649
326                                                   24398
327                                                   25923
328                                                   30123
329                                                   35127
330                                                   33512
331                                                   32281
332                                                   32129
333                                                   29916
334                                                   30200
335                                                   30901
336                                                   33382
337                                                   23581
338                                                   30803
339                                                   23694
340                                                   30951
341                                                   31248
342                                                   43524
343                                                   45688
344                                                   43629
345                                                   44340
346                                                   47626
347                                                   50203
348                                                   39481
349                                                   38330
350                                                   48793
351                                                   43112
352                                                   34498
353                                                   41638
354                                                   39138
355                                                   29980
356                                                   45465
357                                                   44680
358                                                   28228
359                                                   31509
360                                                   52916
361                                                   37383
362                                                   26463
363                                                   31586
364                                                   29419
365                                                   42799
366                                                   35725
367                                                   40380
368                                                   53173
369                                                   42851
370                                                   34869
371                                                   31286
372                                                   44528
373                                                   69420
374                                                   59161
375                                                   25883
376                                                   16455
377                                                   14269
378                                                   16484
379                                                   16478
380                                                   17172
381                                                   17596
382                                                   17363
383                                                   17596
384                                                   19194
385                                                   18237
386                                                   21607
387                                                   26653
388                                                   20535
389                                                   22934
390                                                   28423
391                                                   27392
392                                                   34715
393                                                   55228
394                                                   51411
395                                                   50564
396                                                   57568
397                                                   54088
398                                                   55587
399                                                   64799
400                                                   46749
401                                                   52850
402                                                   45104
403                                                   38641
404                                                   25630
405                                                   29308
406                                                   30101
407                                                   27489
408                                                   24137
409                                                   39072
410                                                   29712
411                                                   28217
412                                                   50784
413                                                   26118
414                                                   24918
415                                                   31240
416                                                   30270
417                                                    2633
418                                                    2732
419                                                    3803
420                                                    2915
421                                                    2399
422                                                    2566
423                                                    2680
424                                                    2979
425                                                    2998
426                                                    2265
427                                                    2297
428                                                    2251
429                                                    2133
430                                                    2221
431                                                    3128
432                                                    2195
433                                                    2463
434                                                    2624
435                                                    2751
436                                                    2473
437                                                    2358
438                                                    2443
439                                                    2474
440                                                    3726
441                                                    3503
442                                                    3238
443                                                    3691
444                                                    3795
445                                                    6856
446                                                   10630
447                                                   10459
448                                                   10259
449                                                   10240
450                                                   11982
451                                                   11469
452                                                    8217
453                                                    8229
454                                                   11177
455                                                    7517
456                                                    3015
457                                                    2968
458                                                    3551
459                                                    3471
460                                                    3610
461                                                    4432
462                                                    4399
463                                                    4246
464                                                    4666
465                                                    3617
466                                                    3333
467                                                    3613
468                                                    3274
469                                                   41809
470                                                   57558
471                                                   69743
472                                                   60376
473                                                   40353
474                                                   50335
475                                                   52475
476                                                   61495
477                                                   58162
478                                                   59745
479                                                   62591
480                                                   57480
481                                                   53606
482                                                   66588
483                                                   86032
484                                                   86159
485                                                   61053
486                                                   64531
487                                                   64598
488                                                   63291
489                                                   64121
490                                                   77973
491                                                   91758
492                                                   75081
493                                                   69964
494                                                   79064
495                                                   72753
496                                                   67311
497                                                   83139
498                                                   92111
499                                                   80729
500                                                   85511
501                                                   97341
502                                                   97880
503                                                   79999
504                                                   87215
505                                                   80304
506                                                   66514
507                                                   67298
508                                                   72473
509                                                  101143
510                                                   90582
511                                                   56324
512                                                   55611
513                                                   56132
514                                                   52222
515                                                   76793
516                                                  111171
517                                                   53202
518                                                   55533
519                                                   64727
520                                                   80299
521                                                  494426
522                                                  439793
523                                                  476179
524                                                  514160
525                                                  477944
526                                                  494873
527                                                  642898
528                                                  563069
529                                                  546040
530                                                  557469
531                                                  570732
532                                                  543167
533                                                  491729
534                                                  533088
535                                                  606586
536                                                  564968
537                                                  626167
538                                                  674671
539                                                  679441
540                                                  718595
541                                                  674531
542                                                  705846
543                                                  661846
544                                                  684455
545                                                  713426
546                                                  835216
547                                                  760374
548                                                  755351
549                                                 1013253
550                                                  788983
551                                                  941838
552                                                  775366
553                                                  855872
554                                                  817727
555                                                  652304
556                                                  717961
557                                                  735235
558                                                  871511
559                                                  802918
560                                                  645523
561                                                  925527
562                                                  726176
563                                                  724776
564                                                  665033
565                                                  695493
566                                                  625814
567                                                  737969
568                                                  786167
569                                                  649344
570                                                  627091
571                                                  680572
572                                                  612796
573                                                   93034
574                                                  113404
575                                                   96222
576                                                  111259
577                                                   85241
578                                                  100048
579                                                   98270
580                                                  113965
581                                                  140330
582                                                  106239
583                                                  117059
584                                                  108539
585                                                  101712
586                                                  119090
587                                                   85382
588                                                  115936
589                                                  138155
590                                                  119850
591                                                  135262
592                                                  157630
593                                                  131770
594                                                  153499
595                                                  138943
596                                                  119266
597                                                  123673
598                                                  146171
599                                                  162886
600                                                  184206
601                                                  194447
602                                                  167992
603                                                  127748
604                                                  198187
605                                                  156010
606                                                  148763
607                                                  182975
608                                                  160372
609                                                  129744
610                                                  176304
611                                                  156967
612                                                  160679
613                                                  131882
614                                                  160422
615                                                  118578
616                                                  101528
617                                                  153410
618                                                  116908
619                                                  153584
620                                                  217716
621                                                  140914
622                                                  151977
623                                                  110974
624                                                  117454
625                                                   83097
626                                                  110508
627                                                  132206
628                                                   92958
629                                                   84236
630                                                   95527
631                                                   88133
632                                                  103367
633                                                  112432
634                                                   84319
635                                                  117479
636                                                  110374
637                                                   81618
638                                                   88574
639                                                  129945
640                                                  151274
641                                                  143928
642                                                  177827
643                                                  114209
644                                                  113822
645                                                  136800
646                                                  157018
647                                                  119085
648                                                  125844
649                                                  127995
650                                                  140339
651                                                  135231
652                                                  133405
653                                                  136803
654                                                  153215
655                                                  162243
656                                                  193348
657                                                  214238
658                                                  177873
659                                                  161288
660                                                  133323
661                                                  140434
662                                                   96442
663                                                  113211
664                                                  120782
665                                                  138398
666                                                  107980
667                                                   97420
668                                                   97606
669                                                   99207
670                                                  100595
671                                                  129910
672                                                  205775
673                                                  110113
674                                                  113617
675                                                  108379
676                                                  121634
677                                                    2993
678                                                    2630
679                                                    3810
680                                                    4027
681                                                    3727
682                                                    3735
683                                                    3491
684                                                    3971
685                                                    3732
686                                                    3900
687                                                    3821
688                                                    3639
689                                                    3242
690                                                    2978
691                                                    3613
692                                                    4114
693                                                    3674
694                                                    3931
695                                                    4847
696                                                    5135
697                                                    4807
698                                                    4123
699                                                    3193
700                                                    2681
701                                                    4664
702                                                    2709
703                                                    3090
704                                                    2552
705                                                    4446
706                                                    6926
707                                                    7097
708                                                    7888
709                                                    5515
710                                                    7384
711                                                    6302
712                                                    4480
713                                                    5547
714                                                    5876
715                                                    4487
716                                                    1978
717                                                    1930
718                                                    1621
719                                                    1784
720                                                    1355
721                                                    1593
722                                                    1659
723                                                    1156
724                                                    1622
725                                                    1112
726                                                     970
727                                                     973
728                                                    1097
729                                                  336674
730                                                  383702
731                                                  463350
732                                                  401676
733                                                  318661
734                                                  347803
735                                                  342003
736                                                  410061
737                                                  436344
738                                                  383560
739                                                  396691
740                                                  355509
741                                                  296033
742                                                  343272
743                                                  460476
744                                                  492741
745                                                  432771
746                                                  478858
747                                                  404182
748                                                  414757
749                                                  420920
750                                                  490577
751                                                  475307
752                                                  449091
753                                                  456045
754                                                  502233
755                                                  476722
756                                                  487937
757                                                  604782
758                                                  689242
759                                                  667194
760                                                  758184
761                                                  787080
762                                                  766731
763                                                  719494
764                                                  609506
765                                                  615564
766                                                  548501
767                                                  504488
768                                                  456519
769                                                  543152
770                                                  475450
771                                                  380674
772                                                  353819
773                                                  391401
774                                                  390973
775                                                  515789
776                                                  768874
777                                                  390290
778                                                  401683
779                                                  416900
780                                                  467259
781                                                   22695
782                                                   24111
783                                                   27054
784                                                   25260
785                                                   23707
786                                                   26602
787                                                   25484
788                                                   27838
789                                                   28916
790                                                   27596
791                                                   27640
792                                                   32043
793                                                   32554
794                                                   30410
795                                                   31925
796                                                   33048
797                                                   37454
798                                                   34596
799                                                   37214
800                                                   37089
801                                                   40320
802                                                   40388
803                                                   39346
804                                                   42406
805                                                   42200
806                                                   49829
807                                                   42688
808                                                   44179
809                                                   42766
810                                                   40588
811                                                   42572
812                                                   43500
813                                                   44842
814                                                   53021
815                                                   46183
816                                                   45102
817                                                   45693
818                                                   35514
819                                                   35706
820                                                   31892
821                                                   28701
822                                                   31226
823                                                   38517
824                                                   28900
825                                                   32241
826                                                   28593
827                                                   35933
828                                                   42732
829                                                   33193
830                                                   30928
831                                                   34536
832                                                   32680
833                                                    4427
834                                                    4807
835                                                    4440
836                                                    4270
837                                                    3573
838                                                    3720
839                                                    4680
840                                                    5048
841                                                    4471
842                                                    3445
843                                                    4980
844                                                    4555
845                                                    5370
846                                                    3979
847                                                    3717
848                                                    4327
849                                                    3976
850                                                    3882
851                                                    4337
852                                                    4402
853                                                    4620
854                                                    4544
855                                                    3580
856                                                    3759
857                                                    4947
858                                                    4848
859                                                    4254
860                                                    4031
861                                                    4927
862                                                    4436
863                                                    4975
864                                                    4532
865                                                    4624
866                                                    5263
867                                                    4005
868                                                    4160
869                                                    3626
870                                                    3432
871                                                    4021
872                                                    3981
873                                                    5901
874                                                    6740
875                                                    3253
876                                                    4548
877                                                    3633
878                                                    3681
879                                                    6791
880                                                    4804
881                                                    4306
882                                                    3347
883                                                    4365
884                                                    6388
885                                                  389773
886                                                  382444
887                                                  412188
888                                                  368529
889                                                  391617
890                                                  402192
891                                                  530464
892                                                  427828
893                                                  395945
894                                                  437330
895                                                  436132
896                                                  410949
897                                                  411727
898                                                  383218
899                                                  417702
900                                                  421534
901                                                  460377
902                                                  559049
903                                                  509472
904                                                  565966
905                                                  474778
906                                                  568695
907                                                  522820
908                                                  517797
909                                                  559623
910                                                  652960
911                                                  613486
912                                                  578768
913                                                  924661
914                                                  675888
915                                                  757231
916                                                  662438
917                                                  676511
918                                                  654228
919                                                  651055
920                                                  689173
921                                                  566198
922                                                  631293
923                                                  608888
924                                                  502389
925                                                  514614
926                                                  526391
927                                                  507329
928                                                  481279
929                                                  520035
930                                                  571823
931                                                  525260
932                                                  540024
933                                                  549415
934                                                  458532
935                                                  463273
936                                                  506427
937                                                    4647
938                                                    3702
939                                                    4905
940                                                    4067
941                                                    3079
942                                                    3980
943                                                    3479
944                                                    4338
945                                                    5225
946                                                    4333
947                                                    4398
948                                                    4271
949                                                    3646
950                                                    2961
951                                                    3942
952                                                    3668
953                                                    3362
954                                                    3709
955                                                    4294
956                                                    5271
957                                                    3553
958                                                    3914
959                                                    3840
960                                                    4866
961                                                    4181
962                                                    4890
963                                                    5515
964                                                    7214
965                                                   10382
966                                                   16121
967                                                   13200
968                                                   19662
969                                                   18666
970                                                   16900
971                                                   18026
972                                                   12319
973                                                   12092
974                                                   13497
975                                                   12623
976                                                    5383
977                                                    3961
978                                                    4942
979                                                    6083
980                                                    4876
981                                                    4269
982                                                    5834
983                                                    7651
984                                                    7246
985                                                    3643
986                                                    2911
987                                                    3025
988                                                    4007
989                                                   91470
990                                                   63053
991                                                  100533
992                                                   65041
993                                                   85342
994                                                   77131
995                                                   57765
996                                                   62219
997                                                  110439
998                                                   61126
999                                                   57713
1000                                                  93556
1001                                                 102479
1002                                                  52302
1003                                                  97864
1004                                                  55193
1005                                                 109913
1006                                                  64016
1007                                                  60642
1008                                                  60507
1009                                                 121359
1010                                                  63303
1011                                                  69032
1012                                                 111745
1013                                                  62590
1014                                                 132208
1015                                                  78067
1016                                                 118742
1017                                                  72176
1018                                                 132110
1019                                                  86553
1020                                                 139485
1021                                                  81751
1022                                                  85005
1023                                                 185047
1024                                                  87232
1025                                                  81015
1026                                                 132039
1027                                                 105692
1028                                                  74530
1029                                                 136391
1030                                                  76238
1031                                                  77300
1032                                                 121358
1033                                                  79841
1034                                                  70695
1035                                                  62181
1036                                                 171139
1037                                                  66986
1038                                                  57479
1039                                                  57636
1040                                                 105204
1041                                                 135800
1042                                                  96355
1043                                                 101043
1044                                                  94778
1045                                                  88654
1046                                                  87242
1047                                                 100856
1048                                                 119810
1049                                                  87203
1050                                                  79873
1051                                                 108979
1052                                                  62866
1053                                                  69917
1054                                                  63210
1055                                                  70946
1056                                                  82171
1057                                                 123362
1058                                                 114660
1059                                                 131415
1060                                                 110442
1061                                                 117883
1062                                                 137414
1063                                                 137703
1064                                                 131326
1065                                                 136319
1066                                                 147938
1067                                                 138922
1068                                                 128876
1069                                                 145933
1070                                                 146782
1071                                                 134269
1072                                                 152869
1073                                                 144311
1074                                                 148053
1075                                                 146068
1076                                                 133308
1077                                                 206745
1078                                                 245369
1079                                                 226615
1080                                                 194240
1081                                                 151597
1082                                                 112121
1083                                                 114868
1084                                                  92830
1085                                                  98669
1086                                                 101364
1087                                                 108259
1088                                                 144462
1089                                                 114585
1090                                                 100192
1091                                                 126092
1092                                                 134003
1093                                                 976983
1094                                                 870581
1095                                                1072331
1096                                                1204232
1097                                                 833468
1098                                                 886080
1099                                                1281379
1100                                                1314856
1101                                                1232603
1102                                                 974252
1103                                                1045819
1104                                                1014383
1105                                                 798046
1106                                                1004430
1107                                                1024117
1108                                                1076047
1109                                                1809743
1110                                                2084251
1111                                                1687626
1112                                                2040658
1113                                                2176900
1114                                                1883744
1115                                                2052104
1116                                                1801295
1117                                                1707544
1118                                                2373501
1119                                                2073077
1120                                                2133617
1121                                                2747258
1122                                                2356669
1123                                                2355022
1124                                                2013196
1125                                                1817737
1126                                                2743972
1127                                                2914047
1128                                                1567938
1129                                                2029025
1130                                                1818859
1131                                                1753453
1132                                                1672624
1133                                                1423483
1134                                                1841764
1135                                                2005782
1136                                                2145439
1137                                                2050403
1138                                                2146773
1139                                                1673426
1140                                                2770656
1141                                                1518406
1142                                                1925013
1143                                                1786327
1144                                                1838000
1145                                                   1378
1146                                                   1704
1147                                                   1831
1148                                                   2187
1149                                                   1290
1150                                                   1320
1151                                                   1375
1152                                                   2053
1153                                                   3443
1154                                                   2032
1155                                                   1773
1156                                                   2060
1157                                                   1596
1158                                                   1456
1159                                                   1645
1160                                                   1730
1161                                                   2189
1162                                                   4910
1163                                                   2607
1164                                                   5051
1165                                                   3152
1166                                                   2142
1167                                                   1965
1168                                                   5813
1169                                                   2052
1170                                                   1949
1171                                                   2289
1172                                                   3339
1173                                                   2242
1174                                                   8146
1175                                                   7196
1176                                                   2581
1177                                                   2115
1178                                                   2278
1179                                                   2032
1180                                                   2070
1181                                                   2114
1182                                                   2762
1183                                                   1833
1184                                                   2639
1185                                                   2464
1186                                                   2010
1187                                                   2777
1188                                                   1554
1189                                                   3123
1190                                                   3843
1191                                                   6359
1192                                                   5378
1193                                                   2283
1194                                                   2250
1195                                                   2300
1196                                                   1992
1197                                                 387953
1198                                                 238269
1199                                                 387066
1200                                                 247062
1201                                                 349408
1202                                                 359877
1203                                                 258625
1204                                                 223220
1205                                                 415971
1206                                                 212163
1207                                                 224506
1208                                                 384920
1209                                                 411183
1210                                                 200219
1211                                                 381034
1212                                                 197329
1213                                                 442546
1214                                                 212189
1215                                                 218751
1216                                                 213813
1217                                                 450714
1218                                                 219518
1219                                                 233057
1220                                                 436604
1221                                                 235985
1222                                                 483878
1223                                                 259852
1224                                                 445033
1225                                                 273373
1226                                                 503236
1227                                                 296764
1228                                                 571149
1229                                                 323238
1230                                                 315524
1231                                                 690389
1232                                                 341781
1233                                                 306881
1234                                                 525433
1235                                                 370549
1236                                                 261046
1237                                                 480064
1238                                                 272270
1239                                                 253964
1240                                                 484616
1241                                                 256141
1242                                                 243992
1243                                                 249833
1244                                                 566917
1245                                                 289949
1246                                                 285204
1247                                                 242922
1248                                                 398670
1249                                                 435246
1250                                                 446433
1251                                                 515064
1252                                                 507202
1253                                                 417849
1254                                                 422437
1255                                                 470483
1256                                                 568612
1257                                                 549090
1258                                                 522061
1259                                                 555583
1260                                                 469059
1261                                                 467701
1262                                                 479660
1263                                                 555127
1264                                                 574793
1265                                                 564494
1266                                                 516825
1267                                                 571553
1268                                                 627950
1269                                                 531461
1270                                                 532288
1271                                                 531730
1272                                                 569217
1273                                                 532046
1274                                                 632989
1275                                                 534709
1276                                                 601783
1277                                                 653441
1278                                                 724316
1279                                                 734816
1280                                                 719874
1281                                                 698402
1282                                                 721936
1283                                                 793990
1284                                                 698129
1285                                                 654378
1286                                                 665283
1287                                                 617567
1288                                                 576474
1289                                                 681261
1290                                                 570577
1291                                                 545691
1292                                                 620672
1293                                                 632670
1294                                                 634266
1295                                                 732854
1296                                                 888523
1297                                                 566436
1298                                                 530334
1299                                                 560119
1300                                                 575245
1301                                                  79509
1302                                                  87309
1303                                                 103097
1304                                                  88034
1305                                                  77155
1306                                                  79961
1307                                                  77511
1308                                                  87958
1309                                                  97774
1310                                                  89992
1311                                                 114108
1312                                                  83621
1313                                                  78331
1314                                                  93382
1315                                                 108519
1316                                                  76424
1317                                                  92989
1318                                                  82767
1319                                                 112284
1320                                                 126796
1321                                                 105537
1322                                                  87160
1323                                                  85387
1324                                                 113404
1325                                                  90781
1326                                                 121473
1327                                                  90882
1328                                                 111226
1329                                                 103390
1330                                                 128294
1331                                                 117285
1332                                                 140922
1333                                                 100832
1334                                                 114337
1335                                                 159792
1336                                                 117295
1337                                                  91538
1338                                                 111682
1339                                                 104270
1340                                                 102825
1341                                                 122204
1342                                                  86391
1343                                                 104188
1344                                                 121800
1345                                                 101095
1346                                                 109048
1347                                                 125786
1348                                                 160835
1349                                                  95429
1350                                                  97216
1351                                                 103823
1352                                                 113866
1353                                                 105571
1354                                                 110267
1355                                                 119689
1356                                                 117855
1357                                                  96663
1358                                                 112639
1359                                                 113571
1360                                                 122266
1361                                                 129684
1362                                                 117736
1363                                                 124894
1364                                                 135770
1365                                                 133196
1366                                                 123529
1367                                                 135004
1368                                                 140510
1369                                                 155273
1370                                                 144652
1371                                                 152248
1372                                                 151209
1373                                                 171948
1374                                                 157656
1375                                                 171673
1376                                                 167068
1377                                                 149306
1378                                                 185226
1379                                                 163194
1380                                                 182416
1381                                                 166072
1382                                                 186503
1383                                                 164856
1384                                                 175841
1385                                                 172610
1386                                                 176480
1387                                                 204610
1388                                                 179544
1389                                                 172951
1390                                                 168050
1391                                                 166893
1392                                                 161510
1393                                                 196325
1394                                                 159683
1395                                                 163008
1396                                                 138924
1397                                                 178793
1398                                                 155289
1399                                                 169656
1400                                                 271076
1401                                                 188799
1402                                                 179991
1403                                                 165505
1404                                                 148384
1405                                                  13711
1406                                                  13998
1407                                                  15990
1408                                                  15730
1409                                                  13652
1410                                                  15005
1411                                                  23670
1412                                                  20146
1413                                                  24198
1414                                                  18036
1415                                                  23874
1416                                                  14859
1417                                                  19623
1418                                                  15449
1419                                                  16098
1420                                                  20526
1421                                                  19894
1422                                                  18628
1423                                                  22589
1424                                                  19663
1425                                                  23326
1426                                                  21769
1427                                                  19228
1428                                                  20811
1429                                                  22742
1430                                                  23948
1431                                                  17715
1432                                                  18711
1433                                                  23161
1434                                                  24735
1435                                                  24959
1436                                                  21742
1437                                                  21866
1438                                                  27734
1439                                                  23447
1440                                                  20400
1441                                                  20252
1442                                                  18928
1443                                                  20082
1444                                                  21780
1445                                                  22713
1446                                                  22592
1447                                                  31886
1448                                                  19920
1449                                                  18716
1450                                                  17342
1451                                                  26782
1452                                                  22623
1453                                                  18102
1454                                                  18946
1455                                                  15881
1456                                                  23641
1457                                                  69921
1458                                                  72577
1459                                                  81055
1460                                                  85445
1461                                                  71192
1462                                                  79007
1463                                                  89243
1464                                                  86385
1465                                                  95356
1466                                                  88907
1467                                                  93569
1468                                                  88377
1469                                                  99667
1470                                                  86279
1471                                                  86196
1472                                                  95840
1473                                                  99312
1474                                                  93228
1475                                                 107907
1476                                                  97140
1477                                                 105394
1478                                                 104772
1479                                                 102483
1480                                                 107602
1481                                                 110243
1482                                                 122190
1483                                                 105387
1484                                                 106860
1485                                                 112693
1486                                                 109588
1487                                                 116068
1488                                                 112426
1489                                                 114066
1490                                                 134556
1491                                                 129460
1492                                                 110931
1493                                                 110955
1494                                                  93988
1495                                                  97888
1496                                                  96169
1497                                                 118765
1498                                                 111778
1499                                                 113602
1500                                                  88609
1501                                                  92283
1502                                                  88056
1503                                                 128978
1504                                                 133613
1505                                                  96762
1506                                                  91803
1507                                                  97344
1508                                                 126641
1509                                                   2601
1510                                                   2616
1511                                                   2970
1512                                                   3320
1513                                                   2898
1514                                                   2771
1515                                                   2590
1516                                                   2347
1517                                                   3271
1518                                                   2599
1519                                                   3274
1520                                                   3617
1521                                                   3979
1522                                                   2768
1523                                                   2413
1524                                                   1753
1525                                                   2507
1526                                                   2834
1527                                                   2487
1528                                                   2067
1529                                                   2513
1530                                                   2279
1531                                                   2558
1532                                                   3108
1533                                                   3111
1534                                                   2969
1535                                                   2583
1536                                                   2279
1537                                                   2804
1538                                                   2096
1539                                                   2524
1540                                                   2625
1541                                                   2746
1542                                                   2740
1543                                                   2322
1544                                                   1961
1545                                                   2156
1546                                                   2161
1547                                                   2352
1548                                                   2453
1549                                                   4557
1550                                                   6236
1551                                                   2508
1552                                                   2266
1553                                                   2875
1554                                                   2898
1555                                                   4606
1556                                                   4354
1557                                                   3807
1558                                                   3013
1559                                                   4578
1560                                                   4967
1561                                                 211103
1562                                                 131153
1563                                                 217679
1564                                                 135223
1565                                                 190362
1566                                                 184442
1567                                                 129533
1568                                                 132376
1569                                                 228073
1570                                                 138110
1571                                                 131126
1572                                                 211056
1573                                                 224769
1574                                                 114107
1575                                                 201392
1576                                                 113375
1577                                                 232503
1578                                                 123335
1579                                                 113658
1580                                                 128770
1581                                                 249266
1582                                                 130990
1583                                                 128205
1584                                                 226313
1585                                                 133074
1586                                                 258451
1587                                                 144511
1588                                                 243577
1589                                                 141946
1590                                                 271323
1591                                                 174419
1592                                                 295795
1593                                                 168887
1594                                                 185586
1595                                                 369352
1596                                                 179053
1597                                                 157931
1598                                                 275283
1599                                                 211117
1600                                                 150613
1601                                                 260635
1602                                                 154932
1603                                                 149785
1604                                                 227527
1605                                                 151270
1606                                                 139189
1607                                                 137587
1608                                                 358731
1609                                                 133616
1610                                                 112722
1611                                                 119336
1612                                                 190743
1613                                                   9778
1614                                                   9646
1615                                                  12500
1616                                                  16537
1617                                                  11336
1618                                                  12680
1619                                                  13989
1620                                                  13867
1621                                                  15180
1622                                                  19898
1623                                                  14370
1624                                                  13073
1625                                                  14121
1626                                                  14983
1627                                                  14833
1628                                                  15899
1629                                                  16019
1630                                                  14942
1631                                                  21863
1632                                                  14749
1633                                                  14930
1634                                                  15487
1635                                                  16845
1636                                                  15791
1637                                                  15107
1638                                                  16233
1639                                                  15520
1640                                                  16067
1641                                                  16037
1642                                                  17118
1643                                                  18200
1644                                                  15941
1645                                                  16905
1646                                                  18571
1647                                                  27872
1648                                                  17338
1649                                                  16586
1650                                                  15208
1651                                                  15898
1652                                                  15819
1653                                                  27380
1654                                                  15055
1655                                                  19780
1656                                                  16329
1657                                                  14877
1658                                                  15921
1659                                                  26219
1660                                                  30263
1661                                                  16113
1662                                                  15116
1663                                                  14324
1664                                                  24191
1665                                                 738315
1666                                                 785255
1667                                                 546183
1668                                                 760680
1669                                                 449043
1670                                                 441713
1671                                                 690247
1672                                                 793103
1673                                                 592066
1674                                                 435987
1675                                                 728350
1676                                                 382707
1677                                                 363730
1678                                                 364704
1679                                                 410147
1680                                                 606857
1681                                                 937166
1682                                                 610521
1683                                                 562929
1684                                                 836443
1685                                                 621184
1686                                                 611966
1687                                                 579516
1688                                                 608209
1689                                                 689408
1690                                                1096453
1691                                                 668071
1692                                                1028046
1693                                                1046888
1694                                                1130918
1695                                                 981854
1696                                                 968756
1697                                                 739726
1698                                                 775683
1699                                                 901702
1700                                                1012900
1701                                                1097285
1702                                                 746353
1703                                                1058164
1704                                                 998058
1705                                                 813327
1706                                                1104002
1707                                                 824092
1708                                                 755408
1709                                                 925363
1710                                                 938841
1711                                                 881999
1712                                                1194635
1713                                                1002267
1714                                                 811663
1715                                                 849581
1716                                                 770635
1717                                                   1241
1718                                                   1176
1719                                                   1220
1720                                                   1713
1721                                                   1444
1722                                                   1585
1723                                                   1180
1724                                                   1423
1725                                                   1524
1726                                                   2301
1727                                                   1701
1728                                                    981
1729                                                   1068
1730                                                    815
1731                                                   1137
1732                                                   1340
1733                                                   1159
1734                                                   1494
1735                                                   1412
1736                                                   1314
1737                                                   1306
1738                                                   1309
1739                                                   1422
1740                                                   1297
1741                                                   1230
1742                                                   1636
1743                                                   1548
1744                                                   1681
1745                                                   1615
1746                                                   1734
1747                                                   1472
1748                                                   2157
1749                                                   1822
1750                                                   2100
1751                                                   5264
1752                                                   1820
1753                                                   1725
1754                                                   1734
1755                                                   2257
1756                                                   2567
1757                                                   2605
1758                                                   2451
1759                                                   2149
1760                                                    842
1761                                                   1496
1762                                                   1774
1763                                                   1905
1764                                                   2686
1765                                                   1848
1766                                                   2147
1767                                                   1492
1768                                                   3013
1769                                                 571603
1770                                                 497437
1771                                                 695420
1772                                                 579077
1773                                                 460760
1774                                                 584491
1775                                                 549164
1776                                                 513609
1777                                                 469390
1778                                                 559720
1779                                                 492966
1780                                                 708471
1781                                                 492562
1782                                                 564481
1783                                                 611683
1784                                                 727720
1785                                                 857114
1786                                                 699756
1787                                                 930286
1788                                                 911935
1789                                                 789751
1790                                                 761286
1791                                                 898275
1792                                                 824193
1793                                                 953323
1794                                                 927861
1795                                                 954739
1796                                                1049003
1797                                                1117927
1798                                                1207878
1799                                                1085644
1800                                                1221023
1801                                                1228816
1802                                                1319397
1803                                                1485535
1804                                                1022916
1805                                                1055547
1806                                                1423163
1807                                                 898264
1808                                                 912075
1809                                                 885072
1810                                                 839457
1811                                                 838161
1812                                                 854129
1813                                                 818736
1814                                                 847329
1815                                                1077512
1816                                                1383259
1817                                                 841333
1818                                                 966516
1819                                                 737364
1820                                                1027842
1821                                                  87749
1822                                                  82417
1823                                                  94577
1824                                                  90997
1825                                                  78567
1826                                                  83018
1827                                                  83998
1828                                                 100420
1829                                                  98263
1830                                                  95298
1831                                                 113111
1832                                                  84270
1833                                                 104149
1834                                                 159780
1835                                                 121425
1836                                                 222537
1837                                                 174913
1838                                                 154462
1839                                                 153011
1840                                                 180693
1841                                                 174171
1842                                                 193729
1843                                                 178907
1844                                                 188493
1845                                                 264203
1846                                                 215806
1847                                                 196765
1848                                                 170388
1849                                                 180453
1850                                                 194123
1851                                                 249742
1852                                                 190231
1853                                                 210130
1854                                                 241820
1855                                                 226738
1856                                                 238673
1857                                                 144515
1858                                                 150702
1859                                                 160806
1860                                                 162581
1861                                                 153886
1862                                                 156506
1863                                                 147900
1864                                                 138995
1865                                                 117116
1866                                                 140492
1867                                                 161941
1868                                                 165260
1869                                                 131530
1870                                                 155746
1871                                                 121596
1872                                                 126486
1873                                                  47445
1874                                                  43170
1875                                                  51043
1876                                                  54037
1877                                                  49085
1878                                                  44121
1879                                                  52380
1880                                                  61119
1881                                                  56639
1882                                                  52738
1883                                                  49804
1884                                                  47888
1885                                                  48418
1886                                                  47077
1887                                                  50149
1888                                                  63925
1889                                                  56439
1890                                                  52246
1891                                                  50939
1892                                                  50360
1893                                                  42925
1894                                                  49760
1895                                                  50569
1896                                                  46281
1897                                                  38294
1898                                                  42043
1899                                                  39793
1900                                                  45415
1901                                                  60157
1902                                                  73208
1903                                                  77232
1904                                                  58856
1905                                                  77566
1906                                                  76699
1907                                                  70985
1908                                                  75696
1909                                                  67459
1910                                                  71379
1911                                                  68933
1912                                                  56270
1913                                                  78242
1914                                                  66629
1915                                                  41325
1916                                                  57245
1917                                                  65911
1918                                                  66006
1919                                                  68078
1920                                                  79508
1921                                                  61159
1922                                                  48614
1923                                                  43987
1924                                                  53316
1925                                                  46838
1926                                                  45598
1927                                                  57805
1928                                                  65474
1929                                                  46757
1930                                                  44463
1931                                                  57421
1932                                                  83636
1933                                                  72021
1934                                                  68614
1935                                                  70405
1936                                                  61757
1937                                                  67268
1938                                                  61854
1939                                                  76713
1940                                                  86208
1941                                                  72054
1942                                                  70640
1943                                                  76650
1944                                                  70382
1945                                                  72134
1946                                                  76879
1947                                                  74158
1948                                                  74921
1949                                                  80376
1950                                                  94880
1951                                                  78419
1952                                                  95486
1953                                                 102242
1954                                                  84737
1955                                                 102487
1956                                                  91042
1957                                                  91276
1958                                                  72225
1959                                                  89713
1960                                                  76765
1961                                                  75898
1962                                                  60609
1963                                                  69929
1964                                                  54696
1965                                                  61853
1966                                                  66591
1967                                                  50713
1968                                                  53903
1969                                                  75551
1970                                                  70878
1971                                                  74594
1972                                                  99430
1973                                                  54047
1974                                                  54459
1975                                                  71743
1976                                                  56294
1977                                                  33256
1978                                                  27513
1979                                                  38378
1980                                                  41192
1981                                                  24166
1982                                                  28956
1983                                                  41214
1984                                                  53191
1985                                                  54832
1986                                                  57251
1987                                                  48541
1988                                                  53714
1989                                                  51177
1990                                                  44984
1991                                                  64729
1992                                                  69412
1993                                                  42757
1994                                                  39821
1995                                                  38977
1996                                                  40667
1997                                                  45164
1998                                                  48105
1999                                                  48520
2000                                                  48762
2001                                                  50648
2002                                                  54929
2003                                                  50053
2004                                                  51622
2005                                                  58275
2006                                                  58789
2007                                                  57819
2008                                                  55749
2009                                                  55106
2010                                                  52698
2011                                                  54015
2012                                                  63042
2013                                                  68392
2014                                                  50246
2015                                                  48155
2016                                                  46540
2017                                                  51585
2018                                                  47388
2019                                                  43784
2020                                                  45568
2021                                                  55932
2022                                                  68986
2023                                                  78196
2024                                                  71868
2025                                                  48244
2026                                                  44677
2027                                                  45706
2028                                                  48285
2029                                                  98483
2030                                                  99605
2031                                                  94855
2032                                                  82538
2033                                                  80758
2034                                                  83984
2035                                                 100343
2036                                                 118697
2037                                                 180211
2038                                                  98792
2039                                                  94530
2040                                                  85276
2041                                                  70756
2042                                                  84527
2043                                                  79143
2044                                                 101190
2045                                                 137389
2046                                                 114805
2047                                                 112710
2048                                                 136485
2049                                                 146136
2050                                                 131156
2051                                                 130035
2052                                                 130413
2053                                                 130110
2054                                                 161220
2055                                                 143118
2056                                                 137206
2057                                                 149611
2058                                                 143064
2059                                                 156720
2060                                                 110289
2061                                                 141111
2062                                                 162135
2063                                                 149108
2064                                                 101325
2065                                                 117518
2066                                                 119295
2067                                                 120613
2068                                                 110810
2069                                                 106579
2070                                                 113759
2071                                                 152131
2072                                                 143867
2073                                                 137425
2074                                                 134992
2075                                                 144587
2076                                                 287292
2077                                                 101289
2078                                                  83098
2079                                                 109368
2080                                                 110694
2081                                                 141447
2082                                                 130565
2083                                                 155111
2084                                                 196490
2085                                                 143861
2086                                                 163397
2087                                                 264103
2088                                                 255994
2089                                                 211288
2090                                                 172519
2091                                                 197863
2092                                                 202263
2093                                                 154884
2094                                                 194526
2095                                                 204096
2096                                                 191303
2097                                                 271640
2098                                                 277305
2099                                                 250163
2100                                                 281209
2101                                                 285570
2102                                                 275823
2103                                                 279281
2104                                                 258241
2105                                                 251056
2106                                                 328818
2107                                                 295023
2108                                                 368403
2109                                                 403551
2110                                                 378750
2111                                                 358148
2112                                                 273673
2113                                                 283530
2114                                                 399790
2115                                                 424264
2116                                                 235664
2117                                                 270328
2118                                                 260591
2119                                                 249037
2120                                                 234361
2121                                                 235106
2122                                                 257709
2123                                                 314550
2124                                                 317626
2125                                                 301984
2126                                                 303638
2127                                                 229119
2128                                                 357236
2129                                                 217747
2130                                                 250312
2131                                                 303369
2132                                                 244152
2133                                                 181705
2134                                                 173522
2135                                                 127080
2136                                                 102772
2137                                                 102783
2138                                                 121233
2139                                                 165884
2140                                                 165981
2141                                                 214932
2142                                                 126499
2143                                                 146584
2144                                                 106181
2145                                                 119177
2146                                                 208309
2147                                                  94105
2148                                                 110780
2149                                                 154276
2150                                                 177166
2151                                                 129107
2152                                                 145519
2153                                                 158022
2154                                                 164972
2155                                                 150231
2156                                                 146181
2157                                                 149802
2158                                                 168469
2159                                                 154424
2160                                                 161726
2161                                                 181176
2162                                                 167496
2163                                                 192709
2164                                                 131639
2165                                                 167533
2166                                                 172663
2167                                                 237061
2168                                                 107462
2169                                                 134592
2170                                                 159838
2171                                                 143671
2172                                                 145295
2173                                                 136355
2174                                                 204467
2175                                                 260192
2176                                                 251297
2177                                                 165067
2178                                                 176265
2179                                                 252069
2180                                                 369581
2181                                                 127276
2182                                                 107567
2183                                                 155455
2184                                                 179508
2185                                                 101443
2186                                                  88134
2187                                                 114813
2188                                                 117508
2189                                                  90354
2190                                                 111896
2191                                                 146062
2192                                                 135638
2193                                                 105847
2194                                                 130741
2195                                                 147441
2196                                                  87082
2197                                                 103496
2198                                                 159459
2199                                                 158198
2200                                                 230283
2201                                                 167782
2202                                                 171694
2203                                                 137391
2204                                                 173166
2205                                                 220284
2206                                                 210529
2207                                                 158304
2208                                                 197532
2209                                                 261871
2210                                                 201350
2211                                                 175065
2212                                                 178641
2213                                                 207291
2214                                                 194535
2215                                                 244320
2216                                                 213212
2217                                                 176145
2218                                                 263441
2219                                                 226074
2220                                                 202727
2221                                                 130766
2222                                                 134347
2223                                                 148128
2224                                                 162078
2225                                                 192631
2226                                                 173278
2227                                                 170637
2228                                                 162941
2229                                                 106012
2230                                                 114015
2231                                                 153476
2232                                                 201140
2233                                                 118570
2234                                                 160898
2235                                                 144349
2236                                                 165839
2237                                                 137133
2238                                                 115402
2239                                                 148692
2240                                                 130411
2241                                                 125440
2242                                                 123209
2243                                                 116059
2244                                                 118352
2245                                                 143163
2246                                                 107104
2247                                                 105221
2248                                                 121966
2249                                                 123693
2250                                                 111055
2251                                                 148634
2252                                                 124781
2253                                                 165545
2254                                                 130773
2255                                                 139532
2256                                                 157908
2257                                                 179463
2258                                                 148658
2259                                                 160050
2260                                                 212350
2261                                                 143217
2262                                                 204374
2263                                                 152050
2264                                                 207438
2265                                                 172821
2266                                                 223639
2267                                                 185324
2268                                                 247039
2269                                                 200005
2270                                                 199490
2271                                                 271320
2272                                                 191954
2273                                                 185940
2274                                                 220209
2275                                                 187483
2276                                                 151124
2277                                                 218786
2278                                                 171702
2279                                                 173429
2280                                                 213316
2281                                                 193229
2282                                                 163448
2283                                                 169169
2284                                                 284674
2285                                                 187805
2286                                                 160257
2287                                                 162428
2288                                                 180977
2289                                                2295315
2290                                                2166801
2291                                                2366880
2292                                                2271088
2293                                                2105670
2294                                                2187383
2295                                                2762021
2296                                                2470147
2297                                                2344879
2298                                                2542915
2299                                                2488221
2300                                                2351606
2301                                                2257194
2302                                                2252045
2303                                                2453285
2304                                                2608997
2305                                                2897999
2306                                                3171393
2307                                                3058909
2308                                                3273624
2309                                                3096266
2310                                                3276776
2311                                                3166737
2312                                                3141802
2313                                                3318843
2314                                                3835278
2315                                                3656336
2316                                                3460014
2317                                                4668965
2318                                                3870044
2319                                                4136441
2320                                                3794423
2321                                                3979432
2322                                                3969054
2323                                                3520801
2324                                                3637682
2325                                                3657279
2326                                                3851189
2327                                                3676642
2328                                                3091050
2329                                                3785376
2330                                                3290881
2331                                                3215935
2332                                                2944928
2333                                                3077731
2334                                                3046998
2335                                                3323431
2336                                                3776937
2337                                                3205533
2338                                                2839360
2339                                                2973368
2340                                                2745009
2341                                                2045752
2342                                                1449139
2343                                                2127600
2344                                                1520190
2345                                                1797110
2346                                                1799501
2347                                                1455202
2348                                                1420319
2349                                                2058754
2350                                                1278661
2351                                                1274185
2352                                                1810142
2353                                                1909901
2354                                                1266451
2355                                                2000381
2356                                                1317283
2357                                                2175323
2358                                                1422798
2359                                                1423076
2360                                                1615210
2361                                                2430273
2362                                                1539272
2363                                                1615661
2364                                                2507726
2365                                                1578243
2366                                                2713600
2367                                                1721633
2368                                                2602624
2369                                                1910737
2370                                                2862824
2371                                                2048880
2372                                                3209534
2373                                                2098271
2374                                                2167782
2375                                                3682277
2376                                                2170189
2377                                                2014444
2378                                                2801180
2379                                                2257669
2380                                                1804283
2381                                                2823708
2382                                                1865221
2383                                                1894002
2384                                                2682066
2385                                                1960713
2386                                                1820564
2387                                                1871662
2388                                                3656339
2389                                                1990978
2390                                                1815847
2391                                                1667013
2392                                                2296069
2393                                                  20577
2394                                                  17819
2395                                                  22229
2396                                                  18780
2397                                                  16877
2398                                                  17536
2399                                                  17122
2400                                                  19315
2401                                                  20262
2402                                                  16618
2403                                                  16562
2404                                                  11290
2405                                                  18332
2406                                                  25432
2407                                                  20719
2408                                                  39572
2409                                                  32236
2410                                                  31275
2411                                                  34441
2412                                                  33363
2413                                                  32213
2414                                                  35242
2415                                                  33592
2416                                                  39751
2417                                                  45147
2418                                                  43121
2419                                                  38304
2420                                                  33513
2421                                                  36981
2422                                                  40535
2423                                                  42028
2424                                                  41058
2425                                                  36880
2426                                                  46468
2427                                                  44094
2428                                                  41209
2429                                                  31965
2430                                                  27692
2431                                                  30530
2432                                                  36451
2433                                                  32961
2434                                                  32529
2435                                                  35184
2436                                                  26800
2437                                                  25371
2438                                                  24008
2439                                                  28901
2440                                                  35897
2441                                                  23844
2442                                                  28458
2443                                                  21974
2444                                                  26607
2445                                                  50482
2446                                                  40333
2447                                                  64673
2448                                                  60482
2449                                                  38130
2450                                                  40116
2451                                                  62811
2452                                                  54278
2453                                                  49011
2454                                                  52371
2455                                                  53414
2456                                                  77648
2457                                                  64603
2458                                                  99021
2459                                                  77969
2460                                                 108859
2461                                                  85674
2462                                                  74752
2463                                                 111101
2464                                                 186669
2465                                                  92512
2466                                                  79292
2467                                                 120125
2468                                                  99045
2469                                                 132490
2470                                                  97253
2471                                                 107631
2472                                                  84700
2473                                                  87726
2474                                                  92964
2475                                                 147105
2476                                                 135166
2477                                                  96531
2478                                                 125846
2479                                                 190986
2480                                                  86968
2481                                                 101449
2482                                                 138215
2483                                                  77971
2484                                                 111922
2485                                                  77998
2486                                                  70836
2487                                                  73957
2488                                                  93747
2489                                                  75717
2490                                                  88022
2491                                                 140792
2492                                                 209893
2493                                                  99021
2494                                                  78725
2495                                                  79293
2496                                                 125714
2497                                                    829
2498                                                    647
2499                                                    774
2500                                                    875
2501                                                    719
2502                                                    847
2503                                                    912
2504                                                    646
2505                                                   1063
2506                                                    936
2507                                                    749
2508                                                   1054
2509                                                   1777
2510                                                    926
2511                                                    776
2512                                                    882
2513                                                    675
2514                                                    601
2515                                                    579
2516                                                    619
2517                                                    511
2518                                                    723
2519                                                    878
2520                                                    593
2521                                                    577
2522                                                    798
2523                                                    756
2524                                                    624
2525                                                    548
2526                                                    632
2527                                                    744
2528                                                    560
2529                                                    743
2530                                                    899
2531                                                    635
2532                                                    768
2533                                                    721
2534                                                    670
2535                                                    717
2536                                                   1021
2537                                                   2030
2538                                                   2534
2539                                                    797
2540                                                    729
2541                                                   1099
2542                                                    881
2543                                                   1094
2544                                                   1321
2545                                                    810
2546                                                    790
2547                                                    984
2548                                                   2507
2549                                                 246327
2550                                                 146377
2551                                                 242294
2552                                                 145404
2553                                                 213390
2554                                                 194667
2555                                                 138483
2556                                                 135742
2557                                                 228324
2558                                                 109049
2559                                                 112096
2560                                                 175546
2561                                                 184070
2562                                                  99078
2563                                                 186844
2564                                                  97654
2565                                                 205189
2566                                                 126061
2567                                                 126817
2568                                                 139923
2569                                                 257930
2570                                                 139951
2571                                                 133615
2572                                                 258973
2573                                                 149510
2574                                                 282433
2575                                                 157030
2576                                                 262822
2577                                                 152836
2578                                                 295793
2579                                                 181641
2580                                                 331416
2581                                                 182282
2582                                                 197831
2583                                                 401969
2584                                                 203078
2585                                                 182582
2586                                                 304623
2587                                                 242308
2588                                                 169276
2589                                                 310473
2590                                                 173100
2591                                                 166384
2592                                                 258084
2593                                                 167596
2594                                                 154112
2595                                                 155194
2596                                                 392037
2597                                                 161291
2598                                                 132143
2599                                                 142238
2600                                                 226347
2601                                                9626901
2602                                                8710022
2603                                                9855054
2604                                                9405464
2605                                                8094804
2606                                                8571850
2607                                                9907981
2608                                                9991330
2609                                               10138704
2610                                                8683959
2611                                                9162094
2612                                                8828341
2613                                                8353620
2614                                                8454209
2615                                                9422275
2616                                                9875018
2617                                               12569277
2618                                               11650977
2619                                               11283021
2620                                               12680252
2621                                               13003371
2622                                               12115234
2623                                               12196226
2624                                               12742760
2625                                               12384449
2626                                               15643939
2627                                               13299569
2628                                               14699605
2629                                               16383685
2630                                               16529798
2631                                               15503613
2632                                               16000108
2633                                               14615942
2634                                               16215329
2635                                               17787612
2636                                               13833715
2637                                               14251319
2638                                               14793354
2639                                               13939014
2640                                               12524637
2641                                               13697406
2642                                               13149989
2643                                               13013750
2644                                               13282223
2645                                               12628562
2646                                               12626615
2647                                               13308193
2648                                               18933038
2649                                               12167445
2650                                               11858139
2651                                               11544811
2652                                               12357161
2653                                                2038444
2654                                                2017331
2655                                                1798995
2656                                                2097721
2657                                                1461862
2658                                                1549012
2659                                                1996853
2660                                                2204339
2661                                                1815066
2662                                                1574344
2663                                                2012887
2664                                                1287966
2665                                                1369450
2666                                                1601971
2667                                                1552162
2668                                                2194373
2669                                                2682938
2670                                                2163511
2671                                                2160130
2672                                                2640928
2673                                                2368531
2674                                                2470116
2675                                                2293112
2676                                                2337242
2677                                                2688406
2678                                                3328638
2679                                                2686203
2680                                                3062754
2681                                                3239258
2682                                                3451593
2683                                                3094130
2684                                                3206248
2685                                                2786201
2686                                                3050015
2687                                                3115938
2688                                                3163353
2689                                                3118686
2690                                                2561865
2691                                                3132031
2692                                                2978535
2693                                                2511454
2694                                                3034104
2695                                                2541410
2696                                                2221448
2697                                                2444851
2698                                                2483265
2699                                                2749122
2700                                                3531350
2701                                                2695158
2702                                                2431737
2703                                                2203112
2704                                                2275447
2705                                                 451905
2706                                                 389111
2707                                                 437781
2708                                                 398871
2709                                                 335447
2710                                                 403133
2711                                                 483181
2712                                                 445281
2713                                                 350882
2714                                                 363487
2715                                                 409640
2716                                                 268061
2717                                                 240183
2718                                                 255898
2719                                                 289135
2720                                                 341728
2721                                                 487551
2722                                                 518203
2723                                                 535570
2724                                                 489077
2725                                                 576883
2726                                                 573107
2727                                                 542664
2728                                                 552840
2729                                                 515150
2730                                                 606651
2731                                                 670425
2732                                                 601318
2733                                                 651121
2734                                                 750595
2735                                                 626725
2736                                                 692901
2737                                                 721088
2738                                                 774233
2739                                                 677576
2740                                                 596342
2741                                                 687795
2742                                                 564694
2743                                                 660962
2744                                                 595241
2745                                                 489679
2746                                                 610496
2747                                                 568182
2748                                                 439115
2749                                                 455087
2750                                                 520464
2751                                                 539280
2752                                                 611270
2753                                                 519143
2754                                                 516446
2755                                                 347126
2756                                                 426879
2757                                                 205856
2758                                                 191753
2759                                                 186344
2760                                                 210602
2761                                                 161632
2762                                                 189207
2763                                                 185966
2764                                                 167083
2765                                                 162368
2766                                                 171215
2767                                                 188793
2768                                                 187261
2769                                                 182418
2770                                                 174532
2771                                                 233801
2772                                                 286406
2773                                                 356593
2774                                                 294241
2775                                                 293240
2776                                                 362924
2777                                                 252172
2778                                                 232641
2779                                                 215523
2780                                                 202639
2781                                                 240109
2782                                                 310551
2783                                                 272203
2784                                                 361698
2785                                                 313216
2786                                                 341028
2787                                                 267461
2788                                                 206761
2789                                                 292233
2790                                                 199995
2791                                                 241665
2792                                                 233878
2793                                                 190570
2794                                                 258662
2795                                                 253541
2796                                                 286918
2797                                                 323217
2798                                                 336351
2799                                                 299983
2800                                                 325884
2801                                                 270173
2802                                                 313342
2803                                                 415641
2804                                                 290451
2805                                                 318373
2806                                                 308723
2807                                                 377245
2808                                                 350316
2809                                                  50819
2810                                                  57866
2811                                                  49240
2812                                                  52096
2813                                                  46243
2814                                                  51079
2815                                                  64631
2816                                                  61459
2817                                                  58412
2818                                                  56864
2819                                                  63424
2820                                                  72776
2821                                                  78717
2822                                                 129774
2823                                                 151205
2824                                                 202958
2825                                                  97714
2826                                                  72407
2827                                                  68444
2828                                                  68336
2829                                                  71155
2830                                                  64023
2831                                                  62897
2832                                                  50832
2833                                                  64926
2834                                                  63051
2835                                                  62585
2836                                                  61789
2837                                                  73621
2838                                                  61074
2839                                                  61989
2840                                                  60638
2841                                                  58944
2842                                                  75493
2843                                                  67682
2844                                                  61118
2845                                                  59233
2846                                                  64550
2847                                                  61533
2848                                                  59850
2849                                                  65397
2850                                                  59401
2851                                                  62540
2852                                                  61484
2853                                                  51913
2854                                                  72825
2855                                                  73754
2856                                                  52642
2857                                                  69829
2858                                                  58788
2859                                                  60261
2860                                                  54492
2861                                                  27464
2862                                                  28725
2863                                                  30311
2864                                                  34195
2865                                                  23775
2866                                                  28834
2867                                                  32035
2868                                                  24935
2869                                                  25833
2870                                                  27936
2871                                                  35486
2872                                                  38087
2873                                                  27543
2874                                                  39342
2875                                                  39719
2876                                                  41793
2877                                                  37234
2878                                                  36838
2879                                                  40944
2880                                                  43526
2881                                                  32775
2882                                                  30747
2883                                                  26990
2884                                                  27671
2885                                                  39211
2886                                                  36208
2887                                                  34024
2888                                                  36119
2889                                                  34791
2890                                                  31280
2891                                                  29695
2892                                                  32113
2893                                                  34103
2894                                                  43200
2895                                                  32241
2896                                                  36438
2897                                                  41244
2898                                                  44345
2899                                                  45953
2900                                                  40229
2901                                                  41756
2902                                                  45571
2903                                                  41714
2904                                                  38143
2905                                                  37808
2906                                                  38043
2907                                                  42826
2908                                                  36196
2909                                                  18003
2910                                                  34303
2911                                                  31802
2912                                                  43869
2913                                                   4350
2914                                                   6124
2915                                                   3711
2916                                                   4372
2917                                                   4243
2918                                                   7918
2919                                                   5234
2920                                                   4017
2921                                                   5543
2922                                                  10445
2923                                                   6472
2924                                                   7435
2925                                                  20872
2926                                                  40864
2927                                                  39971
2928                                                  85204
2929                                                  23482
2930                                                  37757
2931                                                  15420
2932                                                  20311
2933                                                  15830
2934                                                  12550
2935                                                  13100
2936                                                  11290
2937                                                  17289
2938                                                  11398
2939                                                  10380
2940                                                  10851
2941                                                  12891
2942                                                   8834
2943                                                   7708
2944                                                   4319
2945                                                   5790
2946                                                   6383
2947                                                   4765
2948                                                   4158
2949                                                   3872
2950                                                   4327
2951                                                   4683
2952                                                   4254
2953                                                   5364
2954                                                   5420
2955                                                   6153
2956                                                   6633
2957                                                   5601
2958                                                   7592
2959                                                   5987
2960                                                   6037
2961                                                   3108
2962                                                   4393
2963                                                   4120
2964                                                   5113
2965                                                   1197
2966                                                   1276
2967                                                    968
2968                                                    960
2969                                                   1006
2970                                                   1426
2971                                                   1892
2972                                                   1322
2973                                                   1130
2974                                                   1172
2975                                                   1283
2976                                                   1117
2977                                                   1120
2978                                                   4198
2979                                                   2693
2980                                                   1658
2981                                                   3090
2982                                                   2682
2983                                                   1543
2984                                                   2646
2985                                                   1782
2986                                                   1792
2987                                                   1157
2988                                                   1389
2989                                                   1425
2990                                                   1425
2991                                                   1327
2992                                                   1777
2993                                                   4629
2994                                                   1451
2995                                                   1442
2996                                                   1533
2997                                                   1411
2998                                                   1613
2999                                                   1248
3000                                                   1391
3001                                                   1167
3002                                                   1278
3003                                                   1164
3004                                                   1512
3005                                                   1111
3006                                                   1394
3007                                                   1473
3008                                                   1659
3009                                                   1500
3010                                                   1922
3011                                                   2262
3012                                                   2015
3013                                                    468
3014                                                   1779
3015                                                   1619
3016                                                   1487
3017                                                1579235
3018                                                1575319
3019                                                1638639
3020                                                1916640
3021                                                1508447
3022                                                1513797
3023                                                1326907
3024                                                1111432
3025                                                1126017
3026                                                1397559
3027                                                1635631
3028                                                2021375
3029                                                2359102
3030                                                2357904
3031                                                1888694
3032                                                2297602
3033                                                2501655
3034                                                2683110
3035                                                2646368
3036                                                2200100
3037                                                2152079
3038                                                1922055
3039                                                2019597
3040                                                2196723
3041                                                2399361
3042                                                2409026
3043                                                2333532
3044                                                2409003
3045                                                2597934
3046                                                2921963
3047                                                2522305
3048                                                2238875
3049                                                2247484
3050                                                2716222
3051                                                2817406
3052                                                2507347
3053                                                2370403
3054                                                2248562
3055                                                1805556
3056                                                1935666
3057                                                1893618
3058                                                1750944
3059                                                1893787
3060                                                1873878
3061                                                1776499
3062                                                1998150
3063                                                2930343
3064                                                2126067
3065                                                1230068
3066                                                1653348
3067                                                1736168
3068                                                2315175
3069                                                  36126
3070                                                  35762
3071                                                  43745
3072                                                  39222
3073                                                  38976
3074                                                  44045
3075                                                  49399
3076                                                  36841
3077                                                  39376
3078                                                  54982
3079                                                  57529
3080                                                  43326
3081                                                  46365
3082                                                  54111
3083                                                  43116
3084                                                  34441
3085                                                  58888
3086                                                  54875
3087                                                  44007
3088                                                  39824
3089                                                  48640
3090                                                  39820
3091                                                  34250
3092                                                  38199
3093                                                  43388
3094                                                  45221
3095                                                  36686
3096                                                  55098
3097                                                  42197
3098                                                  37431
3099                                                  49748
3100                                                  37008
3101                                                  31854
3102                                                  55854
3103                                                  53590
3104                                                  31821
3105                                                  37151
3106                                                  39142
3107                                                  35648
3108                                                  32858
3109                                                  33582
3110                                                  39326
3111                                                  38806
3112                                                  35461
3113                                                  36397
3114                                                  45730
3115                                                  63129
3116                                                  36408
3117                                                  13437
3118                                                  29998
3119                                                  21276
3120                                                  42857
3121                                                  67146
3122                                                  92760
3123                                                  84616
3124                                                  90158
3125                                                 151462
3126                                                 134285
3127                                                  34385
3128                                                  31207
3129                                                  33565
3130                                                  46709
3131                                                  52200
3132                                                  40105
3133                                                  37926
3134                                                  40601
3135                                                  74369
3136                                                  80472
3137                                                  77982
3138                                                  54971
3139                                                  62002
3140                                                  49617
3141                                                  40121
3142                                                  38276
3143                                                  42453
3144                                                  43790
3145                                                  52541
3146                                                  55651
3147                                                  80280
3148                                                  64900
3149                                                  50498
3150                                                  31729
3151                                                  36554
3152                                                  36569
3153                                                  49040
3154                                                  43166
3155                                                  39249
3156                                                  34134
3157                                                  47878
3158                                                  49679
3159                                                  36212
3160                                                  33748
3161                                                  36018
3162                                                  39540
3163                                                  35309
3164                                                  32414
3165                                                  39220
3166                                                  45558
3167                                                  68454
3168                                                  35214
3169                                                  23863
3170                                                  35100
3171                                                  44289
3172                                                  77301
3173                                                   2169
3174                                                   2280
3175                                                   2475
3176                                                   2444
3177                                                   1811
3178                                                   2013
3179                                                   2998
3180                                                   2896
3181                                                   2126
3182                                                   2790
3183                                                   6798
3184                                                   3166
3185                                                   3206
3186                                                   3822
3187                                                   6195
3188                                                   5371
3189                                                   3790
3190                                                   3863
3191                                                   3838
3192                                                   4691
3193                                                   5244
3194                                                   4322
3195                                                   4347
3196                                                   5442
3197                                                   4664
3198                                                   4595
3199                                                   4554
3200                                                   7033
3201                                                   7943
3202                                                   4643
3203                                                   4644
3204                                                   4092
3205                                                   3506
3206                                                   4411
3207                                                   4133
3208                                                   4308
3209                                                   3370
3210                                                   4235
3211                                                   3481
3212                                                   3097
3213                                                   3139
3214                                                   3172
3215                                                   3704
3216                                                   4252
3217                                                   3480
3218                                                   3898
3219                                                   4898
3220                                                   3262
3221                                                   1985
3222                                                   3683
3223                                                   3115
3224                                                   2731
3225                                                  54284
3226                                                  55605
3227                                                  79159
3228                                                 108398
3229                                                  58518
3230                                                  50017
3231                                                  52996
3232                                                  55231
3233                                                  75422
3234                                                  84697
3235                                                  53964
3236                                                  55586
3237                                                  54053
3238                                                  70129
3239                                                  85332
3240                                                  89424
3241                                                  73012
3242                                                  71113
3243                                                  69616
3244                                                  71827
3245                                                  70943
3246                                                  71526
3247                                                  73713
3248                                                  69177
3249                                                  80020
3250                                                 118888
3251                                                  99553
3252                                                  64426
3253                                                  65443
3254                                                  62728
3255                                                  95063
3256                                                 105960
3257                                                  76165
3258                                                  90445
3259                                                 111020
3260                                                 132005
3261                                                  56381
3262                                                  57345
3263                                                  50791
3264                                                  46922
3265                                                  46047
3266                                                  47504
3267                                                  49587
3268                                                  48902
3269                                                  46772
3270                                                  82199
3271                                                  99885
3272                                                  78647
3273                                                  95512
3274                                                  52491
3275                                                  82730
3276                                                  86026
3277                                                 503169
3278                                                 571587
3279                                                 643580
3280                                                 714900
3281                                                 445308
3282                                                 503089
3283                                                 480163
3284                                                 513466
3285                                                 432539
3286                                                 420152
3287                                                 526672
3288                                                 546921
3289                                                 534107
3290                                                 574457
3291                                                 649266
3292                                                 714506
3293                                                 719597
3294                                                 624795
3295                                                 625055
3296                                                 612988
3297                                                 711726
3298                                                 670208
3299                                                 651631
3300                                                 542103
3301                                                 546253
3302                                                 609483
3303                                                 657915
3304                                                 633636
3305                                                 695737
3306                                                 655972
3307                                                 682738
3308                                                 596612
3309                                                 620140
3310                                                 683287
3311                                                 671693
3312                                                 672950
3313                                                 646060
3314                                                 753608
3315                                                 690161
3316                                                 631284
3317                                                 620849
3318                                                 647713
3319                                                 705096
3320                                                 717452
3321                                                 543538
3322                                                 749745
3323                                                 766439
3324                                                 603100
3325                                                 187313
3326                                                 600984
3327                                                 558567
3328                                                 551922
3329                                                 123942
3330                                                 116070
3331                                                 110203
3332                                                 129941
3333                                                  86312
3334                                                  94900
3335                                                 133529
3336                                                 110498
3337                                                  99370
3338                                                 100520
3339                                                 129257
3340                                                 149622
3341                                                 124505
3342                                                 135132
3343                                                 134608
3344                                                 112292
3345                                                 146922
3346                                                 138029
3347                                                 150776
3348                                                 120450
3349                                                 168010
3350                                                 144731
3351                                                 128025
3352                                                 145159
3353                                                 190377
3354                                                 170576
3355                                                 165859
3356                                                 188106
3357                                                 179534
3358                                                 184535
3359                                                 181471
3360                                                 160299
3361                                                 159349
3362                                                 181355
3363                                                 153152
3364                                                 132551
3365                                                 171832
3366                                                 127375
3367                                                 153222
3368                                                 150919
3369                                                 138939
3370                                                 158017
3371                                                 145894
3372                                                 118100
3373                                                 155250
3374                                                 178547
3375                                                 230722
3376                                                 167669
3377                                                  25727
3378                                                 118600
3379                                                 146631
3380                                                 114122
3381                                                  89825
3382                                                  82537
3383                                                 135590
3384                                                 156550
3385                                                  86558
3386                                                  76105
3387                                                  78974
3388                                                  80605
3389                                                  75577
3390                                                  84501
3391                                                  83561
3392                                                  85267
3393                                                  83700
3394                                                  89632
3395                                                 105596
3396                                                 123014
3397                                                 119899
3398                                                 123354
3399                                                 121469
3400                                                 127204
3401                                                 127164
3402                                                 133526
3403                                                 133985
3404                                                 126818
3405                                                 117420
3406                                                 127175
3407                                                 116198
3408                                                 149056
3409                                                 162656
3410                                                 121770
3411                                                 127404
3412                                                 118921
3413                                                 139498
3414                                                 168697
3415                                                 109542
3416                                                 116268
3417                                                  96174
3418                                                 126215
3419                                                 121653
3420                                                  80333
3421                                                  78492
3422                                                  82407
3423                                                  79240
3424                                                  82100
3425                                                  76212
3426                                                 129795
3427                                                 169611
3428                                                 131407
3429                                                 154051
3430                                                  82804
3431                                                 133287
3432                                                 165617
3433                                                   1346
3434                                                    908
3435                                                   1045
3436                                                   1093
3437                                                   1330
3438                                                   1166
3439                                                   1341
3440                                                   1859
3441                                                   1991
3442                                                   1235
3443                                                   1511
3444                                                   1531
3445                                                   1618
3446                                                   2758
3447                                                   1407
3448                                                   1711
3449                                                   2699
3450                                                   2478
3451                                                   2042
3452                                                   1836
3453                                                   2220
3454                                                   2219
3455                                                   2350
3456                                                   2137
3457                                                   1971
3458                                                   2335
3459                                                   2370
3460                                                   3035
3461                                                   3254
3462                                                   1814
3463                                                   2080
3464                                                   1950
3465                                                   1673
3466                                                   1949
3467                                                   1858
3468                                                   2001
3469                                                   1878
3470                                                   2129
3471                                                   2410
3472                                                   2299
3473                                                   2126
3474                                                   2180
3475                                                   1975
3476                                                   2249
3477                                                   3581
3478                                                   3573
3479                                                   3936
3480                                                   3589
3481                                                   2407
3482                                                   3810
3483                                                   3615
3484                                                   3985
3485                                                 446144
3486                                                 466186
3487                                                 593674
3488                                                 674158
3489                                                 528089
3490                                                 482409
3491                                                 378864
3492                                                 398012
3493                                                 456451
3494                                                 480949
3495                                                 399216
3496                                                 419930
3497                                                 389791
3498                                                 484580
3499                                                 536657
3500                                                 552133
3501                                                 512921
3502                                                 456513
3503                                                 450527
3504                                                 459026
3505                                                 449400
3506                                                 448128
3507                                                 457453
3508                                                 429390
3509                                                 478537
3510                                                 574426
3511                                                 609218
3512                                                 608467
3513                                                 593779
3514                                                 467971
3515                                                 583307
3516                                                 565308
3517                                                 541980
3518                                                 610996
3519                                                 573870
3520                                                 624804
3521                                                 441314
3522                                                 497880
3523                                                 441200
3524                                                 370933
3525                                                 372245
3526                                                 370033
3527                                                 372606
3528                                                 369567
3529                                                 339775
3530                                                 502691
3531                                                 652666
3532                                                 496596
3533                                                 473647
3534                                                 364950
3535                                                 503915
3536                                                 604697
3537                                                  29000
3538                                                  25826
3539                                                  27492
3540                                                  27161
3541                                                  26022
3542                                                  29191
3543                                                  39007
3544                                                  40523
3545                                                  35333
3546                                                  35724
3547                                                  43579
3548                                                  43011
3549                                                  42262
3550                                                  68045
3551                                                  75558
3552                                                 108309
3553                                                  77541
3554                                                  45946
3555                                                  41522
3556                                                  49713
3557                                                  56263
3558                                                  48176
3559                                                  42713
3560                                                  37155
3561                                                  43879
3562                                                  41552
3563                                                  38571
3564                                                  41125
3565                                                  43254
3566                                                  40843
3567                                                  44169
3568                                                  40866
3569                                                  34543
3570                                                  47270
3571                                                  52277
3572                                                  50495
3573                                                  42205
3574                                                  42096
3575                                                  36367
3576                                                  35551
3577                                                  35428
3578                                                  35473
3579                                                  40528
3580                                                  36911
3581                                                  33668
3582                                                  39984
3583                                                  42668
3584                                                  30150
3585                                                  30858
3586                                                  37243
3587                                                  38270
3588                                                  36241
3589                                                   2978
3590                                                   4770
3591                                                   3322
3592                                                   3426
3593                                                   4270
3594                                                   4755
3595                                                   3119
3596                                                   3071
3597                                                   2705
3598                                                   4201
3599                                                   4397
3600                                                   7855
3601                                                  17696
3602                                                  42274
3603                                                  37691
3604                                                  84826
3605                                                  10731
3606                                                   3267
3607                                                   2618
3608                                                   6429
3609                                                   4285
3610                                                   3820
3611                                                   3244
3612                                                   3079
3613                                                   3435
3614                                                   3262
3615                                                   3521
3616                                                   4764
3617                                                   7760
3618                                                   4757
3619                                                   5717
3620                                                   3701
3621                                                   5224
3622                                                   6158
3623                                                   4164
3624                                                   4252
3625                                                   3818
3626                                                   4510
3627                                                   4184
3628                                                   3704
3629                                                   5156
3630                                                   4317
3631                                                   4867
3632                                                   5559
3633                                                   4492
3634                                                   6065
3635                                                   4835
3636                                                   5276
3637                                                   2331
3638                                                   4187
3639                                                   3362
3640                                                   4199
3641                                                 571304
3642                                                 576578
3643                                                 413908
3644                                                 592360
3645                                                 525325
3646                                                 466961
3647                                                 431732
3648                                                 430099
3649                                                 346283
3650                                                 371566
3651                                                 492463
3652                                                 483285
3653                                                 446277
3654                                                 463608
3655                                                 702368
3656                                                 729949
3657                                                 782983
3658                                                 610762
3659                                                 583161
3660                                                 590138
3661                                                 614770
3662                                                 547469
3663                                                 555710
3664                                                 551921
3665                                                 607070
3666                                                 545800
3667                                                 586636
3668                                                 627217
3669                                                 589477
3670                                                 555561
3671                                                 554092
3672                                                 569011
3673                                                 614770
3674                                                 670566
3675                                                 601670
3676                                                 656323
3677                                                 782314
3678                                                 757578
3679                                                 684633
3680                                                 553962
3681                                                 538381
3682                                                 585649
3683                                                 698790
3684                                                 674833
3685                                                 566062
3686                                                 518192
3687                                                 528670
3688                                                 484446
3689                                                 259465
3690                                                 447913
3691                                                 434472
3692                                                 356962
3693                                                   9561
3694                                                   9114
3695                                                  10029
3696                                                   9441
3697                                                   8422
3698                                                   9062
3699                                                   8853
3700                                                   9100
3701                                                   9278
3702                                                   7987
3703                                                  10968
3704                                                  11357
3705                                                  14489
3706                                                  16855
3707                                                  16666
3708                                                  17414
3709                                                  17530
3710                                                  13732
3711                                                  15022
3712                                                  15863
3713                                                  20926
3714                                                  16079
3715                                                  14627
3716                                                  15915
3717                                                  15126
3718                                                  15758
3719                                                  14453
3720                                                  17469
3721                                                  19443
3722                                                  16444
3723                                                  13153
3724                                                  10858
3725                                                  11249
3726                                                  17356
3727                                                  16728
3728                                                  12803
3729                                                  15361
3730                                                  15421
3731                                                  13073
3732                                                  10458
3733                                                  12096
3734                                                  11923
3735                                                  11773
3736                                                  11031
3737                                                  10807
3738                                                  13526
3739                                                  13927
3740                                                   8329
3741                                                   1804
3742                                                   5231
3743                                                   4590
3744                                                   5974
3745                                                  70780
3746                                                  49887
3747                                                  33586
3748                                                  63726
3749                                                  32945
3750                                                  35507
3751                                                  51958
3752                                                  43990
3753                                                  38168
3754                                                  42785
3755                                                  48625
3756                                                  43060
3757                                                  54429
3758                                                  58290
3759                                                  72171
3760                                                  70096
3761                                                 128269
3762                                                  90635
3763                                                  90679
3764                                                  98780
3765                                                  70054
3766                                                  67403
3767                                                  69899
3768                                                  77112
3769                                                  78118
3770                                                 137102
3771                                                  75055
3772                                                 115508
3773                                                  75764
3774                                                 124676
3775                                                 141301
3776                                                  83011
3777                                                  98257
3778                                                 113355
3779                                                 169412
3780                                                 104786
3781                                                  88553
3782                                                 106315
3783                                                  84766
3784                                                  70255
3785                                                  59970
3786                                                 103140
3787                                                  71185
3788                                                 108081
3789                                                  63677
3790                                                  74836
3791                                                 191441
3792                                                  76816
3793                                                 116714
3794                                                  73497
3795                                                 122360
3796                                                 103296
3797                                                 107318
3798                                                  88443
3799                                                  83683
3800                                                  93964
3801                                                 104641
3802                                                  94283
3803                                                 114476
3804                                                  84138
3805                                                  79019
3806                                                  67268
3807                                                  88625
3808                                                 121482
3809                                                  93430
3810                                                  98373
3811                                                 117939
3812                                                 200297
3813                                                 158224
3814                                                 123740
3815                                                 141809
3816                                                 129728
3817                                                 144863
3818                                                 125463
3819                                                 110869
3820                                                 118910
3821                                                 153906
3822                                                 135214
3823                                                 130217
3824                                                 164910
3825                                                 146589
3826                                                 156235
3827                                                 131708
3828                                                 122332
3829                                                 131370
3830                                                 170359
3831                                                 122125
3832                                                 125413
3833                                                 143901
3834                                                 151863
3835                                                 158984
3836                                                 155873
3837                                                 127950
3838                                                 130880
3839                                                 139919
3840                                                 122523
3841                                                 121215
3842                                                 144507
3843                                                 191144
3844                                                 117236
3845                                                   9727
3846                                                 108072
3847                                                 118959
3848                                                 103711
3849                                                 794840
3850                                                 767982
3851                                                 917099
3852                                                1076283
3853                                                 865743
3854                                                 880344
3855                                                 696411
3856                                                 543332
3857                                                 533137
3858                                                 768316
3859                                                 922290
3860                                                1153907
3861                                                1337603
3862                                                1328969
3863                                                 999949
3864                                                1217418
3865                                                1409249
3866                                                1471105
3867                                                1264168
3868                                                1050808
3869                                                1137248
3870                                                 961495
3871                                                1163035
3872                                                1201992
3873                                                1217453
3874                                                1317679
3875                                                1295217
3876                                                1322110
3877                                                1439519
3878                                                1596545
3879                                                1214456
3880                                                1084785
3881                                                1134719
3882                                                1416928
3883                                                1355794
3884                                                1115902
3885                                                1245345
3886                                                1130642
3887                                                 865504
3888                                                 982736
3889                                                 928106
3890                                                 767298
3891                                                 821036
3892                                                 812808
3893                                                 842358
3894                                                 931605
3895                                                1262681
3896                                                1004135
3897                                                 666019
3898                                                 804573
3899                                                 841326
3900                                                1232110
3901                                                   1338
3902                                                   1248
3903                                                   1368
3904                                                   1234
3905                                                   1047
3906                                                   1429
3907                                                   1469
3908                                                   1607
3909                                                   1770
3910                                                   1616
3911                                                   1539
3912                                                   1706
3913                                                   1352
3914                                                   1967
3915                                                   2115
3916                                                   3359
3917                                                   2682
3918                                                   1888
3919                                                   1980
3920                                                   2056
3921                                                   3574
3922                                                   2355
3923                                                   2352
3924                                                   2414
3925                                                   2785
3926                                                   2398
3927                                                   2762
3928                                                   2649
3929                                                   5366
3930                                                   2154
3931                                                   2052
3932                                                   2003
3933                                                   2286
3934                                                   2524
3935                                                   2499
3936                                                   2116
3937                                                   2121
3938                                                   1825
3939                                                   2091
3940                                                   1970
3941                                                   1893
3942                                                   1951
3943                                                   2029
3944                                                   2152
3945                                                   2368
3946                                                   2921
3947                                                   2805
3948                                                   2539
3949                                                   1673
3950                                                   2203
3951                                                   2088
3952                                                   2673
3953                                                 257456
3954                                                 237194
3955                                                 177621
3956                                                 267956
3957                                                 159915
3958                                                 179988
3959                                                 195573
3960                                                 176244
3961                                                 169008
3962                                                 164119
3963                                                 191041
3964                                                 153136
3965                                                 221783
3966                                                 251035
3967                                                 237187
3968                                                 226500
3969                                                 525594
3970                                                 290433
3971                                                 296955
3972                                                 400661
3973                                                 253093
3974                                                 247196
3975                                                 250298
3976                                                 241387
3977                                                 277354
3978                                                 479976
3979                                                 283281
3980                                                 474374
3981                                                 271971
3982                                                 474320
3983                                                 513205
3984                                                 273988
3985                                                 408466
3986                                                 349383
3987                                                 526289
3988                                                 419776
3989                                                 281532
3990                                                 399738
3991                                                 287271
3992                                                 240097
3993                                                 267188
3994                                                 399729
3995                                                 223852
3996                                                 428974
3997                                                 244779
3998                                                 219038
3999                                                 649647
4000                                                 287032
4001                                                 416814
4002                                                 276253
4003                                                 493952
4004                                                 349993
4005                                                 461611
4006                                                 491941
4007                                                 574107
4008                                                 605907
4009                                                 421296
4010                                                 478381
4011                                                 589047
4012                                                 569736
4013                                                 606276
4014                                                 611972
4015                                                 642845
4016                                                 651705
4017                                                 662662
4018                                                 748453
4019                                                 850690
4020                                                 938277
4021                                                 954421
4022                                                 745329
4023                                                 684458
4024                                                 666958
4025                                                 680836
4026                                                 612847
4027                                                 611049
4028                                                 582052
4029                                                 607743
4030                                                 653109
4031                                                 590855
4032                                                 674983
4033                                                 677444
4034                                                 673474
4035                                                 708287
4036                                                 658991
4037                                                 592139
4038                                                 711397
4039                                                 708527
4040                                                 665028
4041                                                 544933
4042                                                 589785
4043                                                 564867
4044                                                 558314
4045                                                 617677
4046                                                 573264
4047                                                 592137
4048                                                 593531
4049                                                 539072
4050                                                 654357
4051                                                 867822
4052                                                 555939
4053                                                 472744
4054                                                 631861
4055                                                 603274
4056                                                 675102
4057                                                  63237
4058                                                  66412
4059                                                  84856
4060                                                  82752
4061                                                  50379
4062                                                  53849
4063                                                  59293
4064                                                  66595
4065                                                  65787
4066                                                  66512
4067                                                  78566
4068                                                  77154
4069                                                  76163
4070                                                  79738
4071                                                  98830
4072                                                 144886
4073                                                 172939
4074                                                 104279
4075                                                 102331
4076                                                 102665
4077                                                  95352
4078                                                  88436
4079                                                  87693
4080                                                  90032
4081                                                  88754
4082                                                 106014
4083                                                 100032
4084                                                 135025
4085                                                 119783
4086                                                 136409
4087                                                 144140
4088                                                 115617
4089                                                 103730
4090                                                 114895
4091                                                 117137
4092                                                 111615
4093                                                  96001
4094                                                  98423
4095                                                  94345
4096                                                  98387
4097                                                 100108
4098                                                  91632
4099                                                  87363
4100                                                  99190
4101                                                 101831
4102                                                 103368
4103                                                 124530
4104                                                  90483
4105                                                  78105
4106                                                  98888
4107                                                 123087
4108                                                 131286
4109                                                 117055
4110                                                  83700
4111                                                  89506
4112                                                 143483
4113                                                  76604
4114                                                  86431
4115                                                 133594
4116                                                  98950
4117                                                  71231
4118                                                 102353
4119                                                 112347
4120                                                 114410
4121                                                 108880
4122                                                 141796
4123                                                 126047
4124                                                 141311
4125                                                 172989
4126                                                 171214
4127                                                 187528
4128                                                 148300
4129                                                 153071
4130                                                 141489
4131                                                 127609
4132                                                 141467
4133                                                 149482
4134                                                 194809
4135                                                 137324
4136                                                 162451
4137                                                 163475
4138                                                 176829
4139                                                 167413
4140                                                 152791
4141                                                 156109
4142                                                 304802
4143                                                 341116
4144                                                 150931
4145                                                 181796
4146                                                 166398
4147                                                 183585
4148                                                 138523
4149                                                 148493
4150                                                 160965
4151                                                 150786
4152                                                 173568
4153                                                 142079
4154                                                 175417
4155                                                 348348
4156                                                 164436
4157                                                 101029
4158                                                 158616
4159                                                 160167
4160                                                 159513
4161                                                  11330
4162                                                  14178
4163                                                  10995
4164                                                  13893
4165                                                  15264
4166                                                  16971
4167                                                  12169
4168                                                  10277
4169                                                   9265
4170                                                  11213
4171                                                  15611
4172                                                  20087
4173                                                  33926
4174                                                 121477
4175                                                 112702
4176                                                 239518
4177                                                  23916
4178                                                  19257
4179                                                  15005
4180                                                  18600
4181                                                  22522
4182                                                  16313
4183                                                  14629
4184                                                  12881
4185                                                  15424
4186                                                  14733
4187                                                  16028
4188                                                  16094
4189                                                  19084
4190                                                  15757
4191                                                  19730
4192                                                  16782
4193                                                  17964
4194                                                  26384
4195                                                  16424
4196                                                  19783
4197                                                  16212
4198                                                  19210
4199                                                  15437
4200                                                  17762
4201                                                  23279
4202                                                  28600
4203                                                  18108
4204                                                  18296
4205                                                  15028
4206                                                  23786
4207                                                  23983
4208                                                  18769
4209                                                  16058
4210                                                  18562
4211                                                  16165
4212                                                  16973
4213                                                 109609
4214                                                 140720
4215                                                 102684
4216                                                 130457
4217                                                 102216
4218                                                 126526
4219                                                 126870
4220                                                 124033
4221                                                 118904
4222                                                 137389
4223                                                 144613
4224                                                 154893
4225                                                 208055
4226                                                 446787
4227                                                 409569
4228                                                 703699
4229                                                 358040
4230                                                 490786
4231                                                 247659
4232                                                 316873
4233                                                 304605
4234                                                 224804
4235                                                 220814
4236                                                 196491
4237                                                 316660
4238                                                 210729
4239                                                 190137
4240                                                 184731
4241                                                 201928
4242                                                 154509
4243                                                 141465
4244                                                 104014
4245                                                 100735
4246                                                 135137
4247                                                 123023
4248                                                 125737
4249                                                 105340
4250                                                 113797
4251                                                  99895
4252                                                  99224
4253                                                 108457
4254                                                 122582
4255                                                 111264
4256                                                 105868
4257                                                  94936
4258                                                 121413
4259                                                 125570
4260                                                 102907
4261                                                  75380
4262                                                 102212
4263                                                  96952
4264                                                  96147
4265                                                  12141
4266                                                  14139
4267                                                   9683
4268                                                  24617
4269                                                  11304
4270                                                  15322
4271                                                  11996
4272                                                  10728
4273                                                  12253
4274                                                  17406
4275                                                  14794
4276                                                  14886
4277                                                  18423
4278                                                  23190
4279                                                  24644
4280                                                  35007
4281                                                  83711
4282                                                 211564
4283                                                  95075
4284                                                 114824
4285                                                 113313
4286                                                  79931
4287                                                  83735
4288                                                  75192
4289                                                 134476
4290                                                  78904
4291                                                  63778
4292                                                  53199
4293                                                  48479
4294                                                  32955
4295                                                  19245
4296                                                   2888
4297                                                   3334
4298                                                   3369
4299                                                   2527
4300                                                   2993
4301                                                   2034
4302                                                   2857
4303                                                   3195
4304                                                   2320
4305                                                   3205
4306                                                   3166
4307                                                   4141
4308                                                   4257
4309                                                   3998
4310                                                   4687
4311                                                   3738
4312                                                   3329
4313                                                    852
4314                                                   3556
4315                                                   2398
4316                                                   3485
4317                                                 131616
4318                                                 113248
4319                                                  84080
4320                                                 129744
4321                                                  76752
4322                                                  83654
4323                                                  97337
4324                                                  93321
4325                                                  82399
4326                                                  83781
4327                                                 104391
4328                                                  91532
4329                                                 117407
4330                                                 122726
4331                                                 133279
4332                                                 150965
4333                                                 275860
4334                                                 163537
4335                                                 170497
4336                                                 210919
4337                                                 143759
4338                                                 137791
4339                                                 145903
4340                                                 141752
4341                                                 143564
4342                                                 277838
4343                                                 143187
4344                                                 238794
4345                                                 143223
4346                                                 262311
4347                                                 283442
4348                                                 163428
4349                                                 218692
4350                                                 213997
4351                                                 301117
4352                                                 230753
4353                                                 172247
4354                                                 229925
4355                                                 178043
4356                                                 152991
4357                                                 136451
4358                                                 216900
4359                                                 142948
4360                                                 233310
4361                                                 145444
4362                                                 168684
4363                                                 370222
4364                                                 163157
4365                                                 234747
4366                                                 155453
4367                                                 279393
4368                                                 201919
4369                                                  11218
4370                                                  11535
4371                                                  12147
4372                                                  12336
4373                                                  10693
4374                                                  13381
4375                                                  14611
4376                                                  14396
4377                                                  13468
4378                                                  13408
4379                                                  15916
4380                                                  16119
4381                                                  18332
4382                                                  42045
4383                                                  47549
4384                                                  73604
4385                                                  47717
4386                                                  21610
4387                                                  14772
4388                                                  21070
4389                                                  23406
4390                                                  15975
4391                                                  13780
4392                                                  14420
4393                                                  15583
4394                                                  14355
4395                                                  15054
4396                                                  14408
4397                                                  14258
4398                                                  15486
4399                                                  15832
4400                                                  15265
4401                                                  14393
4402                                                  20317
4403                                                  16265
4404                                                  18439
4405                                                  17062
4406                                                  18475
4407                                                  17215
4408                                                  17181
4409                                                  17109
4410                                                  27514
4411                                                  16299
4412                                                  14692
4413                                                  14147
4414                                                  15846
4415                                                  16404
4416                                                  18326
4417                                                  12983
4418                                                  15195
4419                                                  14091
4420                                                  13858
4421                                                 595086
4422                                                 733772
4423                                                 508912
4424                                                 731182
4425                                                 464034
4426                                                 753471
4427                                                 437811
4428                                                 334096
4429                                                 261890
4430                                                 250713
4431                                                 273642
4432                                                 382979
4433                                                 345171
4434                                                 354470
4435                                                 377762
4436                                                 504499
4437                                                 947925
4438                                                 590086
4439                                                 991649
4440                                                 795944
4441                                                1031124
4442                                                 392456
4443                                                 423673
4444                                                 410871
4445                                                 485473
4446                                                 539429
4447                                                 848509
4448                                                 852657
4449                                                 471620
4450                                                 644912
4451                                                 823223
4452                                                 616428
4453                                                 877702
4454                                                 941813
4455                                                 657384
4456                                                 884293
4457                                                 662947
4458                                                 924032
4459                                                 690116
4460                                                 952967
4461                                                 877807
4462                                                 670917
4463                                                1037699
4464                                                 816555
4465                                                 560569
4466                                                 788381
4467                                                1093425
4468                                                 663697
4469                                                 537696
4470                                                 632962
4471                                                 868818
4472                                                 692404
4473                                                  21519
4474                                                  47068
4475                                                  22587
4476                                                  22112
4477                                                  17972
4478                                                  21812
4479                                                  22930
4480                                                  24892
4481                                                  25336
4482                                                  25223
4483                                                  23294
4484                                                  24596
4485                                                  27734
4486                                                  62849
4487                                                  28023
4488                                                  22513
4489                                                  18723
4490                                                  10388
4491                                                   1802
4492                                                   1544
4493                                                   1679
4494                                                   1433
4495                                                   1549
4496                                                   1416
4497                                                   1537
4498                                                   1482
4499                                                   1415
4500                                                   2064
4501                                                   3377
4502                                                   2020
4503                                                   1336
4504                                                   1083
4505                                                   1504
4506                                                   1848
4507                                                   1981
4508                                                   1301
4509                                                   1300
4510                                                   1737
4511                                                   1592
4512                                                   1247
4513                                                   1457
4514                                                   1631
4515                                                   1555
4516                                                   1210
4517                                                   1353
4518                                                   2425
4519                                                   3399
4520                                                   2259
4521                                                    107
4522                                                   1565
4523                                                   1767
4524                                                   1512
4525                                                 581227
4526                                                 581862
4527                                                 724149
4528                                                 946350
4529                                                 520566
4530                                                 518903
4531                                                 514296
4532                                                 576884
4533                                                 469958
4534                                                 520221
4535                                                 567498
4536                                                 589475
4537                                                 598896
4538                                                 673111
4539                                                 826480
4540                                                 780495
4541                                                 931227
4542                                                 823545
4543                                                 748383
4544                                                 882148
4545                                                 859776
4546                                                 658829
4547                                                 650652
4548                                                 615735
4549                                                 691422
4550                                                 684349
4551                                                1040820
4552                                                1093073
4553                                                 892690
4554                                                1242318
4555                                                1223081
4556                                                1062580
4557                                                 873323
4558                                                1198630
4559                                                 925373
4560                                                 887509
4561                                                 852518
4562                                                 886184
4563                                                 898127
4564                                                 773936
4565                                                 793584
4566                                                1102893
4567                                                 798295
4568                                                 716192
4569                                                 784111
4570                                                 869883
4571                                                1206795
4572                                                 870098
4573                                                 360743
4574                                                 634914
4575                                                 750885
4576                                                 999389
4577                                                 104032
4578                                                 103823
4579                                                  97136
4580                                                 109778
4581                                                  72973
4582                                                  80041
4583                                                  90572
4584                                                  83618
4585                                                  70233
4586                                                  77058
4587                                                 106967
4588                                                 107797
4589                                                  93261
4590                                                 122350
4591                                                 125312
4592                                                 155407
4593                                                 131619
4594                                                 119830
4595                                                 135899
4596                                                 134422
4597                                                 140180
4598                                                 135647
4599                                                 135877
4600                                                 138377
4601                                                 158448
4602                                                 162121
4603                                                 139894
4604                                                 154975
4605                                                 159711
4606                                                 153775
4607                                                 145240
4608                                                 140269
4609                                                 139703
4610                                                 155346
4611                                                 148330
4612                                                 147879
4613                                                  80085
4614                                                 115156
4615                                                  89147
4616                                                  82570
4617                                                  89990
4618                                                  89366
4619                                                  93796
4620                                                  83580
4621                                                  65381
4622                                                  98599
4623                                                  90313
4624                                                  83567
4625                                                  60001
4626                                                  91789
4627                                                 100450
4628                                                 101181
4629                                                  57637
4630                                                  60411
4631                                                  77872
4632                                                  80765
4633                                                  64282
4634                                                  66027
4635                                                  87802
4636                                                  79225
4637                                                  84333
4638                                                  88588
4639                                                  91951
4640                                                  85813
4641                                                  81422
4642                                                  88405
4643                                                  92754
4644                                                  55464
4645                                                  90299
4646                                                  88768
4647                                                  67591
4648                                                  69870
4649                                                  64078
4650                                                  59208
4651                                                  52638
4652                                                  47084
4653                                                  43146
4654                                                  64012
4655                                                  63248
4656                                                  69175
4657                                                  61649
4658                                                  69779
4659                                                  56828
4660                                                  58844
4661                                                  57226
4662                                                  56914
4663                                                  77784
4664                                                  69533
4665                                                  47754
4666                                                  62707
4667                                                  60612
4668                                                  44251
4669                                                  57434
4670                                                  65417
4671                                                  66432
4672                                                  59637
4673                                                  55054
4674                                                  71137
4675                                                  82797
4676                                                  61313
4677                                                  20212
4678                                                  47604
4679                                                  42070
4680                                                  65934
4681                                                  57198
4682                                                  64260
4683                                                  67314
4684                                                  82394
4685                                                  47392
4686                                                  61551
4687                                                  81429
4688                                                  73480
4689                                                  80900
4690                                                  70436
4691                                                  75897
4692                                                  90444
4693                                                  95733
4694                                                  88120
4695                                                  99452
4696                                                  96273
4697                                                 100754
4698                                                  87612
4699                                                  86900
4700                                                  89132
4701                                                  98313
4702                                                  85722
4703                                                  96398
4704                                                  82855
4705                                                  87548
4706                                                  89753
4707                                                  74356
4708                                                  67620
4709                                                  83556
4710                                                  67444
4711                                                  81288
4712                                                  79353
4713                                                  63701
4714                                                  89112
4715                                                  67527
4716                                                  73891
4717                                                  58574
4718                                                  60884
4719                                                  58169
4720                                                  61031
4721                                                  65822
4722                                                  53661
4723                                                  69079
4724                                                  68025
4725                                                  57431
4726                                                  69755
4727                                                 145747
4728                                                  52911
4729                                                  81686
4730                                                 102087
4731                                                  81955
4732                                                  79192
4733                                                  27393
4734                                                  29594
4735                                                  36800
4736                                                  43235
4737                                                  23710
4738                                                  31584
4739                                                  36640
4740                                                  39065
4741                                                  43906
4742                                                  40460
4743                                                  42681
4744                                                  46103
4745                                                  48667
4746                                                  50868
4747                                                  57841
4748                                                  59142
4749                                                  51973
4750                                                  48406
4751                                                  45316
4752                                                  42322
4753                                                  43872
4754                                                  44288
4755                                                  45204
4756                                                  42726
4757                                                  46153
4758                                                  42474
4759                                                  37011
4760                                                  38806
4761                                                  41650
4762                                                  39706
4763                                                  51556
4764                                                  55227
4765                                                  41009
4766                                                  46723
4767                                                  42590
4768                                                  42884
4769                                                  38227
4770                                                  41263
4771                                                  37271
4772                                                  45215
4773                                                  52022
4774                                                  37200
4775                                                  49401
4776                                                  52420
4777                                                  32922
4778                                                  47759
4779                                                  60920
4780                                                  32757
4781                                                  47641
4782                                                  64688
4783                                                  55844
4784                                                  59482
4785                                                 119612
4786                                                 125324
4787                                                 106960
4788                                                 110569
4789                                                  89559
4790                                                  94610
4791                                                  93242
4792                                                  93519
4793                                                  97714
4794                                                  82313
4795                                                 102990
4796                                                 133618
4797                                                 136133
4798                                                 135265
4799                                                 124963
4800                                                 140888
4801                                                 153240
4802                                                 150624
4803                                                 181120
4804                                                 154532
4805                                                 149607
4806                                                 140605
4807                                                 123359
4808                                                 150252
4809                                                 164625
4810                                                 163405
4811                                                 147822
4812                                                 157355
4813                                                 158599
4814                                                 169294
4815                                                 166777
4816                                                 156353
4817                                                 137852
4818                                                 171748
4819                                                 158376
4820                                                 173547
4821                                                 158324
4822                                                 152170
4823                                                 128563
4824                                                 129400
4825                                                 128297
4826                                                 139305
4827                                                 136469
4828                                                 133684
4829                                                 124241
4830                                                 143312
4831                                                 259382
4832                                                 145375
4833                                                  55327
4834                                                 105469
4835                                                 122363
4836                                                 141162
4837                                                 118030
4838                                                 106000
4839                                                 139067
4840                                                 214063
4841                                                 160596
4842                                                 135338
4843                                                 120524
4844                                                  89365
4845                                                  88975
4846                                                 127392
4847                                                 133021
4848                                                 143508
4849                                                 209856
4850                                                 217680
4851                                                 147767
4852                                                 164685
4853                                                 186261
4854                                                 244514
4855                                                 227978
4856                                                 151195
4857                                                 164926
4858                                                 156893
4859                                                 168729
4860                                                 169871
4861                                                 186259
4862                                                 182472
4863                                                 196596
4864                                                 182110
4865                                                 216162
4866                                                 242213
4867                                                 183029
4868                                                 157624
4869                                                 196230
4870                                                 210276
4871                                                 221162
4872                                                 209423
4873                                                 219231
4874                                                 190244
4875                                                 165482
4876                                                 183067
4877                                                 159593
4878                                                 151220
4879                                                 160581
4880                                                 143189
4881                                                 165757
4882                                                 173875
4883                                                 212981
4884                                                 174250
4885                                                 104832
4886                                                 164565
4887                                                 155538
4888                                                 204145
4889                                                 164596
4890                                                 173910
4891                                                 134468
4892                                                 159831
4893                                                 118187
4894                                                 120582
4895                                                 118821
4896                                                 109081
4897                                                 130025
4898                                                 133677
4899                                                 141221
4900                                                 163265
4901                                                 196086
4902                                                 210602
4903                                                 173635
4904                                                 222298
4905                                                 203090
4906                                                 258579
4907                                                 311234
4908                                                 266261
4909                                                 189862
4910                                                 185497
4911                                                 158291
4912                                                 200748
4913                                                 249271
4914                                                 202576
4915                                                 194825
4916                                                 210316
4917                                                 228295
4918                                                 278153
4919                                                 304281
4920                                                 247489
4921                                                 201206
4922                                                 259594
4923                                                 355141
4924                                                 313239
4925                                                 209131
4926                                                 216994
4927                                                 166177
4928                                                 167888
4929                                                 193704
4930                                                 192003
4931                                                 217966
4932                                                 238542
4933                                                 178439
4934                                                 200199
4935                                                 333064
4936                                                 236161
4937                                                 115037
4938                                                 141713
4939                                                 144507
4940                                                 204501
4941                                                  64750
4942                                                  67731
4943                                                  69914
4944                                                  75095
4945                                                  44831
4946                                                  56982
4947                                                  61375
4948                                                  58648
4949                                                  52131
4950                                                  69252
4951                                                  94033
4952                                                  74612
4953                                                  73072
4954                                                 101293
4955                                                 121885
4956                                                 154068
4957                                                 132309
4958                                                 114777
4959                                                 111363
4960                                                 103908
4961                                                 101061
4962                                                  93422
4963                                                  85460
4964                                                  94220
4965                                                 103864
4966                                                 101636
4967                                                  91565
4968                                                 101860
4969                                                 108550
4970                                                  97147
4971                                                  92530
4972                                                  92634
4973                                                  87749
4974                                                  88762
4975                                                  91136
4976                                                  86999
4977                                                  76011
4978                                                 125384
4979                                                 111242
4980                                                  91025
4981                                                  76059
4982                                                  71767
4983                                                 101164
4984                                                  96853
4985                                                  56523
4986                                                 105339
4987                                                 110676
4988                                                  75853
4989                                                 100315
4990                                                 155213
4991                                                 177584
4992                                                 179152
4993                                                 121219
4994                                                 103487
4995                                                 106629
4996                                                 122449
4997                                                  90091
4998                                                 105061
4999                                                 127839
5000                                                  97078
5001                                                  99127
5002                                                 128649
5003                                                 117958
5004                                                 109192
5005                                                 128825
5006                                                 148998
5007                                                 153617
5008                                                 156751
5009                                                 228636
5010                                                 197155
5011                                                 193878
5012                                                 198570
5013                                                 183406
5014                                                 156886
5015                                                 143275
5016                                                 144883
5017                                                 168421
5018                                                 214287
5019                                                 150192
5020                                                 211555
5021                                                 161172
5022                                                 186493
5023                                                 188093
5024                                                 135034
5025                                                 153126
5026                                                 216508
5027                                                 251274
5028                                                 151185
5029                                                 153726
5030                                                 158605
5031                                                 150247
5032                                                 136388
5033                                                 149730
5034                                                 175359
5035                                                 156335
5036                                                 178407
5037                                                 145774
5038                                                 180058
5039                                                 307136
5040                                                 159089
5041                                                 145617
5042                                                 149490
5043                                                 171276
5044                                                 195470
5045                                                2676153
5046                                                2789696
5047                                                2633723
5048                                                3146436
5049                                                2342116
5050                                                2351203
5051                                                2338884
5052                                                2443877
5053                                                1917985
5054                                                2043311
5055                                                2588087
5056                                                2650641
5057                                                2488199
5058                                                2674487
5059                                                3357771
5060                                                3652516
5061                                                3749549
5062                                                3166010
5063                                                3137489
5064                                                3062124
5065                                                3263107
5066                                                2925166
5067                                                3073632
5068                                                2950117
5069                                                3069816
5070                                                3114587
5071                                                3148032
5072                                                3271758
5073                                                3356664
5074                                                3351333
5075                                                3270603
5076                                                3128528
5077                                                3283251
5078                                                3666928
5079                                                3400699
5080                                                3348754
5081                                                3651444
5082                                                3665847
5083                                                3321836
5084                                                3137633
5085                                                3064744
5086                                                3228471
5087                                                3596736
5088                                                3528192
5089                                                2872173
5090                                                3382977
5091                                                3823016
5092                                                3003443
5093                                                1193350
5094                                                2836078
5095                                                2683173
5096                                                2512692
5097                                                1449894
5098                                                1236271
5099                                                1055827
5100                                                1481392
5101                                                 943433
5102                                                1054588
5103                                                1219549
5104                                                1086704
5105                                                1006135
5106                                                1086334
5107                                                1219511
5108                                                1122505
5109                                                1267964
5110                                                1398880
5111                                                1501213
5112                                                1673305
5113                                                2776885
5114                                                1919441
5115                                                1923227
5116                                                2241425
5117                                                1628428
5118                                                1502915
5119                                                1485492
5120                                                1466379
5121                                                1599856
5122                                                2549453
5123                                                1630877
5124                                                2441553
5125                                                1757284
5126                                                2504517
5127                                                2562670
5128                                                1634621
5129                                                2115292
5130                                                2196755
5131                                                2875233
5132                                                2132612
5133                                                1705009
5134                                                2127099
5135                                                1812848
5136                                                1671683
5137                                                1726223
5138                                                2211226
5139                                                1642178
5140                                                2325377
5141                                                1586507
5142                                                1737635
5143                                                3614202
5144                                                1774274
5145                                                2092736
5146                                                1721273
5147                                                2536174
5148                                                2208432
5149                                                  13135
5150                                                  11469
5151                                                  12118
5152                                                  10872
5153                                                   8072
5154                                                   9351
5155                                                  12238
5156                                                  11312
5157                                                   8157
5158                                                   8981
5159                                                  13123
5160                                                  13780
5161                                                  12841
5162                                                  17515
5163                                                  17028
5164                                                  25161
5165                                                  27415
5166                                                  24063
5167                                                  27169
5168                                                  24616
5169                                                  28152
5170                                                  25236
5171                                                  24997
5172                                                  25708
5173                                                  28564
5174                                                  29447
5175                                                  24210
5176                                                  27585
5177                                                  31353
5178                                                  29094
5179                                                  29399
5180                                                  28757
5181                                                  24776
5182                                                  32461
5183                                                  30544
5184                                                  26549
5185                                                  23286
5186                                                  31093
5187                                                  23190
5188                                                  21799
5189                                                  24107
5190                                                  22600
5191                                                  23604
5192                                                  21928
5193                                                  16913
5194                                                  22684
5195                                                  25010
5196                                                  19600
5197                                                  14123
5198                                                  20833
5199                                                  25931
5200                                                  25325
5201                                                  58511
5202                                                  58409
5203                                                  38790
5204                                                  40781
5205                                                  34165
5206                                                  40938
5207                                                  59890
5208                                                  64239
5209                                                  51882
5210                                                  90464
5211                                                  53894
5212                                                  49980
5213                                                  51859
5214                                                  89035
5215                                                  46991
5216                                                  97943
5217                                                  41710
5218                                                  43864
5219                                                  45179
5220                                                  53921
5221                                                  62086
5222                                                  54119
5223                                                  75714
5224                                                  53603
5225                                                  61310
5226                                                  65689
5227                                                  70090
5228                                                  68071
5229                                                  63118
5230                                                  69395
5231                                                  71157
5232                                                  85909
5233                                                  69857
5234                                                  68597
5235                                                  99574
5236                                                  65855
5237                                                  55008
5238                                                  83222
5239                                                  57658
5240                                                  49442
5241                                                  74089
5242                                                  67143
5243                                                  68571
5244                                                  52181
5245                                                  78891
5246                                                  55936
5247                                                  76563
5248                                                  79031
5249                                                  38175
5250                                                  55840
5251                                                  77169
5252                                                 105268
5253                                                    748
5254                                                    771
5255                                                    762
5256                                                    796
5257                                                    691
5258                                                    815
5259                                                   1266
5260                                                    922
5261                                                    967
5262                                                   1111
5263                                                   1344
5264                                                    980
5265                                                    987
5266                                                   3272
5267                                                   2411
5268                                                   1875
5269                                                   3546
5270                                                   5939
5271                                                   2904
5272                                                   4942
5273                                                   2724
5274                                                   1971
5275                                                   1941
5276                                                   2211
5277                                                   3503
5278                                                   1971
5279                                                   1952
5280                                                   2081
5281                                                   3485
5282                                                   1636
5283                                                   1260
5284                                                    951
5285                                                   1015
5286                                                   1144
5287                                                    992
5288                                                   1000
5289                                                    880
5290                                                    987
5291                                                    652
5292                                                    872
5293                                                    784
5294                                                    875
5295                                                   1024
5296                                                    862
5297                                                    918
5298                                                   1089
5299                                                   1463
5300                                                   1181
5301                                                     72
5302                                                   1078
5303                                                    758
5304                                                    839
5305                                                 157381
5306                                                 132947
5307                                                  99669
5308                                                 163610
5309                                                  92934
5310                                                  95447
5311                                                 124544
5312                                                 110779
5313                                                  93166
5314                                                  91272
5315                                                 116453
5316                                                 110106
5317                                                 123391
5318                                                 140783
5319                                                 132431
5320                                                 154295
5321                                                 298317
5322                                                 177293
5323                                                 175345
5324                                                 213371
5325                                                 147057
5326                                                 134859
5327                                                 143082
5328                                                 143892
5329                                                 141566
5330                                                 288162
5331                                                 143486
5332                                                 234054
5333                                                 136835
5334                                                 261221
5335                                                 287991
5336                                                 164834
5337                                                 214252
5338                                                 238893
5339                                                 336112
5340                                                 233226
5341                                                 183629
5342                                                 226151
5343                                                 196164
5344                                                 159310
5345                                                 148381
5346                                                 219895
5347                                                 149559
5348                                                 248402
5349                                                 146660
5350                                                 160675
5351                                                 385584
5352                                                 155283
5353                                                 184105
5354                                                 138371
5355                                                 250746
5356                                                 226406
5357                                                9255125
5358                                                9394066
5359                                                9009996
5360                                               11043351
5361                                                7891488
5362                                                8531161
5363                                                8235135
5364                                                7804253
5365                                                7100459
5366                                                7579629
5367                                                8810664
5368                                                9552502
5369                                                9534916
5370                                               10548061
5371                                               11337829
5372                                               12962763
5373                                               14643466
5374                                               12561056
5375                                               12725249
5376                                               12352933
5377                                               12197105
5378                                               10168972
5379                                               10331314
5380                                               10320463
5381                                               11457080
5382                                               12508937
5383                                               12189035
5384                                               13488852
5385                                               12291687
5386                                               13808859
5387                                               13682611
5388                                               11712000
5389                                               12447598
5390                                               14223305
5391                                               13748944
5392                                               12913697
5393                                               11954488
5394                                               12879820
5395                                               11320970
5396                                               11249198
5397                                               11134391
5398                                               11661687
5399                                               11824155
5400                                               11907395
5401                                               10015825
5402                                               11913078
5403                                               16573574
5404                                               11098088
5405                                                7020459
5406                                               10036598
5407                                               11441287
5408                                               11616506
5409                                                1951253
5410                                                2112070
5411                                                1687193
5412                                                2142010
5413                                                1525326
5414                                                2005353
5415                                                1740718
5416                                                1493575
5417                                                1398733
5418                                                1301894
5419                                                1613263
5420                                                1941978
5421                                                1560247
5422                                                1763860
5423                                                1966755
5424                                                2364734
5425                                                2858767
5426                                                2276321
5427                                                2887138
5428                                                2524279
5429                                                2858874
5430                                                1874227
5431                                                1812625
5432                                                1883575
5433                                                2293686
5434                                                2313259
5435                                                2645564
5436                                                2805283
5437                                                2213964
5438                                                2492774
5439                                                2670894
5440                                                2319082
5441                                                2693393
5442                                                2987239
5443                                                2324813
5444                                                2621906
5445                                                2283526
5446                                                2750666
5447                                                2376641
5448                                                2701808
5449                                                2557844
5450                                                2302276
5451                                                2817153
5452                                                2394790
5453                                                2022751
5454                                                2645973
5455                                                3353158
5456                                                2168766
5457                                                1121791
5458                                                2091962
5459                                                2530745
5460                                                2204871
5461                                                 484144
5462                                                 388322
5463                                                 308697
5464                                                 353340
5465                                                 415840
5466                                                 407046
5467                                                 429759
5468                                                 389129
5469                                                 230697
5470                                                 326068
5471                                                 490768
5472                                                 432642
5473                                                 326742
5474                                                 334016
5475                                                 471618
5476                                                 689424
5477                                                 570194
5478                                                 472159
5479                                                 484478
5480                                                 449883
5481                                                 500098
5482                                                 404008
5483                                                 432573
5484                                                 449794
5485                                                 571523
5486                                                 581533
5487                                                 558420
5488                                                 633115
5489                                                 552199
5490                                                 625920
5491                                                 556578
5492                                                 497605
5493                                                 581143
5494                                                 623287
5495                                                 489364
5496                                                 475419
5497                                                 538759
5498                                                 567764
5499                                                 552528
5500                                                 638259
5501                                                 572667
5502                                                 563342
5503                                                 548261
5504                                                 532850
5505                                                 531995
5506                                                 621735
5507                                                 755962
5508                                                 512430
5509                                                  45720
5510                                                 440675
5511                                                 486987
5512                                                 419119
5513                                                 341061
5514                                                 212414
5515                                                 231133
5516                                                 274346
5517                                                 263807
5518                                                 211077
5519                                                 239860
5520                                                 251896
5521                                                 275750
5522                                                 256989
5523                                                 219172
5524                                                 197443
5525                                                 213443
5526                                                 222684
5527                                                 222498
5528                                                 204375
5529                                                 241057
5530                                                 235646
5531                                                 230032
5532                                                 230253
5533                                                 251178
5534                                                 252436
5535                                                 247039
5536                                                 285746
5537                                                 301472
5538                                                 233476
5539                                                 248096
5540                                                 249204
5541                                                 269329
5542                                                 318335
5543                                                 361266
5544                                                 273538
5545                                                 253793
5546                                                 265556
5547                                                 377225
5548                                                 304669
5549                                                 249318
5550                                                 237538
5551                                                 223170
5552                                                 226290
5553                                                 222457
5554                                                 215046
5555                                                 217625
5556                                                 237307
5557                                                 302620
5558                                                 279494
5559                                                 355571
5560                                                 442153
5561                                                 285148
5562                                                 320378
5563                                                 249160
5564                                                 279266
5565                                                 224074
5566                                                  66629
5567                                                  66339
5568                                                  67126
5569                                                 103332
5570                                                  69819
5571                                                  59916
5572                                                  64122
5573                                                  78052
5574                                                  93809
5575                                                  62567
5576                                                  60121
5577                                                  57543
5578                                                  58351
5579                                                  57841
5580                                                  58682
5581                                                  55766
5582                                                  52853
5583                                                  58997
5584                                                  51628
5585                                                  58935
5586                                                  61461
5587                                                  60785
5588                                                  57622
5589                                                  65421
5590                                                  64407
5591                                                  64096
5592                                                  57584
5593                                                  57368
5594                                                  62876
5595                                                  65666
5596                                                  62567
5597                                                  66151
5598                                                  70766
5599                                                  67663
5600                                                  75658
5601                                                  74467
5602                                                  69674
5603                                                  67840
5604                                                  71188
5605                                                  82572
5606                                                  70468
5607                                                  70368
5608                                                  72820
5609                                                  84609
5610                                                  82179
5611                                                  96159
5612                                                 190312
5613                                                 174325
5614                                                  81884
5615                                                  81909
5616                                                  76382
5617                                                  83250
5618                                                  54530
5619                                                  38196
5620                                                  39117
5621                                                  31969
5622                                                  53166
5623                                                  38662
5624                                                  28307
5625                                                  31177
5626                                                  37876
5627                                                  40651
5628                                                  33724
5629                                                  49926
5630                                                  30893
5631                                                  28953
5632                                                  33499
5633                                                  29756
5634                                                  35147
5635                                                  36441
5636                                                  30130
5637                                                  45399
5638                                                  42285
5639                                                  36652
5640                                                  37253
5641                                                  36727
5642                                                  36290
5643                                                  35748
5644                                                  47772
5645                                                  41134
5646                                                  41341
5647                                                  40472
5648                                                  40251
5649                                                  42303
5650                                                  40637
5651                                                  35312
5652                                                  38987
5653                                                  60550
5654                                                  41327
5655                                                  41816
5656                                                  43003
5657                                                  39292
5658                                                  41043
5659                                                  43566
5660                                                  33892
5661                                                  33062
5662                                                  29234
5663                                                  31701
5664                                                  33444
5665                                                  41601
5666                                                  36809
5667                                                  35678
5668                                                  34251
5669                                                  36085
5670                                                  35597
5671                                                  27845
5672                                                   9623
5673                                                  10727
5674                                                  10139
5675                                                  13210
5676                                                  12171
5677                                                  10677
5678                                                  11494
5679                                                  15689
5680                                                  13003
5681                                                  14781
5682                                                  19871
5683                                                  20138
5684                                                  16621
5685                                                  14890
5686                                                  10698
5687                                                  11827
5688                                                  10795
5689                                                  10210
5690                                                   7262
5691                                                   6723
5692                                                   7303
5693                                                   8619
5694                                                   8415
5695                                                   7994
5696                                                   9162
5697                                                   8736
5698                                                   6572
5699                                                   5988
5700                                                   5379
5701                                                   5556
5702                                                   5140
5703                                                   5970
5704                                                   5556
5705                                                   5153
5706                                                   6703
5707                                                   5759
5708                                                   9577
5709                                                   7319
5710                                                   5716
5711                                                   7963
5712                                                   6860
5713                                                   5709
5714                                                   5730
5715                                                   9209
5716                                                  11751
5717                                                  27791
5718                                                  83640
5719                                                  50890
5720                                                   5792
5721                                                   4741
5722                                                   5431
5723                                                   7544
5724                                                   4120
5725                                                   5925
5726                                                   7431
5727                                                   7563
5728                                                   7934
5729                                                   7805
5730                                                   6353
5731                                                   8870
5732                                                  10402
5733                                                   9707
5734                                                  11383
5735                                                  24441
5736                                                  26275
5737                                                  25377
5738                                                  22792
5739                                                  11991
5740                                                   7008
5741                                                   2860
5742                                                   2894
5743                                                   1872
5744                                                   2619
5745                                                   2321
5746                                                   2068
5747                                                   1769
5748                                                   1918
5749                                                   1791
5750                                                   2076
5751                                                   1954
5752                                                   1955
5753                                                   2124
5754                                                   1737
5755                                                   1454
5756                                                   1589
5757                                                   1486
5758                                                   1762
5759                                                   1772
5760                                                   1803
5761                                                   2555
5762                                                   3104
5763                                                   1954
5764                                                   3855
5765                                                   2184
5766                                                   1918
5767                                                   1457
5768                                                   1421
5769                                                   1196
5770                                                   1361
5771                                                   1773
5772                                                   1561
5773                                                   1542
5774                                                   1692
5775                                                   2012
5776                                                   1507
5777                                                   1285
5778                                                2280934
5779                                                1934362
5780                                                1901831
5781                                                2234102
5782                                                2333912
5783                                                1734281
5784                                                1879513
5785                                                2309785
5786                                                2148627
5787                                                1981731
5788                                                1604917
5789                                                1348029
5790                                                1377101
5791                                                1288267
5792                                                1383480
5793                                                1571530
5794                                                1677368
5795                                                1856634
5796                                                1889887
5797                                                1995269
5798                                                2346711
5799                                                2313743
5800                                                2179200
5801                                                2201005
5802                                                2319570
5803                                                2634902
5804                                                2527124
5805                                                2706875
5806                                                2691572
5807                                                2302945
5808                                                2378539
5809                                                2307940
5810                                                2077114
5811                                                2375685
5812                                                2851510
5813                                                2197824
5814                                                2027855
5815                                                2047142
5816                                                1926188
5817                                                1856673
5818                                                1693589
5819                                                1857645
5820                                                1871004
5821                                                1961188
5822                                                2193500
5823                                                1999799
5824                                                2429385
5825                                                3986430
5826                                                3009291
5827                                                3089604
5828                                                2075030
5829                                                1988635
5830                                                2266313
5831                                                  60767
5832                                                  53317
5833                                                  58017
5834                                                  58726
5835                                                  58826
5836                                                  45363
5837                                                  47542
5838                                                  53681
5839                                                  46741
5840                                                  52951
5841                                                  44544
5842                                                  45267
5843                                                  50018
5844                                                  43576
5845                                                  47607
5846                                                  56018
5847                                                  45960
5848                                                  49285
5849                                                  60886
5850                                                  57231
5851                                                  47263
5852                                                  43174
5853                                                  54840
5854                                                  50924
5855                                                  44530
5856                                                  62331
5857                                                  60812
5858                                                  53140
5859                                                  45497
5860                                                  50866
5861                                                  59350
5862                                                  55170
5863                                                  56078
5864                                                  52616
5865                                                  76881
5866                                                  57129
5867                                                  48221
5868                                                  48495
5869                                                  50325
5870                                                  47420
5871                                                  48844
5872                                                  42389
5873                                                  48009
5874                                                  43410
5875                                                  50330
5876                                                  46010
5877                                                  58974
5878                                                  95176
5879                                                  48873
5880                                                  42582
5881                                                  39546
5882                                                  56740
5883                                                  47765
5884                                                 144034
5885                                                  83138
5886                                                 113960
5887                                                 142086
5888                                                  99971
5889                                                  71736
5890                                                  86790
5891                                                  90581
5892                                                  96106
5893                                                 117423
5894                                                  84591
5895                                                  89192
5896                                                  62315
5897                                                  73349
5898                                                  79162
5899                                                  59561
5900                                                  65245
5901                                                  65247
5902                                                  87298
5903                                                  91478
5904                                                  64034
5905                                                  68696
5906                                                  76111
5907                                                  79551
5908                                                  91095
5909                                                  82890
5910                                                 128743
5911                                                 132426
5912                                                  68578
5913                                                  87527
5914                                                  79878
5915                                                  62151
5916                                                  67698
5917                                                  99653
5918                                                 133905
5919                                                  81817
5920                                                  81460
5921                                                  65083
5922                                                  70040
5923                                                  64888
5924                                                  60039
5925                                                  61928
5926                                                  59930
5927                                                  59137
5928                                                  52554
5929                                                  61491
5930                                                 144293
5931                                                 378806
5932                                                  86213
5933                                                 120093
5934                                                  78836
5935                                                  79630
5936                                                  87696
5937                                                  86073
5938                                                  34444
5939                                                  21460
5940                                                   5977
5941                                                   5197
5942                                                   3566
5943                                                   4314
5944                                                   5473
5945                                                   4581
5946                                                   4683
5947                                                   4778
5948                                                   6137
5949                                                   6658
5950                                                   7515
5951                                                   4560
5952                                                   4223
5953                                                   4526
5954                                                   4651
5955                                                   4200
5956                                                   4339
5957                                                   4610
5958                                                   4311
5959                                                   3802
5960                                                   4245
5961                                                   3860
5962                                                   3261
5963                                                   3711
5964                                                   4290
5965                                                   4453
5966                                                   7487
5967                                                  11154
5968                                                  10452
5969                                                   7946
5970                                                   8787
5971                                                   8438
5972                                                  11134
5973                                                   7434
5974                                                   7866
5975                                                   8796
5976                                                   7283
5977                                                   2738
5978                                                   2059
5979                                                   3110
5980                                                   2740
5981                                                   3307
5982                                                   2624
5983                                                   3907
5984                                                   3229
5985                                                   3041
5986                                                   3186
5987                                                   2940
5988                                                   4147
5989                                                   2647
5990                                                 103506
5991                                                  47452
5992                                                  55233
5993                                                  62870
5994                                                  74697
5995                                                  60008
5996                                                  78940
5997                                                  98437
5998                                                 108463
5999                                                  72723
6000                                                  46747
6001                                                  47436
6002                                                  46870
6003                                                  53368
6004                                                  53450
6005                                                  51846
6006                                                  54123
6007                                                  53868
6008                                                  86236
6009                                                  93231
6010                                                  59729
6011                                                  82089
6012                                                  87045
6013                                                  62107
6014                                                  61745
6015                                                  94170
6016                                                 109297
6017                                                 100496
6018                                                 115493
6019                                                  82014
6020                                                  82888
6021                                                  81187
6022                                                  84952
6023                                                  91333
6024                                                 126893
6025                                                  87270
6026                                                  70225
6027                                                  97053
6028                                                 107031
6029                                                  75025
6030                                                  68172
6031                                                  64866
6032                                                  62329
6033                                                  74970
6034                                                  63979
6035                                                  60793
6036                                                 100274
6037                                                 140454
6038                                                  66807
6039                                                  75920
6040                                                  90932
6041                                                 105023
6042                                                  87684
6043                                                 481105
6044                                                 565236
6045                                                 540252
6046                                                 637876
6047                                                 575766
6048                                                 523362
6049                                                 561075
6050                                                 509106
6051                                                 600272
6052                                                 548903
6053                                                 525022
6054                                                 480910
6055                                                 488696
6056                                                 492842
6057                                                 523101
6058                                                 562493
6059                                                 569828
6060                                                 589765
6061                                                 631381
6062                                                 624827
6063                                                 677059
6064                                                 663949
6065                                                 636100
6066                                                 640832
6067                                                 572059
6068                                                 675095
6069                                                 637768
6070                                                 688782
6071                                                 734957
6072                                                 734136
6073                                                 712765
6074                                                 747618
6075                                                 728359
6076                                                 674072
6077                                                 824175
6078                                                 653424
6079                                                 673961
6080                                                 756531
6081                                                 710379
6082                                                 798833
6083                                                 700655
6084                                                 591093
6085                                                 617249
6086                                                 558907
6087                                                 821922
6088                                                 501922
6089                                                 624160
6090                                                 882269
6091                                                 789341
6092                                                 850531
6093                                                 750094
6094                                                 556815
6095                                                 526728
6096                                                 127053
6097                                                 142027
6098                                                 157024
6099                                                 150701
6100                                                 149815
6101                                                 125916
6102                                                 132242
6103                                                 137872
6104                                                 122061
6105                                                 130556
6106                                                 126274
6107                                                 126305
6108                                                 133463
6109                                                 114291
6110                                                 125320
6111                                                 150992
6112                                                 114530
6113                                                 122403
6114                                                 122874
6115                                                 113450
6116                                                 148506
6117                                                 145451
6118                                                 145887
6119                                                 149314
6120                                                 108384
6121                                                 164107
6122                                                 124816
6123                                                 165524
6124                                                 185316
6125                                                 192092
6126                                                 198732
6127                                                 172557
6128                                                 145487
6129                                                 166017
6130                                                 147251
6131                                                 145243
6132                                                 162810
6133                                                 164061
6134                                                 136194
6135                                                 150611
6136                                                 158589
6137                                                 152539
6138                                                 138467
6139                                                 142858
6140                                                 139038
6141                                                 153258
6142                                                 204918
6143                                                 239164
6144                                                 172615
6145                                                 149313
6146                                                 147752
6147                                                 169104
6148                                                 138364
6149                                                 146334
6150                                                  50834
6151                                                  60129
6152                                                  89162
6153                                                 101693
6154                                                  71317
6155                                                 112881
6156                                                 163957
6157                                                 154127
6158                                                  91775
6159                                                  57747
6160                                                  57305
6161                                                  55417
6162                                                  56101
6163                                                  61576
6164                                                  56672
6165                                                  60774
6166                                                  58132
6167                                                  99924
6168                                                 113909
6169                                                  64305
6170                                                 101372
6171                                                 114943
6172                                                  66397
6173                                                 100370
6174                                                 119585
6175                                                  65065
6176                                                  96114
6177                                                 127581
6178                                                  71645
6179                                                  77884
6180                                                  83267
6181                                                  71334
6182                                                 110698
6183                                                 160715
6184                                                  64498
6185                                                  60299
6186                                                  68514
6187                                                  64659
6188                                                  65914
6189                                                  69602
6190                                                  71290
6191                                                  73391
6192                                                 117593
6193                                                 133390
6194                                                  82085
6195                                                 148920
6196                                                 214827
6197                                                 125847
6198                                                 129913
6199                                                 124453
6200                                                 157161
6201                                                 100364
6202                                                   2523
6203                                                   2190
6204                                                   2042
6205                                                   2212
6206                                                   2268
6207                                                   1864
6208                                                   2688
6209                                                   2585
6210                                                   2335
6211                                                   2264
6212                                                   2539
6213                                                   3560
6214                                                   2689
6215                                                   3178
6216                                                   2101
6217                                                   1714
6218                                                   2360
6219                                                   2660
6220                                                   1979
6221                                                   2504
6222                                                   3913
6223                                                   2082
6224                                                   2163
6225                                                   2241
6226                                                   2520
6227                                                   2225
6228                                                   2074
6229                                                   2010
6230                                                   2181
6231                                                   2308
6232                                                   2255
6233                                                   1824
6234                                                   1973
6235                                                   1660
6236                                                   2038
6237                                                   2009
6238                                                   1826
6239                                                   1857
6240                                                   2188
6241                                                   1804
6242                                                   1890
6243                                                   1750
6244                                                   1645
6245                                                   1498
6246                                                   1387
6247                                                   1224
6248                                                   1277
6249                                                   1574
6250                                                   1392
6251                                                   1153
6252                                                    935
6253                                                   1226
6254                                                   1218
6255                                                1092011
6256                                                 507534
6257                                                 605188
6258                                                 609987
6259                                                 603156
6260                                                 483896
6261                                                 581511
6262                                                 699961
6263                                                 696600
6264                                                 570309
6265                                                 444287
6266                                                 446923
6267                                                 419515
6268                                                 444534
6269                                                 458465
6270                                                 421370
6271                                                 441484
6272                                                 445856
6273                                                 629034
6274                                                 666458
6275                                                 504445
6276                                                 574438
6277                                                 628374
6278                                                 557160
6279                                                 613738
6280                                                 695313
6281                                                 740503
6282                                                 718886
6283                                                 707123
6284                                                 596035
6285                                                 559145
6286                                                 580441
6287                                                 605625
6288                                                 649626
6289                                                 923002
6290                                                 633332
6291                                                 536785
6292                                                 561510
6293                                                 583906
6294                                                 504640
6295                                                 474957
6296                                                 463864
6297                                                 460240
6298                                                 563498
6299                                                 565283
6300                                                 458083
6301                                                 765348
6302                                                1338530
6303                                                 593815
6304                                                 680491
6305                                                 667329
6306                                                 725717
6307                                                 636278
6308                                                  35963
6309                                                  37343
6310                                                  35591
6311                                                  43089
6312                                                  39382
6313                                                  30488
6314                                                  30820
6315                                                  31166
6316                                                  31048
6317                                                  30541
6318                                                  30374
6319                                                  32691
6320                                                  34257
6321                                                  37491
6322                                                  36336
6323                                                  32974
6324                                                  32676
6325                                                  39154
6326                                                  40614
6327                                                  40413
6328                                                  42116
6329                                                  42013
6330                                                  41369
6331                                                  44426
6332                                                  42951
6333                                                  41066
6334                                                  40998
6335                                                  40133
6336                                                  45186
6337                                                  50903
6338                                                  50485
6339                                                  53528
6340                                                  52736
6341                                                  52237
6342                                                  53636
6343                                                  54369
6344                                                  53509
6345                                                  50601
6346                                                  47838
6347                                                  53424
6348                                                  52944
6349                                                  59161
6350                                                  51307
6351                                                  53962
6352                                                  52855
6353                                                  56042
6354                                                 105171
6355                                                 117876
6356                                                  64322
6357                                                  49775
6358                                                  47537
6359                                                  51591
6360                                                  41801
6361                                                   4805
6362                                                   5611
6363                                                   6272
6364                                                  18098
6365                                                   5716
6366                                                   5695
6367                                                   4591
6368                                                   6490
6369                                                   5209
6370                                                   5939
6371                                                   7441
6372                                                   7043
6373                                                   7540
6374                                                   6771
6375                                                   4810
6376                                                   7489
6377                                                   5195
6378                                                   4477
6379                                                   4246
6380                                                   3660
6381                                                   4240
6382                                                   5057
6383                                                   5478
6384                                                   8142
6385                                                  10004
6386                                                  10848
6387                                                   9173
6388                                                   8658
6389                                                   5735
6390                                                  11602
6391                                                  10922
6392                                                  10672
6393                                                  10370
6394                                                   4502
6395                                                   6755
6396                                                   7021
6397                                                   8181
6398                                                   6809
6399                                                   7410
6400                                                  10131
6401                                                   7861
6402                                                   5615
6403                                                   4902
6404                                                   8437
6405                                                  11083
6406                                                  30001
6407                                                  85641
6408                                                  52461
6409                                                   4741
6410                                                   4349
6411                                                   4665
6412                                                   5105
6413                                                   2772
6414                                                 564063
6415                                                 486643
6416                                                 429277
6417                                                 459265
6418                                                 540763
6419                                                 501157
6420                                                 620361
6421                                                 514065
6422                                                 526091
6423                                                 481865
6424                                                 492168
6425                                                 476687
6426                                                 491562
6427                                                 472252
6428                                                 470511
6429                                                 460807
6430                                                 606027
6431                                                 426424
6432                                                 510227
6433                                                 458024
6434                                                 406049
6435                                                 552896
6436                                                 536259
6437                                                 510128
6438                                                 475986
6439                                                 565234
6440                                                 559731
6441                                                 569850
6442                                                 583953
6443                                                 627611
6444                                                 603107
6445                                                 627786
6446                                                 579271
6447                                                 625728
6448                                                 732115
6449                                                 576270
6450                                                 665436
6451                                                 820487
6452                                                 684060
6453                                                 879080
6454                                                 663134
6455                                                 653307
6456                                                 619358
6457                                                 697103
6458                                                1067092
6459                                                 565042
6460                                                 781130
6461                                                1026765
6462                                                 789020
6463                                                 798586
6464                                                1134750
6465                                                 933182
6466                                                 985040
6467                                                  67905
6468                                                  22249
6469                                                  18372
6470                                                   9369
6471                                                   8806
6472                                                   7132
6473                                                   7408
6474                                                  11814
6475                                                   8576
6476                                                   8565
6477                                                   8945
6478                                                   9351
6479                                                  10072
6480                                                   9051
6481                                                   7949
6482                                                   7890
6483                                                   8832
6484                                                   7686
6485                                                   8672
6486                                                   7183
6487                                                   7054
6488                                                   7818
6489                                                   7453
6490                                                   7483
6491                                                   9862
6492                                                   8754
6493                                                   8629
6494                                                   7379
6495                                                  11624
6496                                                  11584
6497                                                  11335
6498                                                  11652
6499                                                  13080
6500                                                  17927
6501                                                  22285
6502                                                  14828
6503                                                  11832
6504                                                  13018
6505                                                  11776
6506                                                  11376
6507                                                  12343
6508                                                  12799
6509                                                  10980
6510                                                  12866
6511                                                  12096
6512                                                  12336
6513                                                  17435
6514                                                  19444
6515                                                  12914
6516                                                  13553
6517                                                  15259
6518                                                  17784
6519                                                  16193
6520                                                 115794
6521                                                  67109
6522                                                  98660
6523                                                  95943
6524                                                  87017
6525                                                  65331
6526                                                  84638
6527                                                  85332
6528                                                  74309
6529                                                 108447
6530                                                  89649
6531                                                  75857
6532                                                  89903
6533                                                  68331
6534                                                  82615
6535                                                  82016
6536                                                  62701
6537                                                  82574
6538                                                  83467
6539                                                  86429
6540                                                  90069
6541                                                  82275
6542                                                  89090
6543                                                 101545
6544                                                  88735
6545                                                  98758
6546                                                 113927
6547                                                  99600
6548                                                  94578
6549                                                 119698
6550                                                 119655
6551                                                  96509
6552                                                  86716
6553                                                  79945
6554                                                 155607
6555                                                 150982
6556                                                  85994
6557                                                  83665
6558                                                  81449
6559                                                  84325
6560                                                  81656
6561                                                  72614
6562                                                  78257
6563                                                  71350
6564                                                  90292
6565                                                  72634
6566                                                 107196
6567                                                 191954
6568                                                  87624
6569                                                  75809
6570                                                  80023
6571                                                  47783
6572                                                  94910
6573                                                  57664
6574                                                  63831
6575                                                  62937
6576                                                  65072
6577                                                  66925
6578                                                  52245
6579                                                  60519
6580                                                  57132
6581                                                  57828
6582                                                  56225
6583                                                  61741
6584                                                  57479
6585                                                  62574
6586                                                  58262
6587                                                  59560
6588                                                  64271
6589                                                 116268
6590                                                  95446
6591                                                 107288
6592                                                 109202
6593                                                 100523
6594                                                 114985
6595                                                 113472
6596                                                 114294
6597                                                 131681
6598                                                 138190
6599                                                 129619
6600                                                 130867
6601                                                 133508
6602                                                 158132
6603                                                 137455
6604                                                 130568
6605                                                 117367
6606                                                 125448
6607                                                 160728
6608                                                 113105
6609                                                 118344
6610                                                 119501
6611                                                 115812
6612                                                 118798
6613                                                 117623
6614                                                 111396
6615                                                 114791
6616                                                 119712
6617                                                  97278
6618                                                 135002
6619                                                 128160
6620                                                 286395
6621                                                 120542
6622                                                 133276
6623                                                 118905
6624                                                 112947
6625                                                  95268
6626                                                1368620
6627                                                1076721
6628                                                1046466
6629                                                1024593
6630                                                1177940
6631                                                 987928
6632                                                1042472
6633                                                1225567
6634                                                1079147
6635                                                1085429
6636                                                 924451
6637                                                 741759
6638                                                 753730
6639                                                 725653
6640                                                 768659
6641                                                 837463
6642                                                 898754
6643                                                1050439
6644                                                1096036
6645                                                1207541
6646                                                1412649
6647                                                1359070
6648                                                1263812
6649                                                1266619
6650                                                1327686
6651                                                1520215
6652                                                1521073
6653                                                1609002
6654                                                1581223
6655                                                1280363
6656                                                1330141
6657                                                1296067
6658                                                1169689
6659                                                1376169
6660                                                1745366
6661                                                1329982
6662                                                1118406
6663                                                1044500
6664                                                 957440
6665                                                 975079
6666                                                 861802
6667                                                 965782
6668                                                 974291
6669                                                 897311
6670                                                 980146
6671                                                1029675
6672                                                1181121
6673                                                1741607
6674                                                1439454
6675                                                1715034
6676                                                1075573
6677                                                 969758
6678                                                1223299
6679                                                  26049
6680                                                   6596
6681                                                   6894
6682                                                   6065
6683                                                   2489
6684                                                   1858
6685                                                   2182
6686                                                   3181
6687                                                   3045
6688                                                   3751
6689                                                   3538
6690                                                   3404
6691                                                   4093
6692                                                   3158
6693                                                   2257
6694                                                   2266
6695                                                   2337
6696                                                   2707
6697                                                   3038
6698                                                   2852
6699                                                   2736
6700                                                   2317
6701                                                   2385
6702                                                   2204
6703                                                   3059
6704                                                   2696
6705                                                   2606
6706                                                   2137
6707                                                   2582
6708                                                   2252
6709                                                   2191
6710                                                   2099
6711                                                   2091
6712                                                   2266
6713                                                   2467
6714                                                   2431
6715                                                   2092
6716                                                   2110
6717                                                   2222
6718                                                   2229
6719                                                   2435
6720                                                   1884
6721                                                   2122
6722                                                   1915
6723                                                   2182
6724                                                   1980
6725                                                   2079
6726                                                   2215
6727                                                   2083
6728                                                   2408
6729                                                   2069
6730                                                   2489
6731                                                   1692
6732                                                 499353
6733                                                 336797
6734                                                 449485
6735                                                 484033
6736                                                 358080
6737                                                 302437
6738                                                 418092
6739                                                 336664
6740                                                 314039
6741                                                 450543
6742                                                 378185
6743                                                 324878
6744                                                 302211
6745                                                 254128
6746                                                 291021
6747                                                 278164
6748                                                 266570
6749                                                 323446
6750                                                 302628
6751                                                 317677
6752                                                 383487
6753                                                 341186
6754                                                 342501
6755                                                 374063
6756                                                 367931
6757                                                 371244
6758                                                 419259
6759                                                 349941
6760                                                 311873
6761                                                 447673
6762                                                 449727
6763                                                 403556
6764                                                 383030
6765                                                 373018
6766                                                 569792
6767                                                 511843
6768                                                 333198
6769                                                 329068
6770                                                 312737
6771                                                 299395
6772                                                 297987
6773                                                 297628
6774                                                 286726
6775                                                 273177
6776                                                 328099
6777                                                 262618
6778                                                 462515
6779                                                 689711
6780                                                 271896
6781                                                 308900
6782                                                 251140
6783                                                 209904
6784                                                 309692
6785                                                 937260
6786                                                 589483
6787                                                 586473
6788                                                 728666
6789                                                 755828
6790                                                 488106
6791                                                 567752
6792                                                 670773
6793                                                 797196
6794                                                 639487
6795                                                 537789
6796                                                 529662
6797                                                 515354
6798                                                 484619
6799                                                 494295
6800                                                 512068
6801                                                 466611
6802                                                 512115
6803                                                 577443
6804                                                 613834
6805                                                 595916
6806                                                 601191
6807                                                 613040
6808                                                 613827
6809                                                 566735
6810                                                 643600
6811                                                 663115
6812                                                 673327
6813                                                 600416
6814                                                 640517
6815                                                 699462
6816                                                 750399
6817                                                 740206
6818                                                 721744
6819                                                 926758
6820                                                 771445
6821                                                 617150
6822                                                 618950
6823                                                 650950
6824                                                 670531
6825                                                 673396
6826                                                 607104
6827                                                 718846
6828                                                 737562
6829                                                 689257
6830                                                 665322
6831                                                 936824
6832                                                1220323
6833                                                 740797
6834                                                 737949
6835                                                 693675
6836                                                 777266
6837                                                 653896
6838                                                 159029
6839                                                  96259
6840                                                  97644
6841                                                 123093
6842                                                 123038
6843                                                  83217
6844                                                 104128
6845                                                 121879
6846                                                 144908
6847                                                 125955
6848                                                  97915
6849                                                  87210
6850                                                  77117
6851                                                  73759
6852                                                  74533
6853                                                  70892
6854                                                  72428
6855                                                  76965
6856                                                  82465
6857                                                 114191
6858                                                 124291
6859                                                 106179
6860                                                 106460
6861                                                  95944
6862                                                  93140
6863                                                 101168
6864                                                 112545
6865                                                 114570
6866                                                 108421
6867                                                 107489
6868                                                 133059
6869                                                 149462
6870                                                 139176
6871                                                 124826
6872                                                 169744
6873                                                 147000
6874                                                 109054
6875                                                 111412
6876                                                 110091
6877                                                 122671
6878                                                 135016
6879                                                 110762
6880                                                 154343
6881                                                 174850
6882                                                 121850
6883                                                 113868
6884                                                 139709
6885                                                 182396
6886                                                 109656
6887                                                 112821
6888                                                 109164
6889                                                 126439
6890                                                 112089
6891                                                 164148
6892                                                 127281
6893                                                 151886
6894                                                 144317
6895                                                 163448
6896                                                  96043
6897                                                 118191
6898                                                 176864
6899                                                 131135
6900                                                 169106
6901                                                 159834
6902                                                 135384
6903                                                 207981
6904                                                 132185
6905                                                 129861
6906                                                 136981
6907                                                 123071
6908                                                 129857
6909                                                 133655
6910                                                 128288
6911                                                 130628
6912                                                 130001
6913                                                 142551
6914                                                 155839
6915                                                 120631
6916                                                 156936
6917                                                 177147
6918                                                 168867
6919                                                 177973
6920                                                 187011
6921                                                 158512
6922                                                 182795
6923                                                 155348
6924                                                 139087
6925                                                 261367
6926                                                 193113
6927                                                 134822
6928                                                 156177
6929                                                 134722
6930                                                 137881
6931                                                 133158
6932                                                 130994
6933                                                 145740
6934                                                 134356
6935                                                 190220
6936                                                 123639
6937                                                 160041
6938                                                 400600
6939                                                 208315
6940                                                 138670
6941                                                 171326
6942                                                 124109
6943                                                 175386
6944                                                  36680
6945                                                  36685
6946                                                  35511
6947                                                  48483
6948                                                  42352
6949                                                  39943
6950                                                  47063
6951                                                  51661
6952                                                  61830
6953                                                  74424
6954                                                  71423
6955                                                  75695
6956                                                  75445
6957                                                  83288
6958                                                  77197
6959                                                  71451
6960                                                  76108
6961                                                  72173
6962                                                  73401
6963                                                  72101
6964                                                  64028
6965                                                  59767
6966                                                  63099
6967                                                  63537
6968                                                  71450
6969                                                  82965
6970                                                  56685
6971                                                  53675
6972                                                  55733
6973                                                  54294
6974                                                  51741
6975                                                  52862
6976                                                  54128
6977                                                  51359
6978                                                  56815
6979                                                  48043
6980                                                  45533
6981                                                  38975
6982                                                  37746
6983                                                  36139
6984                                                  28450
6985                                                  16705
6986                                                  16829
6987                                                  31240
6988                                                  37239
6989                                                 107882
6990                                                 294591
6991                                                 172266
6992                                                  17845
6993                                                  15652
6994                                                  14302
6995                                                  18585
6996                                                  10499
6997                                                 235982
6998                                                 186562
6999                                                 224383
7000                                                 235645
7001                                                 219287
7002                                                 208161
7003                                                 192312
7004                                                 234190
7005                                                 228843
7006                                                 251453
7007                                                 289343
7008                                                 302669
7009                                                 291047
7010                                                 303877
7011                                                 264820
7012                                                 255828
7013                                                 264530
7014                                                 269503
7015                                                 246451
7016                                                 233400
7017                                                 235129
7018                                                 227867
7019                                                 232618
7020                                                 235859
7021                                                 266663
7022                                                 289590
7023                                                 242272
7024                                                 232667
7025                                                 237157
7026                                                 246827
7027                                                 241585
7028                                                 265254
7029                                                 302108
7030                                                 235697
7031                                                 305719
7032                                                 286828
7033                                                 244169
7034                                                 222626
7035                                                 221283
7036                                                 235162
7037                                                 201606
7038                                                 176542
7039                                                 166068
7040                                                 237802
7041                                                 206241
7042                                                 321067
7043                                                 736158
7044                                                 624600
7045                                                 201045
7046                                                 206779
7047                                                 203359
7048                                                 203756
7049                                                 174843
7050                                                  12056
7051                                                   8585
7052                                                   8589
7053                                                   9450
7054                                                  15373
7055                                                   7679
7056                                                   8451
7057                                                  19108
7058                                                   9955
7059                                                  10155
7060                                                  12997
7061                                                  12295
7062                                                  13748
7063                                                  12238
7064                                                  10779
7065                                                  17182
7066                                                  23482
7067                                                  24015
7068                                                  11730
7069                                                   5633
7070                                                   8994
7071                                                   7918
7072                                                   7321
7073                                                   7288
7074                                                  12060
7075                                                  12466
7076                                                   9384
7077                                                   8947
7078                                                   9653
7079                                                   9492
7080                                                   8209
7081                                                  10552
7082                                                  10135
7083                                                   7560
7084                                                   8809
7085                                                   9127
7086                                                  12604
7087                                                  11163
7088                                                  14321
7089                                                  12862
7090                                                  10552
7091                                                   7926
7092                                                   8863
7093                                                   9418
7094                                                   9612
7095                                                   8811
7096                                                  13508
7097                                                  23160
7098                                                  15901
7099                                                  16607
7100                                                  13398
7101                                                  13448
7102                                                  20667
7103                                                 314324
7104                                                 178470
7105                                                 248831
7106                                                 267852
7107                                                 202974
7108                                                 171834
7109                                                 212316
7110                                                 203135
7111                                                 185134
7112                                                 257257
7113                                                 214853
7114                                                 176623
7115                                                 195935
7116                                                 166612
7117                                                 172558
7118                                                 181121
7119                                                 159142
7120                                                 189268
7121                                                 189042
7122                                                 191383
7123                                                 227667
7124                                                 209093
7125                                                 208381
7126                                                 237300
7127                                                 202250
7128                                                 207541
7129                                                 247137
7130                                                 230886
7131                                                 215668
7132                                                 246114
7133                                                 250524
7134                                                 238131
7135                                                 225241
7136                                                 203336
7137                                                 340439
7138                                                 312135
7139                                                 220178
7140                                                 181940
7141                                                 189598
7142                                                 179140
     NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                   27351
2                                                   20702
3                                                   31019
4                                                   23741
5                                                   28890
6                                                   29732
7                                                   28442
8                                                   34483
9                                                   62980
10                                                  64608
11                                                  59732
12                                                  91047
13                                                  92780
14                                                  61871
15                                                  82763
16                                                  62486
17                                                  73676
18                                                  44839
19                                                  46224
20                                                  41992
21                                                  47040
22                                                  41907
23                                                  44087
24                                                  47838
25                                                  37953
26                                                  54675
27                                                  37699
28                                                  30232
29                                                  17701
30                                                  22414
31                                                  19543
32                                                  27284
33                                                  18619
34                                                  18861
35                                                  28568
36                                                  18366
37                                                  18041
38                                                  22420
39                                                  19254
40                                                  16652
41                                                  23420
42                                                  16508
43                                                  15789
44                                                  21184
45                                                  18325
46                                                  17420
47                                                  17163
48                                                  31583
49                                                  18718
50                                                  18702
51                                                  18958
52                                                  23821
53                                                 394104
54                                                 434591
55                                                 399852
56                                                 453587
57                                                 379156
58                                                 386138
59                                                 503470
60                                                 576513
61                                                 473819
62                                                 397911
63                                                 745385
64                                                 392009
65                                                 407610
66                                                 451061
67                                                 450283
68                                                 675524
69                                                 522568
70                                                 458207
71                                                 499100
72                                                 597185
73                                                 557364
74                                                 535167
75                                                 496509
76                                                 496206
77                                                 547537
78                                                 567641
79                                                 534535
80                                                 527867
81                                                 593500
82                                                 462951
83                                                 617814
84                                                 560740
85                                                 455167
86                                                 507104
87                                                 536710
88                                                 431533
89                                                 427623
90                                                 523170
91                                                 401279
92                                                 398051
93                                                 524971
94                                                 395837
95                                                 367671
96                                                 498873
97                                                 445971
98                                                 361677
99                                                 554857
100                                                666010
101                                                386399
102                                                393360
103                                                420838
104                                                552906
105                                                  2972
106                                                  2546
107                                                  2986
108                                                 12527
109                                                  2790
110                                                  3256
111                                                 12086
112                                                  4652
113                                                  4360
114                                                 10090
115                                                  9069
116                                                 33416
117                                                 10822
118                                                  5754
119                                                 21592
120                                                  4394
121                                                  5402
122                                                  5810
123                                                 14861
124                                                  5258
125                                                  5034
126                                                  5141
127                                                  4856
128                                                  5300
129                                                  5803
130                                                  8022
131                                                  6573
132                                                 15445
133                                                 17880
134                                                  7238
135                                                  7421
136                                                 14839
137                                                  7394
138                                                 15897
139                                                  7942
140                                                  7985
141                                                 21631
142                                                  8506
143                                                  9060
144                                                  7120
145                                                  6590
146                                                  7018
147                                                  7206
148                                                 23739
149                                                 16375
150                                                  7840
151                                                  9647
152                                                 36532
153                                                  7556
154                                                  6342
155                                                 10998
156                                                 24964
157                                                346965
158                                                390101
159                                                455362
160                                                407520
161                                                272719
162                                                383420
163                                                420937
164                                                542881
165                                                449532
166                                                430726
167                                                627504
168                                                378296
169                                                427359
170                                                463080
171                                                398673
172                                                560792
173                                                477868
174                                                438503
175                                                488292
176                                                464476
177                                                590998
178                                                468592
179                                                393282
180                                                477630
181                                                471640
182                                                418251
183                                                403231
184                                                404909
185                                                521255
186                                                421007
187                                                418105
188                                                490486
189                                                380514
190                                                476828
191                                                429586
192                                                352464
193                                                384880
194                                                294164
195                                                330425
196                                                339299
197                                                344397
198                                                308997
199                                                290513
200                                                383574
201                                                251341
202                                                281106
203                                                495732
204                                                373452
205                                                288095
206                                                287779
207                                                320577
208                                                396752
209                                                 39543
210                                                 38431
211                                                 40783
212                                                 58197
213                                                 35683
214                                                 38781
215                                                 41457
216                                                 49507
217                                                 61875
218                                                 36646
219                                                 40702
220                                                 50862
221                                                 38353
222                                                 60293
223                                                 39832
224                                                 48469
225                                                 49388
226                                                 61601
227                                                 43655
228                                                 45938
229                                                 56289
230                                                 44621
231                                                 45615
232                                                 54493
233                                                 47295
234                                                 56925
235                                                 51802
236                                                 47846
237                                                 48287
238                                                 58000
239                                                 54249
240                                                 55019
241                                                 61668
242                                                 73754
243                                                 50266
244                                                 49557
245                                                 52955
246                                                 45444
247                                                 51024
248                                                 48430
249                                                 45420
250                                                 45689
251                                                 61974
252                                                 41685
253                                                 45394
254                                                 43272
255                                                 66262
256                                                 64771
257                                                 54007
258                                                 61860
259                                                 50985
260                                                 55693
261                                               1760956
262                                               1543281
263                                               1627241
264                                               2100246
265                                               1810203
266                                               1917125
267                                               2164099
268                                               1758965
269                                               2596785
270                                               2025016
271                                               2286236
272                                               2530023
273                                               2788318
274                                               2635028
275                                               2230694
276                                               2388023
277                                               2077194
278                                               1660274
279                                               1798911
280                                               1731349
281                                               2196705
282                                               1737846
283                                               1636660
284                                               1629872
285                                               1923893
286                                               2120303
287                                               1610910
288                                               1743509
289                                               1771909
290                                               1860329
291                                               1826497
292                                               1873206
293                                               1649624
294                                               1735132
295                                               3403145
296                                               1729487
297                                               2070974
298                                               1988818
299                                               1886169
300                                               1869271
301                                               2314394
302                                               1737354
303                                               1649936
304                                               2460932
305                                               1933699
306                                               1620462
307                                               2200394
308                                               3460744
309                                               1827783
310                                               2108450
311                                               2485720
312                                               2267755
313                                                 62956
314                                                 55521
315                                                 62544
316                                                 63075
317                                                 53471
318                                                 53645
319                                                 80245
320                                                 54456
321                                                 47080
322                                                 38357
323                                                 54519
324                                                 45669
325                                                 44671
326                                                 54210
327                                                 46906
328                                                 41617
329                                                 62187
330                                                 41701
331                                                 50476
332                                                 42068
333                                                 43783
334                                                 48687
335                                                 39608
336                                                 49072
337                                                 56317
338                                                 73470
339                                                 58162
340                                                 58913
341                                                 64829
342                                                 45227
343                                                 43260
344                                                 59208
345                                                 46424
346                                                 42864
347                                                 69447
348                                                 44797
349                                                 41954
350                                                 50390
351                                                 40448
352                                                 50741
353                                                 44727
354                                                 48596
355                                                 39245
356                                                 40007
357                                                 48499
358                                                 38592
359                                                 35567
360                                                 71210
361                                                 44001
362                                                 40476
363                                                 38119
364                                                 47221
365                                                445219
366                                                464574
367                                                451470
368                                                455048
369                                                422479
370                                                553545
371                                                441754
372                                                498562
373                                                562215
374                                                454353
375                                                482992
376                                                503814
377                                                485262
378                                                532029
379                                                534644
380                                                546965
381                                                581941
382                                                570147
383                                                550360
384                                                609692
385                                                526303
386                                                559825
387                                                577460
388                                                560872
389                                                545739
390                                                661207
391                                                524477
392                                                536926
393                                                586037
394                                                544664
395                                                518850
396                                                611797
397                                                569043
398                                                545784
399                                                690168
400                                                543002
401                                                594215
402                                                488323
403                                                530947
404                                                545318
405                                                596342
406                                                600833
407                                                523118
408                                                637043
409                                                533387
410                                                488592
411                                                499138
412                                                824745
413                                                488218
414                                                533718
415                                                558488
416                                                550752
417                                                100444
418                                                108931
419                                                123545
420                                                129979
421                                                 94094
422                                                115591
423                                                129292
424                                                156268
425                                                166868
426                                                132626
427                                                131738
428                                                146962
429                                                157238
430                                                138938
431                                                139043
432                                                139864
433                                                154106
434                                                153833
435                                                141969
436                                                146748
437                                                144958
438                                                142848
439                                                139527
440                                                146966
441                                                148643
442                                                165480
443                                                144984
444                                                158957
445                                                145975
446                                                146360
447                                                143894
448                                                152036
449                                                150324
450                                                172174
451                                                162213
452                                                138764
453                                                144901
454                                                120830
455                                                135094
456                                                122178
457                                                137561
458                                                131234
459                                                147536
460                                                157401
461                                                134259
462                                                122866
463                                                140927
464                                                224968
465                                                162645
466                                                128858
467                                                153100
468                                                168765
469                                                 27121
470                                                 23198
471                                                 21751
472                                                 33565
473                                                 22858
474                                                 25644
475                                                 26706
476                                                 35337
477                                                 31821
478                                                 23351
479                                                 33117
480                                                 39208
481                                                 38396
482                                                 33743
483                                                 31599
484                                                 31465
485                                                 40881
486                                                 32173
487                                                 29728
488                                                 36257
489                                                 52440
490                                                 30064
491                                                 25540
492                                                 33397
493                                                 32449
494                                                 39344
495                                                 38878
496                                                 40383
497                                                 33535
498                                                 33225
499                                                 21814
500                                                 37314
501                                                 38624
502                                                 27581
503                                                 53621
504                                                 28964
505                                                 40370
506                                                 28066
507                                                 30313
508                                                 25151
509                                                 40166
510                                                 27040
511                                                 37382
512                                                 36035
513                                                 26134
514                                                 20940
515                                                 23239
516                                                 59740
517                                                 32775
518                                                 26459
519                                                 34844
520                                                 51860
521                                                276557
522                                                257532
523                                                319790
524                                                412692
525                                                244880
526                                                264821
527                                                263132
528                                                278245
529                                                376913
530                                                301144
531                                                266044
532                                                349744
533                                                439095
534                                                390555
535                                                425539
536                                                494079
537                                                505569
538                                                309275
539                                                321325
540                                                287299
541                                                332173
542                                                253861
543                                                406524
544                                                364124
545                                                319278
546                                                334916
547                                                302578
548                                                375821
549                                                353165
550                                                319284
551                                                315653
552                                                299938
553                                                261026
554                                                357330
555                                                509070
556                                                270228
557                                                284293
558                                                288421
559                                                387746
560                                                396361
561                                                297656
562                                                368421
563                                                371564
564                                                358628
565                                                305789
566                                                299799
567                                                376914
568                                                495262
569                                                271152
570                                                374231
571                                                348535
572                                                374421
573                                                246747
574                                                188263
575                                                321764
576                                                378124
577                                                179982
578                                                323797
579                                                428999
580                                                354455
581                                                446008
582                                                393921
583                                                435492
584                                                432102
585                                                364774
586                                                386987
587                                                461273
588                                                451936
589                                                420366
590                                                421032
591                                                318116
592                                                348864
593                                                377129
594                                                423520
595                                                376355
596                                                513055
597                                                423853
598                                                428389
599                                                362226
600                                                405470
601                                                401133
602                                                439309
603                                                365471
604                                                369924
605                                                305201
606                                                454026
607                                                485743
608                                                381779
609                                                544167
610                                                574793
611                                                396450
612                                                371990
613                                                380285
614                                                403061
615                                                491584
616                                                487874
617                                                584094
618                                                404107
619                                                466313
620                                                608156
621                                                422435
622                                                500684
623                                                427723
624                                                429518
625                                                 50546
626                                                 42663
627                                                 38089
628                                                 78806
629                                                 38244
630                                                 55945
631                                                 35473
632                                                 72647
633                                                 67252
634                                                 49928
635                                                 97788
636                                                105188
637                                                 60336
638                                                 43702
639                                                 71336
640                                                 73573
641                                                 51351
642                                                 75478
643                                                 36663
644                                                 86784
645                                                 56896
646                                                 58592
647                                                 38501
648                                                 66224
649                                                 36570
650                                                 62718
651                                                 30176
652                                                 87076
653                                                 58418
654                                                 87106
655                                                 28904
656                                                 34774
657                                                 98513
658                                                 42423
659                                                 71920
660                                                 61051
661                                                139016
662                                                 24664
663                                                 62860
664                                                 28183
665                                                109058
666                                                 31613
667                                                 29943
668                                                101935
669                                                 34703
670                                                 31170
671                                                 35997
672                                                136120
673                                                 47558
674                                                 45446
675                                                 90105
676                                                117865
677                                                101110
678                                                 85260
679                                                 69583
680                                                165454
681                                                 82760
682                                                 94795
683                                                 74695
684                                                149877
685                                                147281
686                                                 86435
687                                                118522
688                                                106364
689                                                102317
690                                                 87275
691                                                177686
692                                                143018
693                                                111965
694                                                152332
695                                                 72827
696                                                177610
697                                                120579
698                                                109854
699                                                 66066
700                                                122123
701                                                 66046
702                                                109358
703                                                 55014
704                                                167585
705                                                116393
706                                                134230
707                                                 90412
708                                                 74169
709                                                202939
710                                                 84948
711                                                176718
712                                                105591
713                                                217324
714                                                 66804
715                                                 92045
716                                                 63601
717                                                231212
718                                                 69453
719                                                 68592
720                                                182094
721                                                 69935
722                                                 67026
723                                                 74114
724                                                240216
725                                                 78093
726                                                 78433
727                                                127984
728                                                189349
729                                               1411809
730                                               1337404
731                                               1342450
732                                               1680591
733                                               1199426
734                                               1471865
735                                               1322818
736                                               1794703
737                                               1825513
738                                               1460066
739                                               1695842
740                                               1652244
741                                               1632488
742                                               1605775
743                                               1887111
744                                               1958150
745                                               1876393
746                                               1877733
747                                               1596910
748                                               2087150
749                                               1839863
750                                               1722755
751                                               1616355
752                                               1843047
753                                               1617124
754                                               2055126
755                                               1631460
756                                               1958437
757                                               1744519
758                                               1723625
759                                               1478976
760                                               1764211
761                                               1939235
762                                               1723311
763                                               2200706
764                                               1580854
765                                               2140254
766                                               1403327
767                                               1595354
768                                               1472879
769                                               2146437
770                                               1626923
771                                               1675102
772                                               2135518
773                                               1482033
774                                               1331420
775                                               1541253
776                                               2948565
777                                               1649083
778                                               1650327
779                                               1818618
780                                               2059658
781                                                 98629
782                                                100758
783                                                107145
784                                                 99014
785                                                 82016
786                                                 85742
787                                                113516
788                                                137671
789                                                140626
790                                                101619
791                                                186373
792                                                137367
793                                                 95392
794                                                108386
795                                                101201
796                                                170884
797                                                128772
798                                                125106
799                                                128402
800                                                161019
801                                                149596
802                                                143352
803                                                123456
804                                                119273
805                                                119799
806                                                142250
807                                                124702
808                                                128615
809                                                140404
810                                                138950
811                                                125282
812                                                132430
813                                                120943
814                                                158314
815                                                130135
816                                                118534
817                                                112023
818                                                101051
819                                                112157
820                                                102587
821                                                129732
822                                                 84433
823                                                 75751
824                                                134020
825                                                 83703
826                                                 85311
827                                                126558
828                                                168622
829                                                 89075
830                                                 85410
831                                                 78779
832                                                121021
833                                                194438
834                                                212205
835                                                186550
836                                                199395
837                                                172790
838                                                176358
839                                                228184
840                                                260746
841                                                271818
842                                                183081
843                                                357183
844                                                206738
845                                                205512
846                                                196808
847                                                179938
848                                                283221
849                                                221998
850                                                241163
851                                                248479
852                                                292977
853                                                292318
854                                                268798
855                                                205204
856                                                189920
857                                                299937
858                                                250697
859                                                226700
860                                                258201
861                                                253424
862                                                281286
863                                                237651
864                                                229800
865                                                281567
866                                                288463
867                                                255379
868                                                206009
869                                                196720
870                                                182585
871                                                183801
872                                                184278
873                                                230144
874                                                150491
875                                                125713
876                                                250130
877                                                142741
878                                                138691
879                                                289098
880                                                216923
881                                                150045
882                                                160684
883                                                143002
884                                                267594
885                                                288004
886                                                278067
887                                                386865
888                                                490805
889                                                289534
890                                                391111
891                                                332541
892                                                411366
893                                                365506
894                                                313129
895                                                242843
896                                                385630
897                                                435388
898                                                458983
899                                                445473
900                                                540499
901                                                495488
902                                                260761
903                                                321617
904                                                297435
905                                                356593
906                                                281941
907                                                443177
908                                                424787
909                                                307628
910                                                371701
911                                                337700
912                                                449585
913                                                439063
914                                                364707
915                                                383627
916                                                324448
917                                                263395
918                                                424396
919                                                502617
920                                                295786
921                                                250465
922                                                353794
923                                                496479
924                                                480447
925                                                393975
926                                                401260
927                                                517670
928                                                391781
929                                                346618
930                                                364818
931                                                535769
932                                                597856
933                                                309975
934                                                429687
935                                                441786
936                                                436348
937                                                 69385
938                                                 67984
939                                                 69984
940                                                 89453
941                                                 65254
942                                                 68940
943                                                 71346
944                                                 84844
945                                                 84968
946                                                 89943
947                                                102118
948                                                 75605
949                                                 87385
950                                                 85578
951                                                116684
952                                                130328
953                                                 92569
954                                                 86768
955                                                 77251
956                                                 90142
957                                                 91632
958                                                 94006
959                                                 84797
960                                                101984
961                                                101947
962                                                119457
963                                                121149
964                                                124628
965                                                 97080
966                                                 80781
967                                                 80054
968                                                 92857
969                                                 89511
970                                                127193
971                                                113204
972                                                 88398
973                                                106309
974                                                 86722
975                                                 95214
976                                                 97691
977                                                102319
978                                                 88080
979                                                 97698
980                                                110741
981                                                 80443
982                                                 75495
983                                                109167
984                                                181784
985                                                108152
986                                                103891
987                                                100510
988                                                118436
989                                                  7689
990                                                  6544
991                                                  8914
992                                                  7717
993                                                  7841
994                                                  8054
995                                                  7319
996                                                  7708
997                                                 11892
998                                                  8956
999                                                  9666
1000                                                12102
1001                                                13923
1002                                                14642
1003                                                21666
1004                                                19472
1005                                                23440
1006                                                19572
1007                                                19270
1008                                                16156
1009                                                22751
1010                                                19717
1011                                                19637
1012                                                24069
1013                                                18466
1014                                                27446
1015                                                19523
1016                                                23815
1017                                                13980
1018                                                13657
1019                                                 7981
1020                                                13258
1021                                                 8352
1022                                                 8544
1023                                                16451
1024                                                 9219
1025                                                 8893
1026                                                13393
1027                                                11012
1028                                                 8433
1029                                                13643
1030                                                 8988
1031                                                 8998
1032                                                13686
1033                                                10684
1034                                                 9458
1035                                                 9887
1036                                                22526
1037                                                14505
1038                                                16443
1039                                                17025
1040                                                19148
1041                                                93317
1042                                                77086
1043                                                68491
1044                                               107759
1045                                                81160
1046                                                91575
1047                                               106817
1048                                                74649
1049                                                94900
1050                                               115618
1051                                               126743
1052                                               155591
1053                                               154944
1054                                               170341
1055                                               163822
1056                                               179103
1057                                               128141
1058                                               124424
1059                                                84542
1060                                               136169
1061                                               163300
1062                                                79607
1063                                                75824
1064                                                78567
1065                                                83226
1066                                               100709
1067                                                86493
1068                                               126684
1069                                               161220
1070                                               112611
1071                                                84842
1072                                                83857
1073                                                84179
1074                                               117102
1075                                               188534
1076                                               132943
1077                                                66506
1078                                                69485
1079                                                76598
1080                                               104621
1081                                               115109
1082                                               108345
1083                                               132276
1084                                               151164
1085                                               103066
1086                                               111729
1087                                               162192
1088                                               185057
1089                                                98937
1090                                                94931
1091                                               101653
1092                                               120628
1093                                               455203
1094                                               396516
1095                                               456121
1096                                               682692
1097                                               501667
1098                                               558303
1099                                               661936
1100                                               702842
1101                                               914725
1102                                               925306
1103                                              1169758
1104                                              1205554
1105                                              1120569
1106                                              1305810
1107                                               947562
1108                                              1079298
1109                                               738938
1110                                               503078
1111                                               538010
1112                                               516719
1113                                               813281
1114                                               503248
1115                                               440414
1116                                               417290
1117                                               548712
1118                                               564583
1119                                               419199
1120                                               473295
1121                                               497879
1122                                               447752
1123                                               455405
1124                                               465604
1125                                               390302
1126                                               390902
1127                                               670161
1128                                               427886
1129                                               487492
1130                                               579426
1131                                               490701
1132                                               535932
1133                                               679697
1134                                               445562
1135                                               400644
1136                                               592196
1137                                               505580
1138                                               408396
1139                                               582236
1140                                               854673
1141                                               456563
1142                                               526107
1143                                               617233
1144                                               524430
1145                                                37760
1146                                                30942
1147                                                47375
1148                                                65644
1149                                                34020
1150                                                33164
1151                                                33869
1152                                                52494
1153                                                60545
1154                                                36450
1155                                                46436
1156                                                44941
1157                                                39701
1158                                                40353
1159                                                40185
1160                                                56765
1161                                                65116
1162                                                40377
1163                                                39933
1164                                                45326
1165                                                52753
1166                                                59505
1167                                                64026
1168                                                44740
1169                                                43381
1170                                                49320
1171                                                41216
1172                                                44778
1173                                                50908
1174                                                62401
1175                                                58910
1176                                                56000
1177                                                48390
1178                                                60222
1179                                                66287
1180                                                42192
1181                                                62591
1182                                                61734
1183                                                49893
1184                                                64264
1185                                                62778
1186                                                36583
1187                                                38415
1188                                                53159
1189                                                77315
1190                                                50486
1191                                                59424
1192                                                83855
1193                                                63039
1194                                                63827
1195                                                53314
1196                                                75090
1197                                                44652
1198                                                32387
1199                                                49363
1200                                                34861
1201                                                42436
1202                                                47195
1203                                                42921
1204                                                37563
1205                                                54993
1206                                                35902
1207                                                42454
1208                                                59336
1209                                                63183
1210                                                57857
1211                                                76606
1212                                                64771
1213                                                80524
1214                                                66570
1215                                                70677
1216                                                61635
1217                                                86741
1218                                                66231
1219                                                63066
1220                                                96849
1221                                                79717
1222                                               101120
1223                                                79483
1224                                                90433
1225                                                55875
1226                                                60937
1227                                                35493
1228                                                62990
1229                                                36762
1230                                                37151
1231                                                81078
1232                                                41476
1233                                                38959
1234                                                63130
1235                                                48767
1236                                                32977
1237                                                58232
1238                                                35375
1239                                                32889
1240                                                60308
1241                                                35033
1242                                                34942
1243                                                35897
1244                                                74533
1245                                                41120
1246                                                42799
1247                                                36044
1248                                                54844
1249                                              1022862
1250                                              1024405
1251                                              1060754
1252                                              1154808
1253                                               939039
1254                                               955973
1255                                              1302220
1256                                              1248271
1257                                              1188243
1258                                               980865
1259                                              1537197
1260                                              1057488
1261                                              1070892
1262                                              1206766
1263                                              1122684
1264                                              1444402
1265                                              1458691
1266                                              1161145
1267                                              1286342
1268                                              1355610
1269                                              1328249
1270                                              1359711
1271                                              1239354
1272                                              1234664
1273                                              1337981
1274                                              1545460
1275                                              1324231
1276                                              1363070
1277                                              1484201
1278                                              1217522
1279                                              1377202
1280                                              1431142
1281                                              1201257
1282                                              1299999
1283                                              1557507
1284                                              1125853
1285                                              1125461
1286                                              1298472
1287                                              1066609
1288                                              1160794
1289                                              1282053
1290                                              1066471
1291                                               949015
1292                                              1151354
1293                                              1209150
1294                                               982380
1295                                              1222160
1296                                              1798505
1297                                              1077631
1298                                              1045425
1299                                              1032606
1300                                              1311503
1301                                                 8706
1302                                                 7416
1303                                                11175
1304                                                 9656
1305                                                 9407
1306                                                10083
1307                                                11869
1308                                                11807
1309                                                20103
1310                                                20511
1311                                                29077
1312                                                35428
1313                                                30106
1314                                                25445
1315                                                32479
1316                                                25095
1317                                                30511
1318                                                21072
1319                                                19284
1320                                                18393
1321                                                20560
1322                                                19863
1323                                                19400
1324                                                19372
1325                                                17435
1326                                                25125
1327                                                19436
1328                                                17917
1329                                                17224
1330                                                10386
1331                                                 8352
1332                                                 9349
1333                                                 8162
1334                                                 9080
1335                                                13149
1336                                                 8600
1337                                                 7599
1338                                                 9659
1339                                                 8267
1340                                                 8307
1341                                                 9195
1342                                                 6822
1343                                                 7724
1344                                                 9713
1345                                                10053
1346                                                 9817
1347                                                 8120
1348                                                13446
1349                                                 8372
1350                                                 8424
1351                                                 9099
1352                                                11084
1353                                                18656
1354                                                18630
1355                                                31214
1356                                                21553
1357                                                23573
1358                                                18823
1359                                                21747
1360                                                21553
1361                                                16060
1362                                                17517
1363                                                18241
1364                                                16126
1365                                                20602
1366                                                17616
1367                                                24187
1368                                                18107
1369                                                18010
1370                                                14747
1371                                                18688
1372                                                16682
1373                                                10121
1374                                                 8026
1375                                                10443
1376                                                 8931
1377                                                11069
1378                                                 9202
1379                                                10738
1380                                                 8804
1381                                                10920
1382                                                 8769
1383                                                 8537
1384                                                10463
1385                                                 9661
1386                                                 7960
1387                                                13134
1388                                                 9195
1389                                                12172
1390                                                 7155
1391                                                 7767
1392                                                 9473
1393                                                 8986
1394                                                11363
1395                                                12379
1396                                                16230
1397                                                10820
1398                                                11864
1399                                                 8648
1400                                                11861
1401                                                12772
1402                                                23263
1403                                                10681
1404                                                14086
1405                                               872604
1406                                               867407
1407                                               975505
1408                                               887708
1409                                               814572
1410                                               905344
1411                                              1107466
1412                                              1097994
1413                                              1916955
1414                                               790163
1415                                              1598365
1416                                               792684
1417                                              1060769
1418                                               941113
1419                                               913023
1420                                              1208256
1421                                              1074698
1422                                               982356
1423                                              1222688
1424                                              1291206
1425                                              1290583
1426                                              1184265
1427                                               910717
1428                                               923816
1429                                               956051
1430                                              1290777
1431                                               917011
1432                                              1312242
1433                                               931945
1434                                              1347903
1435                                              1077663
1436                                              1103695
1437                                               871213
1438                                              1711900
1439                                              1317970
1440                                               932216
1441                                               927146
1442                                               764676
1443                                               909664
1444                                               882072
1445                                               884993
1446                                               749461
1447                                               755538
1448                                              1025372
1449                                               757988
1450                                               688201
1451                                              1310966
1452                                              1084530
1453                                               768132
1454                                               749309
1455                                               714531
1456                                              1127882
1457                                              2313156
1458                                              2330694
1459                                              2852334
1460                                              2541187
1461                                              1964334
1462                                              2316405
1463                                              2738914
1464                                              3333003
1465                                              3920642
1466                                              2438454
1467                                              4025382
1468                                              2383019
1469                                              2679761
1470                                              2965154
1471                                              2492114
1472                                              3364305
1473                                              3227507
1474                                              2981372
1475                                              3291931
1476                                              3382543
1477                                              3894802
1478                                              3244096
1479                                              2757146
1480                                              3057929
1481                                              3051823
1482                                              3328289
1483                                              2670470
1484                                              3203945
1485                                              2985954
1486                                              3416600
1487                                              2954176
1488                                              3212552
1489                                              2730591
1490                                              4143703
1491                                              3365963
1492                                              2492744
1493                                              2552885
1494                                              2102180
1495                                              2409450
1496                                              2543290
1497                                              2526520
1498                                              2082038
1499                                              2111936
1500                                              2790180
1501                                              2003076
1502                                              1958075
1503                                              3354877
1504                                              3149375
1505                                              2129188
1506                                              2098784
1507                                              2070661
1508                                              2860710
1509                                               250271
1510                                               232460
1511                                               369076
1512                                               261503
1513                                               181978
1514                                               230517
1515                                               237255
1516                                               453089
1517                                               281499
1518                                               268057
1519                                               361448
1520                                               231543
1521                                               253346
1522                                               427545
1523                                               270776
1524                                               301172
1525                                               456885
1526                                               337185
1527                                               338131
1528                                               304465
1529                                               523493
1530                                               347110
1531                                               324259
1532                                               522040
1533                                               341892
1534                                               338863
1535                                               282588
1536                                               300070
1537                                               362083
1538                                               314309
1539                                               313153
1540                                               372289
1541                                               287792
1542                                               503984
1543                                               304233
1544                                               253563
1545                                               284389
1546                                               214310
1547                                               252307
1548                                               372165
1549                                               229493
1550                                               247093
1551                                               234532
1552                                               310490
1553                                               217477
1554                                               232118
1555                                               308443
1556                                               361694
1557                                               233233
1558                                               241381
1559                                               265252
1560                                               264352
1561                                                20765
1562                                                15795
1563                                                24261
1564                                                21556
1565                                                21008
1566                                                21586
1567                                                20682
1568                                                21007
1569                                                29351
1570                                                24182
1571                                                24094
1572                                                30064
1573                                                34086
1574                                                41995
1575                                                51931
1576                                                51292
1577                                                56930
1578                                                51488
1579                                                51869
1580                                                46942
1581                                                57952
1582                                                49483
1583                                                51179
1584                                                57749
1585                                                53987
1586                                                66372
1587                                                52467
1588                                                57123
1589                                                36946
1590                                                33611
1591                                                19642
1592                                                29758
1593                                                19797
1594                                                19591
1595                                                36611
1596                                                21352
1597                                                18812
1598                                                28203
1599                                                25859
1600                                                18785
1601                                                29683
1602                                                21354
1603                                                19868
1604                                                26600
1605                                                22481
1606                                                21210
1607                                                24318
1608                                                50048
1609                                                29418
1610                                                34703
1611                                                39236
1612                                                38265
1613                                               208945
1614                                               198362
1615                                               244536
1616                                               254809
1617                                               195284
1618                                               226194
1619                                               263608
1620                                               268320
1621                                               453730
1622                                               283086
1623                                               388376
1624                                               256351
1625                                               268719
1626                                               255353
1627                                               251090
1628                                               346217
1629                                               284480
1630                                               269812
1631                                               336375
1632                                               324062
1633                                               294414
1634                                               288809
1635                                               251977
1636                                               237183
1637                                               233808
1638                                               306536
1639                                               234778
1640                                               310906
1641                                               253566
1642                                               325421
1643                                               270398
1644                                               277233
1645                                               241209
1646                                               381135
1647                                               393976
1648                                               249071
1649                                               242741
1650                                               210183
1651                                               240592
1652                                               222182
1653                                               322071
1654                                               199104
1655                                               207010
1656                                               267027
1657                                               214953
1658                                               210875
1659                                               336509
1660                                               417994
1661                                               211454
1662                                               209523
1663                                               198387
1664                                               294715
1665                                               286858
1666                                               204147
1667                                               241775
1668                                               271207
1669                                               208439
1670                                               220375
1671                                               244821
1672                                               234927
1673                                               232051
1674                                               240690
1675                                               287935
1676                                               321487
1677                                               269016
1678                                               229488
1679                                               403761
1680                                               294312
1681                                               293505
1682                                               238518
1683                                               228549
1684                                               223690
1685                                               228961
1686                                               205131
1687                                               204148
1688                                               200733
1689                                               201235
1690                                               220124
1691                                               176318
1692                                               188115
1693                                               180389
1694                                               199670
1695                                               177851
1696                                               180677
1697                                               167186
1698                                               182956
1699                                               256792
1700                                               159158
1701                                               164461
1702                                               181418
1703                                               172116
1704                                               157108
1705                                               208871
1706                                               149255
1707                                               143843
1708                                               198956
1709                                               163230
1710                                               143378
1711                                               184023
1712                                               261342
1713                                               150641
1714                                               200514
1715                                               182630
1716                                               178418
1717                                                45856
1718                                                40726
1719                                                38684
1720                                                41482
1721                                                35859
1722                                                42393
1723                                                42967
1724                                                85218
1725                                                60508
1726                                                40984
1727                                                43226
1728                                                59821
1729                                                69556
1730                                                62972
1731                                                44085
1732                                                43000
1733                                                78579
1734                                                40728
1735                                                51015
1736                                                53769
1737                                                99815
1738                                                42703
1739                                                40238
1740                                                43697
1741                                                40945
1742                                                67122
1743                                                62790
1744                                                43293
1745                                                44491
1746                                                43817
1747                                                45514
1748                                               117544
1749                                                50365
1750                                                48280
1751                                               145405
1752                                                44304
1753                                                43529
1754                                                38758
1755                                                48395
1756                                                51530
1757                                                46711
1758                                                44601
1759                                               116151
1760                                                39074
1761                                                42829
1762                                                32544
1763                                                37355
1764                                                75346
1765                                                70060
1766                                                36730
1767                                                33759
1768                                                35457
1769                                               404838
1770                                               341262
1771                                               463238
1772                                               394657
1773                                               364749
1774                                               403638
1775                                               441216
1776                                               467809
1777                                               584277
1778                                               583991
1779                                               588305
1780                                               576154
1781                                               566241
1782                                               729792
1783                                               506380
1784                                               491074
1785                                               547236
1786                                               477305
1787                                               498121
1788                                               508403
1789                                               498857
1790                                               506915
1791                                               576871
1792                                               491747
1793                                               530476
1794                                               627548
1795                                               480811
1796                                               474166
1797                                               443242
1798                                               445070
1799                                               418764
1800                                               450494
1801                                               413931
1802                                               424406
1803                                               508886
1804                                               447515
1805                                               433297
1806                                               471484
1807                                               437184
1808                                               441015
1809                                               450193
1810                                               435374
1811                                               412581
1812                                               460987
1813                                               430680
1814                                               409541
1815                                               490404
1816                                               926444
1817                                               454162
1818                                               485150
1819                                               448208
1820                                               466641
1821                                               131202
1822                                               134957
1823                                               162734
1824                                               270189
1825                                               113850
1826                                               131660
1827                                               199357
1828                                               152265
1829                                               182673
1830                                               191062
1831                                               188908
1832                                               324386
1833                                               172302
1834                                               187080
1835                                               291367
1836                                               181247
1837                                               188352
1838                                               186125
1839                                               274926
1840                                               190950
1841                                               185098
1842                                               217474
1843                                               171527
1844                                               180269
1845                                               187613
1846                                               273227
1847                                               223129
1848                                               284788
1849                                               323410
1850                                               239758
1851                                               226578
1852                                               295332
1853                                               162760
1854                                               295586
1855                                               305964
1856                                               224599
1857                                               337188
1858                                               199633
1859                                               178796
1860                                               163123
1861                                               213514
1862                                               160239
1863                                               201530
1864                                               359784
1865                                               287695
1866                                               153004
1867                                               232249
1868                                               535325
1869                                               229573
1870                                               220992
1871                                               292969
1872                                               377139
1873                                                86212
1874                                                78630
1875                                                86614
1876                                                84518
1877                                                72844
1878                                                75631
1879                                               112379
1880                                                68546
1881                                                60350
1882                                                50170
1883                                                64754
1884                                                54546
1885                                                56829
1886                                                71030
1887                                                63791
1888                                                55554
1889                                                83271
1890                                                61767
1891                                                68496
1892                                                59217
1893                                                65068
1894                                                64420
1895                                                52944
1896                                                63763
1897                                                78845
1898                                               103086
1899                                                84150
1900                                                87728
1901                                                95409
1902                                                61503
1903                                                60701
1904                                                80893
1905                                                64994
1906                                                60772
1907                                               108604
1908                                                62293
1909                                                58453
1910                                                72737
1911                                                53335
1912                                                71238
1913                                                60049
1914                                                71028
1915                                                54060
1916                                                55214
1917                                                69081
1918                                                55127
1919                                                47671
1920                                               115316
1921                                                59375
1922                                                55881
1923                                                54185
1924                                                72178
1925                                                67975
1926                                                73851
1927                                                75114
1928                                                77494
1929                                                65442
1930                                                69493
1931                                               101471
1932                                                76222
1933                                                93881
1934                                                70132
1935                                               106054
1936                                                85084
1937                                                91382
1938                                               101485
1939                                                72628
1940                                                89291
1941                                               112959
1942                                                86152
1943                                                96309
1944                                                95072
1945                                                87339
1946                                               101905
1947                                                86910
1948                                                84053
1949                                                90574
1950                                               118023
1951                                                90965
1952                                                99696
1953                                               113772
1954                                                90992
1955                                                98091
1956                                               116589
1957                                               103883
1958                                               115680
1959                                               128429
1960                                                97539
1961                                                91143
1962                                                96302
1963                                                95586
1964                                                96406
1965                                                91980
1966                                                87712
1967                                                64965
1968                                                83986
1969                                                89875
1970                                                77855
1971                                                81139
1972                                               140203
1973                                                75205
1974                                                66964
1975                                                66850
1976                                                80396
1977                                                31680
1978                                                31883
1979                                                34347
1980                                                35662
1981                                                30146
1982                                                29324
1983                                                45406
1984                                                35852
1985                                                40084
1986                                                33830
1987                                                47290
1988                                                37829
1989                                                38394
1990                                                44626
1991                                                37056
1992                                                49831
1993                                                55251
1994                                                43619
1995                                                47017
1996                                                43699
1997                                                40963
1998                                                45921
1999                                                38794
2000                                                41555
2001                                                42235
2002                                                51261
2003                                                43906
2004                                                47602
2005                                                50915
2006                                                41702
2007                                                41122
2008                                                50453
2009                                                46303
2010                                                52243
2011                                                60973
2012                                                47028
2013                                                44914
2014                                                49286
2015                                                44874
2016                                                46916
2017                                                46659
2018                                                43328
2019                                                36289
2020                                                38349
2021                                                45806
2022                                                39204
2023                                                38764
2024                                                65784
2025                                                41412
2026                                                37854
2027                                                37630
2028                                                37563
2029                                               249363
2030                                               224843
2031                                               221628
2032                                               184350
2033                                               216852
2034                                               218912
2035                                               262929
2036                                               185190
2037                                               300978
2038                                               190021
2039                                               175182
2040                                               211956
2041                                               259003
2042                                               213298
2043                                               220538
2044                                               220365
2045                                               262140
2046                                               197034
2047                                               233165
2048                                               202459
2049                                               206011
2050                                               209986
2051                                               200669
2052                                               210335
2053                                               218611
2054                                               305123
2055                                               210344
2056                                               215069
2057                                               209926
2058                                               224039
2059                                               219047
2060                                               232223
2061                                               200745
2062                                               217681
2063                                               458179
2064                                               205561
2065                                               241637
2066                                               208546
2067                                               214547
2068                                               203705
2069                                               221095
2070                                               204089
2071                                               199611
2072                                               256090
2073                                               216791
2074                                               194031
2075                                               237752
2076                                               429602
2077                                               210412
2078                                               238957
2079                                               271300
2080                                               270108
2081                                               130342
2082                                               119299
2083                                               118665
2084                                               209351
2085                                               140359
2086                                               129579
2087                                               150523
2088                                               154270
2089                                               179996
2090                                               165523
2091                                               179049
2092                                               234834
2093                                               194839
2094                                               245816
2095                                               173106
2096                                               199954
2097                                               165035
2098                                               145975
2099                                               153379
2100                                               176899
2101                                               288087
2102                                               168301
2103                                               161574
2104                                               142493
2105                                               182845
2106                                               187821
2107                                               142349
2108                                               163856
2109                                               165021
2110                                               164367
2111                                               153680
2112                                               155814
2113                                               131773
2114                                               136148
2115                                               247709
2116                                               141949
2117                                               156651
2118                                               189714
2119                                               162602
2120                                               155583
2121                                               221942
2122                                               144761
2123                                               127158
2124                                               202619
2125                                               151870
2126                                               127875
2127                                               162856
2128                                               277723
2129                                               140457
2130                                               163944
2131                                               192913
2132                                               165299
2133                                               422618
2134                                               364622
2135                                               384959
2136                                               498975
2137                                               462966
2138                                               502068
2139                                               517366
2140                                               319176
2141                                               563719
2142                                               334052
2143                                               332942
2144                                               351965
2145                                               563257
2146                                               349649
2147                                               381000
2148                                               367834
2149                                               384033
2150                                               364371
2151                                               380935
2152                                               364969
2153                                               345590
2154                                               374727
2155                                               366576
2156                                               385521
2157                                               430541
2158                                               451891
2159                                               377055
2160                                               396191
2161                                               403174
2162                                               477146
2163                                               469209
2164                                               467572
2165                                               434957
2166                                               462219
2167                                               975142
2168                                               458056
2169                                               584923
2170                                               469655
2171                                               473143
2172                                               460145
2173                                               568189
2174                                               455307
2175                                               442834
2176                                               697970
2177                                               502502
2178                                               414827
2179                                               581737
2180                                               896514
2181                                               481792
2182                                               554501
2183                                               670523
2184                                               637000
2185                                               178460
2186                                               139794
2187                                               156348
2188                                               219413
2189                                               131571
2190                                               155495
2191                                               213666
2192                                               172982
2193                                               176923
2194                                               201858
2195                                               185070
2196                                               301657
2197                                               281914
2198                                               152003
2199                                               242850
2200                                               181241
2201                                               155469
2202                                               150815
2203                                               265837
2204                                               201936
2205                                               169097
2206                                               181275
2207                                               172990
2208                                               192076
2209                                               204321
2210                                               263047
2211                                               222872
2212                                               272214
2213                                               274971
2214                                               207214
2215                                               185304
2216                                               240666
2217                                               196907
2218                                               242012
2219                                               355250
2220                                               188385
2221                                               324680
2222                                               184720
2223                                               238613
2224                                               205582
2225                                               229940
2226                                               189015
2227                                               190974
2228                                               327300
2229                                               353202
2230                                               171967
2231                                               257165
2232                                               578709
2233                                               228986
2234                                               223146
2235                                               278069
2236                                               341837
2237                                                48908
2238                                                39932
2239                                                47393
2240                                                47119
2241                                                42270
2242                                                42099
2243                                                61600
2244                                                47267
2245                                                59938
2246                                                46792
2247                                                55039
2248                                                64658
2249                                                70671
2250                                                72273
2251                                                77644
2252                                                61067
2253                                                78503
2254                                                58762
2255                                                64118
2256                                                60468
2257                                                69024
2258                                                64352
2259                                                63163
2260                                                70691
2261                                                81354
2262                                                93000
2263                                                76048
2264                                                71557
2265                                                60267
2266                                                46631
2267                                                43302
2268                                                58353
2269                                                46163
2270                                                44018
2271                                                72325
2272                                                43170
2273                                                43228
2274                                                49060
2275                                                44278
2276                                                45650
2277                                                48984
2278                                                44168
2279                                                39010
2280                                                42197
2281                                                45810
2282                                                40081
2283                                                41469
2284                                                78055
2285                                                46948
2286                                                44020
2287                                                39714
2288                                                46253
2289                                              1290847
2290                                              1226509
2291                                              1559601
2292                                              1989751
2293                                              1234911
2294                                              1451469
2295                                              1375460
2296                                              1630407
2297                                              1704035
2298                                              1537781
2299                                              1352548
2300                                              1833545
2301                                              2067870
2302                                              2042361
2303                                              2117632
2304                                              2390282
2305                                              2322077
2306                                              1387820
2307                                              1546629
2308                                              1474653
2309                                              1600372
2310                                              1254704
2311                                              1982138
2312                                              1766900
2313                                              1523778
2314                                              1639736
2315                                              1416249
2316                                              1739133
2317                                              1660109
2318                                              1479527
2319                                              1501302
2320                                              1434384
2321                                              1202270
2322                                              1709201
2323                                              2265494
2324                                              1248423
2325                                              1183498
2326                                              1385674
2327                                              1856953
2328                                              1836366
2329                                              1476714
2330                                              1644220
2331                                              1855972
2332                                              1629786
2333                                              1408136
2334                                              1421557
2335                                              1927404
2336                                              2348980
2337                                              1298843
2338                                              1782045
2339                                              1717171
2340                                              1755142
2341                                               275823
2342                                               211596
2343                                               303892
2344                                               248205
2345                                               273706
2346                                               285066
2347                                               294620
2348                                               298082
2349                                               472311
2350                                               393459
2351                                               426237
2352                                               579737
2353                                               591640
2354                                               519007
2355                                               663554
2356                                               534413
2357                                               650270
2358                                               464252
2359                                               477976
2360                                               431016
2361                                               498991
2362                                               430134
2363                                               424561
2364                                               515359
2365                                               467849
2366                                               592279
2367                                               464034
2368                                               462243
2369                                               315079
2370                                               294520
2371                                               206982
2372                                               311177
2373                                               211868
2374                                               212422
2375                                               383804
2376                                               220781
2377                                               214218
2378                                               292733
2379                                               252738
2380                                               205041
2381                                               299770
2382                                               211823
2383                                               199318
2384                                               281503
2385                                               236520
2386                                               219337
2387                                               226040
2388                                               451195
2389                                               266024
2390                                               273696
2391                                               269027
2392                                               320374
2393                                                21592
2394                                                16577
2395                                                20739
2396                                                39234
2397                                                16827
2398                                                21806
2399                                                38868
2400                                                26208
2401                                                23802
2402                                                33389
2403                                                30937
2404                                                56878
2405                                                47471
2406                                                23736
2407                                                42343
2408                                                24065
2409                                                18154
2410                                                16652
2411                                                35455
2412                                                25970
2413                                                23114
2414                                                24454
2415                                                22294
2416                                                23169
2417                                                23703
2418                                                30060
2419                                                26660
2420                                                33790
2421                                                35548
2422                                                26272
2423                                                24334
2424                                                33680
2425                                                24111
2426                                                31703
2427                                                48511
2428                                                24094
2429                                                42073
2430                                                23282
2431                                                29903
2432                                                26800
2433                                                28458
2434                                                26391
2435                                                24433
2436                                                44708
2437                                                45292
2438                                                22724
2439                                                36737
2440                                                84741
2441                                                29591
2442                                                29720
2443                                                35997
2444                                                44342
2445                                                25207
2446                                                23868
2447                                                24481
2448                                                25223
2449                                                26526
2450                                                27004
2451                                                28500
2452                                                29530
2453                                                34559
2454                                                37040
2455                                                34898
2456                                                25627
2457                                                36643
2458                                                34232
2459                                                37270
2460                                                33406
2461                                                36577
2462                                                34387
2463                                                35104
2464                                                44789
2465                                                47874
2466                                                43746
2467                                                38710
2468                                                41713
2469                                                44204
2470                                                57669
2471                                                40137
2472                                                38461
2473                                                41783
2474                                                38450
2475                                                38945
2476                                                38773
2477                                                37553
2478                                                33051
2479                                                36253
2480                                                42321
2481                                                38169
2482                                                37442
2483                                                34545
2484                                                39575
2485                                                37696
2486                                                36549
2487                                                31857
2488                                                39404
2489                                                36668
2490                                                33530
2491                                                31996
2492                                                48651
2493                                                31382
2494                                                50702
2495                                                41050
2496                                                34556
2497                                                23561
2498                                                22231
2499                                                33150
2500                                                34440
2501                                                21285
2502                                                22314
2503                                                34237
2504                                                37789
2505                                                36282
2506                                                30448
2507                                                28156
2508                                                27691
2509                                                22699
2510                                                43139
2511                                                27299
2512                                                30697
2513                                                37505
2514                                                43932
2515                                                30616
2516                                                32283
2517                                                39597
2518                                                26662
2519                                                41541
2520                                                34450
2521                                                43148
2522                                                35081
2523                                                30246
2524                                                32511
2525                                                27341
2526                                                41825
2527                                                34986
2528                                                34572
2529                                                42174
2530                                                44891
2531                                                24201
2532                                                23424
2533                                                24885
2534                                                21962
2535                                                24676
2536                                                28858
2537                                                21884
2538                                                20482
2539                                                23821
2540                                                22777
2541                                                21441
2542                                                19622
2543                                                26366
2544                                                30244
2545                                                22526
2546                                                24755
2547                                                21576
2548                                                20905
2549                                                35652
2550                                                23811
2551                                                40944
2552                                                29926
2553                                                41027
2554                                                39338
2555                                                32426
2556                                                33352
2557                                                72749
2558                                                51940
2559                                                54378
2560                                                90767
2561                                                92367
2562                                                70565
2563                                               104345
2564                                                69978
2565                                                94842
2566                                                53666
2567                                                54874
2568                                                50158
2569                                                58044
2570                                                50642
2571                                                48153
2572                                                61716
2573                                                54928
2574                                                71004
2575                                                56095
2576                                                58036
2577                                                39331
2578                                                35164
2579                                                18122
2580                                                30795
2581                                                18250
2582                                                20278
2583                                                37801
2584                                                19757
2585                                                19553
2586                                                30736
2587                                                26336
2588                                                18562
2589                                                32912
2590                                                19983
2591                                                19097
2592                                                27867
2593                                                22043
2594                                                20647
2595                                                21932
2596                                                53180
2597                                                30245
2598                                                33674
2599                                                36018
2600                                                37518
2601                                             10197890
2602                                              9329862
2603                                             10805839
2604                                             12160839
2605                                              9003178
2606                                             10389880
2607                                             11699788
2608                                             12199657
2609                                             14229287
2610                                             11410478
2611                                             14082540
2612                                             13326573
2613                                             13775652
2614                                             13819913
2615                                             13846045
2616                                             14888078
2617                                             14245598
2618                                             11995961
2619                                             12551530
2620                                             12998327
2621                                             13926693
2622                                             12219014
2623                                             12009228
2624                                             12605457
2625                                             12403360
2626                                             14213650
2627                                             11505999
2628                                             13244467
2629                                             12821015
2630                                             12582265
2631                                             11599634
2632                                             12513821
2633                                             11003341
2634                                             13509065
2635                                             16602589
2636                                             10867403
2637                                             12277859
2638                                             11210544
2639                                             11526980
2640                                             11541041
2641                                             12659785
2642                                             10634071
2643                                             10973973
2644                                             13733124
2645                                             11354282
2646                                              9783490
2647                                             13381348
2648                                             18956480
2649                                             10734653
2650                                             11701948
2651                                             12134773
2652                                             13624083
2653                                              1717599
2654                                              1314711
2655                                              1596329
2656                                              2051393
2657                                              1216811
2658                                              1588339
2659                                              2060440
2660                                              1668417
2661                                              1937480
2662                                              1990845
2663                                              2170793
2664                                              2714364
2665                                              2378441
2666                                              2116030
2667                                              2825877
2668                                              2317428
2669                                              2086230
2670                                              1986059
2671                                              2054711
2672                                              2027603
2673                                              2068854
2674                                              1962854
2675                                              1776143
2676                                              2065939
2677                                              1950436
2678                                              2304907
2679                                              1907834
2680                                              2299962
2681                                              2416002
2682                                              2145072
2683                                              1835735
2684                                              2036656
2685                                              1654564
2686                                              2260891
2687                                              2917084
2688                                              2021746
2689                                              2557272
2690                                              2267855
2691                                              2022524
2692                                              2012384
2693                                              2163704
2694                                              1829868
2695                                              2120112
2696                                              2822864
2697                                              2650986
2698                                              1840716
2699                                              2418817
2700                                              3872672
2701                                              2031938
2702                                              2258070
2703                                              2292761
2704                                              2582301
2705                                               141599
2706                                               108176
2707                                               100110
2708                                               133434
2709                                               103636
2710                                               122078
2711                                               155779
2712                                               123746
2713                                               131577
2714                                               166608
2715                                               177573
2716                                               258519
2717                                               317701
2718                                               376233
2719                                               352999
2720                                               330566
2721                                               183612
2722                                               136374
2723                                               100109
2724                                               154806
2725                                               154758
2726                                                94633
2727                                                96112
2728                                               101244
2729                                               100149
2730                                               123466
2731                                               108020
2732                                               158997
2733                                               202732
2734                                               152737
2735                                               124037
2736                                               107964
2737                                               112071
2738                                               128169
2739                                               166456
2740                                               174561
2741                                               154972
2742                                               167106
2743                                               163482
2744                                               199938
2745                                               157680
2746                                               115090
2747                                               137012
2748                                               167246
2749                                               121269
2750                                               133696
2751                                               175207
2752                                               205181
2753                                               124249
2754                                               128439
2755                                               129717
2756                                               147958
2757                                                86015
2758                                                80565
2759                                                56200
2760                                                93415
2761                                                55595
2762                                                58006
2763                                                63349
2764                                                65208
2765                                                69366
2766                                                67824
2767                                                82089
2768                                                69425
2769                                                69411
2770                                                77099
2771                                                70931
2772                                                54348
2773                                                55476
2774                                                42109
2775                                                48350
2776                                                60913
2777                                                63197
2778                                                76302
2779                                                92726
2780                                                82942
2781                                                95457
2782                                               150340
2783                                                82764
2784                                                96388
2785                                                61564
2786                                               123406
2787                                               154239
2788                                               110884
2789                                               166131
2790                                               159037
2791                                               211777
2792                                               189043
2793                                               124409
2794                                               141606
2795                                                69327
2796                                                59290
2797                                                61128
2798                                               110106
2799                                                61770
2800                                               106312
2801                                                61591
2802                                                57925
2803                                               134517
2804                                                58974
2805                                                86817
2806                                                45916
2807                                                67316
2808                                                32958
2809                                               344700
2810                                               487110
2811                                               375438
2812                                               345132
2813                                               336732
2814                                               309529
2815                                               311688
2816                                               284547
2817                                               304617
2818                                               336434
2819                                               363925
2820                                               395481
2821                                               381625
2822                                               347949
2823                                               367426
2824                                               494756
2825                                               442803
2826                                               443668
2827                                               413652
2828                                               421189
2829                                               432957
2830                                               402053
2831                                               422903
2832                                               400288
2833                                               489315
2834                                               501970
2835                                               509114
2836                                               523095
2837                                               507383
2838                                               537896
2839                                               577334
2840                                               540988
2841                                               629734
2842                                               804252
2843                                               648817
2844                                               638834
2845                                               576827
2846                                               522216
2847                                               523512
2848                                               523532
2849                                               614918
2850                                               580134
2851                                               541219
2852                                               641585
2853                                               446499
2854                                               596869
2855                                               621956
2856                                               506188
2857                                               689359
2858                                               535245
2859                                               511067
2860                                               583418
2861                                                 2893
2862                                                 2337
2863                                                10383
2864                                                 2996
2865                                                 2187
2866                                                 2463
2867                                                 3042
2868                                                 2894
2869                                                 3018
2870                                                 3769
2871                                                 2007
2872                                                 2089
2873                                                 8194
2874                                                 2342
2875                                                 2199
2876                                                 1784
2877                                                 2056
2878                                                 1982
2879                                                 2078
2880                                                 1959
2881                                                 2002
2882                                                 1921
2883                                                 1685
2884                                                 1614
2885                                                 4977
2886                                                 6422
2887                                                 5853
2888                                                 6692
2889                                                 2579
2890                                                 5423
2891                                                 4570
2892                                                 3221
2893                                                 6201
2894                                                 5397
2895                                                 3928
2896                                                 2850
2897                                                 9076
2898                                                 3304
2899                                                 5362
2900                                                 6891
2901                                                 2698
2902                                                 4921
2903                                                 5373
2904                                                 5361
2905                                                 9085
2906                                                 5303
2907                                                14822
2908                                                 4791
2909                                                 4208
2910                                                 7884
2911                                                 8347
2912                                                10277
2913                                               346516
2914                                               488107
2915                                               409646
2916                                               393748
2917                                               317090
2918                                               356868
2919                                               314435
2920                                               284810
2921                                               304461
2922                                               335244
2923                                               345051
2924                                               366649
2925                                               340343
2926                                               338301
2927                                               346156
2928                                               470860
2929                                               381831
2930                                               388174
2931                                               353351
2932                                               353845
2933                                               335034
2934                                               338692
2935                                               343836
2936                                               320251
2937                                               359934
2938                                               408602
2939                                               433432
2940                                               456522
2941                                               421979
2942                                               417995
2943                                               461425
2944                                               430581
2945                                               517840
2946                                               698438
2947                                               520370
2948                                               446541
2949                                               438211
2950                                               456030
2951                                               406529
2952                                               463187
2953                                               490720
2954                                               487268
2955                                               434300
2956                                               506049
2957                                               388957
2958                                               560259
2959                                               511549
2960                                               501280
2961                                               482031
2962                                               486768
2963                                               391873
2964                                               492478
2965                                                64435
2966                                                52115
2967                                                62963
2968                                                54243
2969                                                50582
2970                                                52281
2971                                                56518
2972                                                56678
2973                                                56077
2974                                                50974
2975                                                61796
2976                                                68717
2977                                                62757
2978                                                62356
2979                                                70019
2980                                                81284
2981                                                67791
2982                                                64246
2983                                                70785
2984                                                72837
2985                                                74561
2986                                                64652
2987                                                63921
2988                                                71782
2989                                                88106
2990                                                85759
2991                                                74747
2992                                                80407
2993                                                79865
2994                                                78923
2995                                                81631
2996                                                72247
2997                                                72074
2998                                                97493
2999                                                69914
3000                                                69261
3001                                                67585
3002                                                55802
3003                                                72025
3004                                                64644
3005                                                62344
3006                                                77325
3007                                                60517
3008                                                78721
3009                                                52666
3010                                                60453
3011                                                76309
3012                                                81676
3013                                                54309
3014                                                49449
3015                                                52034
3016                                                57211
3017                                              2192461
3018                                              1774200
3019                                              2137291
3020                                              1449672
3021                                              1313001
3022                                              1394929
3023                                              1367685
3024                                              1333387
3025                                              1186844
3026                                              1129206
3027                                              1600568
3028                                              1750075
3029                                              1664176
3030                                              1924934
3031                                              1934688
3032                                              1976499
3033                                              2179345
3034                                              1878140
3035                                              1712067
3036                                              2538994
3037                                              2039791
3038                                              2069410
3039                                              2147541
3040                                              2037094
3041                                              2117397
3042                                              2439612
3043                                              1967325
3044                                              2045112
3045                                              1869930
3046                                              2131717
3047                                              2097509
3048                                              2178821
3049                                              1968269
3050                                              2615648
3051                                              2628579
3052                                              2355999
3053                                              1875910
3054                                              1958359
3055                                              2247248
3056                                              2149392
3057                                              2191468
3058                                              1855263
3059                                              1975668
3060                                              2020328
3061                                              2073957
3062                                              1974912
3063                                              3950852
3064                                              2069193
3065                                              2457752
3066                                              2336705
3067                                              2173554
3068                                              2856102
3069                                                50792
3070                                                46277
3071                                                40971
3072                                                46286
3073                                                34346
3074                                                28907
3075                                                26597
3076                                                27501
3077                                                29382
3078                                                39750
3079                                                56367
3080                                                52190
3081                                                52893
3082                                                53594
3083                                                54193
3084                                                59554
3085                                                56700
3086                                                57123
3087                                                62976
3088                                                66724
3089                                                64125
3090                                                68964
3091                                                68516
3092                                                69125
3093                                                79104
3094                                                72710
3095                                                68054
3096                                                77705
3097                                                74896
3098                                                77701
3099                                                92111
3100                                                95769
3101                                               103793
3102                                               113811
3103                                               112927
3104                                               106492
3105                                               100815
3106                                                93571
3107                                                87529
3108                                                90916
3109                                               101740
3110                                               111944
3111                                                98213
3112                                               106915
3113                                                86394
3114                                                87862
3115                                               160545
3116                                               108724
3117                                               110262
3118                                               104175
3119                                                94805
3120                                                87749
3121                                               352087
3122                                               363658
3123                                               449932
3124                                               372929
3125                                               291206
3126                                               422382
3127                                               265007
3128                                               224562
3129                                               226981
3130                                               251075
3131                                               324241
3132                                               314006
3133                                               311086
3134                                               337874
3135                                               340540
3136                                               355229
3137                                               415925
3138                                               373442
3139                                               372918
3140                                               371087
3141                                               385924
3142                                               373206
3143                                               386822
3144                                               425776
3145                                               381031
3146                                               584813
3147                                               499474
3148                                               550500
3149                                               478336
3150                                               606702
3151                                               642858
3152                                               592065
3153                                               609294
3154                                               612340
3155                                               587919
3156                                               592371
3157                                               619840
3158                                               464982
3159                                               457314
3160                                               600796
3161                                               514604
3162                                               569734
3163                                               557027
3164                                               522790
3165                                               483562
3166                                               501189
3167                                               758582
3168                                               512609
3169                                               543471
3170                                               500624
3171                                               534405
3172                                               656387
3173                                               102227
3174                                               100542
3175                                               101664
3176                                               132793
3177                                                75977
3178                                                85408
3179                                                92084
3180                                                91903
3181                                                89381
3182                                                94638
3183                                                89325
3184                                               100995
3185                                               105493
3186                                               112150
3187                                               112907
3188                                               122059
3189                                               117600
3190                                               126642
3191                                               118303
3192                                               125988
3193                                               130022
3194                                               129945
3195                                               133484
3196                                               136099
3197                                               149185
3198                                               168217
3199                                               161667
3200                                               154162
3201                                               149995
3202                                               174172
3203                                               164356
3204                                               144151
3205                                               151116
3206                                               183122
3207                                               156007
3208                                               141434
3209                                               141000
3210                                               125253
3211                                               109917
3212                                               131467
3213                                               132075
3214                                               126851
3215                                               129151
3216                                               129161
3217                                               117329
3218                                               144375
3219                                               177381
3220                                               133277
3221                                               155257
3222                                               142146
3223                                               151374
3224                                               149328
3225                                                24335
3226                                                31791
3227                                                19836
3228                                                42478
3229                                                19134
3230                                                21271
3231                                                26129
3232                                                23397
3233                                                16017
3234                                                21559
3235                                                22128
3236                                                23319
3237                                                25748
3238                                                37334
3239                                                26635
3240                                                25413
3241                                                29162
3242                                                34420
3243                                                33285
3244                                                34065
3245                                                37216
3246                                                31744
3247                                                34227
3248                                                38319
3249                                                36097
3250                                                38362
3251                                                37202
3252                                                36827
3253                                                32053
3254                                                38735
3255                                                36787
3256                                                37764
3257                                                47726
3258                                                46435
3259                                                47074
3260                                                35759
3261                                                48784
3262                                                27303
3263                                                28964
3264                                                32128
3265                                                35538
3266                                                31782
3267                                                42502
3268                                                41406
3269                                                36674
3270                                                38936
3271                                                55304
3272                                                38158
3273                                                43917
3274                                                30085
3275                                                33602
3276                                                40617
3277                                               313573
3278                                               250533
3279                                               188669
3280                                               187180
3281                                               158734
3282                                               183916
3283                                               199890
3284                                               163206
3285                                               156226
3286                                               240421
3287                                               188633
3288                                               283337
3289                                               186984
3290                                               228336
3291                                               269041
3292                                               230293
3293                                               256376
3294                                               255434
3295                                               231497
3296                                               240643
3297                                               241322
3298                                               213926
3299                                               228113
3300                                               210287
3301                                               205087
3302                                               273911
3303                                               213130
3304                                               250585
3305                                               219369
3306                                               313964
3307                                               292600
3308                                               352915
3309                                               308644
3310                                               307561
3311                                               319831
3312                                               327965
3313                                               232036
3314                                               211182
3315                                               245284
3316                                               291595
3317                                               317080
3318                                               217854
3319                                               198718
3320                                               207475
3321                                               221807
3322                                               306905
3323                                               410258
3324                                               287514
3325                                               289209
3326                                               369825
3327                                               394770
3328                                               411340
3329                                               206365
3330                                               232183
3331                                               219904
3332                                               277375
3333                                               131941
3334                                               146401
3335                                               197035
3336                                               148423
3337                                               239345
3338                                               166316
3339                                               156075
3340                                               240858
3341                                               172836
3342                                               168060
3343                                               198214
3344                                               227729
3345                                               254464
3346                                               282568
3347                                               190695
3348                                               189114
3349                                               183569
3350                                               178801
3351                                               187555
3352                                               204309
3353                                               230362
3354                                               256861
3355                                               229713
3356                                               224899
3357                                               242834
3358                                               326967
3359                                               282618
3360                                               266856
3361                                               252574
3362                                               427697
3363                                               261525
3364                                               225789
3365                                               285968
3366                                               353041
3367                                               209188
3368                                               208644
3369                                               360370
3370                                               261686
3371                                               242906
3372                                               300336
3373                                               331998
3374                                               277085
3375                                               557897
3376                                               270482
3377                                               404617
3378                                               403010
3379                                               366331
3380                                               526049
3381                                                59759
3382                                                85859
3383                                                44004
3384                                               173438
3385                                                47554
3386                                                46524
3387                                                43868
3388                                                46243
3389                                                41554
3390                                                51517
3391                                                51486
3392                                                50764
3393                                                49320
3394                                                50863
3395                                                53982
3396                                                57729
3397                                                56047
3398                                                54190
3399                                                53707
3400                                                53137
3401                                                60622
3402                                                51178
3403                                                39971
3404                                                41461
3405                                                41581
3406                                                42030
3407                                                50836
3408                                                60808
3409                                                38374
3410                                                90921
3411                                                45533
3412                                                40269
3413                                                86028
3414                                                84170
3415                                                48136
3416                                                50906
3417                                               116001
3418                                                30729
3419                                                33904
3420                                                65448
3421                                                67762
3422                                                42594
3423                                                86748
3424                                                66020
3425                                                42300
3426                                                51192
3427                                               118252
3428                                                59678
3429                                                95838
3430                                                46383
3431                                                49833
3432                                                93942
3433                                                91323
3434                                               109289
3435                                                60599
3436                                               189102
3437                                                62174
3438                                                82542
3439                                                62842
3440                                                58869
3441                                                80588
3442                                                64736
3443                                                69626
3444                                                67528
3445                                                67660
3446                                                75047
3447                                                82347
3448                                                76988
3449                                                79727
3450                                                68530
3451                                                66472
3452                                                61893
3453                                                72545
3454                                                78076
3455                                                66147
3456                                                69206
3457                                                70502
3458                                                79978
3459                                               104540
3460                                               130169
3461                                                93760
3462                                               218135
3463                                               117665
3464                                                84537
3465                                               211337
3466                                               201017
3467                                               131194
3468                                               113326
3469                                               256400
3470                                                95777
3471                                                97646
3472                                               146038
3473                                               140410
3474                                                91195
3475                                               191952
3476                                               141142
3477                                                93604
3478                                                98244
3479                                               205007
3480                                               126342
3481                                               195586
3482                                               106815
3483                                               110381
3484                                               191590
3485                                              1256640
3486                                              1327456
3487                                              1251696
3488                                              1769354
3489                                               937488
3490                                              1176231
3491                                              1003256
3492                                               946982
3493                                               955805
3494                                              1062333
3495                                              1126801
3496                                              1162529
3497                                              1183844
3498                                              1282329
3499                                              1278413
3500                                              1351448
3501                                              1430594
3502                                              1330167
3503                                              1308748
3504                                              1316694
3505                                              1387947
3506                                              1374845
3507                                              1381176
3508                                              1441658
3509                                              1500517
3510                                              1781703
3511                                              1609911
3512                                              1766243
3513                                              1519607
3514                                              2147776
3515                                              1952012
3516                                              1785951
3517                                              2165411
3518                                              2239471
3519                                              1927106
3520                                              1787143
3521                                              2322236
3522                                              1454196
3523                                              1373509
3524                                              1846740
3525                                              1730563
3526                                              1668503
3527                                              2069787
3528                                              1862762
3529                                              1566427
3530                                              1784879
3531                                              2644419
3532                                              1762047
3533                                              2043222
3534                                              1695888
3535                                              1753942
3536                                              2200075
3537                                                97384
3538                                               133480
3539                                               115422
3540                                                93529
3541                                                81008
3542                                                91103
3543                                                92585
3544                                                82050
3545                                                78895
3546                                                99576
3547                                                95965
3548                                               111487
3549                                               106682
3550                                                89410
3551                                                73638
3552                                               103071
3553                                               112618
3554                                               114244
3555                                               119685
3556                                               114887
3557                                               109040
3558                                               110155
3559                                               103034
3560                                                99017
3561                                               118216
3562                                               129784
3563                                               141143
3564                                               132642
3565                                               114427
3566                                               134735
3567                                               143023
3568                                               124678
3569                                               159859
3570                                               247409
3571                                               185445
3572                                               157367
3573                                               135972
3574                                               116592
3575                                                88834
3576                                               135848
3577                                               159452
3578                                               148078
3579                                               130175
3580                                               157390
3581                                               136617
3582                                               155336
3583                                               186545
3584                                               141568
3585                                               145119
3586                                               127825
3587                                               113996
3588                                               157969
3589                                               178949
3590                                               256346
3591                                               186955
3592                                               160247
3593                                               149413
3594                                               168091
3595                                               129123
3596                                               119662
3597                                               130996
3598                                               152904
3599                                               148211
3600                                               171101
3601                                               145719
3602                                               125999
3603                                               130354
3604                                               225724
3605                                               199814
3606                                               209240
3607                                               191018
3608                                               186844
3609                                               183605
3610                                               170921
3611                                               165703
3612                                               173492
3613                                               192339
3614                                               212725
3615                                               245341
3616                                               253641
3617                                               242441
3618                                               219463
3619                                               310084
3620                                               224263
3621                                               353743
3622                                               449501
3623                                               286951
3624                                               277216
3625                                               212804
3626                                               213983
3627                                               204808
3628                                               234449
3629                                               315608
3630                                               253677
3631                                               241128
3632                                               305867
3633                                               214537
3634                                               326487
3635                                               306374
3636                                               322398
3637                                               234917
3638                                               265631
3639                                               213815
3640                                               275681
3641                                               238202
3642                                               258779
3643                                               275659
3644                                               274634
3645                                               173402
3646                                               202860
3647                                               231630
3648                                               168815
3649                                               181579
3650                                               145059
3651                                               223737
3652                                               344449
3653                                               260177
3654                                               266059
3655                                               203949
3656                                               188319
3657                                               265697
3658                                               216733
3659                                               248160
3660                                               218436
3661                                               239658
3662                                               203888
3663                                               218180
3664                                               219856
3665                                               208422
3666                                               245932
3667                                               216134
3668                                               228843
3669                                               236621
3670                                               242491
3671                                               247280
3672                                               339100
3673                                               335853
3674                                               293099
3675                                               368704
3676                                               324423
3677                                               191432
3678                                               188936
3679                                               264272
3680                                               406713
3681                                               327365
3682                                               247462
3683                                               182051
3684                                               180298
3685                                               200935
3686                                               334137
3687                                               424427
3688                                               348543
3689                                               363892
3690                                               369479
3691                                               437751
3692                                               454200
3693                                                59101
3694                                                56820
3695                                                61399
3696                                                70442
3697                                                43655
3698                                                52842
3699                                                56482
3700                                                55558
3701                                                61450
3702                                                65585
3703                                                60050
3704                                                61270
3705                                                66598
3706                                                68404
3707                                                67689
3708                                                70737
3709                                                75640
3710                                                78139
3711                                                73967
3712                                                79507
3713                                                77899
3714                                                80211
3715                                                82110
3716                                                93316
3717                                                96588
3718                                                97348
3719                                                90386
3720                                                91178
3721                                                89226
3722                                               100387
3723                                               109784
3724                                               105337
3725                                                98565
3726                                               106300
3727                                               106590
3728                                               116191
3729                                               113833
3730                                                84834
3731                                                73684
3732                                               103262
3733                                                91016
3734                                                97729
3735                                               116610
3736                                               107091
3737                                                91309
3738                                               133957
3739                                               145592
3740                                               102864
3741                                                93614
3742                                               105607
3743                                               101117
3744                                               109973
3745                                                31214
3746                                                27329
3747                                                18098
3748                                                35344
3749                                                18662
3750                                                19385
3751                                                22431
3752                                                21711
3753                                                20159
3754                                                22755
3755                                                36096
3756                                                35356
3757                                                29513
3758                                                21093
3759                                                27540
3760                                                23110
3761                                                34370
3762                                                32155
3763                                                36441
3764                                                43133
3765                                                30914
3766                                                31854
3767                                                39378
3768                                                34465
3769                                                34028
3770                                                48699
3771                                                31812
3772                                                41557
3773                                                28485
3774                                                32124
3775                                                36411
3776                                                27438
3777                                                59902
3778                                                34526
3779                                                70592
3780                                                61113
3781                                                31280
3782                                                54201
3783                                                27201
3784                                                27912
3785                                                26015
3786                                                47857
3787                                                26488
3788                                                43494
3789                                                22329
3790                                                23878
3791                                                57532
3792                                                21969
3793                                                18557
3794                                                 9811
3795                                                10625
3796                                                 8715
3797                                                43302
3798                                                49296
3799                                                55353
3800                                                56503
3801                                                41993
3802                                                29776
3803                                                32699
3804                                                29998
3805                                                31779
3806                                                48015
3807                                                51474
3808                                                40083
3809                                                45097
3810                                                44922
3811                                                57221
3812                                                70912
3813                                                69349
3814                                                56927
3815                                                50487
3816                                                53955
3817                                                57549
3818                                                54745
3819                                                58714
3820                                                52024
3821                                                69545
3822                                                82727
3823                                                74317
3824                                                76173
3825                                                75379
3826                                               109764
3827                                               115790
3828                                                89287
3829                                               107125
3830                                               144990
3831                                               115747
3832                                               120811
3833                                               110596
3834                                                91834
3835                                                62626
3836                                                72324
3837                                               116702
3838                                               109512
3839                                                86200
3840                                                98921
3841                                               124296
3842                                               110750
3843                                               142489
3844                                                87110
3845                                                81835
3846                                                98544
3847                                               110550
3848                                               138143
3849                                               669585
3850                                               513487
3851                                               631013
3852                                               476163
3853                                               416438
3854                                               456709
3855                                               436389
3856                                               423352
3857                                               383974
3858                                               427296
3859                                               501533
3860                                               559077
3861                                               471344
3862                                               468793
3863                                               457933
3864                                               534763
3865                                               626923
3866                                               537893
3867                                               480926
3868                                               605409
3869                                               632756
3870                                               562613
3871                                               629930
3872                                               630743
3873                                               678995
3874                                               746045
3875                                               655948
3876                                               593239
3877                                               529970
3878                                               650813
3879                                               691109
3880                                               782145
3881                                               643465
3882                                               929684
3883                                              1047924
3884                                               704492
3885                                               643221
3886                                               715740
3887                                               683860
3888                                               836002
3889                                               901465
3890                                               657175
3891                                               680884
3892                                               750266
3893                                               671213
3894                                               837742
3895                                              1447534
3896                                               721989
3897                                               779057
3898                                               854486
3899                                               803197
3900                                               992213
3901                                                35235
3902                                                33646
3903                                                44378
3904                                                60677
3905                                                26663
3906                                                29057
3907                                                30444
3908                                                34663
3909                                                35446
3910                                                37427
3911                                                37516
3912                                                36813
3913                                                37152
3914                                                41729
3915                                                48963
3916                                                51733
3917                                                45781
3918                                                48992
3919                                                50040
3920                                                54113
3921                                                53454
3922                                                53670
3923                                                57404
3924                                                60191
3925                                                62214
3926                                                64636
3927                                                56615
3928                                                54424
3929                                                50561
3930                                                56151
3931                                                71648
3932                                                77719
3933                                                62309
3934                                                87801
3935                                                81916
3936                                                55940
3937                                                55696
3938                                                49692
3939                                                52626
3940                                                74447
3941                                                76889
3942                                                47341
3943                                                49581
3944                                                63257
3945                                                75574
3946                                                81576
3947                                                98136
3948                                                70021
3949                                                72603
3950                                                48151
3951                                                63266
3952                                                73869
3953                                               148592
3954                                               158602
3955                                                97260
3956                                               173005
3957                                                89345
3958                                               102113
3959                                               101415
3960                                                96964
3961                                                98080
3962                                               125399
3963                                               158620
3964                                               112104
3965                                               125422
3966                                               108281
3967                                               103912
3968                                                89642
3969                                               140627
3970                                               131833
3971                                               128877
3972                                               142476
3973                                               125027
3974                                               112883
3975                                               132337
3976                                               136078
3977                                               142735
3978                                               184173
3979                                               130937
3980                                               182509
3981                                               107339
3982                                               149115
3983                                               167161
3984                                               103460
3985                                               227686
3986                                               137741
3987                                               260626
3988                                               227523
3989                                               117780
3990                                               193377
3991                                               103463
3992                                                99290
3993                                               105077
3994                                               176358
3995                                                93574
3996                                               169812
3997                                               102685
3998                                               101867
3999                                               241271
4000                                                79763
4001                                                61068
4002                                                62107
4003                                                82028
4004                                                44399
4005                                               873785
4006                                               999959
4007                                               862587
4008                                               873735
4009                                               729253
4010                                               712348
4011                                               723969
4012                                               697012
4013                                               713428
4014                                               851527
4015                                               921534
4016                                               951060
4017                                               965797
4018                                               947416
4019                                              1019588
4020                                              1164894
4021                                              1150321
4022                                              1165119
4023                                              1180366
4024                                              1211100
4025                                              1274556
4026                                              1247700
4027                                              1286836
4028                                              1272165
4029                                              1498358
4030                                              1523685
4031                                              1468309
4032                                              1530426
4033                                              1422914
4034                                              1510541
4035                                              1603135
4036                                              1530509
4037                                              1687342
4038                                              2144351
4039                                              1861915
4040                                              1711269
4041                                              1613810
4042                                              1349758
4043                                              1351630
4044                                              1535010
4045                                              1715343
4046                                              1674136
4047                                              1532055
4048                                              1680330
4049                                              1378971
4050                                              1639481
4051                                              2164457
4052                                              1608441
4053                                              1787663
4054                                              1547484
4055                                              1439157
4056                                              1566127
4057                                                18070
4058                                                16272
4059                                                12359
4060                                                20042
4061                                                12291
4062                                                12277
4063                                                13161
4064                                                13757
4065                                                17343
4066                                                28376
4067                                                21640
4068                                                15555
4069                                                15616
4070                                                20581
4071                                                16915
4072                                                12777
4073                                                14374
4074                                                12601
4075                                                15917
4076                                                19071
4077                                                25466
4078                                                29436
4079                                                31317
4080                                                33913
4081                                                37966
4082                                                46053
4083                                                25603
4084                                                19716
4085                                                12816
4086                                                17532
4087                                                21274
4088                                                18840
4089                                                31345
4090                                                26342
4091                                                37443
4092                                                33821
4093                                                23422
4094                                                31062
4095                                                19391
4096                                                20113
4097                                                21587
4098                                                32085
4099                                                20762
4100                                                31559
4101                                                25448
4102                                                42831
4103                                                59611
4104                                                33297
4105                                                33125
4106                                                30228
4107                                                29886
4108                                                11154
4109                                                23166
4110                                                21082
4111                                                18892
4112                                                24486
4113                                                17901
4114                                                23610
4115                                                30402
4116                                                22892
4117                                                22081
4118                                                30817
4119                                                27294
4120                                                41720
4121                                                32258
4122                                                34973
4123                                                32908
4124                                                37595
4125                                                65044
4126                                                49486
4127                                                43283
4128                                                48205
4129                                                52770
4130                                                39957
4131                                                41610
4132                                                40878
4133                                                41307
4134                                                44368
4135                                                37596
4136                                                39329
4137                                                35056
4138                                                26539
4139                                                47486
4140                                                32548
4141                                                35603
4142                                                41989
4143                                                60231
4144                                                33965
4145                                                32868
4146                                                34799
4147                                                29117
4148                                                31627
4149                                                30607
4150                                                38523
4151                                                27025
4152                                                35256
4153                                                31666
4154                                                29031
4155                                                55887
4156                                                33072
4157                                                36031
4158                                                41110
4159                                                24063
4160                                                40902
4161                                               713042
4162                                               954803
4163                                               793990
4164                                               696042
4165                                               696849
4166                                               732069
4167                                               523322
4168                                               460230
4169                                               435952
4170                                               512038
4171                                               636342
4172                                               688906
4173                                               658467
4174                                               566150
4175                                               551449
4176                                               883866
4177                                               832270
4178                                               715527
4179                                               771413
4180                                               714407
4181                                               668121
4182                                               609413
4183                                               650142
4184                                               611445
4185                                               700325
4186                                               746733
4187                                              1130567
4188                                               901973
4189                                               976391
4190                                               955312
4191                                              1354635
4192                                              1157504
4193                                              1274098
4194                                              2283465
4195                                              1106990
4196                                              1290475
4197                                               582843
4198                                               588026
4199                                               912293
4200                                              1008215
4201                                              1269405
4202                                              1237675
4203                                              1074827
4204                                              1282457
4205                                               930110
4206                                              1388157
4207                                              1630430
4208                                              1284269
4209                                               993964
4210                                              1422978
4211                                              1012218
4212                                              1192876
4213                                              2191724
4214                                              2795231
4215                                              2390082
4216                                              2427296
4217                                              1938617
4218                                              2178698
4219                                              1797497
4220                                              1616563
4221                                              1616421
4222                                              1930227
4223                                              2009401
4224                                              2258828
4225                                              2048824
4226                                              1993514
4227                                              1938471
4228                                              2632018
4229                                              2446669
4230                                              2495011
4231                                              2351280
4232                                              2323362
4233                                              2245560
4234                                              2213893
4235                                              2172523
4236                                              2123945
4237                                              2589206
4238                                              2669362
4239                                              3188128
4240                                              2920243
4241                                              2903948
4242                                              2911585
4243                                              3554079
4244                                              3018204
4245                                              3556590
4246                                              5246830
4247                                              3800242
4248                                              3366389
4249                                              2415296
4250                                              2340135
4251                                              2745625
4252                                              2932815
4253                                              3414702
4254                                              3460336
4255                                              2950419
4256                                              3361016
4257                                              2707200
4258                                              3553331
4259                                              4290646
4260                                              3443651
4261                                              2940359
4262                                              3491029
4263                                              2696732
4264                                              3588932
4265                                               257988
4266                                               293063
4267                                               246740
4268                                               378804
4269                                               210220
4270                                               247461
4271                                               211327
4272                                               179548
4273                                               185281
4274                                               223022
4275                                               224369
4276                                               239615
4277                                               222358
4278                                               236473
4279                                               235008
4280                                               237321
4281                                               209148
4282                                               287750
4283                                               197872
4284                                               226795
4285                                               241098
4286                                               239638
4287                                               244441
4288                                               228100
4289                                               339263
4290                                               321186
4291                                               323720
4292                                               322696
4293                                               307759
4294                                               314403
4295                                               337330
4296                                               280360
4297                                               314998
4298                                               370027
4299                                               538038
4300                                               326907
4301                                               303892
4302                                               291174
4303                                               411414
4304                                               327260
4305                                               325110
4306                                               382631
4307                                               303582
4308                                               288178
4309                                               278339
4310                                               316153
4311                                               531500
4312                                               292520
4313                                               319014
4314                                               328750
4315                                               270035
4316                                               492915
4317                                                81351
4318                                                76983
4319                                                48772
4320                                                95284
4321                                                48667
4322                                                50316
4323                                                50338
4324                                                53545
4325                                                52976
4326                                                68746
4327                                                87928
4328                                                81061
4329                                                66861
4330                                                54807
4331                                                59374
4332                                                55135
4333                                                75406
4334                                                80918
4335                                                87311
4336                                                92045
4337                                                84662
4338                                                80413
4339                                                92078
4340                                                90770
4341                                                84547
4342                                               118093
4343                                                76178
4344                                                98795
4345                                                64911
4346                                                71420
4347                                                82501
4348                                                55453
4349                                               121578
4350                                                80588
4351                                               142408
4352                                               124208
4353                                                69222
4354                                               113252
4355                                                55774
4356                                                56406
4357                                                56331
4358                                                97078
4359                                                51358
4360                                                93393
4361                                                50581
4362                                                50342
4363                                               119919
4364                                                61348
4365                                                54289
4366                                                21801
4367                                                31582
4368                                                31730
4369                                               202765
4370                                               231498
4371                                               231525
4372                                               195612
4373                                               180338
4374                                               207065
4375                                               177198
4376                                               162911
4377                                               150271
4378                                               179713
4379                                               192515
4380                                               203204
4381                                               195429
4382                                               166763
4383                                               167573
4384                                               218302
4385                                               240345
4386                                               200121
4387                                               215056
4388                                               201588
4389                                               189679
4390                                               180678
4391                                               184982
4392                                               190535
4393                                               211189
4394                                               219161
4395                                               279488
4396                                               245062
4397                                               236402
4398                                               264045
4399                                               300578
4400                                               282262
4401                                               313359
4402                                               511601
4403                                               304615
4404                                               329516
4405                                               199177
4406                                               188452
4407                                               231665
4408                                               254821
4409                                               287549
4410                                               380795
4411                                               278370
4412                                               293977
4413                                               268802
4414                                               283608
4415                                               385631
4416                                               344188
4417                                               287751
4418                                               340076
4419                                               271291
4420                                               309378
4421                                               215903
4422                                               203894
4423                                               226308
4424                                               187419
4425                                               212696
4426                                               183315
4427                                               189026
4428                                               154481
4429                                               135479
4430                                               188686
4431                                               223810
4432                                               208869
4433                                               206765
4434                                               208122
4435                                               206298
4436                                               216560
4437                                               261415
4438                                               207913
4439                                               202900
4440                                               228315
4441                                               214144
4442                                               202784
4443                                               201696
4444                                               188087
4445                                               213070
4446                                               249522
4447                                               230323
4448                                               231637
4449                                               222421
4450                                               271580
4451                                               251167
4452                                               233772
4453                                               266908
4454                                               325968
4455                                               324710
4456                                               264604
4457                                               286552
4458                                               246403
4459                                               244434
4460                                               252486
4461                                               283973
4462                                               256532
4463                                               259847
4464                                               311747
4465                                               347499
4466                                               243842
4467                                               286749
4468                                               293462
4469                                               293418
4470                                               272231
4471                                               252752
4472                                               250116
4473                                                23868
4474                                                38354
4475                                                22461
4476                                                22668
4477                                                18777
4478                                                24292
4479                                                26629
4480                                                27434
4481                                                21348
4482                                                26248
4483                                                24184
4484                                                27239
4485                                                31202
4486                                                67363
4487                                                40378
4488                                                30643
4489                                                37833
4490                                                43896
4491                                                51711
4492                                                52112
4493                                                53440
4494                                                52791
4495                                                55309
4496                                                54927
4497                                                57549
4498                                                68197
4499                                                59568
4500                                                59253
4501                                                56238
4502                                                61595
4503                                                68421
4504                                                68959
4505                                               113018
4506                                                97359
4507                                               114448
4508                                                52354
4509                                                64913
4510                                                57326
4511                                                57684
4512                                                53508
4513                                                50816
4514                                                52730
4515                                                58262
4516                                                58768
4517                                                57903
4518                                                52892
4519                                                72084
4520                                                61619
4521                                                63654
4522                                                56551
4523                                                67789
4524                                                61042
4525                                               446634
4526                                               428227
4527                                               330241
4528                                               349761
4529                                               272841
4530                                               306191
4531                                               357174
4532                                               366464
4533                                               297119
4534                                               350913
4535                                               367702
4536                                               416484
4537                                               378849
4538                                               360990
4539                                               439168
4540                                               488706
4541                                               541981
4542                                               462410
4543                                               445643
4544                                               435932
4545                                               534862
4546                                               526275
4547                                               565159
4548                                               583709
4549                                               634634
4550                                               761168
4551                                               490842
4552                                               925766
4553                                               628987
4554                                               518979
4555                                               495022
4556                                               619173
4557                                               621229
4558                                               861839
4559                                               636658
4560                                               650864
4561                                               756239
4562                                               507777
4563                                               451253
4564                                               518334
4565                                               691375
4566                                               548240
4567                                               481425
4568                                               496106
4569                                               499721
4570                                               525736
4571                                              1165323
4572                                               571495
4573                                               518203
4574                                               499796
4575                                               510182
4576                                               840638
4577                                               135603
4578                                               135172
4579                                               256730
4580                                               143749
4581                                               104742
4582                                               114101
4583                                               119197
4584                                               116113
4585                                               109966
4586                                               127808
4587                                               107928
4588                                               124431
4589                                               187759
4590                                               123794
4591                                               146731
4592                                               156921
4593                                               166648
4594                                               173788
4595                                               156328
4596                                               139971
4597                                               166750
4598                                               130930
4599                                               142590
4600                                               140619
4601                                               152087
4602                                               189258
4603                                               158417
4604                                               168949
4605                                               167508
4606                                               234870
4607                                               204586
4608                                               157858
4609                                               220232
4610                                               244456
4611                                               219777
4612                                               194071
4613                                               285328
4614                                               233413
4615                                               249614
4616                                               247869
4617                                               177624
4618                                               223411
4619                                               207463
4620                                               209750
4621                                               277280
4622                                               169229
4623                                               340413
4624                                               223505
4625                                               208201
4626                                               249095
4627                                               241994
4628                                               291668
4629                                                63984
4630                                                60082
4631                                                51721
4632                                                51555
4633                                                41537
4634                                                40838
4635                                                39963
4636                                                42184
4637                                                42819
4638                                                53189
4639                                                64317
4640                                                67027
4641                                                79272
4642                                                70495
4643                                                82985
4644                                                81088
4645                                                90748
4646                                               100303
4647                                               102581
4648                                               113634
4649                                               115113
4650                                               116645
4651                                               114296
4652                                               109983
4653                                               124464
4654                                               107878
4655                                               110539
4656                                               116062
4657                                               111257
4658                                               115207
4659                                               118782
4660                                               123522
4661                                               131575
4662                                               154920
4663                                               143134
4664                                               135697
4665                                               137650
4666                                               112390
4667                                               113708
4668                                               129664
4669                                               140114
4670                                               142777
4671                                               140243
4672                                               136706
4673                                               118359
4674                                               118416
4675                                               207314
4676                                               145758
4677                                               135264
4678                                               140275
4679                                               120386
4680                                               127744
4681                                                58579
4682                                                54299
4683                                                51725
4684                                                49249
4685                                                48587
4686                                                49335
4687                                                47267
4688                                                43302
4689                                                43432
4690                                                54871
4691                                                67555
4692                                                66362
4693                                                68004
4694                                                66844
4695                                                78465
4696                                                71791
4697                                                86558
4698                                                85621
4699                                                84502
4700                                                80717
4701                                                93057
4702                                                86667
4703                                                91586
4704                                                92471
4705                                               117236
4706                                               116414
4707                                               104881
4708                                               122627
4709                                               108482
4710                                               117810
4711                                               106697
4712                                               105907
4713                                               121475
4714                                               158034
4715                                               132271
4716                                               118253
4717                                               119481
4718                                                82433
4719                                                74249
4720                                               109864
4721                                               127368
4722                                               125743
4723                                               117735
4724                                               107712
4725                                               101387
4726                                               118256
4727                                               168149
4728                                               115933
4729                                               131405
4730                                               115257
4731                                                97008
4732                                               102412
4733                                                28263
4734                                                26461
4735                                                27761
4736                                                26048
4737                                                23787
4738                                                25267
4739                                                25756
4740                                                23895
4741                                                21234
4742                                                29276
4743                                                32597
4744                                                34297
4745                                                35465
4746                                                39270
4747                                                38598
4748                                                38350
4749                                                42949
4750                                                43350
4751                                                46240
4752                                                41577
4753                                                45989
4754                                                43886
4755                                                41844
4756                                                45127
4757                                                54601
4758                                                55216
4759                                                52755
4760                                                58288
4761                                                52625
4762                                                56077
4763                                                52309
4764                                                50049
4765                                                55895
4766                                                76767
4767                                                71618
4768                                                57629
4769                                                59222
4770                                                31990
4771                                                32720
4772                                                50007
4773                                                55818
4774                                                57107
4775                                                51285
4776                                                48195
4777                                                45912
4778                                                55675
4779                                                79535
4780                                                52095
4781                                                55634
4782                                                51994
4783                                                42999
4784                                                58349
4785                                               263467
4786                                               218206
4787                                               275887
4788                                               156813
4789                                               150299
4790                                               151992
4791                                               144958
4792                                               137695
4793                                               118831
4794                                               127357
4795                                               180666
4796                                               190297
4797                                               191756
4798                                               230424
4799                                               234690
4800                                               229037
4801                                               247685
4802                                               225696
4803                                               217956
4804                                               299818
4805                                               239914
4806                                               255279
4807                                               253984
4808                                               237468
4809                                               231260
4810                                               303030
4811                                               228940
4812                                               276856
4813                                               263137
4814                                               269556
4815                                               252375
4816                                               253577
4817                                               224843
4818                                               307614
4819                                               251468
4820                                               281110
4821                                               210774
4822                                               227081
4823                                               284765
4824                                               248862
4825                                               203155
4826                                               227494
4827                                               216300
4828                                               213423
4829                                               219980
4830                                               207645
4831                                               419045
4832                                               209171
4833                                               278224
4834                                               256284
4835                                               229930
4836                                               301173
4837                                               191755
4838                                               161105
4839                                               205743
4840                                               133319
4841                                               108872
4842                                               120006
4843                                               126173
4844                                               128357
4845                                               119080
4846                                               119290
4847                                               139616
4848                                               142805
4849                                               131355
4850                                               136015
4851                                               139189
4852                                               144232
4853                                               164050
4854                                               145516
4855                                               127819
4856                                               164961
4857                                               168656
4858                                               167606
4859                                               168790
4860                                               161030
4861                                               204705
4862                                               186674
4863                                               163148
4864                                               160232
4865                                               144196
4866                                               171999
4867                                               168420
4868                                               205497
4869                                               169362
4870                                               194614
4871                                               221266
4872                                               193980
4873                                               155882
4874                                               158654
4875                                               148672
4876                                               162858
4877                                               189449
4878                                               139501
4879                                               156090
4880                                               144668
4881                                               159025
4882                                               140454
4883                                               302239
4884                                               192218
4885                                               157896
4886                                               190461
4887                                               153030
4888                                               256692
4889                                               462873
4890                                               401462
4891                                               447892
4892                                               310593
4893                                               297883
4894                                               308964
4895                                               308678
4896                                               304926
4897                                               285048
4898                                               178796
4899                                               362859
4900                                               409308
4901                                               421421
4902                                               549378
4903                                               549722
4904                                               533968
4905                                               552429
4906                                               469333
4907                                               415962
4908                                               757101
4909                                               463373
4910                                               513372
4911                                               527451
4912                                               481291
4913                                               458731
4914                                               546097
4915                                               411086
4916                                               459979
4917                                               418904
4918                                               481324
4919                                               462080
4920                                               416812
4921                                               438490
4922                                               569012
4923                                               534187
4924                                               570670
4925                                               415099
4926                                               399404
4927                                               546228
4928                                               409136
4929                                               416864
4930                                               383558
4931                                               441193
4932                                               445285
4933                                               509200
4934                                               357790
4935                                               858526
4936                                               431120
4937                                               621996
4938                                               474840
4939                                               487615
4940                                               593430
4941                                               143842
4942                                               132123
4943                                               207214
4944                                               131323
4945                                               120318
4946                                               128919
4947                                               152069
4948                                               130209
4949                                               108922
4950                                               212505
4951                                               146878
4952                                               138353
4953                                               190566
4954                                               130310
4955                                               150307
4956                                               167761
4957                                               141811
4958                                               174074
4959                                               140739
4960                                               158812
4961                                               192576
4962                                               157723
4963                                               163758
4964                                               165714
4965                                               163812
4966                                               179740
4967                                               174576
4968                                               193696
4969                                               178700
4970                                               262684
4971                                               210395
4972                                               212729
4973                                               218296
4974                                               334254
4975                                               271005
4976                                               222809
4977                                               252921
4978                                               228654
4979                                               191068
4980                                               192540
4981                                               193207
4982                                               189254
4983                                               203599
4984                                               180912
4985                                               215390
4986                                               152778
4987                                               347696
4988                                               190463
4989                                               253247
4990                                               203618
4991                                               272041
4992                                               290450
4993                                                62512
4994                                                56975
4995                                                42052
4996                                                64900
4997                                                40561
4998                                                37789
4999                                                40771
5000                                                42625
5001                                                45339
5002                                                52741
5003                                                64028
5004                                                56454
5005                                                66172
5006                                                68555
5007                                                62718
5008                                                59266
5009                                                60398
5010                                                48370
5011                                                58093
5012                                                67082
5013                                                59165
5014                                                67075
5015                                                81764
5016                                                77243
5017                                                87043
5018                                               125503
5019                                                90300
5020                                               100653
5021                                                80778
5022                                               103324
5023                                               120645
5024                                                98568
5025                                               137073
5026                                               132765
5027                                               163223
5028                                               146951
5029                                               109476
5030                                               126385
5031                                                97714
5032                                                91996
5033                                                94542
5034                                               127187
5035                                                90668
5036                                               112748
5037                                                82587
5038                                                81397
5039                                               151186
5040                                                88741
5041                                                92971
5042                                                74437
5043                                                76297
5044                                                64802
5045                                              1320134
5046                                              1116482
5047                                               987150
5048                                              1023317
5049                                               747939
5050                                               871662
5051                                               971219
5052                                               789648
5053                                               802090
5054                                              1016611
5055                                               984551
5056                                              1376612
5057                                              1053486
5058                                              1129009
5059                                              1103971
5060                                              1003812
5061                                              1321332
5062                                              1144645
5063                                              1105902
5064                                              1103048
5065                                              1162455
5066                                              1026989
5067                                              1095931
5068                                              1052371
5069                                              1012710
5070                                              1226469
5071                                               995500
5072                                              1118583
5073                                              1079764
5074                                              1281792
5075                                              1322066
5076                                              1539489
5077                                              1441163
5078                                              1367081
5079                                              1559296
5080                                              1465438
5081                                              1058770
5082                                               870524
5083                                              1083779
5084                                              1507245
5085                                              1411797
5086                                              1083004
5087                                               903361
5088                                               930353
5089                                              1020822
5090                                              1416071
5091                                              1930304
5092                                              1462783
5093                                              1530144
5094                                              1756469
5095                                              1900835
5096                                              2024262
5097                                               760830
5098                                               729401
5099                                               463051
5100                                               851643
5101                                               459434
5102                                               480430
5103                                               506555
5104                                               508907
5105                                               517368
5106                                               625236
5107                                               791522
5108                                               657058
5109                                               621971
5110                                               588360
5111                                               566389
5112                                               497550
5113                                               664440
5114                                               610782
5115                                               648952
5116                                               738177
5117                                               687208
5118                                               710445
5119                                               845297
5120                                               813315
5121                                               848789
5122                                              1175339
5123                                               777463
5124                                               936051
5125                                               592433
5126                                               823705
5127                                               971083
5128                                               666118
5129                                              1218469
5130                                               933113
5131                                              1472240
5132                                              1298673
5133                                               779185
5134                                              1116067
5135                                               636305
5136                                               604703
5137                                               616754
5138                                              1041734
5139                                               592206
5140                                               994256
5141                                               590120
5142                                               613314
5143                                              1364491
5144                                               625042
5145                                               663828
5146                                               425617
5147                                               558424
5148                                               339055
5149                                                22889
5150                                                24326
5151                                                27759
5152                                                19424
5153                                                17786
5154                                                25545
5155                                                31223
5156                                                21354
5157                                                15740
5158                                                34481
5159                                                19622
5160                                                19166
5161                                                28798
5162                                                19839
5163                                                21111
5164                                                14719
5165                                                15404
5166                                                18387
5167                                                14030
5168                                                16235
5169                                                21160
5170                                                15512
5171                                                15529
5172                                                15297
5173                                                16331
5174                                                19298
5175                                                18082
5176                                                19850
5177                                                17048
5178                                                30006
5179                                                21853
5180                                                23439
5181                                                22869
5182                                                34939
5183                                                28946
5184                                                21236
5185                                                29662
5186                                                26585
5187                                                22272
5188                                                22446
5189                                                19605
5190                                                17656
5191                                                22577
5192                                                19964
5193                                                27399
5194                                                21398
5195                                                56113
5196                                                19031
5197                                                29929
5198                                                23920
5199                                                32689
5200                                                37805
5201                                                 9135
5202                                                 7757
5203                                                 6952
5204                                                 6623
5205                                                 6474
5206                                                 8786
5207                                                11029
5208                                                10904
5209                                                 6010
5210                                                 8444
5211                                                12564
5212                                                19770
5213                                                14341
5214                                                12644
5215                                                23066
5216                                                20573
5217                                                27154
5218                                                22002
5219                                                23410
5220                                                22788
5221                                                28665
5222                                                28848
5223                                                23532
5224                                                25828
5225                                                22959
5226                                                21478
5227                                                10839
5228                                                14770
5229                                                10829
5230                                                10227
5231                                                 9859
5232                                                 8500
5233                                                10441
5234                                                12628
5235                                                10729
5236                                                10637
5237                                                11057
5238                                                 8054
5239                                                 7307
5240                                                10039
5241                                                11333
5242                                                 9122
5243                                                 9372
5244                                                12434
5245                                                27326
5246                                                21669
5247                                                80994
5248                                                33530
5249                                                28333
5250                                                32776
5251                                                28510
5252                                                29055
5253                                                29453
5254                                                28069
5255                                                31387
5256                                                42943
5257                                                24790
5258                                                27877
5259                                                27381
5260                                                26702
5261                                                25926
5262                                                37054
5263                                                31562
5264                                                46378
5265                                                32212
5266                                                38680
5267                                                36169
5268                                                39694
5269                                                35938
5270                                                45350
5271                                                37192
5272                                                39269
5273                                                41584
5274                                                47610
5275                                                35492
5276                                                39136
5277                                                49141
5278                                                47538
5279                                                52517
5280                                                45937
5281                                                43664
5282                                                46955
5283                                                52293
5284                                                40672
5285                                                41631
5286                                                51235
5287                                                54950
5288                                                39960
5289                                                39173
5290                                                32612
5291                                                31827
5292                                                43181
5293                                                46257
5294                                                42612
5295                                                38547
5296                                                39219
5297                                                40416
5298                                                37685
5299                                                60707
5300                                                41174
5301                                                34869
5302                                                41232
5303                                                31788
5304                                                47417
5305                                               104317
5306                                               102323
5307                                                60414
5308                                               123042
5309                                                61345
5310                                                63841
5311                                                69065
5312                                                67754
5313                                                68008
5314                                                92612
5315                                               117544
5316                                               105328
5317                                                72977
5318                                                66910
5319                                                66930
5320                                                62809
5321                                               105770
5322                                                99784
5323                                               100776
5324                                               110703
5325                                                95386
5326                                                87239
5327                                                97555
5328                                               101299
5329                                                92116
5330                                               142384
5331                                                88209
5332                                               127731
5333                                                76895
5334                                               100100
5335                                               117845
5336                                                65401
5337                                               138867
5338                                                96504
5339                                               170271
5340                                               148356
5341                                                79809
5342                                               140518
5343                                                73787
5344                                                70271
5345                                                69086
5346                                               131685
5347                                                67540
5348                                               134265
5349                                                67637
5350                                                76136
5351                                               189390
5352                                                95493
5353                                               122562
5354                                                49997
5355                                                88162
5356                                                46448
5357                                             10282926
5358                                             10339168
5359                                              9967220
5360                                              9908983
5361                                              7337342
5362                                              8033511
5363                                              7759608
5364                                              7126936
5365                                              6852046
5366                                              8104522
5367                                              8855073
5368                                              9579339
5369                                              9123898
5370                                              9255914
5371                                              9481313
5372                                             10380438
5373                                             11083513
5374                                             10420973
5375                                              9906499
5376                                             10879342
5377                                             10731380
5378                                             10423958
5379                                             10795751
5380                                             10628873
5381                                             11677528
5382                                             13315901
5383                                             12029919
5384                                             12842698
5385                                             11533970
5386                                             13396652
5387                                             13829591
5388                                             12981224
5389                                             14437190
5390                                             17896392
5391                                             15899858
5392                                             14382185
5393                                             12896367
5394                                             11538132
5395                                             11512622
5396                                             12745267
5397                                             13727454
5398                                             13104888
5399                                             12196587
5400                                             13210855
5401                                             12003752
5402                                             13187973
5403                                             20470573
5404                                             13278054
5405                                             14054368
5406                                             13832256
5407                                             13226089
5408                                             16054084
5409                                              1240718
5410                                              1168213
5411                                              1545122
5412                                              1164206
5413                                               938769
5414                                               913022
5415                                              1032253
5416                                               867974
5417                                               762971
5418                                              1138469
5419                                              1052993
5420                                              1006693
5421                                              1206951
5422                                              1029363
5423                                              1200624
5424                                              1265511
5425                                              1348831
5426                                              1334700
5427                                              1153540
5428                                              1212034
5429                                              1399001
5430                                              1254401
5431                                              1301288
5432                                              1304616
5433                                              1475917
5434                                              1738563
5435                                              1532440
5436                                              1600274
5437                                              1516386
5438                                              2070557
5439                                              1834685
5440                                              1642959
5441                                              1778717
5442                                              2488059
5443                                              2013821
5444                                              1746410
5445                                              2074921
5446                                              1941317
5447                                              1623273
5448                                              1651027
5449                                              1955451
5450                                              1773673
5451                                              1691666
5452                                              1865705
5453                                              2166535
5454                                              1680248
5455                                              2960080
5456                                              1735400
5457                                              2113197
5458                                              2079268
5459                                              2193263
5460                                              2638893
5461                                                69977
5462                                                66773
5463                                                68325
5464                                                66386
5465                                                45218
5466                                                40680
5467                                                39758
5468                                                47290
5469                                                55532
5470                                                68190
5471                                                72348
5472                                                61268
5473                                                61488
5474                                                61710
5475                                                85785
5476                                               117339
5477                                                87177
5478                                                93803
5479                                                87641
5480                                                89652
5481                                                81237
5482                                                76077
5483                                                85762
5484                                                85498
5485                                               102689
5486                                               106150
5487                                               101284
5488                                               111121
5489                                                94430
5490                                               125188
5491                                               134448
5492                                               111206
5493                                               136712
5494                                               183589
5495                                               148534
5496                                               155178
5497                                               154217
5498                                               128899
5499                                                80391
5500                                               112685
5501                                               148116
5502                                               136620
5503                                               108856
5504                                               112139
5505                                               140945
5506                                               151510
5507                                               197734
5508                                                88820
5509                                                99167
5510                                               120098
5511                                               152838
5512                                               178471
5513                                                41818
5514                                                30835
5515                                                33482
5516                                                38434
5517                                                32457
5518                                                27773
5519                                                31169
5520                                                31719
5521                                                32495
5522                                                36335
5523                                                35959
5524                                                34761
5525                                                32020
5526                                                45066
5527                                                45025
5528                                                47136
5529                                                47619
5530                                                47493
5531                                                48133
5532                                                49200
5533                                                62181
5534                                                60585
5535                                                60150
5536                                                65016
5537                                                63898
5538                                                57936
5539                                                56275
5540                                                46343
5541                                                49178
5542                                                51386
5543                                                55628
5544                                                50237
5545                                                49347
5546                                                49123
5547                                                72058
5548                                                74961
5549                                                55046
5550                                                48908
5551                                                48913
5552                                                48770
5553                                                50731
5554                                                50085
5555                                                48170
5556                                                52012
5557                                                53783
5558                                                52644
5559                                                77241
5560                                               167182
5561                                                86150
5562                                               135921
5563                                                86964
5564                                                77758
5565                                               118926
5566                                               519460
5567                                               363593
5568                                               369811
5569                                               546810
5570                                               407522
5571                                               377227
5572                                               365922
5573                                               387453
5574                                               458178
5575                                               434269
5576                                               418177
5577                                               426158
5578                                               380898
5579                                               461605
5580                                               451996
5581                                               443693
5582                                               424594
5583                                               435941
5584                                               402657
5585                                               417108
5586                                               431019
5587                                               440986
5588                                               399898
5589                                               435764
5590                                               415328
5591                                               448758
5592                                               397714
5593                                               446949
5594                                               462836
5595                                               475096
5596                                               482039
5597                                               477778
5598                                               467149
5599                                               394707
5600                                               722002
5601                                               471826
5602                                               458300
5603                                               439898
5604                                               438986
5605                                               493953
5606                                               462479
5607                                               463108
5608                                               476272
5609                                               591422
5610                                               531502
5611                                               434568
5612                                               538660
5613                                               770463
5614                                               489024
5615                                               528126
5616                                               472453
5617                                               750034
5618                                               408952
5619                                                 1706
5620                                                 2348
5621                                                 1752
5622                                                 1936
5623                                                 1518
5624                                                 1707
5625                                                 2085
5626                                                 2047
5627                                                 1849
5628                                                 2180
5629                                                 2948
5630                                                 2911
5631                                                 2680
5632                                                 2015
5633                                                 1936
5634                                                 2638
5635                                                 2817
5636                                                 3171
5637                                                 2514
5638                                                 2840
5639                                                 3647
5640                                                 3803
5641                                                 3473
5642                                                 3130
5643                                                 3544
5644                                                 3135
5645                                                 3403
5646                                                 3574
5647                                                 3263
5648                                                 2998
5649                                                 3758
5650                                                 3548
5651                                                 3430
5652                                                 2779
5653                                                 3285
5654                                                 2195
5655                                                 2688
5656                                                 3555
5657                                                 4116
5658                                                 3617
5659                                                 4141
5660                                                 3887
5661                                                 9416
5662                                                 5257
5663                                                 5200
5664                                                 7192
5665                                                 4101
5666                                                11334
5667                                                 6533
5668                                                 5627
5669                                                 4774
5670                                                 7163
5671                                                 9409
5672                                               325398
5673                                               312861
5674                                               413484
5675                                               557435
5676                                               386056
5677                                               304833
5678                                               341486
5679                                               533027
5680                                               334876
5681                                               360615
5682                                               328476
5683                                               331423
5684                                               322932
5685                                               366123
5686                                               384522
5687                                               323528
5688                                               394645
5689                                               333916
5690                                               319718
5691                                               328846
5692                                               492069
5693                                               470233
5694                                               429987
5695                                               556263
5696                                               463807
5697                                               464670
5698                                               437069
5699                                               434223
5700                                               452146
5701                                               457513
5702                                               460654
5703                                               460431
5704                                               441357
5705                                               448443
5706                                               493448
5707                                               467084
5708                                               382450
5709                                               437483
5710                                               450287
5711                                               427484
5712                                               412841
5713                                               425274
5714                                               389750
5715                                               529716
5716                                               489162
5717                                               391316
5718                                               593329
5719                                               594523
5720                                               464829
5721                                               526893
5722                                               457448
5723                                               605625
5724                                               371223
5725                                                62632
5726                                                72517
5727                                                57326
5728                                                63390
5729                                                87461
5730                                                50509
5731                                                55800
5732                                                55305
5733                                                54119
5734                                                53895
5735                                                39989
5736                                                40395
5737                                                31577
5738                                                42862
5739                                                52357
5740                                                59413
5741                                                66980
5742                                                67611
5743                                                74398
5744                                                71901
5745                                                60730
5746                                                78780
5747                                                65452
5748                                                67608
5749                                                72329
5750                                                80023
5751                                                80411
5752                                                77255
5753                                                82873
5754                                                75552
5755                                                80513
5756                                                75153
5757                                                72164
5758                                                66532
5759                                                87260
5760                                                83395
5761                                                70195
5762                                                70002
5763                                                80633
5764                                                73054
5765                                                67001
5766                                                72622
5767                                                85677
5768                                                75284
5769                                                71329
5770                                                62450
5771                                                71051
5772                                                97167
5773                                                72001
5774                                                70337
5775                                                68322
5776                                                83906
5777                                                58532
5778                                              3201737
5779                                              1934711
5780                                              2877209
5781                                              2013200
5782                                              1660573
5783                                              1354966
5784                                              1360694
5785                                              1882561
5786                                              2224529
5787                                              2384846
5788                                              1779178
5789                                              1699673
5790                                              1829531
5791                                              1608863
5792                                              1575761
5793                                              1556656
5794                                              1599511
5795                                              1720931
5796                                              1420373
5797                                              1293180
5798                                              2079376
5799                                              1892140
5800                                              2206571
5801                                              1738865
5802                                              1821613
5803                                              1818683
5804                                              1942683
5805                                              1977950
5806                                              1650089
5807                                              1517908
5808                                              1580024
5809                                              1793496
5810                                              1627754
5811                                              1570245
5812                                              2470795
5813                                              1689226
5814                                              1521895
5815                                              1572972
5816                                              2128867
5817                                              1580307
5818                                              1542979
5819                                              1555271
5820                                              1577127
5821                                              1720073
5822                                              2038285
5823                                              2098407
5824                                              1870885
5825                                              3550403
5826                                              2295856
5827                                              2659661
5828                                              2450277
5829                                              2569566
5830                                              2877688
5831                                               108930
5832                                                58732
5833                                                56565
5834                                                60516
5835                                                94262
5836                                                56764
5837                                                59312
5838                                                65657
5839                                                65174
5840                                                62872
5841                                                65040
5842                                                68120
5843                                                66076
5844                                                74146
5845                                                71519
5846                                                64593
5847                                                68912
5848                                                69478
5849                                                65605
5850                                                69135
5851                                                78915
5852                                                78386
5853                                                81789
5854                                                75359
5855                                                73163
5856                                                70720
5857                                                76449
5858                                                72807
5859                                                78803
5860                                                86114
5861                                                86779
5862                                                89548
5863                                                87873
5864                                                77142
5865                                               106192
5866                                                87501
5867                                                78265
5868                                                77381
5869                                                75492
5870                                                85811
5871                                                94478
5872                                                89210
5873                                                87660
5874                                                87666
5875                                               118607
5876                                                78996
5877                                                74076
5878                                               172311
5879                                                86136
5880                                               116160
5881                                                84479
5882                                                80202
5883                                                94572
5884                                               845965
5885                                               417906
5886                                               275987
5887                                               277789
5888                                               378155
5889                                               278263
5890                                               285841
5891                                               276787
5892                                               284220
5893                                               268774
5894                                               275588
5895                                               288024
5896                                               296817
5897                                               293405
5898                                               322017
5899                                               315414
5900                                               318096
5901                                               343566
5902                                               336708
5903                                               349704
5904                                               355733
5905                                               401420
5906                                               447892
5907                                               459859
5908                                               486178
5909                                               504038
5910                                               534893
5911                                               473567
5912                                               549160
5913                                               514710
5914                                               493632
5915                                               538900
5916                                               496380
5917                                               470280
5918                                               591928
5919                                               498580
5920                                               470215
5921                                               490302
5922                                               454692
5923                                               452599
5924                                               432870
5925                                               448963
5926                                               446178
5927                                               454626
5928                                               442526
5929                                               461727
5930                                               454381
5931                                               912672
5932                                               511366
5933                                               497236
5934                                               480072
5935                                               499836
5936                                               531287
5937                                                43570
5938                                                41603
5939                                                53839
5940                                                88001
5941                                               133150
5942                                                62154
5943                                                89762
5944                                               119880
5945                                               121602
5946                                                80070
5947                                                59197
5948                                                59692
5949                                                50675
5950                                                58917
5951                                                68228
5952                                                69168
5953                                                74603
5954                                                73802
5955                                                88697
5956                                               107640
5957                                                92313
5958                                                88272
5959                                                82404
5960                                                85749
5961                                                91781
5962                                                95015
5963                                               101206
5964                                               100910
5965                                               110402
5966                                                85499
5967                                                83650
5968                                                76777
5969                                                73693
5970                                                87347
5971                                               131508
5972                                                89608
5973                                                68249
5974                                                77040
5975                                                76149
5976                                                72866
5977                                                75139
5978                                                71214
5979                                                77407
5980                                                82627
5981                                               108390
5982                                                93503
5983                                               131464
5984                                               181551
5985                                               118753
5986                                               142025
5987                                               125732
5988                                               126967
5989                                               130251
5990                                                30763
5991                                                20794
5992                                                32627
5993                                                18377
5994                                                45552
5995                                                16437
5996                                                14167
5997                                                14574
5998                                                15618
5999                                                18569
6000                                                15691
6001                                                16441
6002                                                 8225
6003                                                13598
6004                                                16472
6005                                                16292
6006                                                19955
6007                                                21627
6008                                                19788
6009                                                20982
6010                                                19182
6011                                                24630
6012                                                20908
6013                                                20699
6014                                                28472
6015                                                28459
6016                                                29875
6017                                                26548
6018                                                35647
6019                                                22619
6020                                                20624
6021                                                20819
6022                                                22123
6023                                                15547
6024                                                33866
6025                                                27191
6026                                                19860
6027                                                23007
6028                                                23208
6029                                                25021
6030                                                23491
6031                                                24225
6032                                                32440
6033                                                29780
6034                                                49175
6035                                                31711
6036                                                43261
6037                                                60090
6038                                                32338
6039                                                47945
6040                                                32602
6041                                                34667
6042                                                50244
6043                                               307423
6044                                               203335
6045                                               217662
6046                                               219737
6047                                               258400
6048                                               160636
6049                                               167540
6050                                               271438
6051                                               245464
6052                                               213646
6053                                               186939
6054                                               174845
6055                                               194837
6056                                               170718
6057                                               168546
6058                                               181712
6059                                               167026
6060                                               185508
6061                                               186107
6062                                               228512
6063                                               260342
6064                                               307187
6065                                               259718
6066                                               275273
6067                                               327859
6068                                               287851
6069                                               287481
6070                                               221432
6071                                               307811
6072                                               231556
6073                                               227993
6074                                               269246
6075                                               222774
6076                                               238305
6077                                               269157
6078                                               337552
6079                                               338733
6080                                               289149
6081                                               275048
6082                                               216633
6083                                               223658
6084                                               237495
6085                                               200229
6086                                               208324
6087                                               198567
6088                                               272758
6089                                               276021
6090                                               362715
6091                                               172742
6092                                               222669
6093                                               313393
6094                                               343124
6095                                               438042
6096                                               355322
6097                                               171218
6098                                               154962
6099                                               330683
6100                                               325073
6101                                               171383
6102                                               196662
6103                                               269918
6104                                               320968
6105                                               226577
6106                                               238206
6107                                               158787
6108                                               140122
6109                                               249373
6110                                               161436
6111                                               156645
6112                                               167203
6113                                               165312
6114                                               379023
6115                                               324068
6116                                               198504
6117                                               211822
6118                                               313773
6119                                               353626
6120                                               207831
6121                                               267690
6122                                               182812
6123                                               173433
6124                                               198309
6125                                               212253
6126                                               179793
6127                                               175140
6128                                               205775
6129                                               223914
6130                                               357128
6131                                               162527
6132                                               163230
6133                                               178842
6134                                               164299
6135                                               159644
6136                                               150935
6137                                               156752
6138                                               157144
6139                                               161939
6140                                               237454
6141                                               254319
6142                                               291658
6143                                               502457
6144                                               214812
6145                                               268030
6146                                               212523
6147                                               249168
6148                                               336468
6149                                                91028
6150                                                57335
6151                                                98625
6152                                                44930
6153                                               183341
6154                                                40629
6155                                                39979
6156                                                42219
6157                                                42917
6158                                                40457
6159                                                39114
6160                                                33515
6161                                                17298
6162                                                24145
6163                                                32561
6164                                                29721
6165                                                32686
6166                                                35365
6167                                                29649
6168                                                34529
6169                                                33590
6170                                                45320
6171                                                39063
6172                                                40479
6173                                                55199
6174                                                56064
6175                                                63951
6176                                                58117
6177                                               129556
6178                                                61427
6179                                                57323
6180                                                48464
6181                                                44187
6182                                                44187
6183                                                82133
6184                                                50224
6185                                                42596
6186                                                51563
6187                                                48429
6188                                                45497
6189                                                44603
6190                                                45055
6191                                                40215
6192                                                42027
6193                                               105833
6194                                                46507
6195                                                87966
6196                                               228907
6197                                                70436
6198                                               202324
6199                                                72303
6200                                                76520
6201                                               165060
6202                                               103361
6203                                                59470
6204                                                74185
6205                                                52467
6206                                               182507
6207                                                50330
6208                                                68242
6209                                                49202
6210                                                46899
6211                                                65814
6212                                                37656
6213                                                37971
6214                                                30568
6215                                                35899
6216                                                48553
6217                                                40379
6218                                                46227
6219                                                52612
6220                                                45103
6221                                                47877
6222                                                48945
6223                                                69687
6224                                                49418
6225                                                56573
6226                                                70377
6227                                                71380
6228                                                71126
6229                                                54018
6230                                                96016
6231                                                64251
6232                                                74167
6233                                                70747
6234                                                64369
6235                                                68015
6236                                               134403
6237                                                72819
6238                                                67510
6239                                                80672
6240                                                69916
6241                                                68299
6242                                                71916
6243                                                70211
6244                                                64058
6245                                                59098
6246                                               140947
6247                                                80219
6248                                               107963
6249                                               298898
6250                                               100681
6251                                               227004
6252                                               107349
6253                                               102135
6254                                               224774
6255                                              1740609
6256                                              1076521
6257                                              1037403
6258                                               926925
6259                                              1732528
6260                                               837408
6261                                               991256
6262                                              1049661
6263                                              1043530
6264                                               901890
6265                                               806546
6266                                               801195
6267                                               658132
6268                                               780138
6269                                               895148
6270                                               851996
6271                                               913391
6272                                               975125
6273                                               996527
6274                                              1089386
6275                                              1051827
6276                                              1199618
6277                                              1159890
6278                                              1180490
6279                                              1337473
6280                                              1385858
6281                                              1423925
6282                                              1270260
6283                                              1685605
6284                                              1338516
6285                                              1336833
6286                                              1365403
6287                                              1302177
6288                                              1290415
6289                                              1932631
6290                                              1431881
6291                                              1228763
6292                                              1337527
6293                                              1255688
6294                                              1212296
6295                                              1228379
6296                                              1224341
6297                                              1259336
6298                                              1313704
6299                                              1692495
6300                                              1330000
6301                                              1694611
6302                                              3117639
6303                                              1631555
6304                                              2241043
6305                                              1705656
6306                                              1755106
6307                                              2157250
6308                                               106173
6309                                               115065
6310                                               101937
6311                                               163729
6312                                               127730
6313                                                89564
6314                                                97308
6315                                                99684
6316                                                99317
6317                                               117170
6318                                               111837
6319                                               112917
6320                                                79474
6321                                               115716
6322                                               122033
6323                                               107531
6324                                                97800
6325                                               117859
6326                                               112225
6327                                               104200
6328                                               127783
6329                                               129112
6330                                               115565
6331                                               116786
6332                                               120360
6333                                               129466
6334                                               111399
6335                                               121033
6336                                               131058
6337                                               115824
6338                                               118452
6339                                               137083
6340                                               119602
6341                                                95013
6342                                               140317
6343                                               135977
6344                                               103642
6345                                               123727
6346                                               121350
6347                                               110825
6348                                               131659
6349                                               118545
6350                                               126552
6351                                               151537
6352                                               139067
6353                                               104681
6354                                               106548
6355                                               153442
6356                                               129736
6357                                               135846
6358                                               126095
6359                                               153751
6360                                               136110
6361                                               183946
6362                                               161963
6363                                               160130
6364                                               359320
6365                                               166828
6366                                               153323
6367                                               169972
6368                                               162389
6369                                               161648
6370                                               188044
6371                                               179802
6372                                               177669
6373                                               159212
6374                                               189987
6375                                               181192
6376                                               162729
6377                                               182050
6378                                               165218
6379                                               160116
6380                                               155327
6381                                               193119
6382                                               200008
6383                                               190640
6384                                               201586
6385                                               205772
6386                                               198967
6387                                               191483
6388                                               220849
6389                                               195638
6390                                               218428
6391                                               216913
6392                                               225753
6393                                               208423
6394                                               193014
6395                                               251850
6396                                               234305
6397                                               201384
6398                                               189287
6399                                               199909
6400                                               204311
6401                                               203664
6402                                               195073
6403                                               186373
6404                                               316786
6405                                               193422
6406                                               167971
6407                                               249991
6408                                               356399
6409                                               220160
6410                                               247185
6411                                               223678
6412                                               315473
6413                                               188108
6414                                               209001
6415                                               150511
6416                                               184347
6417                                               294180
6418                                               289729
6419                                               134619
6420                                               134476
6421                                               251034
6422                                               264224
6423                                               189259
6424                                               128029
6425                                               149935
6426                                               146966
6427                                               141695
6428                                               145808
6429                                               171012
6430                                               165585
6431                                               171139
6432                                               195358
6433                                               216584
6434                                               395755
6435                                               251754
6436                                               203628
6437                                               214166
6438                                               251488
6439                                               223074
6440                                               240189
6441                                               285477
6442                                               412002
6443                                               201534
6444                                               192106
6445                                               268181
6446                                               219957
6447                                               231431
6448                                               350524
6449                                               451255
6450                                               352920
6451                                               207708
6452                                               272460
6453                                               183772
6454                                               182629
6455                                               183350
6456                                               151499
6457                                               161909
6458                                               116819
6459                                               142848
6460                                               148460
6461                                               406006
6462                                               215934
6463                                               170358
6464                                               184546
6465                                               198435
6466                                               290584
6467                                                57395
6468                                                58458
6469                                                58046
6470                                                83043
6471                                               103238
6472                                                51923
6473                                                76810
6474                                                89236
6475                                                86634
6476                                                65715
6477                                                57230
6478                                                52217
6479                                                37064
6480                                                53986
6481                                                63487
6482                                                55952
6483                                                60422
6484                                                61680
6485                                                83185
6486                                                83861
6487                                                68256
6488                                                78546
6489                                                74598
6490                                                70452
6491                                                82250
6492                                                85279
6493                                                78472
6494                                                72671
6495                                                96522
6496                                                72044
6497                                                79917
6498                                                77776
6499                                                71966
6500                                                93536
6501                                               116928
6502                                                86661
6503                                                72470
6504                                                79072
6505                                                69901
6506                                                61513
6507                                                68120
6508                                                60512
6509                                                65279
6510                                                66252
6511                                                83034
6512                                                74485
6513                                               116691
6514                                               146038
6515                                                93253
6516                                                92881
6517                                               102479
6518                                               112339
6519                                                97954
6520                                                14230
6521                                                 8049
6522                                                11261
6523                                                11558
6524                                                 9779
6525                                                 7096
6526                                                10606
6527                                                 9938
6528                                                 8741
6529                                                13949
6530                                                11079
6531                                                10194
6532                                                10997
6533                                                14372
6534                                                12009
6535                                                13545
6536                                                11080
6537                                                14145
6538                                                12673
6539                                                13226
6540                                                14575
6541                                                12280
6542                                                13103
6543                                                14943
6544                                                14195
6545                                                14133
6546                                                18894
6547                                                16687
6548                                                12993
6549                                                15933
6550                                                16224
6551                                                15849
6552                                                14543
6553                                                12922
6554                                                26575
6555                                                24979
6556                                                16105
6557                                                16186
6558                                                17365
6559                                                16424
6560                                                16051
6561                                                15207
6562                                                17191
6563                                                16171
6564                                                20631
6565                                                18684
6566                                                33548
6567                                                65201
6568                                                30000
6569                                                50764
6570                                                30494
6571                                                23081
6572                                                46910
6573                                               111439
6574                                                66599
6575                                               102137
6576                                                94141
6577                                               127968
6578                                                75503
6579                                                77336
6580                                               110255
6581                                               121042
6582                                                94603
6583                                                74165
6584                                                76991
6585                                                60756
6586                                                67848
6587                                                62384
6588                                                63852
6589                                                26602
6590                                                29557
6591                                                26219
6592                                                44716
6593                                                68158
6594                                                53059
6595                                                46395
6596                                                62879
6597                                                54115
6598                                                54695
6599                                                48965
6600                                                49035
6601                                                55578
6602                                                51454
6603                                                53765
6604                                                50154
6605                                                63084
6606                                                75420
6607                                                76426
6608                                                65026
6609                                                81561
6610                                                58233
6611                                                40245
6612                                                41150
6613                                                43375
6614                                                43301
6615                                                38281
6616                                                49738
6617                                                57129
6618                                                40838
6619                                                59930
6620                                               121441
6621                                                45791
6622                                                64436
6623                                                80218
6624                                                77764
6625                                                75111
6626                                               755743
6627                                               350755
6628                                              1167417
6629                                               396712
6630                                               396804
6631                                               327525
6632                                               309130
6633                                               413517
6634                                               743293
6635                                               843048
6636                                               360936
6637                                               385403
6638                                               343708
6639                                               335816
6640                                               337638
6641                                               357662
6642                                               359807
6643                                               441327
6644                                               344686
6645                                               324883
6646                                               452872
6647                                               414553
6648                                               399836
6649                                               407573
6650                                               409058
6651                                               437585
6652                                               497357
6653                                               414533
6654                                               480083
6655                                               415143
6656                                               418291
6657                                               466480
6658                                               428611
6659                                               430527
6660                                               583071
6661                                               518019
6662                                               429078
6663                                               455872
6664                                               408516
6665                                               428361
6666                                               418362
6667                                               422615
6668                                               439066
6669                                               518370
6670                                               477454
6671                                               493496
6672                                               592688
6673                                               937332
6674                                               741370
6675                                               663032
6676                                               703853
6677                                               692909
6678                                               829897
6679                                                34289
6680                                                28325
6681                                                28129
6682                                                37049
6683                                                52286
6684                                                22808
6685                                                33869
6686                                                43510
6687                                                37126
6688                                                44116
6689                                                25087
6690                                                25005
6691                                                17191
6692                                                25612
6693                                                25575
6694                                                31174
6695                                                34553
6696                                                35074
6697                                                33675
6698                                                35594
6699                                                37309
6700                                                37610
6701                                                33398
6702                                                37671
6703                                                41177
6704                                                45861
6705                                                47985
6706                                                43420
6707                                                49620
6708                                                46391
6709                                                48995
6710                                                48808
6711                                                51642
6712                                                37229
6713                                                57993
6714                                                48499
6715                                                42839
6716                                                47638
6717                                                43334
6718                                                43115
6719                                                46979
6720                                                44133
6721                                                42103
6722                                                49340
6723                                                59928
6724                                                41852
6725                                                58270
6726                                                74681
6727                                                55703
6728                                                66870
6729                                                43684
6730                                                55252
6731                                                60442
6732                                                74266
6733                                                44095
6734                                                63179
6735                                                71986
6736                                                50526
6737                                                44200
6738                                                65920
6739                                                51672
6740                                                47477
6741                                                71919
6742                                                61183
6743                                                49047
6744                                                44414
6745                                                48864
6746                                                42336
6747                                                53156
6748                                                34079
6749                                                50948
6750                                                49718
6751                                                56350
6752                                                70900
6753                                                64790
6754                                                62144
6755                                                67585
6756                                                65180
6757                                                67379
6758                                                76464
6759                                                66569
6760                                                66761
6761                                                88004
6762                                                85907
6763                                                74338
6764                                                75985
6765                                                71835
6766                                               130127
6767                                               127586
6768                                                78525
6769                                                75101
6770                                                74503
6771                                                74727
6772                                                79372
6773                                                79475
6774                                                80308
6775                                                78151
6776                                                90099
6777                                                89038
6778                                               171783
6779                                               281503
6780                                               128996
6781                                               230820
6782                                               125992
6783                                               121128
6784                                               199636
6785                                              1398684
6786                                               939519
6787                                               918893
6788                                              1219626
6789                                              1275665
6790                                               903101
6791                                               938850
6792                                              1022489
6793                                              1081493
6794                                              1075382
6795                                              1026120
6796                                              1066264
6797                                               852451
6798                                              1130202
6799                                              1150980
6800                                              1116828
6801                                              1074164
6802                                              1135717
6803                                              1071864
6804                                              1140931
6805                                              1267015
6806                                              1272882
6807                                              1200264
6808                                              1240752
6809                                              1217132
6810                                              1287443
6811                                              1257957
6812                                              1319522
6813                                              1348478
6814                                              1365910
6815                                              1357927
6816                                              1352784
6817                                              1308057
6818                                              1036405
6819                                              1699123
6820                                              1301501
6821                                              1225887
6822                                              1222428
6823                                              1221294
6824                                              1325657
6825                                              1328646
6826                                              1325163
6827                                              1306320
6828                                              1432040
6829                                              1618435
6830                                              1215057
6831                                              1373681
6832                                              2257430
6833                                              1363482
6834                                              1519035
6835                                              1293221
6836                                              1624950
6837                                              1285364
6838                                                10138
6839                                                 6817
6840                                                 7363
6841                                                 7030
6842                                                 8062
6843                                                 6254
6844                                                 6946
6845                                                 7035
6846                                                 8243
6847                                                 9477
6848                                                 9503
6849                                                10228
6850                                                 4016
6851                                                21325
6852                                                22831
6853                                                29794
6854                                                37439
6855                                                42751
6856                                                40039
6857                                                37849
6858                                                38811
6859                                                36728
6860                                                29771
6861                                                32145
6862                                                32247
6863                                                35679
6864                                                39947
6865                                                47014
6866                                                33689
6867                                                23110
6868                                                12468
6869                                                 7593
6870                                                 7392
6871                                                 7631
6872                                                12218
6873                                                11874
6874                                                 8878
6875                                                 9802
6876                                                10197
6877                                                10967
6878                                                10773
6879                                                10020
6880                                                10155
6881                                                10907
6882                                                13162
6883                                                12392
6884                                                30103
6885                                                43117
6886                                                20938
6887                                                30482
6888                                                20522
6889                                                17389
6890                                                27328
6891                                                23240
6892                                                14373
6893                                                18381
6894                                                21841
6895                                                19343
6896                                                12239
6897                                                14363
6898                                                25045
6899                                                19876
6900                                                21885
6901                                                24350
6902                                                18515
6903                                                24630
6904                                                21112
6905                                                22073
6906                                                25106
6907                                                24261
6908                                                26735
6909                                                27697
6910                                                25043
6911                                                30559
6912                                                34141
6913                                                30114
6914                                                38068
6915                                                29406
6916                                                23221
6917                                                24029
6918                                                19761
6919                                                25894
6920                                                31940
6921                                                25352
6922                                                30515
6923                                                27177
6924                                                25295
6925                                                53102
6926                                                28593
6927                                                21724
6928                                                33662
6929                                                26489
6930                                                33318
6931                                                29087
6932                                                32649
6933                                                25219
6934                                                50229
6935                                                30519
6936                                                24706
6937                                                30196
6938                                                80089
6939                                                36547
6940                                                34757
6941                                                35658
6942                                                31296
6943                                                42840
6944                                               816262
6945                                               791089
6946                                               661370
6947                                              1906061
6948                                               652690
6949                                               696301
6950                                               654065
6951                                               667319
6952                                               632293
6953                                               788262
6954                                               788732
6955                                               747794
6956                                               669975
6957                                               707903
6958                                               716125
6959                                               693111
6960                                               681320
6961                                               630744
6962                                               639877
6963                                               582404
6964                                               686338
6965                                               821262
6966                                               856414
6967                                               830715
6968                                               859372
6969                                               800414
6970                                               733184
6971                                              1060721
6972                                               765118
6973                                               753430
6974                                               834880
6975                                               824445
6976                                               817106
6977                                               797685
6978                                               920314
6979                                               808259
6980                                               838408
6981                                               775310
6982                                               775730
6983                                               791416
6984                                               717036
6985                                               737596
6986                                               755172
6987                                              1065009
6988                                               855650
6989                                               609206
6990                                              1177334
6991                                              1744342
6992                                               816424
6993                                              1169601
6994                                               995748
6995                                              1207607
6996                                               668183
6997                                              2537023
6998                                              2247769
6999                                              2159906
7000                                              4168090
7001                                              2671616
7002                                              1937090
7003                                              2061116
7004                                              2638119
7005                                              1955087
7006                                              2238785
7007                                              2157328
7008                                              2116241
7009                                              1864723
7010                                              2154493
7011                                              2218374
7012                                              2093753
7013                                              2267361
7014                                              2097278
7015                                              2076611
7016                                              2072429
7017                                              2842289
7018                                              2801740
7019                                              2705083
7020                                              2896880
7021                                              2858829
7022                                              2850917
7023                                              2580466
7024                                              2909813
7025                                              2668420
7026                                              2632017
7027                                              2718513
7028                                              2874936
7029                                              2678109
7030                                              2525305
7031                                              3009077
7032                                              2806976
7033                                              2440600
7034                                              2576783
7035                                              2750988
7036                                              2529680
7037                                              2556561
7038                                              2451289
7039                                              2452508
7040                                              3228539
7041                                              2790944
7042                                              2259558
7043                                              3387834
7044                                              4684187
7045                                              2754051
7046                                              3425748
7047                                              2913734
7048                                              3517891
7049                                              2589316
7050                                               455795
7051                                               251131
7052                                               304319
7053                                               265318
7054                                               576981
7055                                               210476
7056                                               230533
7057                                               588116
7058                                               229668
7059                                               237555
7060                                               237666
7061                                               244434
7062                                               203354
7063                                               217700
7064                                               233287
7065                                               213664
7066                                               229060
7067                                               215287
7068                                               202014
7069                                               242366
7070                                               476885
7071                                               369483
7072                                               340884
7073                                               387463
7074                                               404810
7075                                               397668
7076                                               330212
7077                                               270963
7078                                               327625
7079                                               326673
7080                                               322244
7081                                               357297
7082                                               314677
7083                                               295164
7084                                               334984
7085                                               296828
7086                                               255971
7087                                               314450
7088                                               418278
7089                                               298462
7090                                               299053
7091                                               267013
7092                                               272806
7093                                               318711
7094                                               363052
7095                                               295893
7096                                               424253
7097                                               625037
7098                                               348629
7099                                               421569
7100                                               330248
7101                                               348812
7102                                               414792
7103                                                38867
7104                                                21232
7105                                                30567
7106                                                33749
7107                                                23478
7108                                                19833
7109                                                27720
7110                                                24511
7111                                                22656
7112                                                33772
7113                                                27481
7114                                                22938
7115                                                23473
7116                                                29617
7117                                                22852
7118                                                30283
7119                                                19370
7120                                                26201
7121                                                27713
7122                                                28989
7123                                                38433
7124                                                34123
7125                                                32846
7126                                                33319
7127                                                34025
7128                                                33999
7129                                                50255
7130                                                38375
7131                                                32674
7132                                                41216
7133                                                40813
7134                                                39531
7135                                                38535
7136                                                33864
7137                                                66962
7138                                                64373
7139                                                41901
7140                                                38375
7141                                                39854
7142                                                38060
     NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                      298
2                                                      103
3                                                      276
4                                                      182
5                                                      308
6                                                      501
7                                                      456
8                                                      488
9                                                      253
10                                                     304
11                                                     291
12                                                     600
13                                                     644
14                                                     681
15                                                    1349
16                                                     715
17                                                     911
18                                                    1034
19                                                     950
20                                                    1425
21                                                    4252
22                                                    3515
23                                                     708
24                                                    1982
25                                                     867
26                                                     849
27                                                     817
28                                                     678
29                                                     472
30                                                     739
31                                                     523
32                                                    1261
33                                                     839
34                                                    1089
35                                                    1060
36                                                    1042
37                                                     873
38                                                     219
39                                                     375
40                                                     261
41                                                     305
42                                                     311
43                                                     237
44                                                     348
45                                                     237
46                                                     638
47                                                     525
48                                                     295
49                                                     594
50                                                     512
51                                                    1135
52                                                      82
53                                                   17354
54                                                   19112
55                                                   24291
56                                                   25760
57                                                   20148
58                                                   23343
59                                                   37990
60                                                   51035
61                                                   58616
62                                                   49086
63                                                   49171
64                                                   58490
65                                                   42258
66                                                   59019
67                                                   45336
68                                                   42270
69                                                   68180
70                                                   42754
71                                                   47216
72                                                   43103
73                                                   42934
74                                                   44750
75                                                   45011
76                                                   50320
77                                                   50679
78                                                   56045
79                                                   51110
80                                                   51953
81                                                   48345
82                                                   43721
83                                                   45833
84                                                   49809
85                                                   44841
86                                                   44391
87                                                   77537
88                                                   39943
89                                                   42125
90                                                   42271
91                                                   41867
92                                                   43760
93                                                   42381
94                                                   46596
95                                                   42268
96                                                   40242
97                                                   62612
98                                                   45900
99                                                   37437
100                                                  83652
101                                                  39489
102                                                  40576
103                                                  42527
104                                                  39995
105                                                   5894
106                                                   7394
107                                                   6458
108                                                   4086
109                                                   6031
110                                                   6663
111                                                   6502
112                                                   6286
113                                                   6428
114                                                   6552
115                                                   6586
116                                                   7604
117                                                   7552
118                                                   3663
119                                                   6640
120                                                   6593
121                                                   7992
122                                                   7923
123                                                   4433
124                                                   6457
125                                                   3931
126                                                   5435
127                                                   5480
128                                                   5565
129                                                   7474
130                                                   8435
131                                                   3975
132                                                   5876
133                                                   3136
134                                                   6656
135                                                   4028
136                                                   6037
137                                                   2920
138                                                   7891
139                                                   4290
140                                                   3402
141                                                   3260
142                                                   7523
143                                                   3790
144                                                   3102
145                                                   7290
146                                                   2982
147                                                   7404
148                                                   3492
149                                                   2122
150                                                   6493
151                                                   3047
152                                                   2905
153                                                   2061
154                                                   2257
155                                                   3322
156                                                   2752
157                                                  13953
158                                                   5888
159                                                    219
160                                                    143
161                                                    106
162                                                    234
163                                                    140
164                                                    232
165                                                    170
166                                                    191
167                                                    333
168                                                    355
169                                                    278
170                                                    289
171                                                    418
172                                                    354
173                                                    497
174                                                    554
175                                                    609
176                                                    749
177                                                    827
178                                                   1452
179                                                   1958
180                                                   5072
181                                                   9362
182                                                  11054
183                                                   9120
184                                                   8899
185                                                   6545
186                                                     93
187                                                    109
188                                                    277
189                                                    163
190                                                    131
191                                                    240
192                                                    131
193                                                    163
194                                                    106
195                                                    100
196                                                    151
197                                                    156
198                                                    112
199                                                     79
200                                                    193
201                                                    142
202                                                    143
203                                                    384
204                                                    273
205                                                     46
206                                                    133
207                                                    122
208                                                    129
209                                                     86
210                                                    107
211                                                     66
212                                                    167
213                                                    113
214                                                    108
215                                                    107
216                                                     55
217                                                    186
218                                                     80
219                                                     58
220                                                     96
221                                                    101
222                                                    106
223                                                     89
224                                                    134
225                                                    173
226                                                    242
227                                                    170
228                                                    258
229                                                    349
230                                                    472
231                                                    742
232                                                   2205
233                                                   4715
234                                                   6708
235                                                   5397
236                                                   5425
237                                                   4433
238                                                    139
239                                                     79
240                                                    104
241                                                     57
242                                                    185
243                                                     82
244                                                    106
245                                                     59
246                                                     93
247                                                     96
248                                                     81
249                                                     48
250                                                     66
251                                                    102
252                                                    104
253                                                    132
254                                                     58
255                                                    162
256                                                    112
257                                                     75
258                                                    133
259                                                     80
260                                                    110
261                                                 232756
262                                                 266690
263                                                 232985
264                                                 221957
265                                                 222311
266                                                 215632
267                                                 195159
268                                                 216524
269                                                 211902
270                                                 215623
271                                                 217814
272                                                 221033
273                                                 222261
274                                                 206460
275                                                 273922
276                                                 270794
277                                                 240185
278                                                 233027
279                                                 222083
280                                                 208725
281                                                 193832
282                                                 183471
283                                                 209427
284                                                 188207
285                                                 157478
286                                                 254187
287                                                 212173
288                                                 218424
289                                                 210671
290                                                 221330
291                                                 209443
292                                                 195991
293                                                 168597
294                                                 194576
295                                                 192474
296                                                 196469
297                                                 177355
298                                                 185199
299                                                 225397
300                                                 193578
301                                                 195791
302                                                 194761
303                                                 184721
304                                                 170581
305                                                 172676
306                                                 169908
307                                                 149459
308                                                 177145
309                                                 150536
310                                                 121614
311                                                 103573
312                                                 137480
313                                                  23042
314                                                  19843
315                                                  23843
316                                                  28483
317                                                  22686
318                                                  24222
319                                                  36861
320                                                  49282
321                                                  53969
322                                                  44883
323                                                  44707
324                                                  58990
325                                                  40367
326                                                  58552
327                                                  41262
328                                                  36469
329                                                  64372
330                                                  38130
331                                                  41678
332                                                  41343
333                                                  37614
334                                                  39735
335                                                  39261
336                                                  39515
337                                                  35107
338                                                  40602
339                                                  42044
340                                                  38260
341                                                  41193
342                                                  38579
343                                                  44530
344                                                  46014
345                                                  40249
346                                                  38370
347                                                  77627
348                                                  37961
349                                                  36041
350                                                  39638
351                                                  36210
352                                                  40688
353                                                  37099
354                                                  43740
355                                                  36250
356                                                  34949
357                                                  61590
358                                                  40431
359                                                  31779
360                                                  80814
361                                                  31576
362                                                  38677
363                                                  40802
364                                                  38569
365                                                  78378
366                                                  96306
367                                                  94163
368                                                  92888
369                                                  74989
370                                                  89732
371                                                  93857
372                                                 101889
373                                                 106537
374                                                 108012
375                                                 118311
376                                                 119996
377                                                 105711
378                                                 101194
379                                                 103104
380                                                 128620
381                                                 122938
382                                                 112344
383                                                 103622
384                                                 104997
385                                                 104796
386                                                  97419
387                                                  99067
388                                                 116910
389                                                 109149
390                                                 118635
391                                                 104595
392                                                 122240
393                                                 107908
394                                                 122929
395                                                 132733
396                                                 113476
397                                                 109205
398                                                 141251
399                                                 129694
400                                                  97410
401                                                  93303
402                                                  83138
403                                                  90802
404                                                  84866
405                                                  83938
406                                                  98822
407                                                 112934
408                                                 111791
409                                                 106178
410                                                 110447
411                                                 119634
412                                                 164884
413                                                 145882
414                                                 140240
415                                                 133849
416                                                 124506
417                                                   9547
418                                                   7517
419                                                   4574
420                                                  15476
421                                                   5886
422                                                   9596
423                                                   4906
424                                                  19577
425                                                  13268
426                                                   9187
427                                                   8932
428                                                  13778
429                                                  11768
430                                                  11725
431                                                  21180
432                                                  18310
433                                                   8957
434                                                  14357
435                                                   5300
436                                                  21571
437                                                  10922
438                                                   9778
439                                                   5692
440                                                  14449
441                                                   4243
442                                                  10202
443                                                   3667
444                                                  15259
445                                                  10047
446                                                  14602
447                                                   4652
448                                                   4491
449                                                  14524
450                                                   2408
451                                                   7282
452                                                   6904
453                                                  12959
454                                                   1306
455                                                   2508
456                                                   2448
457                                                  23368
458                                                   3387
459                                                   3678
460                                                  18681
461                                                   3240
462                                                   3067
463                                                   4186
464                                                  19442
465                                                    656
466                                                   1087
467                                                   1204
468                                                   1447
469                                                  15564
470                                                  16371
471                                                  12958
472                                                  24435
473                                                  16653
474                                                  20731
475                                                  15259
476                                                  29584
477                                                  23764
478                                                  19024
479                                                  18607
480                                                  24725
481                                                  23069
482                                                  18528
483                                                  26200
484                                                  26703
485                                                  20842
486                                                  25752
487                                                  15723
488                                                  32384
489                                                  20857
490                                                  17345
491                                                  13557
492                                                  24209
493                                                  16035
494                                                  24675
495                                                  12797
496                                                  24529
497                                                  20024
498                                                  29167
499                                                  13935
500                                                  14262
501                                                  22935
502                                                  10126
503                                                  15882
504                                                  16624
505                                                  26369
506                                                   9956
507                                                   9927
508                                                   8712
509                                                  24996
510                                                   9632
511                                                  11405
512                                                  25775
513                                                  10604
514                                                   8940
515                                                   7653
516                                                  21796
517                                                   7823
518                                                   7041
519                                                   7190
520                                                   7609
521                                                  84913
522                                                  91158
523                                                  62437
524                                                   8533
525                                                   6212
526                                                   9914
527                                                  10306
528                                                  33027
529                                                  85323
530                                                  49959
531                                                  61892
532                                                  99901
533                                                  50993
534                                                  25647
535                                                  10973
536                                                   9095
537                                                   9816
538                                                   7468
539                                                   8262
540                                                   7090
541                                                   7793
542                                                   4688
543                                                   6417
544                                                   4970
545                                                   4382
546                                                   5388
547                                                   7191
548                                                   8601
549                                                   7558
550                                                  13350
551                                                   7287
552                                                   6833
553                                                   6383
554                                                   7804
555                                                   9754
556                                                  12091
557                                                  16014
558                                                  12597
559                                                  13593
560                                                  13340
561                                                  11678
562                                                  14066
563                                                  11202
564                                                  12399
565                                                  12580
566                                                  12657
567                                                  12107
568                                                  18855
569                                                   9611
570                                                  15551
571                                                  11901
572                                                   9817
573                                                  19104
574                                                  24478
575                                                  29349
576                                                   8808
577                                                  14146
578                                                  18216
579                                                  20029
580                                                  12294
581                                                   8551
582                                                  11222
583                                                  13693
584                                                  18841
585                                                  27622
586                                                  15286
587                                                  25530
588                                                  17939
589                                                  19091
590                                                  19354
591                                                  21420
592                                                  18155
593                                                  24026
594                                                  16711
595                                                  25778
596                                                  17089
597                                                  22068
598                                                  19547
599                                                  18450
600                                                  12854
601                                                  17694
602                                                  17507
603                                                  18725
604                                                  18818
605                                                  17378
606                                                  16724
607                                                  14810
608                                                   5981
609                                                   6232
610                                                   8604
611                                                   6309
612                                                   4760
613                                                   8461
614                                                   5122
615                                                   7265
616                                                   5507
617                                                   5686
618                                                   7798
619                                                   5421
620                                                   5736
621                                                   4945
622                                                   4225
623                                                   5358
624                                                   5554
625                                                  59789
626                                                  45460
627                                                  47788
628                                                 113791
629                                                  63664
630                                                  63404
631                                                  52491
632                                                 113928
633                                                 104530
634                                                  74328
635                                                  72553
636                                                  72961
637                                                  90271
638                                                  78777
639                                                 111298
640                                                 106453
641                                                  79770
642                                                 100520
643                                                  61915
644                                                 125070
645                                                  80146
646                                                  76534
647                                                  63100
648                                                 105282
649                                                  62708
650                                                  96051
651                                                  48619
652                                                 121665
653                                                  90748
654                                                 131114
655                                                  53234
656                                                  46504
657                                                 116504
658                                                  48825
659                                                  74594
660                                                  66652
661                                                 107931
662                                                  43008
663                                                  49926
664                                                  38352
665                                                 144746
666                                                  48303
667                                                  46763
668                                                 129286
669                                                  46472
670                                                  41640
671                                                  40516
672                                                 127174
673                                                  45889
674                                                  37740
675                                                  76985
676                                                  74063
677                                                   5755
678                                                   3212
679                                                   3264
680                                                  15636
681                                                   3337
682                                                   5726
683                                                   2506
684                                                   7557
685                                                   8605
686                                                   9431
687                                                  17329
688                                                  49279
689                                                  18103
690                                                  13024
691                                                   9652
692                                                  20440
693                                                   6016
694                                                  16719
695                                                   5460
696                                                  20395
697                                                   8390
698                                                  10360
699                                                   9958
700                                                  29478
701                                                   9834
702                                                  34986
703                                                   9941
704                                                  32903
705                                                   4934
706                                                  10408
707                                                   3360
708                                                   3112
709                                                  12421
710                                                   3818
711                                                   6728
712                                                   6422
713                                                  15024
714                                                   2717
715                                                   5488
716                                                   3004
717                                                  19098
718                                                   4214
719                                                   3903
720                                                  26454
721                                                   4895
722                                                   4215
723                                                   4855
724                                                  19212
725                                                   6374
726                                                   6412
727                                                  13799
728                                                  22612
729                                                 254630
730                                                 241581
731                                                 228577
732                                                 398321
733                                                 248819
734                                                 280544
735                                                 248635
736                                                 425243
737                                                 388703
738                                                 331097
739                                                 353742
740                                                 456771
741                                                 381987
742                                                 344489
743                                                 418235
744                                                 447109
745                                                 348449
746                                                 419391
747                                                 279711
748                                                 475383
749                                                 331337
750                                                 321611
751                                                 281882
752                                                 454643
753                                                 288141
754                                                 442060
755                                                 261864
756                                                 493929
757                                                 346867
758                                                 447117
759                                                 280465
760                                                 263069
761                                                 406338
762                                                 274260
763                                                 327172
764                                                 294074
765                                                 383841
766                                                 190091
767                                                 221603
768                                                 196545
769                                                 451799
770                                                 223789
771                                                 253979
772                                                 478702
773                                                 246541
774                                                 237030
775                                                 238781
776                                                 510154
777                                                 271643
778                                                 257106
779                                                 316857
780                                                 318102
781                                                    149
782                                                    158
783                                                    230
784                                                    118
785                                                    111
786                                                    198
787                                                     94
788                                                    170
789                                                    173
790                                                    186
791                                                    408
792                                                    268
793                                                    324
794                                                    295
795                                                    280
796                                                    294
797                                                    465
798                                                    615
799                                                    585
800                                                    403
801                                                    511
802                                                    733
803                                                    480
804                                                   1021
805                                                   2740
806                                                   3216
807                                                   2557
808                                                   3182
809                                                   2028
810                                                    676
811                                                    804
812                                                    778
813                                                    487
814                                                    585
815                                                    528
816                                                    415
817                                                    502
818                                                    400
819                                                    485
820                                                    418
821                                                    482
822                                                    471
823                                                    334
824                                                    614
825                                                    507
826                                                    504
827                                                    723
828                                                    851
829                                                    426
830                                                    536
831                                                    582
832                                                   1286
833                                                    170
834                                                    185
835                                                    333
836                                                    192
837                                                    169
838                                                    319
839                                                    197
840                                                    172
841                                                    288
842                                                    300
843                                                    594
844                                                    492
845                                                    287
846                                                    249
847                                                    271
848                                                    206
849                                                    498
850                                                    594
851                                                    422
852                                                    887
853                                                    707
854                                                   1284
855                                                   2171
856                                                   5497
857                                                  11286
858                                                  11793
859                                                   9682
860                                                  10100
861                                                   6840
862                                                    219
863                                                    143
864                                                    178
865                                                    249
866                                                    391
867                                                    539
868                                                    230
869                                                    175
870                                                    134
871                                                    194
872                                                    217
873                                                    140
874                                                    161
875                                                    145
876                                                    272
877                                                    286
878                                                    217
879                                                    215
880                                                    365
881                                                    232
882                                                    287
883                                                    223
884                                                    165
885                                                 126151
886                                                 127372
887                                                  81450
888                                                   7041
889                                                   4335
890                                                   6924
891                                                   4611
892                                                  20404
893                                                 111264
894                                                  81275
895                                                  80895
896                                                 126766
897                                                  43558
898                                                  16781
899                                                   6960
900                                                   5559
901                                                   6231
902                                                   4514
903                                                   4324
904                                                   3479
905                                                   5288
906                                                   3495
907                                                   5097
908                                                   4234
909                                                   3226
910                                                   3957
911                                                   1936
912                                                   2228
913                                                   4700
914                                                   3900
915                                                   2927
916                                                   5152
917                                                   3241
918                                                   3776
919                                                   4522
920                                                   5527
921                                                   3899
922                                                   3937
923                                                   4878
924                                                   4633
925                                                   5199
926                                                   5000
927                                                   5322
928                                                   4150
929                                                   6532
930                                                   5598
931                                                   5175
932                                                   8063
933                                                   4231
934                                                   9354
935                                                   4094
936                                                   4379
937                                                  11206
938                                                   9328
939                                                  11398
940                                                  13570
941                                                  10855
942                                                   9640
943                                                  12795
944                                                  20220
945                                                  16933
946                                                  16586
947                                                  12142
948                                                  13860
949                                                  13529
950                                                  16176
951                                                  24166
952                                                  17968
953                                                  16662
954                                                  15531
955                                                  10288
956                                                  20018
957                                                  12389
958                                                  13848
959                                                   7897
960                                                  15101
961                                                   7053
962                                                  13496
963                                                   9267
964                                                  14564
965                                                  13744
966                                                  10649
967                                                   6631
968                                                  14814
969                                                  16163
970                                                   5271
971                                                   7489
972                                                  16641
973                                                  10137
974                                                   2458
975                                                   2844
976                                                   8096
977                                                  15543
978                                                   5551
979                                                  10846
980                                                  14372
981                                                   5162
982                                                   4664
983                                                   8455
984                                                  14762
985                                                    725
986                                                   2049
987                                                   1772
988                                                   1202
989                                                    515
990                                                    241
991                                                    199
992                                                    703
993                                                    266
994                                                    302
995                                                    999
996                                                    411
997                                                    995
998                                                    797
999                                                    835
1000                                                  1201
1001                                                   538
1002                                                  1047
1003                                                   448
1004                                                   461
1005                                                  1561
1006                                                   657
1007                                                   731
1008                                                   697
1009                                                   669
1010                                                   759
1011                                                   619
1012                                                   647
1013                                                   584
1014                                                  1193
1015                                                   867
1016                                                  1147
1017                                                  2357
1018                                                   710
1019                                                   616
1020                                                  1049
1021                                                   524
1022                                                   626
1023                                                  1347
1024                                                   595
1025                                                   651
1026                                                   645
1027                                                   848
1028                                                   861
1029                                                   613
1030                                                  1000
1031                                                   745
1032                                                   571
1033                                                  1447
1034                                                   596
1035                                                   376
1036                                                  1300
1037                                                   524
1038                                                   514
1039                                                   529
1040                                                   469
1041                                                  4978
1042                                                  4750
1043                                                  4943
1044                                                 10794
1045                                                  5228
1046                                                  3927
1047                                                  4615
1048                                                  5456
1049                                                 12913
1050                                                 14217
1051                                                  4682
1052                                                 13358
1053                                                  5552
1054                                                  4057
1055                                                  5225
1056                                                 11064
1057                                                  7150
1058                                                  6959
1059                                                  4562
1060                                                  7799
1061                                                  8926
1062                                                  6251
1063                                                  8655
1064                                                  5011
1065                                                  5024
1066                                                  6282
1067                                                  4335
1068                                                  4219
1069                                                  3769
1070                                                  5234
1071                                                  8254
1072                                                  4566
1073                                                  3609
1074                                                  4266
1075                                                  6101
1076                                                  5032
1077                                                  7619
1078                                                  4230
1079                                                  6194
1080                                                  7463
1081                                                  5684
1082                                                  5898
1083                                                  5339
1084                                                 12441
1085                                                  4732
1086                                                  3869
1087                                                  4611
1088                                                  4255
1089                                                  3875
1090                                                  4888
1091                                                  9592
1092                                                  4591
1093                                                 86202
1094                                                 96112
1095                                                 67975
1096                                                 64728
1097                                                 70944
1098                                                 75963
1099                                                 70734
1100                                                 75385
1101                                                 74253
1102                                                 78774
1103                                                 78304
1104                                                 74862
1105                                                 86683
1106                                                 81865
1107                                                118706
1108                                                 97210
1109                                                 90625
1110                                                 86574
1111                                                 92246
1112                                                 79891
1113                                                 69168
1114                                                 58533
1115                                                 79479
1116                                                 89206
1117                                                 83398
1118                                                 99097
1119                                                 75760
1120                                                 79616
1121                                                 69556
1122                                                 71706
1123                                                 76580
1124                                                 73415
1125                                                 54789
1126                                                 60232
1127                                                 61569
1128                                                 62487
1129                                                 58423
1130                                                 64716
1131                                                 73965
1132                                                 69023
1133                                                 68607
1134                                                 70873
1135                                                 62568
1136                                                 61864
1137                                                 61573
1138                                                 62512
1139                                                 58216
1140                                                 64440
1141                                                 60922
1142                                                 59364
1143                                                 58893
1144                                                 64226
1145                                                  3204
1146                                                  2555
1147                                                  1614
1148                                                  4604
1149                                                  2343
1150                                                  3367
1151                                                  1787
1152                                                  6709
1153                                                  5446
1154                                                  4127
1155                                                  2941
1156                                                  4874
1157                                                  4199
1158                                                  4205
1159                                                  7295
1160                                                  5424
1161                                                  3287
1162                                                  5962
1163                                                  1974
1164                                                  7750
1165                                                  4026
1166                                                  3667
1167                                                  2058
1168                                                  4935
1169                                                  1679
1170                                                  3206
1171                                                  1061
1172                                                  6133
1173                                                  3570
1174                                                  4540
1175                                                  1623
1176                                                  1617
1177                                                  4737
1178                                                   607
1179                                                  2642
1180                                                  2781
1181                                                  5342
1182                                                   341
1183                                                   566
1184                                                  1117
1185                                                  7476
1186                                                  1294
1187                                                  1615
1188                                                  6909
1189                                                  1218
1190                                                  1394
1191                                                  1307
1192                                                  5155
1193                                                   234
1194                                                   427
1195                                                   238
1196                                                   284
1197                                                    54
1198                                                    92
1199                                                    85
1200                                                    83
1201                                                    70
1202                                                    72
1203                                                    21
1204                                                    21
1205                                                    33
1206                                                    42
1207                                                    25
1208                                                    22
1209                                                    48
1210                                                    41
1211                                                    58
1212                                                    18
1213                                                    14
1214                                                    74
1215                                                    64
1216                                                    32
1217                                                    81
1218                                                    66
1219                                                    77
1220                                                    99
1221                                                    87
1222                                                   194
1223                                                   262
1224                                                  5434
1225                                                  9215
1226                                                   104
1227                                                    58
1228                                                    73
1229                                                   136
1230                                                    58
1231                                                    36
1232                                                   120
1233                                                    41
1234                                                    60
1235                                                    91
1236                                                    87
1237                                                   165
1238                                                   146
1239                                                    63
1240                                                    42
1241                                                    68
1242                                                    77
1243                                                    35
1244                                                    82
1245                                                    66
1246                                                    43
1247                                                    39
1248                                                    39
1249                                                103812
1250                                                 96387
1251                                                113979
1252                                                133317
1253                                                101740
1254                                                117353
1255                                                168587
1256                                                228267
1257                                                260946
1258                                                211478
1259                                                215609
1260                                                277954
1261                                                194004
1262                                                274903
1263                                                208538
1264                                                182703
1265                                                314498
1266                                                196951
1267                                                210164
1268                                                222563
1269                                                203933
1270                                                208420
1271                                                199553
1272                                                218258
1273                                                205774
1274                                                232975
1275                                                215752
1276                                                215613
1277                                                206160
1278                                                200001
1279                                                207709
1280                                                231745
1281                                                203616
1282                                                190756
1283                                                364284
1284                                                192090
1285                                                190006
1286                                                185692
1287                                                183654
1288                                                203058
1289                                                197574
1290                                                210235
1291                                                179824
1292                                                182873
1293                                                295228
1294                                                206500
1295                                                159492
1296                                                388259
1297                                                164873
1298                                                186028
1299                                                191515
1300                                                181059
1301                                                  4748
1302                                                  4357
1303                                                  6146
1304                                                  5448
1305                                                  5435
1306                                                  5985
1307                                                  5904
1308                                                  4873
1309                                                  5054
1310                                                  4334
1311                                                  6047
1312                                                  7009
1313                                                  6363
1314                                                  6808
1315                                                  9287
1316                                                  9786
1317                                                  9639
1318                                                  7913
1319                                                 10061
1320                                                 13672
1321                                                 10196
1322                                                  9366
1323                                                  9807
1324                                                  9568
1325                                                  9746
1326                                                 10804
1327                                                  8298
1328                                                  8103
1329                                                  7011
1330                                                 10508
1331                                                 11839
1332                                                 14228
1333                                                 10853
1334                                                 13933
1335                                                 16219
1336                                                 15685
1337                                                 12378
1338                                                 12738
1339                                                 14142
1340                                                 14080
1341                                                 13156
1342                                                 11458
1343                                                 10814
1344                                                 10895
1345                                                 13694
1346                                                 11086
1347                                                  9718
1348                                                 17578
1349                                                 11082
1350                                                 12188
1351                                                 11666
1352                                                 11699
1353                                                   285
1354                                                   256
1355                                                   438
1356                                                   325
1357                                                   299
1358                                                   389
1359                                                   335
1360                                                   692
1361                                                   486
1362                                                   647
1363                                                  1004
1364                                                  1156
1365                                                  1172
1366                                                  1516
1367                                                  1609
1368                                                  1714
1369                                                  2204
1370                                                  2416
1371                                                  2887
1372                                                  7406
1373                                                 11932
1374                                                 11763
1375                                                 12344
1376                                                 11720
1377                                                 11822
1378                                                 15051
1379                                                  8080
1380                                                  7162
1381                                                   269
1382                                                   297
1383                                                   319
1384                                                   235
1385                                                   262
1386                                                   321
1387                                                   300
1388                                                   288
1389                                                   373
1390                                                   294
1391                                                   250
1392                                                    78
1393                                                   179
1394                                                   184
1395                                                   270
1396                                                   385
1397                                                   347
1398                                                   253
1399                                                   203
1400                                                   426
1401                                                   353
1402                                                   214
1403                                                   232
1404                                                   219
1405                                                   895
1406                                                   804
1407                                                  1658
1408                                                   893
1409                                                   864
1410                                                  1228
1411                                                   930
1412                                                   754
1413                                                  1227
1414                                                   541
1415                                                  1173
1416                                                   721
1417                                                  1078
1418                                                   984
1419                                                   801
1420                                                  1030
1421                                                  1295
1422                                                  1531
1423                                                   822
1424                                                  1728
1425                                                   976
1426                                                  1331
1427                                                  1322
1428                                                  2324
1429                                                  5130
1430                                                  5471
1431                                                  3347
1432                                                  5159
1433                                                  3548
1434                                                  2236
1435                                                  1369
1436                                                  1724
1437                                                  1648
1438                                                  4591
1439                                                  4554
1440                                                  2618
1441                                                  2367
1442                                                  1846
1443                                                  2011
1444                                                  1813
1445                                                  1651
1446                                                  1924
1447                                                  2110
1448                                                  2849
1449                                                  2885
1450                                                  2660
1451                                                  2996
1452                                                  3252
1453                                                  3184
1454                                                  3039
1455                                                  2316
1456                                                  1871
1457                                                 35858
1458                                                 14910
1459                                                  4716
1460                                                  3341
1461                                                  3025
1462                                                  4067
1463                                                  3393
1464                                                  4492
1465                                                  4729
1466                                                  3364
1467                                                  5421
1468                                                  4365
1469                                                  5434
1470                                                  4786
1471                                                  4294
1472                                                  4617
1473                                                  6693
1474                                                 11075
1475                                                  7167
1476                                                  8139
1477                                                  9117
1478                                                 11726
1479                                                 14865
1480                                                 36476
1481                                                 75096
1482                                                 92678
1483                                                 72709
1484                                                 77296
1485                                                 56827
1486                                                  7059
1487                                                  5489
1488                                                  7775
1489                                                  5593
1490                                                 10221
1491                                                 13488
1492                                                  7040
1493                                                  6390
1494                                                  5307
1495                                                  6204
1496                                                  5707
1497                                                  5437
1498                                                  5531
1499                                                  7865
1500                                                  7318
1501                                                  7050
1502                                                  7773
1503                                                  7220
1504                                                  9191
1505                                                  7924
1506                                                  7216
1507                                                  6915
1508                                                  7580
1509                                                 12123
1510                                                  3821
1511                                                   117
1512                                                    94
1513                                                    89
1514                                                   141
1515                                                    91
1516                                                   132
1517                                                   209
1518                                                   158
1519                                                   193
1520                                                   205
1521                                                   248
1522                                                   265
1523                                                   292
1524                                                   277
1525                                                   378
1526                                                   457
1527                                                   608
1528                                                   775
1529                                                   816
1530                                                  1638
1531                                                  2452
1532                                                  6852
1533                                                 15372
1534                                                 17992
1535                                                 15156
1536                                                 14780
1537                                                 10745
1538                                                    37
1539                                                    61
1540                                                    53
1541                                                    30
1542                                                    79
1543                                                    60
1544                                                    80
1545                                                    78
1546                                                    59
1547                                                    82
1548                                                    57
1549                                                    56
1550                                                    91
1551                                                    15
1552                                                    41
1553                                                    24
1554                                                    33
1555                                                    34
1556                                                    34
1557                                                    24
1558                                                    38
1559                                                    23
1560                                                    15
1561                                                   124
1562                                                   122
1563                                                   169
1564                                                   122
1565                                                    38
1566                                                   121
1567                                                   109
1568                                                    92
1569                                                    81
1570                                                    91
1571                                                    71
1572                                                   106
1573                                                    61
1574                                                   142
1575                                                   120
1576                                                    44
1577                                                    83
1578                                                   173
1579                                                    82
1580                                                    92
1581                                                   100
1582                                                    89
1583                                                    71
1584                                                    61
1585                                                    73
1586                                                    83
1587                                                   119
1588                                                   727
1589                                                  2084
1590                                                   562
1591                                                    73
1592                                                   160
1593                                                   174
1594                                                   139
1595                                                   166
1596                                                    94
1597                                                   206
1598                                                    97
1599                                                   104
1600                                                   129
1601                                                   141
1602                                                   116
1603                                                    87
1604                                                   115
1605                                                    67
1606                                                    37
1607                                                    99
1608                                                   180
1609                                                    92
1610                                                    84
1611                                                    52
1612                                                    75
1613                                                   531
1614                                                   533
1615                                                   683
1616                                                   541
1617                                                   534
1618                                                   592
1619                                                   605
1620                                                   480
1621                                                   571
1622                                                   437
1623                                                   819
1624                                                   551
1625                                                   754
1626                                                   497
1627                                                   580
1628                                                   752
1629                                                   633
1630                                                   655
1631                                                   717
1632                                                   652
1633                                                   802
1634                                                   956
1635                                                   857
1636                                                  1473
1637                                                  1886
1638                                                  1024
1639                                                   807
1640                                                  1155
1641                                                  1064
1642                                                  1340
1643                                                  1069
1644                                                  1056
1645                                                  1129
1646                                                  2051
1647                                                  1835
1648                                                  1440
1649                                                  1310
1650                                                  1218
1651                                                  1291
1652                                                  1169
1653                                                  1104
1654                                                  1078
1655                                                  1051
1656                                                  1528
1657                                                  1354
1658                                                  1260
1659                                                  1354
1660                                                  1722
1661                                                  1409
1662                                                  1469
1663                                                  1715
1664                                                  2121
1665                                                 11642
1666                                                 10347
1667                                                  9430
1668                                                 13355
1669                                                  9770
1670                                                 11103
1671                                                 11413
1672                                                 11555
1673                                                 20971
1674                                                 19969
1675                                                 10256
1676                                                 19580
1677                                                 10664
1678                                                  9975
1679                                                  6031
1680                                                 15400
1681                                                  6102
1682                                                  5932
1683                                                  4923
1684                                                  8295
1685                                                  7041
1686                                                  5262
1687                                                  8806
1688                                                  4302
1689                                                  4760
1690                                                  5252
1691                                                  4419
1692                                                  4911
1693                                                  4263
1694                                                  4500
1695                                                 10401
1696                                                  6014
1697                                                  4707
1698                                                  4879
1699                                                  5692
1700                                                  5833
1701                                                  7534
1702                                                  5732
1703                                                  7128
1704                                                  8639
1705                                                  6035
1706                                                  6042
1707                                                  5737
1708                                                 12552
1709                                                  6792
1710                                                  5939
1711                                                  5517
1712                                                  6336
1713                                                  5034
1714                                                  5643
1715                                                 12237
1716                                                  6509
1717                                                   951
1718                                                  1004
1719                                                   960
1720                                                  1082
1721                                                   959
1722                                                  1120
1723                                                   980
1724                                                  2314
1725                                                  1707
1726                                                  1289
1727                                                  1466
1728                                                  1536
1729                                                  2321
1730                                                  1852
1731                                                  1177
1732                                                   999
1733                                                  2075
1734                                                  3632
1735                                                  1715
1736                                                  1381
1737                                                  3022
1738                                                  1152
1739                                                  1089
1740                                                  1676
1741                                                  2653
1742                                                  5316
1743                                                  3824
1744                                                  4210
1745                                                  3148
1746                                                  1483
1747                                                  1440
1748                                                  3203
1749                                                  1407
1750                                                  1279
1751                                                  5183
1752                                                  1309
1753                                                  1287
1754                                                  1181
1755                                                  1645
1756                                                  1504
1757                                                  1370
1758                                                  1292
1759                                                  3732
1760                                                  1226
1761                                                  1188
1762                                                  1559
1763                                                   990
1764                                                  2164
1765                                                  2398
1766                                                  1075
1767                                                  1325
1768                                                  1562
1769                                                 25189
1770                                                 27254
1771                                                 17928
1772                                                 13005
1773                                                 10648
1774                                                 15422
1775                                                 17268
1776                                                 19976
1777                                                 17014
1778                                                 15617
1779                                                 14931
1780                                                 14586
1781                                                 15402
1782                                                 14588
1783                                                 15441
1784                                                 15652
1785                                                 15398
1786                                                 14634
1787                                                 16042
1788                                                 14778
1789                                                 21090
1790                                                 33146
1791                                                 53882
1792                                                 37430
1793                                                 14462
1794                                                 19636
1795                                                 18638
1796                                                 22902
1797                                                 27161
1798                                                 17035
1799                                                 11919
1800                                                 12148
1801                                                 11424
1802                                                 12271
1803                                                 17406
1804                                                 23878
1805                                                 33180
1806                                                 12343
1807                                                 11646
1808                                                 10085
1809                                                 11549
1810                                                 10344
1811                                                  9284
1812                                                 11418
1813                                                 20287
1814                                                 17650
1815                                                 12488
1816                                                 13769
1817                                                 14023
1818                                                 14505
1819                                                 10009
1820                                                 10477
1821                                                 16183
1822                                                 13276
1823                                                 12487
1824                                                 13360
1825                                                 13672
1826                                                 14807
1827                                                 16341
1828                                                 15085
1829                                                 11994
1830                                                 13674
1831                                                 16086
1832                                                 31628
1833                                                 45230
1834                                                 13101
1835                                                 12832
1836                                                 15103
1837                                                 13358
1838                                                 13236
1839                                                 15313
1840                                                 15333
1841                                                 17536
1842                                                 20133
1843                                                 17190
1844                                                 16445
1845                                                 17027
1846                                                 22970
1847                                                 21602
1848                                                 32660
1849                                                 18609
1850                                                 19235
1851                                                 17219
1852                                                 15508
1853                                                 19253
1854                                                 16212
1855                                                 16792
1856                                                 13860
1857                                                 13456
1858                                                 15965
1859                                                 19336
1860                                                 18487
1861                                                 16449
1862                                                 17301
1863                                                 17445
1864                                                 16252
1865                                                 15574
1866                                                 16459
1867                                                 13387
1868                                                 15904
1869                                                 13384
1870                                                 14693
1871                                                 22743
1872                                                 19782
1873                                                 21669
1874                                                 20913
1875                                                 24041
1876                                                 26501
1877                                                 21864
1878                                                 25367
1879                                                 38425
1880                                                 52452
1881                                                 63742
1882                                                 50087
1883                                                 53069
1884                                                 69418
1885                                                 45935
1886                                                 69313
1887                                                 47238
1888                                                 37519
1889                                                 77353
1890                                                 42040
1891                                                 46614
1892                                                 47920
1893                                                 44441
1894                                                 44520
1895                                                 41447
1896                                                 45046
1897                                                 42205
1898                                                 40892
1899                                                 45055
1900                                                 41369
1901                                                 41274
1902                                                 41892
1903                                                 43537
1904                                                 50073
1905                                                 41159
1906                                                 37794
1907                                                 80830
1908                                                 38961
1909                                                 36477
1910                                                 37444
1911                                                 37207
1912                                                 44155
1913                                                 37930
1914                                                 46569
1915                                                 37878
1916                                                 36330
1917                                                 69371
1918                                                 48503
1919                                                 33712
1920                                                 88450
1921                                                 36067
1922                                                 39544
1923                                                 41273
1924                                                 39928
1925                                                  5986
1926                                                  5425
1927                                                  7097
1928                                                  7029
1929                                                  5500
1930                                                  6546
1931                                                  9941
1932                                                 12315
1933                                                 16392
1934                                                 13184
1935                                                 13205
1936                                                 16005
1937                                                 11357
1938                                                 16431
1939                                                 11692
1940                                                  9499
1941                                                 19485
1942                                                 10562
1943                                                 12156
1944                                                 12570
1945                                                 12732
1946                                                 13009
1947                                                 11762
1948                                                 12404
1949                                                 12718
1950                                                 15212
1951                                                 11394
1952                                                 11121
1953                                                 10990
1954                                                 10333
1955                                                 11467
1956                                                 13055
1957                                                 11274
1958                                                 11037
1959                                                 21170
1960                                                 11133
1961                                                 10864
1962                                                  9863
1963                                                  9827
1964                                                 11553
1965                                                 10380
1966                                                 11622
1967                                                 10296
1968                                                  9841
1969                                                 17018
1970                                                 10942
1971                                                  7883
1972                                                 21686
1973                                                  8644
1974                                                  9958
1975                                                 10952
1976                                                  9762
1977                                                   153
1978                                                   117
1979                                                   127
1980                                                   100
1981                                                   115
1982                                                   164
1983                                                    99
1984                                                   135
1985                                                   177
1986                                                   153
1987                                                   115
1988                                                   151
1989                                                   127
1990                                                    84
1991                                                   128
1992                                                   180
1993                                                   139
1994                                                   261
1995                                                   318
1996                                                   411
1997                                                    76
1998                                                    92
1999                                                    68
2000                                                   110
2001                                                   741
2002                                                  2542
2003                                                    69
2004                                                    73
2005                                                    20
2006                                                   110
2007                                                    33
2008                                                   100
2009                                                    68
2010                                                   146
2011                                                   121
2012                                                    82
2013                                                   147
2014                                                   130
2015                                                   259
2016                                                   110
2017                                                   103
2018                                                    74
2019                                                    82
2020                                                    80
2021                                                    43
2022                                                    87
2023                                                   134
2024                                                    94
2025                                                   104
2026                                                   118
2027                                                    58
2028                                                    34
2029                                                 13805
2030                                                 15917
2031                                                 16954
2032                                                 12748
2033                                                 13205
2034                                                 12685
2035                                                 11182
2036                                                 11093
2037                                                 12762
2038                                                 12903
2039                                                 12783
2040                                                 13142
2041                                                 12312
2042                                                 13481
2043                                                 12365
2044                                                 15103
2045                                                 17202
2046                                                 17332
2047                                                 12416
2048                                                 13396
2049                                                 13618
2050                                                 14771
2051                                                 13185
2052                                                  9285
2053                                                  6078
2054                                                 17132
2055                                                 13590
2056                                                 14700
2057                                                 13868
2058                                                 14289
2059                                                 14172
2060                                                 12830
2061                                                 12034
2062                                                 13246
2063                                                 13262
2064                                                 13085
2065                                                 13267
2066                                                 13073
2067                                                 15099
2068                                                 13740
2069                                                 13424
2070                                                 14831
2071                                                 13403
2072                                                 13870
2073                                                 11562
2074                                                 10274
2075                                                  9799
2076                                                 15342
2077                                                  9507
2078                                                  5672
2079                                                  5094
2080                                                  9738
2081                                                 20175
2082                                                 25053
2083                                                 16727
2084                                                 17406
2085                                                 20206
2086                                                 18974
2087                                                 15638
2088                                                 16457
2089                                                 17717
2090                                                 18703
2091                                                 19381
2092                                                 17638
2093                                                 18666
2094                                                 14808
2095                                                 28630
2096                                                 21646
2097                                                 19961
2098                                                 19844
2099                                                 20783
2100                                                 16942
2101                                                 14248
2102                                                 12741
2103                                                 16605
2104                                                 16611
2105                                                 14525
2106                                                 18795
2107                                                 15418
2108                                                 16576
2109                                                 14479
2110                                                 13915
2111                                                 14151
2112                                                 13519
2113                                                  9903
2114                                                 11998
2115                                                 14409
2116                                                 14634
2117                                                 13282
2118                                                 14666
2119                                                 15719
2120                                                 14998
2121                                                 14165
2122                                                 17440
2123                                                 14754
2124                                                 14036
2125                                                 14485
2126                                                 15334
2127                                                 14251
2128                                                 15691
2129                                                 13327
2130                                                 14125
2131                                                 12901
2132                                                 15303
2133                                                 28185
2134                                                 33084
2135                                                 34070
2136                                                 37321
2137                                                 31195
2138                                                 29410
2139                                                 27969
2140                                                 36599
2141                                                 31482
2142                                                 31359
2143                                                 31021
2144                                                 33512
2145                                                 32511
2146                                                 28302
2147                                                 33740
2148                                                 48323
2149                                                 30732
2150                                                 28648
2151                                                 27090
2152                                                 27531
2153                                                 24997
2154                                                 28139
2155                                                 32096
2156                                                 19150
2157                                                 10214
2158                                                 30803
2159                                                 29604
2160                                                 29789
2161                                                 32092
2162                                                 36846
2163                                                 26110
2164                                                 23811
2165                                                 26014
2166                                                 33343
2167                                                 32834
2168                                                 35558
2169                                                 25209
2170                                                 25316
2171                                                 35651
2172                                                 26460
2173                                                 30960
2174                                                 25350
2175                                                 31289
2176                                                 22241
2177                                                 27812
2178                                                 27243
2179                                                 20266
2180                                                 20588
2181                                                 21294
2182                                                 12869
2183                                                  4107
2184                                                  8804
2185                                                  7001
2186                                                  6308
2187                                                  9651
2188                                                  9120
2189                                                  9879
2190                                                  9372
2191                                                  9651
2192                                                  9196
2193                                                 10033
2194                                                  8273
2195                                                 10284
2196                                                 15431
2197                                                 11368
2198                                                 10158
2199                                                 11283
2200                                                 10788
2201                                                 12347
2202                                                 12204
2203                                                  9739
2204                                                 12056
2205                                                 13416
2206                                                 12790
2207                                                 12492
2208                                                 11883
2209                                                 12664
2210                                                 16267
2211                                                 13849
2212                                                 16161
2213                                                 13480
2214                                                 14325
2215                                                 14395
2216                                                 14400
2217                                                 13150
2218                                                  9484
2219                                                 11154
2220                                                 10046
2221                                                 10877
2222                                                 11710
2223                                                  9791
2224                                                  9896
2225                                                  8716
2226                                                 12218
2227                                                  8269
2228                                                 12577
2229                                                 10014
2230                                                  8106
2231                                                 10979
2232                                                 10183
2233                                                 11119
2234                                                 11178
2235                                                 18076
2236                                                 15291
2237                                                  8152
2238                                                  6244
2239                                                  7392
2240                                                  9428
2241                                                  7454
2242                                                  8114
2243                                                 11570
2244                                                 15743
2245                                                 19045
2246                                                 17192
2247                                                 16617
2248                                                 20190
2249                                                 14906
2250                                                 18766
2251                                                 14422
2252                                                 13940
2253                                                 23189
2254                                                 15285
2255                                                 17090
2256                                                 17615
2257                                                 18362
2258                                                 19052
2259                                                 18772
2260                                                 18958
2261                                                 17191
2262                                                 20073
2263                                                 18079
2264                                                 17373
2265                                                 18288
2266                                                 17295
2267                                                 18016
2268                                                 20374
2269                                                 18078
2270                                                 16482
2271                                                 26965
2272                                                 16204
2273                                                 15722
2274                                                 16839
2275                                                 18419
2276                                                 16553
2277                                                 15238
2278                                                 18024
2279                                                 14401
2280                                                 13638
2281                                                 23876
2282                                                 14735
2283                                                 12641
2284                                                 27248
2285                                                 12432
2286                                                 14954
2287                                                 14197
2288                                                 12923
2289                                                392846
2290                                                412829
2291                                                271515
2292                                                 38648
2293                                                 27985
2294                                                 39737
2295                                                 39020
2296                                                115277
2297                                                363473
2298                                                247539
2299                                                274014
2300                                                426601
2301                                                184771
2302                                                 83994
2303                                                 39835
2304                                                 34341
2305                                                 36319
2306                                                 28998
2307                                                 30816
2308                                                 35284
2309                                                 40173
2310                                                 24749
2311                                                 32905
2312                                                 28797
2313                                                 33416
2314                                                 47955
2315                                                 81756
2316                                                 97003
2317                                                 77845
2318                                                106107
2319                                                 34073
2320                                                 38143
2321                                                 33292
2322                                                 36331
2323                                                 58510
2324                                                 73077
2325                                                114924
2326                                                102729
2327                                                104285
2328                                                 89374
2329                                                 81040
2330                                                115290
2331                                                 79560
2332                                                 90168
2333                                                 81708
2334                                                 93962
2335                                                 75885
2336                                                161845
2337                                                 68871
2338                                                146481
2339                                                 88374
2340                                                 73433
2341                                                 13994
2342                                                 10520
2343                                                 12361
2344                                                 15673
2345                                                 12261
2346                                                 13737
2347                                                 20815
2348                                                 25683
2349                                                 31277
2350                                                 28828
2351                                                 28372
2352                                                 34931
2353                                                 25995
2354                                                 33834
2355                                                 27932
2356                                                 26776
2357                                                 43507
2358                                                 31619
2359                                                 35515
2360                                                 55158
2361                                                 79632
2362                                                 81145
2363                                                 78530
2364                                                 77561
2365                                                 72898
2366                                                 97112
2367                                                 59679
2368                                                 62635
2369                                                 46586
2370                                                 26236
2371                                                 25671
2372                                                 30510
2373                                                 26128
2374                                                 24441
2375                                                 40064
2376                                                 23845
2377                                                 23685
2378                                                 23471
2379                                                 26137
2380                                                 23225
2381                                                 21571
2382                                                 25793
2383                                                 20684
2384                                                 19430
2385                                                 34466
2386                                                 21706
2387                                                 18310
2388                                                 40259
2389                                                 18601
2390                                                 22004
2391                                                 21919
2392                                                 18938
2393                                                  2890
2394                                                  2660
2395                                                  2190
2396                                                  2759
2397                                                  2524
2398                                                  2672
2399                                                  2014
2400                                                  2182
2401                                                  2429
2402                                                  2074
2403                                                  1935
2404                                                  1933
2405                                                  1657
2406                                                  2196
2407                                                  4327
2408                                                  2658
2409                                                  3892
2410                                                  3821
2411                                                  2498
2412                                                  3108
2413                                                  3262
2414                                                  3189
2415                                                  3204
2416                                                  2910
2417                                                  3714
2418                                                  6422
2419                                                  6368
2420                                                  4666
2421                                                  3429
2422                                                  3745
2423                                                  3310
2424                                                  3564
2425                                                  4295
2426                                                  3072
2427                                                  3133
2428                                                  2597
2429                                                  2783
2430                                                  3057
2431                                                  3073
2432                                                  2051
2433                                                  2400
2434                                                  3968
2435                                                  2713
2436                                                  2870
2437                                                  2537
2438                                                  2684
2439                                                  3176
2440                                                  2705
2441                                                  2672
2442                                                  2933
2443                                                  4132
2444                                                  3661
2445                                                    24
2446                                                    41
2447                                                    72
2448                                                    27
2449                                                   115
2450                                                    23
2451                                                    15
2452                                                    25
2453                                                    43
2454                                                    38
2455                                                    25
2456                                                    28
2457                                                    51
2458                                                    62
2459                                                    59
2460                                                   228
2461                                                    72
2462                                                    16
2463                                                    33
2464                                                   102
2465                                                   231
2466                                                     4
2467                                                    22
2468                                                    56
2469                                                   233
2470                                                    24
2471                                                    55
2472                                                    51
2473                                                   102
2474                                                    42
2475                                                     9
2476                                                     9
2477                                                    37
2478                                                    43
2479                                                    32
2480                                                    15
2481                                                    34
2482                                                   145
2483                                                    68
2484                                                    56
2485                                                    40
2486                                                    70
2487                                                    48
2488                                                   101
2489                                                    58
2490                                                    41
2491                                                    49
2492                                                    59
2493                                                    43
2494                                                   145
2495                                                    63
2496                                                    54
2497                                                    14
2498                                                    13
2499                                                     6
2500                                                    12
2501                                                     9
2502                                                    34
2503                                                    21
2504                                                    13
2505                                                    30
2506                                                    18
2507                                                    22
2508                                                    26
2509                                                    10
2510                                                    20
2511                                                    30
2512                                                    45
2513                                                    97
2514                                                   102
2515                                                    78
2516                                                    82
2517                                                   127
2518                                                   220
2519                                                   335
2520                                                  1028
2521                                                  2809
2522                                                  3981
2523                                                  2965
2524                                                  3173
2525                                                  2737
2526                                                    32
2527                                                    45
2528                                                    36
2529                                                    39
2530                                                    25
2531                                                    19
2532                                                    19
2533                                                    49
2534                                                    26
2535                                                    20
2536                                                    43
2537                                                    43
2538                                                    19
2539                                                    25
2540                                                    54
2541                                                    42
2542                                                     7
2543                                                    14
2544                                                    14
2545                                                    36
2546                                                    28
2547                                                    15
2548                                                    17
2549                                                    57
2550                                                    34
2551                                                    52
2552                                                    44
2553                                                    18
2554                                                    58
2555                                                    52
2556                                                    40
2557                                                   101
2558                                                    43
2559                                                    42
2560                                                    81
2561                                                   107
2562                                                   100
2563                                                    88
2564                                                   102
2565                                                    63
2566                                                   149
2567                                                    67
2568                                                    66
2569                                                   161
2570                                                   170
2571                                                   116
2572                                                   139
2573                                                   101
2574                                                   164
2575                                                   108
2576                                                   773
2577                                                  2087
2578                                                   468
2579                                                   204
2580                                                   280
2581                                                    80
2582                                                    88
2583                                                   164
2584                                                   118
2585                                                   138
2586                                                   170
2587                                                   194
2588                                                    94
2589                                                   105
2590                                                    63
2591                                                    68
2592                                                    38
2593                                                    39
2594                                                    56
2595                                                    59
2596                                                    80
2597                                                    41
2598                                                    37
2599                                                    56
2600                                                    53
2601                                               1184340
2602                                               1201020
2603                                               1016163
2604                                                931831
2605                                                731008
2606                                                804663
2607                                                815642
2608                                               1143215
2609                                               1410928
2610                                               1188119
2611                                               1220251
2612                                               1614283
2613                                               1209045
2614                                               1061979
2615                                               1112405
2616                                               1118989
2617                                               1129771
2618                                               1060353
2619                                                909284
2620                                               1143365
2621                                               1014521
2622                                                984703
2623                                               1017158
2624                                               1154897
2625                                                980362
2626                                               1342466
2627                                               1045833
2628                                               1326423
2629                                               1085082
2630                                               1144716
2631                                                903908
2632                                                899780
2633                                                963550
2634                                                858145
2635                                               1118330
2636                                                889732
2637                                               1016631
2638                                                807942
2639                                                871981
2640                                                811273
2641                                               1066386
2642                                                871575
2643                                                834009
2644                                               1070576
2645                                                937139
2646                                                845654
2647                                                737939
2648                                               1381516
2649                                                768020
2650                                                831302
2651                                                866575
2652                                                844093
2653                                                125255
2654                                                130850
2655                                                134102
2656                                                107568
2657                                                104220
2658                                                118171
2659                                                122763
2660                                                107754
2661                                                132884
2662                                                134573
2663                                                110349
2664                                                178042
2665                                                179192
2666                                                 98926
2667                                                124208
2668                                                136996
2669                                                124723
2670                                                124658
2671                                                107787
2672                                                123335
2673                                                135408
2674                                                120435
2675                                                146113
2676                                                113524
2677                                                133097
2678                                                155863
2679                                                123262
2680                                                138621
2681                                                112965
2682                                                119830
2683                                                129139
2684                                                120399
2685                                                108561
2686                                                115291
2687                                                104932
2688                                                 79259
2689                                                 87251
2690                                                103111
2691                                                 93055
2692                                                 89701
2693                                                101626
2694                                                 85831
2695                                                 98093
2696                                                110088
2697                                                 79182
2698                                                 91125
2699                                                 76305
2700                                                 80894
2701                                                 71551
2702                                                 76348
2703                                                127412
2704                                                 97024
2705                                                 15487
2706                                                 12954
2707                                                 13576
2708                                                 21088
2709                                                 11463
2710                                                 12009
2711                                                 12781
2712                                                 11968
2713                                                 32803
2714                                                 31960
2715                                                 15806
2716                                                 31027
2717                                                 16662
2718                                                 12988
2719                                                 14247
2720                                                 26175
2721                                                 16171
2722                                                 16299
2723                                                 13332
2724                                                 20866
2725                                                 20222
2726                                                 13662
2727                                                 25087
2728                                                 16067
2729                                                 16186
2730                                                 18234
2731                                                 13078
2732                                                 13455
2733                                                 13413
2734                                                 12543
2735                                                 25329
2736                                                 14654
2737                                                 12171
2738                                                 13890
2739                                                 15065
2740                                                 14469
2741                                                 16243
2742                                                 11291
2743                                                 15530
2744                                                 18571
2745                                                 14084
2746                                                 13115
2747                                                 12345
2748                                                 28226
2749                                                 16471
2750                                                 12100
2751                                                 13718
2752                                                 14107
2753                                                 10573
2754                                                 12473
2755                                                 27944
2756                                                 15268
2757                                                   185
2758                                                   283
2759                                                   172
2760                                                   207
2761                                                   167
2762                                                   168
2763                                                   181
2764                                                   168
2765                                                   160
2766                                                   166
2767                                                   104
2768                                                   157
2769                                                   141
2770                                                   132
2771                                                   132
2772                                                   206
2773                                                   131
2774                                                   124
2775                                                    83
2776                                                    87
2777                                                    58
2778                                                    65
2779                                                   111
2780                                                   164
2781                                                   256
2782                                                   165
2783                                                   174
2784                                                   264
2785                                                  1175
2786                                                   562
2787                                                   247
2788                                                   175
2789                                                    80
2790                                                   254
2791                                                    54
2792                                                    67
2793                                                   106
2794                                                   433
2795                                                  1349
2796                                                  1320
2797                                                  1727
2798                                                  1907
2799                                                  1499
2800                                                  1137
2801                                                  1996
2802                                                  1008
2803                                                   419
2804                                                   412
2805                                                   401
2806                                                   654
2807                                                   464
2808                                                   397
2809                                                  8530
2810                                                  8752
2811                                                  9977
2812                                                 10050
2813                                                  8237
2814                                                 13095
2815                                                 28558
2816                                                 41287
2817                                                 27904
2818                                                 27037
2819                                                 19879
2820                                                 20640
2821                                                 19493
2822                                                 19206
2823                                                 18809
2824                                                 19882
2825                                                 20155
2826                                                 15649
2827                                                 21950
2828                                                 24864
2829                                                 28505
2830                                                 31448
2831                                                 30142
2832                                                 32758
2833                                                 44219
2834                                                 50115
2835                                                 48950
2836                                                 54130
2837                                                 55744
2838                                                 46715
2839                                                 44266
2840                                                 19545
2841                                                 16372
2842                                                 16819
2843                                                 15073
2844                                                 15861
2845                                                 15881
2846                                                 13248
2847                                                 12784
2848                                                 15295
2849                                                 16343
2850                                                 18703
2851                                                 21461
2852                                                 20335
2853                                                 54666
2854                                                 60290
2855                                                 48009
2856                                                 24482
2857                                                 24030
2858                                                 25662
2859                                                 26791
2860                                                 27147
2861                                                  6681
2862                                                  5563
2863                                                  4088
2864                                                  3772
2865                                                  5526
2866                                                  7123
2867                                                  6079
2868                                                  7688
2869                                                  7312
2870                                                  6919
2871                                                  6689
2872                                                  6562
2873                                                  7083
2874                                                  5737
2875                                                  6951
2876                                                  6412
2877                                                  7067
2878                                                  5919
2879                                                  4695
2880                                                  6569
2881                                                     3
2882                                                     3
2883                                                     3
2884                                                     6
2885                                                     3
2886                                                    12
2887                                                     9
2888                                                     2
2889                                                     3
2890                                                    12
2891                                                     7
2892                                                     3
2893                                                    16
2894                                                     7
2895                                                     0
2896                                                   591
2897                                                  4730
2898                                                  5341
2899                                                  6316
2900                                                  9114
2901                                                  9201
2902                                                  6448
2903                                                  7307
2904                                                  8767
2905                                                  4891
2906                                                  6617
2907                                                 17989
2908                                                  8441
2909                                                  4714
2910                                                  8901
2911                                                  9065
2912                                                  5432
2913                                                  4184
2914                                                  7765
2915                                                  5053
2916                                                  3449
2917                                                  3069
2918                                                  4916
2919                                                  3727
2920                                                  3370
2921                                                  3788
2922                                                  6145
2923                                                  4742
2924                                                  3838
2925                                                  5004
2926                                                  6516
2927                                                  7080
2928                                                  9618
2929                                                 10225
2930                                                  7654
2931                                                  7924
2932                                                  8195
2933                                                  8735
2934                                                  8772
2935                                                 10966
2936                                                 10381
2937                                                 14983
2938                                                 17326
2939                                                 28899
2940                                                 38655
2941                                                 43091
2942                                                 51386
2943                                                 72849
2944                                                 81860
2945                                                 63055
2946                                                 80414
2947                                                 54779
2948                                                 51959
2949                                                 43927
2950                                                 74452
2951                                                 42113
2952                                                 51478
2953                                                 34715
2954                                                 46933
2955                                                 36353
2956                                                 36934
2957                                                 36874
2958                                                 58165
2959                                                 25200
2960                                                 25252
2961                                                 26053
2962                                                 32506
2963                                                 13321
2964                                                 21183
2965                                                    42
2966                                                    60
2967                                                    54
2968                                                    23
2969                                                    12
2970                                                    28
2971                                                    84
2972                                                    80
2973                                                    82
2974                                                    78
2975                                                    51
2976                                                   112
2977                                                    90
2978                                                    36
2979                                                    52
2980                                                    65
2981                                                    69
2982                                                    67
2983                                                    44
2984                                                    71
2985                                                    43
2986                                                    55
2987                                                    62
2988                                                   102
2989                                                    46
2990                                                    53
2991                                                    83
2992                                                    58
2993                                                   107
2994                                                   258
2995                                                   354
2996                                                   857
2997                                                  1161
2998                                                   765
2999                                                  1641
3000                                                  1785
3001                                                    58
3002                                                    54
3003                                                    19
3004                                                    44
3005                                                    55
3006                                                    25
3007                                                    32
3008                                                    36
3009                                                    31
3010                                                    40
3011                                                   124
3012                                                    89
3013                                                   131
3014                                                   121
3015                                                   110
3016                                                    99
3017                                                 99998
3018                                                 90984
3019                                                 96836
3020                                                 86153
3021                                                 81897
3022                                                 93901
3023                                                112542
3024                                                120964
3025                                                 92064
3026                                                 82276
3027                                                108458
3028                                                123430
3029                                                121961
3030                                                117424
3031                                                112715
3032                                                114241
3033                                                107653
3034                                                133979
3035                                                171379
3036                                                218247
3037                                                211671
3038                                                244730
3039                                                302735
3040                                                278664
3041                                                292541
3042                                                356022
3043                                                328206
3044                                                319712
3045                                                328654
3046                                                373358
3047                                                341992
3048                                                329738
3049                                                353196
3050                                                336388
3051                                                291449
3052                                                325243
3053                                                382295
3054                                                358016
3055                                                334735
3056                                                311357
3057                                                299003
3058                                                317337
3059                                                325582
3060                                                302211
3061                                                267509
3062                                                278558
3063                                                424390
3064                                                287234
3065                                                272665
3066                                                250106
3067                                                261931
3068                                                257268
3069                                                  7325
3070                                                  7943
3071                                                  8697
3072                                                  9452
3073                                                  8265
3074                                                 13913
3075                                                 22715
3076                                                 25306
3077                                                 26881
3078                                                 20290
3079                                                 17532
3080                                                 19420
3081                                                 16737
3082                                                 17495
3083                                                 16564
3084                                                 17914
3085                                                 18659
3086                                                 15013
3087                                                 20731
3088                                                 23025
3089                                                 24178
3090                                                 24742
3091                                                 26839
3092                                                 25757
3093                                                 40461
3094                                                 40378
3095                                                 39269
3096                                                 46282
3097                                                 46177
3098                                                 41412
3099                                                 41274
3100                                                 20860
3101                                                 17608
3102                                                 18608
3103                                                 18934
3104                                                 18456
3105                                                 17306
3106                                                 16897
3107                                                 14615
3108                                                 15519
3109                                                 18631
3110                                                 22962
3111                                                 21769
3112                                                 19046
3113                                                 19834
3114                                                 18324
3115                                                 42057
3116                                                 25919
3117                                                 30644
3118                                                 29113
3119                                                 29603
3120                                                 31682
3121                                                110167
3122                                                101491
3123                                                103933
3124                                                 94496
3125                                                 81651
3126                                                 80126
3127                                                 73022
3128                                                 61666
3129                                                 60261
3130                                                 68235
3131                                                 75842
3132                                                 90032
3133                                                 90495
3134                                                 98809
3135                                                 97901
3136                                                 99521
3137                                                 91324
3138                                                 93289
3139                                                 87450
3140                                                102966
3141                                                103403
3142                                                 97843
3143                                                109032
3144                                                108231
3145                                                150963
3146                                                184519
3147                                                159812
3148                                                163028
3149                                                140925
3150                                                145607
3151                                                145364
3152                                                145104
3153                                                157985
3154                                                173294
3155                                                155290
3156                                                151281
3157                                                137010
3158                                                153442
3159                                                139240
3160                                                131467
3161                                                122808
3162                                                125902
3163                                                129160
3164                                                133067
3165                                                125839
3166                                                131203
3167                                                155377
3168                                                132958
3169                                                136034
3170                                                139310
3171                                                143203
3172                                                162054
3173                                                   970
3174                                                  1472
3175                                                   754
3176                                                  2845
3177                                                   690
3178                                                   853
3179                                                   900
3180                                                  1004
3181                                                   841
3182                                                  1181
3183                                                  1275
3184                                                  1223
3185                                                  1381
3186                                                  1396
3187                                                  1335
3188                                                  1567
3189                                                  2099
3190                                                  1684
3191                                                  1922
3192                                                  2662
3193                                                  3143
3194                                                  3805
3195                                                  7053
3196                                                  6999
3197                                                  6514
3198                                                  6496
3199                                                  9805
3200                                                 14007
3201                                                  7051
3202                                                 23750
3203                                                  7149
3204                                                  6811
3205                                                 21963
3206                                                 17790
3207                                                  9602
3208                                                  9484
3209                                                 25464
3210                                                  8960
3211                                                 10847
3212                                                 16191
3213                                                 16430
3214                                                  7483
3215                                                 24315
3216                                                 16207
3217                                                  5552
3218                                                  8009
3219                                                 30150
3220                                                 12917
3221                                                 23681
3222                                                  7457
3223                                                  7200
3224                                                 18925
3225                                                  1538
3226                                                  2523
3227                                                  1302
3228                                                  5532
3229                                                  1296
3230                                                  1336
3231                                                  1460
3232                                                  1604
3233                                                  1374
3234                                                  1763
3235                                                  1875
3236                                                  1901
3237                                                  2077
3238                                                  2426
3239                                                  2505
3240                                                  2345
3241                                                  2616
3242                                                  2593
3243                                                  2842
3244                                                  3157
3245                                                  3955
3246                                                  4295
3247                                                  6084
3248                                                  6346
3249                                                  5813
3250                                                  6699
3251                                                 10853
3252                                                 15000
3253                                                  8090
3254                                                 25833
3255                                                  7985
3256                                                  6778
3257                                                 21037
3258                                                 19164
3259                                                  9593
3260                                                 10151
3261                                                 27375
3262                                                  9075
3263                                                 21042
3264                                                 29364
3265                                                 28532
3266                                                 18666
3267                                                 35277
3268                                                 28500
3269                                                 15758
3270                                                 17175
3271                                                 36192
3272                                                 23467
3273                                                 35350
3274                                                 20931
3275                                                 17903
3276                                                 32940
3277                                                  3069
3278                                                  2578
3279                                                  3182
3280                                                  3036
3281                                                  2460
3282                                                  2768
3283                                                  3947
3284                                                  1932
3285                                                  2502
3286                                                  3183
3287                                                  2337
3288                                                  5585
3289                                                  1902
3290                                                  1798
3291                                                  2165
3292                                                  2193
3293                                                  2742
3294                                                  2998
3295                                                  4763
3296                                                  3601
3297                                                  3385
3298                                                  4548
3299                                                  4389
3300                                                  7623
3301                                                 40097
3302                                                 95675
3303                                                 86436
3304                                                 61508
3305                                                 87625
3306                                                 74561
3307                                                 58729
3308                                                102485
3309                                                 77617
3310                                                130305
3311                                                 63779
3312                                                102387
3313                                                113528
3314                                                112050
3315                                                112750
3316                                                129805
3317                                                134806
3318                                                118454
3319                                                 67157
3320                                                 53556
3321                                                 70977
3322                                                135348
3323                                                143876
3324                                                 78917
3325                                                 47421
3326                                                 79252
3327                                                 54920
3328                                                 80184
3329                                                 15600
3330                                                 10972
3331                                                 11428
3332                                                 11513
3333                                                 14113
3334                                                 15291
3335                                                 16010
3336                                                 18859
3337                                                 16411
3338                                                 19087
3339                                                 16490
3340                                                 13026
3341                                                 16448
3342                                                 16829
3343                                                 16329
3344                                                 14433
3345                                                 17240
3346                                                 13197
3347                                                 13733
3348                                                 19583
3349                                                 18625
3350                                                 19083
3351                                                 19241
3352                                                 19017
3353                                                 20484
3354                                                 21307
3355                                                 17278
3356                                                 20738
3357                                                 19839
3358                                                 16486
3359                                                 33023
3360                                                 17526
3361                                                 39118
3362                                                 13291
3363                                                 15299
3364                                                 11419
3365                                                 27996
3366                                                 11021
3367                                                 25632
3368                                                 20424
3369                                                 10951
3370                                                 33866
3371                                                 18706
3372                                                 62908
3373                                                 14973
3374                                                 17993
3375                                                 18935
3376                                                 27490
3377                                                 15455
3378                                                 31010
3379                                                 37684
3380                                                 10375
3381                                                  7122
3382                                                 10805
3383                                                  5245
3384                                                 22752
3385                                                  4975
3386                                                  5328
3387                                                  5687
3388                                                  5689
3389                                                  4806
3390                                                  8023
3391                                                  6767
3392                                                  6966
3393                                                  7838
3394                                                  8202
3395                                                  8602
3396                                                 10906
3397                                                 11880
3398                                                 10761
3399                                                 13152
3400                                                 15900
3401                                                 20553
3402                                                 23139
3403                                                 40560
3404                                                 41888
3405                                                 38635
3406                                                 37960
3407                                                 57170
3408                                                 75225
3409                                                 38385
3410                                                123671
3411                                                 38082
3412                                                 35078
3413                                                120895
3414                                                107930
3415                                                 46049
3416                                                 45926
3417                                                132061
3418                                                 44982
3419                                                 72329
3420                                                119489
3421                                                111819
3422                                                 65647
3423                                                154833
3424                                                108296
3425                                                 62843
3426                                                 71030
3427                                                192417
3428                                                 96299
3429                                                151280
3430                                                 78514
3431                                                 73427
3432                                                143912
3433                                                  3769
3434                                                  4631
3435                                                  2268
3436                                                  9126
3437                                                  2036
3438                                                  2576
3439                                                  2934
3440                                                  2786
3441                                                  2821
3442                                                  3120
3443                                                  3811
3444                                                  3409
3445                                                  4167
3446                                                  4715
3447                                                  4838
3448                                                  6085
3449                                                  8314
3450                                                 10745
3451                                                 18507
3452                                                 23662
3453                                                 19401
3454                                                 12112
3455                                                 26207
3456                                                 24890
3457                                                 21318
3458                                                 20020
3459                                                 14725
3460                                                 18999
3461                                                  2234
3462                                                  6826
3463                                                  2496
3464                                                  4986
3465                                                  6472
3466                                                  5353
3467                                                  3003
3468                                                  3088
3469                                                  8606
3470                                                  3412
3471                                                  3234
3472                                                  5101
3473                                                  4357
3474                                                  2608
3475                                                  7753
3476                                                  5164
3477                                                  4068
3478                                                 14048
3479                                                 43867
3480                                                 14941
3481                                                 16377
3482                                                  5407
3483                                                  3921
3484                                                 12294
3485                                                146507
3486                                                146479
3487                                                134248
3488                                                179768
3489                                                109137
3490                                                109089
3491                                                103231
3492                                                 91683
3493                                                 88514
3494                                                105335
3495                                                111905
3496                                                129381
3497                                                129396
3498                                                144883
3499                                                150024
3500                                                156893
3501                                                158777
3502                                                166365
3503                                                180362
3504                                                217555
3505                                                219477
3506                                                207792
3507                                                293305
3508                                                291137
3509                                                328565
3510                                                367119
3511                                                376048
3512                                                431784
3513                                                285262
3514                                                487106
3515                                                280609
3516                                                285243
3517                                                491345
3518                                                471428
3519                                                320732
3520                                                323412
3521                                                508030
3522                                                299670
3523                                                360264
3524                                                464302
3525                                                425737
3526                                                319149
3527                                                534051
3528                                                427177
3529                                                295942
3530                                                352376
3531                                                704467
3532                                                422064
3533                                                553447
3534                                                357832
3535                                                352247
3536                                                543718
3537                                                  1530
3538                                                   209
3539                                                   113
3540                                                    71
3541                                                    84
3542                                                   117
3543                                                   127
3544                                                   152
3545                                                    88
3546                                                   114
3547                                                   176
3548                                                   218
3549                                                   192
3550                                                   184
3551                                                   177
3552                                                   124
3553                                                   231
3554                                                  1087
3555                                                   101
3556                                                   194
3557                                                   538
3558                                                   347
3559                                                   273
3560                                                   207
3561                                                   437
3562                                                   762
3563                                                   593
3564                                                   298
3565                                                   125
3566                                                   192
3567                                                   137
3568                                                   183
3569                                                   227
3570                                                   358
3571                                                   363
3572                                                   235
3573                                                   138
3574                                                   168
3575                                                    90
3576                                                   157
3577                                                   270
3578                                                   202
3579                                                   212
3580                                                   213
3581                                                   158
3582                                                   224
3583                                                   334
3584                                                   148
3585                                                   187
3586                                                   215
3587                                                   142
3588                                                   315
3589                                                  7914
3590                                                   995
3591                                                  2350
3592                                                   591
3593                                                   120
3594                                                   122
3595                                                   107
3596                                                   162
3597                                                   192
3598                                                   194
3599                                                   239
3600                                                   275
3601                                                   620
3602                                                   127
3603                                                   133
3604                                                   197
3605                                                   842
3606                                                   278
3607                                                   224
3608                                                   655
3609                                                   565
3610                                                   200
3611                                                   149
3612                                                   287
3613                                                   700
3614                                                  1331
3615                                                   263
3616                                                   308
3617                                                   319
3618                                                   246
3619                                                   433
3620                                                   522
3621                                                   779
3622                                                   436
3623                                                   247
3624                                                   685
3625                                                    95
3626                                                   172
3627                                                   449
3628                                                   197
3629                                                   278
3630                                                   179
3631                                                   295
3632                                                   233
3633                                                   280
3634                                                   317
3635                                                   531
3636                                                   256
3637                                                   304
3638                                                   223
3639                                                   238
3640                                                   297
3641                                                  3258
3642                                                  2886
3643                                                  3480
3644                                                  4509
3645                                                  3567
3646                                                  4070
3647                                                  4850
3648                                                  2922
3649                                                  3193
3650                                                  2489
3651                                                  3349
3652                                                  9671
3653                                                  3196
3654                                                  2894
3655                                                  3024
3656                                                  2466
3657                                                  3440
3658                                                  3065
3659                                                  5697
3660                                                  3816
3661                                                  5033
3662                                                  4165
3663                                                  5209
3664                                                  8568
3665                                                 41629
3666                                                139911
3667                                                113474
3668                                                 74763
3669                                                110055
3670                                                110458
3671                                                116263
3672                                                169714
3673                                                 95672
3674                                                185667
3675                                                 89822
3676                                                163348
3677                                                153135
3678                                                151966
3679                                                181951
3680                                                177920
3681                                                121839
3682                                                185545
3683                                                 86478
3684                                                 85512
3685                                                 90646
3686                                                210029
3687                                                203798
3688                                                161507
3689                                                 79193
3690                                                116441
3691                                                 85369
3692                                                113069
3693                                                  1963
3694                                                  1974
3695                                                  2771
3696                                                  5144
3697                                                  1231
3698                                                  1517
3699                                                  1725
3700                                                  1578
3701                                                  1683
3702                                                  2220
3703                                                  1953
3704                                                  2174
3705                                                  2092
3706                                                  2557
3707                                                  2707
3708                                                  3135
3709                                                  3253
3710                                                  2802
3711                                                  3406
3712                                                  4255
3713                                                  5742
3714                                                  6277
3715                                                  9887
3716                                                  9427
3717                                                  9531
3718                                                  9153
3719                                                 15030
3720                                                 19044
3721                                                 19115
3722                                                 21893
3723                                                 12496
3724                                                 17820
3725                                                 23506
3726                                                 18839
3727                                                 12071
3728                                                 22244
3729                                                 24253
3730                                                 11125
3731                                                 14509
3732                                                 23243
3733                                                 16825
3734                                                 17714
3735                                                 24631
3736                                                 16742
3737                                                  8892
3738                                                 15622
3739                                                 27708
3740                                                 22381
3741                                                 23023
3742                                                 12443
3743                                                 18455
3744                                                 25839
3745                                                   208
3746                                                   104
3747                                                   127
3748                                                   133
3749                                                    95
3750                                                   192
3751                                                   213
3752                                                   290
3753                                                   207
3754                                                   212
3755                                                   228
3756                                                   144
3757                                                    94
3758                                                   145
3759                                                    84
3760                                                   149
3761                                                   158
3762                                                   113
3763                                                   189
3764                                                   218
3765                                                   331
3766                                                   440
3767                                                   494
3768                                                   413
3769                                                   680
3770                                                  1135
3771                                                   749
3772                                                  1509
3773                                                   983
3774                                                   784
3775                                                   982
3776                                                   357
3777                                                   276
3778                                                   280
3779                                                   249
3780                                                   134
3781                                                   185
3782                                                   196
3783                                                   150
3784                                                   402
3785                                                   269
3786                                                   316
3787                                                   503
3788                                                   218
3789                                                   212
3790                                                   377
3791                                                   594
3792                                                   256
3793                                                   473
3794                                                   302
3795                                                   273
3796                                                   488
3797                                                  7607
3798                                                  7073
3799                                                  6832
3800                                                  5327
3801                                                  4857
3802                                                  5608
3803                                                  6683
3804                                                  8196
3805                                                  7158
3806                                                  8492
3807                                                  5357
3808                                                  5061
3809                                                  5877
3810                                                  5907
3811                                                  5319
3812                                                  5573
3813                                                  5841
3814                                                  6192
3815                                                  5836
3816                                                  6998
3817                                                  7063
3818                                                  7320
3819                                                  7525
3820                                                  7496
3821                                                  7717
3822                                                  9481
3823                                                 12079
3824                                                 11019
3825                                                 18142
3826                                                 13189
3827                                                 11870
3828                                                 15173
3829                                                  1468
3830                                                  8687
3831                                                  8420
3832                                                  8101
3833                                                  6531
3834                                                  6305
3835                                                  6877
3836                                                  7122
3837                                                 13632
3838                                                  6824
3839                                                  6810
3840                                                 14452
3841                                                  6448
3842                                                  7331
3843                                                 10625
3844                                                 14510
3845                                                  6141
3846                                                 12497
3847                                                  6134
3848                                                 15505
3849                                                 65359
3850                                                 56245
3851                                                 59600
3852                                                 53730
3853                                                 50950
3854                                                 60512
3855                                                 71033
3856                                                 77065
3857                                                 59597
3858                                                 44807
3859                                                 56116
3860                                                 61747
3861                                                 62565
3862                                                 62738
3863                                                 55346
3864                                                 49050
3865                                                 43844
3866                                                 57212
3867                                                 57963
3868                                                 73826
3869                                                 67935
3870                                                 70784
3871                                                 83980
3872                                                 84008
3873                                                 81637
3874                                                107626
3875                                                105880
3876                                                114307
3877                                                105647
3878                                                121003
3879                                                113180
3880                                                 89228
3881                                                 95527
3882                                                107684
3883                                                 98634
3884                                                102739
3885                                                100884
3886                                                 95958
3887                                                101585
3888                                                 94366
3889                                                 91299
3890                                                 96885
3891                                                 90068
3892                                                 95505
3893                                                 83794
3894                                                 90043
3895                                                 98684
3896                                                 75112
3897                                                 92941
3898                                                 84389
3899                                                 88910
3900                                                 90511
3901                                                   180
3902                                                   434
3903                                                   142
3904                                                   665
3905                                                   141
3906                                                   159
3907                                                   215
3908                                                   236
3909                                                   162
3910                                                   315
3911                                                   282
3912                                                   329
3913                                                   487
3914                                                   413
3915                                                   565
3916                                                   635
3917                                                   769
3918                                                   615
3919                                                   736
3920                                                   772
3921                                                  1058
3922                                                  1145
3923                                                  1996
3924                                                  2111
3925                                                  2084
3926                                                  1811
3927                                                  3534
3928                                                  5025
3929                                                  2496
3930                                                  9893
3931                                                  2468
3932                                                  2244
3933                                                  6838
3934                                                  6925
3935                                                  3924
3936                                                  3819
3937                                                  9699
3938                                                  2962
3939                                                  3899
3940                                                  6189
3941                                                  6366
3942                                                  3216
3943                                                  8998
3944                                                  5796
3945                                                  2286
3946                                                  3867
3947                                                 10194
3948                                                  4775
3949                                                  9688
3950                                                  2802
3951                                                  2595
3952                                                  6301
3953                                                   828
3954                                                  3460
3955                                                   160
3956                                                    51
3957                                                   120
3958                                                    44
3959                                                   256
3960                                                   233
3961                                                   248
3962                                                   248
3963                                                   236
3964                                                   170
3965                                                   361
3966                                                   181
3967                                                   281
3968                                                   194
3969                                                   218
3970                                                   259
3971                                                    95
3972                                                   139
3973                                                   115
3974                                                   177
3975                                                   164
3976                                                   190
3977                                                   151
3978                                                   130
3979                                                   166
3980                                                   115
3981                                                    78
3982                                                   252
3983                                                   249
3984                                                   257
3985                                                   224
3986                                                   173
3987                                                   584
3988                                                   547
3989                                                   101
3990                                                   156
3991                                                    72
3992                                                   128
3993                                                   142
3994                                                   181
3995                                                    93
3996                                                   703
3997                                                    78
3998                                                    75
3999                                                   231
4000                                                   169
4001                                                   260
4002                                                   292
4003                                                   250
4004                                                    41
4005                                                 33980
4006                                                 36485
4007                                                 39179
4008                                                 41579
4009                                                 33161
4010                                                 53734
4011                                                 99449
4012                                                122472
4013                                                107745
4014                                                 94123
4015                                                 76681
4016                                                 81958
4017                                                 77381
4018                                                 73333
4019                                                 70265
4020                                                 82492
4021                                                 86827
4022                                                 67371
4023                                                 96331
4024                                                107540
4025                                                119738
4026                                                127239
4027                                                133520
4028                                                137997
4029                                                198307
4030                                                213315
4031                                                204710
4032                                                230514
4033                                                229465
4034                                                214242
4035                                                199248
4036                                                 95835
4037                                                 89571
4038                                                 94749
4039                                                 89465
4040                                                 90676
4041                                                 97350
4042                                                 79795
4043                                                 78798
4044                                                 90880
4045                                                 98399
4046                                                107243
4047                                                122485
4048                                                106124
4049                                                141965
4050                                                144264
4051                                                220032
4052                                                133522
4053                                                146095
4054                                                136753
4055                                                141334
4056                                                150717
4057                                                    66
4058                                                   104
4059                                                   158
4060                                                   854
4061                                                   177
4062                                                    99
4063                                                   182
4064                                                   127
4065                                                   166
4066                                                   126
4067                                                   233
4068                                                   128
4069                                                    86
4070                                                   188
4071                                                    81
4072                                                   342
4073                                                   372
4074                                                   347
4075                                                   194
4076                                                   174
4077                                                   161
4078                                                   251
4079                                                   256
4080                                                   220
4081                                                   320
4082                                                   354
4083                                                   244
4084                                                   437
4085                                                   905
4086                                                   728
4087                                                   993
4088                                                   713
4089                                                   976
4090                                                   746
4091                                                  1426
4092                                                  1474
4093                                                  1199
4094                                                  3073
4095                                                  6467
4096                                                  6374
4097                                                  6535
4098                                                  5966
4099                                                  5970
4100                                                  7035
4101                                                  9519
4102                                                  8627
4103                                                  7759
4104                                                  8013
4105                                                  6297
4106                                                  6428
4107                                                  7580
4108                                                  7695
4109                                                   259
4110                                                   430
4111                                                   205
4112                                                   120
4113                                                    50
4114                                                    51
4115                                                   103
4116                                                    95
4117                                                   374
4118                                                   245
4119                                                   502
4120                                                   402
4121                                                   339
4122                                                   892
4123                                                   448
4124                                                   253
4125                                                   275
4126                                                   364
4127                                                   305
4128                                                   190
4129                                                   334
4130                                                   239
4131                                                   397
4132                                                   271
4133                                                   335
4134                                                   321
4135                                                   396
4136                                                   268
4137                                                   496
4138                                                   557
4139                                                   355
4140                                                   496
4141                                                   456
4142                                                   456
4143                                                  1500
4144                                                  3088
4145                                                   381
4146                                                   612
4147                                                  4574
4148                                                  1282
4149                                                  1534
4150                                                   455
4151                                                   566
4152                                                   992
4153                                                   322
4154                                                   379
4155                                                   567
4156                                                   347
4157                                                   403
4158                                                   500
4159                                                   441
4160                                                   353
4161                                                 84414
4162                                                 15429
4163                                                  5247
4164                                                  2350
4165                                                  2023
4166                                                  2999
4167                                                  2970
4168                                                  3519
4169                                                  1596
4170                                                  2087
4171                                                  1794
4172                                                  1807
4173                                                  3847
4174                                                  2002
4175                                                  1664
4176                                                  2149
4177                                                 12219
4178                                                 37850
4179                                                  4586
4180                                                 13050
4181                                                 26114
4182                                                 21054
4183                                                 22933
4184                                                 28823
4185                                                 38821
4186                                                 49981
4187                                                 30502
4188                                                 28829
4189                                                 21104
4190                                                 23822
4191                                                 24552
4192                                                 16383
4193                                                 16601
4194                                                 21634
4195                                                 11518
4196                                                 12409
4197                                                  4694
4198                                                  2137
4199                                                  1685
4200                                                  1438
4201                                                  1917
4202                                                  2801
4203                                                  2066
4204                                                  2028
4205                                                  3071
4206                                                  1220
4207                                                  3000
4208                                                  1384
4209                                                  1854
4210                                                  4949
4211                                                  1670
4212                                                  1462
4213                                                117488
4214                                                 36712
4215                                                 19969
4216                                                 12276
4217                                                 10853
4218                                                 16299
4219                                                 14009
4220                                                 13244
4221                                                 12120
4222                                                 16941
4223                                                 13908
4224                                                 12845
4225                                                 17033
4226                                                 18242
4227                                                 17881
4228                                                 25571
4229                                                 38849
4230                                                 68593
4231                                                 25740
4232                                                 40750
4233                                                 59915
4234                                                 57230
4235                                                 63714
4236                                                 74756
4237                                                 99899
4238                                                123210
4239                                                118845
4240                                                132513
4241                                                135414
4242                                                156594
4243                                                213855
4244                                                219222
4245                                                172918
4246                                                211976
4247                                                144510
4248                                                142678
4249                                                102787
4250                                                164664
4251                                                 90728
4252                                                104254
4253                                                 79981
4254                                                111255
4255                                                 83452
4256                                                 84169
4257                                                 84110
4258                                                129490
4259                                                 59775
4260                                                 59280
4261                                                 66878
4262                                                 77510
4263                                                 34789
4264                                                 53766
4265                                                  2878
4266                                                  5317
4267                                                  3081
4268                                                  2350
4269                                                  2393
4270                                                  3473
4271                                                  2651
4272                                                  2261
4273                                                  2879
4274                                                  4023
4275                                                  3353
4276                                                  2844
4277                                                  3193
4278                                                  3706
4279                                                  4265
4280                                                  7205
4281                                                  6202
4282                                                  4902
4283                                                  4669
4284                                                  5813
4285                                                  5884
4286                                                  6618
4287                                                  7568
4288                                                  7593
4289                                                 10103
4290                                                 14096
4291                                                 20457
4292                                                 27248
4293                                                 30138
4294                                                 35125
4295                                                 58060
4296                                                 64721
4297                                                 47340
4298                                                 55131
4299                                                 37533
4300                                                 39188
4301                                                 29549
4302                                                 50625
4303                                                 26852
4304                                                 29092
4305                                                 25615
4306                                                 36964
4307                                                 26686
4308                                                 26835
4309                                                 26089
4310                                                 41375
4311                                                 16923
4312                                                 18558
4313                                                 22048
4314                                                 22335
4315                                                 11133
4316                                                 17576
4317                                                   133
4318                                                   118
4319                                                    68
4320                                                   114
4321                                                   121
4322                                                    91
4323                                                   167
4324                                                   149
4325                                                   144
4326                                                   135
4327                                                   152
4328                                                   129
4329                                                   189
4330                                                   134
4331                                                    90
4332                                                    63
4333                                                   172
4334                                                    92
4335                                                    83
4336                                                   132
4337                                                   115
4338                                                    91
4339                                                   142
4340                                                   105
4341                                                   130
4342                                                   279
4343                                                    95
4344                                                   250
4345                                                   142
4346                                                   232
4347                                                   345
4348                                                   308
4349                                                   378
4350                                                   259
4351                                                   403
4352                                                   745
4353                                                   226
4354                                                   214
4355                                                   252
4356                                                    63
4357                                                    89
4358                                                   450
4359                                                    39
4360                                                   222
4361                                                    90
4362                                                   103
4363                                                   222
4364                                                   159
4365                                                   326
4366                                                    83
4367                                                   199
4368                                                   234
4369                                                 18780
4370                                                  2124
4371                                                   735
4372                                                   846
4373                                                   860
4374                                                  1487
4375                                                  1840
4376                                                  1466
4377                                                   701
4378                                                   665
4379                                                   718
4380                                                   965
4381                                                   898
4382                                                   776
4383                                                   748
4384                                                   955
4385                                                  4083
4386                                                 13529
4387                                                  2559
4388                                                  5607
4389                                                 12191
4390                                                 12677
4391                                                 13603
4392                                                 17209
4393                                                 20445
4394                                                 25017
4395                                                 21092
4396                                                 18156
4397                                                 16971
4398                                                 17990
4399                                                 17074
4400                                                 10912
4401                                                 10280
4402                                                 16821
4403                                                 11522
4404                                                 11453
4405                                                  5217
4406                                                  2461
4407                                                   410
4408                                                   501
4409                                                   615
4410                                                   776
4411                                                   637
4412                                                   821
4413                                                  1816
4414                                                  1006
4415                                                  1418
4416                                                   505
4417                                                   692
4418                                                  2772
4419                                                   700
4420                                                   918
4421                                                 17008
4422                                                 14396
4423                                                 14223
4424                                                 11916
4425                                                 11542
4426                                                 14661
4427                                                 15106
4428                                                 16680
4429                                                 15843
4430                                                 16864
4431                                                 13628
4432                                                 10641
4433                                                 11411
4434                                                 12131
4435                                                 11915
4436                                                 11582
4437                                                 13070
4438                                                 10717
4439                                                  9205
4440                                                 11524
4441                                                 11938
4442                                                 11881
4443                                                 12392
4444                                                 11537
4445                                                 11651
4446                                                 14795
4447                                                 16236
4448                                                 17321
4449                                                 22944
4450                                                 17419
4451                                                 18218
4452                                                 22534
4453                                                 13478
4454                                                 29263
4455                                                 14203
4456                                                 14665
4457                                                 14462
4458                                                 37714
4459                                                 17173
4460                                                 35479
4461                                                 21556
4462                                                 16153
4463                                                 14567
4464                                                 22261
4465                                                 15355
4466                                                 22140
4467                                                 57213
4468                                                 21553
4469                                                 15409
4470                                                 19499
4471                                                 12048
4472                                                 20951
4473                                                   962
4474                                                  1975
4475                                                  1185
4476                                                  1314
4477                                                  1117
4478                                                  1051
4479                                                  1041
4480                                                  1137
4481                                                  1150
4482                                                  1186
4483                                                   995
4484                                                   953
4485                                                  1369
4486                                                  3010
4487                                                  1331
4488                                                   925
4489                                                  1349
4490                                                  1022
4491                                                  1004
4492                                                  1002
4493                                                  1001
4494                                                   943
4495                                                  1233
4496                                                  1133
4497                                                  1295
4498                                                  1266
4499                                                  1294
4500                                                  1173
4501                                                  1172
4502                                                  1294
4503                                                  1567
4504                                                  1537
4505                                                  2931
4506                                                  2818
4507                                                  2935
4508                                                  1240
4509                                                  1801
4510                                                  1601
4511                                                  1736
4512                                                  1505
4513                                                  1225
4514                                                  1333
4515                                                  1404
4516                                                  1383
4517                                                  1372
4518                                                  1332
4519                                                  1740
4520                                                  1456
4521                                                  1742
4522                                                  1255
4523                                                  1612
4524                                                  1390
4525                                                  4268
4526                                                  3272
4527                                                  3600
4528                                                  3190
4529                                                  3226
4530                                                  4456
4531                                                  5306
4532                                                  6473
4533                                                  5264
4534                                                  5549
4535                                                  5139
4536                                                  4681
4537                                                  5181
4538                                                  5573
4539                                                  5721
4540                                                  5273
4541                                                  6177
4542                                                  5249
4543                                                  5419
4544                                                  6194
4545                                                  6165
4546                                                  7472
4547                                                  7417
4548                                                 11130
4549                                                 16160
4550                                                 10692
4551                                                  9370
4552                                                 11010
4553                                                 11291
4554                                                 10391
4555                                                 12126
4556                                                 10708
4557                                                 22170
4558                                                 18181
4559                                                 27642
4560                                                 11773
4561                                                 10597
4562                                                 19359
4563                                                 45777
4564                                                 44612
4565                                                 33667
4566                                                 49504
4567                                                 44772
4568                                                 38147
4569                                                 24200
4570                                                 20578
4571                                                 29502
4572                                                 18333
4573                                                 16919
4574                                                 25613
4575                                                 36259
4576                                                 19331
4577                                                 13342
4578                                                 11774
4579                                                 11762
4580                                                 11803
4581                                                 11473
4582                                                 13949
4583                                                 15746
4584                                                 14248
4585                                                 15009
4586                                                 12872
4587                                                 13598
4588                                                 15503
4589                                                 15822
4590                                                 16380
4591                                                 13569
4592                                                 15697
4593                                                 13320
4594                                                 12315
4595                                                 11484
4596                                                 15591
4597                                                 15568
4598                                                 15067
4599                                                 16246
4600                                                 16322
4601                                                 15965
4602                                                 20839
4603                                                 19976
4604                                                 19367
4605                                                 19532
4606                                                 23659
4607                                                 19960
4608                                                 18037
4609                                                 18398
4610                                                 20853
4611                                                 18792
4612                                                 18735
4613                                                 20489
4614                                                 21805
4615                                                 23099
4616                                                 17851
4617                                                 17767
4618                                                 19425
4619                                                 32886
4620                                                 18300
4621                                                 14448
4622                                                 15639
4623                                                 17669
4624                                                 18005
4625                                                 17305
4626                                                 16915
4627                                                 20423
4628                                                 22086
4629                                                  6997
4630                                                  8200
4631                                                  8646
4632                                                  8087
4633                                                  6927
4634                                                 11043
4635                                                 22905
4636                                                 25755
4637                                                 23851
4638                                                 21782
4639                                                 17585
4640                                                 20238
4641                                                 17416
4642                                                 15700
4643                                                 15057
4644                                                 19103
4645                                                 19655
4646                                                 13156
4647                                                 21071
4648                                                 23429
4649                                                 25308
4650                                                 25332
4651                                                 26361
4652                                                 29373
4653                                                 42700
4654                                                 44753
4655                                                 43580
4656                                                 48616
4657                                                 47594
4658                                                 42240
4659                                                 41393
4660                                                 19570
4661                                                 15603
4662                                                 16994
4663                                                 17389
4664                                                 18009
4665                                                 17999
4666                                                 16301
4667                                                 14035
4668                                                 15426
4669                                                 17215
4670                                                 20694
4671                                                 22198
4672                                                 19136
4673                                                 19436
4674                                                 18500
4675                                                 41708
4676                                                 26482
4677                                                 26788
4678                                                 27591
4679                                                 29659
4680                                                 29345
4681                                                  2184
4682                                                  2892
4683                                                  2895
4684                                                  2715
4685                                                  2116
4686                                                  3169
4687                                                  4975
4688                                                  6292
4689                                                  5927
4690                                                  5858
4691                                                  4957
4692                                                  4535
4693                                                  5205
4694                                                  4599
4695                                                  4205
4696                                                  5967
4697                                                  6484
4698                                                  5088
4699                                                  6792
4700                                                  8139
4701                                                  8282
4702                                                  9343
4703                                                  9257
4704                                                  9386
4705                                                 12341
4706                                                 14142
4707                                                 13640
4708                                                 15409
4709                                                 15693
4710                                                 13829
4711                                                 14414
4712                                                  5995
4713                                                  5702
4714                                                  6248
4715                                                  6671
4716                                                  6402
4717                                                  6469
4718                                                  6104
4719                                                  5177
4720                                                  4987
4721                                                  5713
4722                                                  6976
4723                                                  7266
4724                                                  6325
4725                                                  5840
4726                                                  4864
4727                                                 11393
4728                                                  7356
4729                                                  7717
4730                                                  8462
4731                                                  8835
4732                                                  8339
4733                                                    95
4734                                                   125
4735                                                   130
4736                                                   161
4737                                                    86
4738                                                    89
4739                                                   133
4740                                                   156
4741                                                   184
4742                                                   172
4743                                                   130
4744                                                   199
4745                                                   184
4746                                                   117
4747                                                    93
4748                                                   164
4749                                                   107
4750                                                   109
4751                                                    65
4752                                                    89
4753                                                   171
4754                                                    92
4755                                                    61
4756                                                   139
4757                                                   141
4758                                                   153
4759                                                   111
4760                                                   134
4761                                                   145
4762                                                   113
4763                                                   200
4764                                                   230
4765                                                   200
4766                                                   278
4767                                                   715
4768                                                    98
4769                                                   101
4770                                                   136
4771                                                   170
4772                                                    72
4773                                                   140
4774                                                   148
4775                                                   111
4776                                                   149
4777                                                   102
4778                                                   186
4779                                                   179
4780                                                   135
4781                                                   181
4782                                                    99
4783                                                   178
4784                                                   183
4785                                                   811
4786                                                   888
4787                                                  1253
4788                                                  1306
4789                                                  1112
4790                                                  1202
4791                                                  1255
4792                                                  1450
4793                                                  1177
4794                                                  1930
4795                                                  2661
4796                                                  4510
4797                                                  4079
4798                                                  3264
4799                                                  3772
4800                                                  4351
4801                                                  4575
4802                                                  5538
4803                                                 10653
4804                                                 14040
4805                                                 13056
4806                                                 16262
4807                                                 18158
4808                                                 16901
4809                                                 20005
4810                                                 24533
4811                                                 20249
4812                                                 18509
4813                                                 22373
4814                                                 25619
4815                                                 18824
4816                                                 20550
4817                                                 27156
4818                                                 19762
4819                                                 16678
4820                                                 18902
4821                                                 21379
4822                                                 22373
4823                                                 21876
4824                                                 20119
4825                                                 19763
4826                                                 18205
4827                                                 19506
4828                                                 21516
4829                                                 17229
4830                                                 17758
4831                                                 34236
4832                                                 19002
4833                                                 18007
4834                                                 15556
4835                                                 15444
4836                                                 16054
4837                                                 14438
4838                                                 14145
4839                                                 14737
4840                                                 15081
4841                                                 12510
4842                                                 14499
4843                                                 18445
4844                                                 18570
4845                                                 14742
4846                                                 13216
4847                                                 14088
4848                                                 15433
4849                                                 17066
4850                                                 15809
4851                                                 12716
4852                                                 12611
4853                                                 12126
4854                                                 14633
4855                                                 13817
4856                                                 17325
4857                                                 17490
4858                                                 18152
4859                                                 22672
4860                                                 23096
4861                                                 20783
4862                                                 29141
4863                                                 28460
4864                                                 28934
4865                                                 26931
4866                                                 31852
4867                                                 32043
4868                                                 20406
4869                                                 19468
4870                                                 24706
4871                                                 23603
4872                                                 22783
4873                                                 22416
4874                                                 21394
4875                                                 25761
4876                                                 23077
4877                                                 21445
4878                                                 23806
4879                                                 22298
4880                                                 25138
4881                                                 19780
4882                                                 22030
4883                                                 23695
4884                                                 18037
4885                                                 21607
4886                                                 19124
4887                                                 21523
4888                                                 22617
4889                                                  2526
4890                                                  3063
4891                                                  2862
4892                                                  2250
4893                                                  2393
4894                                                  2239
4895                                                  3208
4896                                                  3840
4897                                                  3399
4898                                                  4817
4899                                                  7788
4900                                                  9772
4901                                                 10627
4902                                                  7879
4903                                                  9254
4904                                                 11293
4905                                                 10837
4906                                                 13522
4907                                                 24855
4908                                                 31009
4909                                                 28988
4910                                                 42846
4911                                                 56350
4912                                                 43043
4913                                                 43916
4914                                                 54358
4915                                                 55056
4916                                                 43427
4917                                                 48922
4918                                                 53447
4919                                                 52674
4920                                                 70754
4921                                                 61090
4922                                                 49425
4923                                                 39101
4924                                                 55668
4925                                                 76967
4926                                                 61242
4927                                                 54167
4928                                                 46243
4929                                                 46190
4930                                                 52459
4931                                                 62392
4932                                                 39538
4933                                                 41240
4934                                                 39859
4935                                                 72546
4936                                                 57835
4937                                                 41235
4938                                                 36600
4939                                                 41094
4940                                                 32340
4941                                                   205
4942                                                   254
4943                                                   401
4944                                                   197
4945                                                   389
4946                                                   271
4947                                                   318
4948                                                   529
4949                                                  1018
4950                                                   483
4951                                                   452
4952                                                  2177
4953                                                  3183
4954                                                  3243
4955                                                  2273
4956                                                  2713
4957                                                  2493
4958                                                  2494
4959                                                  2503
4960                                                  2368
4961                                                  2584
4962                                                  2599
4963                                                  1555
4964                                                  1624
4965                                                  6528
4966                                                 10771
4967                                                 12226
4968                                                 11488
4969                                                 12433
4970                                                 13269
4971                                                 10676
4972                                                 10454
4973                                                 12760
4974                                                 11094
4975                                                 11464
4976                                                 12051
4977                                                 10372
4978                                                  9318
4979                                                  9773
4980                                                 10624
4981                                                  9182
4982                                                 10518
4983                                                  8333
4984                                                  7587
4985                                                  8476
4986                                                  8216
4987                                                  6322
4988                                                  8910
4989                                                  7344
4990                                                  8795
4991                                                  7553
4992                                                 16135
4993                                                  2502
4994                                                  2551
4995                                                  2564
4996                                                  3039
4997                                                  2813
4998                                                  4950
4999                                                  8260
5000                                                  9364
5001                                                  9096
5002                                                  6749
5003                                                  6112
5004                                                  4236
5005                                                  7204
5006                                                  6100
5007                                                  5941
5008                                                  6695
5009                                                  8325
5010                                                  6800
5011                                                  8868
5012                                                 10231
5013                                                 12579
5014                                                 12941
5015                                                 15148
5016                                                 14173
5017                                                 21153
5018                                                 20518
5019                                                 18403
5020                                                 20140
5021                                                 19782
5022                                                 16910
5023                                                 15040
5024                                                  6910
5025                                                  6162
5026                                                  6507
5027                                                  6282
5028                                                  6258
5029                                                  5465
5030                                                  6057
5031                                                  6435
5032                                                  7331
5033                                                  8317
5034                                                  8979
5035                                                  8138
5036                                                  7039
5037                                                  7362
5038                                                  6594
5039                                                 13084
5040                                                  9167
5041                                                  9677
5042                                                  9610
5043                                                  9960
5044                                                 10726
5045                                                 20053
5046                                                 15772
5047                                                 18327
5048                                                 18795
5049                                                 14620
5050                                                 16553
5051                                                 22128
5052                                                 16495
5053                                                 19653
5054                                                 20588
5055                                                 18419
5056                                                 32867
5057                                                 17352
5058                                                 15831
5059                                                 16479
5060                                                 15093
5061                                                 18544
5062                                                 17936
5063                                                 25630
5064                                                 21617
5065                                                 24523
5066                                                 25255
5067                                                 29835
5068                                                 44559
5069                                                189692
5070                                                522837
5071                                                425640
5072                                                346244
5073                                                423779
5074                                                355042
5075                                                347794
5076                                                537748
5077                                                459078
5078                                                697833
5079                                                398632
5080                                                564146
5081                                                617896
5082                                                556972
5083                                                649669
5084                                                660825
5085                                                653142
5086                                                698857
5087                                                390175
5088                                                337160
5089                                                423920
5090                                                718464
5091                                                804558
5092                                                521213
5093                                                245809
5094                                                373210
5095                                                263562
5096                                                361424
5097                                                  5643
5098                                                  8173
5099                                                  4656
5100                                                  5134
5101                                                  4791
5102                                                  8082
5103                                                 13358
5104                                                 14548
5105                                                 14441
5106                                                 11469
5107                                                 10218
5108                                                  7240
5109                                                 10940
5110                                                  9606
5111                                                  9444
5112                                                 10178
5113                                                 12529
5114                                                 10303
5115                                                 13450
5116                                                 15287
5117                                                 18598
5118                                                 18938
5119                                                 21370
5120                                                 20302
5121                                                 29960
5122                                                 30343
5123                                                 26639
5124                                                 30691
5125                                                 30505
5126                                                 26309
5127                                                 23770
5128                                                 11953
5129                                                 10066
5130                                                 10776
5131                                                 10665
5132                                                 10942
5133                                                  8861
5134                                                 10187
5135                                                 12154
5136                                                 13926
5137                                                 15753
5138                                                 17715
5139                                                 14795
5140                                                 13243
5141                                                 13665
5142                                                 12099
5143                                                 22097
5144                                                 15261
5145                                                 16838
5146                                                 16862
5147                                                 17018
5148                                                 17651
5149                                                    43
5150                                                    27
5151                                                    34
5152                                                   313
5153                                                    33
5154                                                    24
5155                                                    35
5156                                                    20
5157                                                   118
5158                                                    19
5159                                                    47
5160                                                    71
5161                                                   152
5162                                                   125
5163                                                   379
5164                                                  1572
5165                                                  1519
5166                                                  1858
5167                                                  2001
5168                                                  2321
5169                                                  1816
5170                                                  1168
5171                                                   211
5172                                                   159
5173                                                  1199
5174                                                  3407
5175                                                  3974
5176                                                  2998
5177                                                  3152
5178                                                  5361
5179                                                  3013
5180                                                  3207
5181                                                  3401
5182                                                  3174
5183                                                  3451
5184                                                  2948
5185                                                  3467
5186                                                  3378
5187                                                  3270
5188                                                  3116
5189                                                  3092
5190                                                  3141
5191                                                  3132
5192                                                  2886
5193                                                  2941
5194                                                  2422
5195                                                  1284
5196                                                  3498
5197                                                  2793
5198                                                  3527
5199                                                  3215
5200                                                  4624
5201                                                    60
5202                                                    50
5203                                                   146
5204                                                    37
5205                                                    16
5206                                                    86
5207                                                    98
5208                                                    98
5209                                                    59
5210                                                    49
5211                                                    47
5212                                                   125
5213                                                    36
5214                                                    25
5215                                                    59
5216                                                    32
5217                                                   132
5218                                                    99
5219                                                   167
5220                                                   255
5221                                                   213
5222                                                   230
5223                                                   440
5224                                                   304
5225                                                   663
5226                                                   467
5227                                                   750
5228                                                    81
5229                                                    89
5230                                                    91
5231                                                   211
5232                                                    16
5233                                                    46
5234                                                    74
5235                                                    43
5236                                                    11
5237                                                    48
5238                                                    82
5239                                                    15
5240                                                    21
5241                                                    27
5242                                                    69
5243                                                    23
5244                                                    64
5245                                                    55
5246                                                    16
5247                                                    33
5248                                                    14
5249                                                     5
5250                                                    25
5251                                                    34
5252                                                    35
5253                                                     2
5254                                                     5
5255                                                    15
5256                                                     4
5257                                                     7
5258                                                     1
5259                                                    34
5260                                                    31
5261                                                    12
5262                                                    41
5263                                                    22
5264                                                    56
5265                                                    37
5266                                                    24
5267                                                    16
5268                                                    10
5269                                                    23
5270                                                    16
5271                                                    19
5272                                                    29
5273                                                     2
5274                                                    10
5275                                                    20
5276                                                     1
5277                                                    14
5278                                                     1
5279                                                    13
5280                                                    16
5281                                                    91
5282                                                   179
5283                                                   436
5284                                                   600
5285                                                   695
5286                                                   411
5287                                                   769
5288                                                   586
5289                                                     3
5290                                                     2
5291                                                     4
5292                                                    15
5293                                                    11
5294                                                    21
5295                                                    38
5296                                                     8
5297                                                    21
5298                                                    41
5299                                                    23
5300                                                    33
5301                                                    32
5302                                                    10
5303                                                     2
5304                                                    25
5305                                                    64
5306                                                    49
5307                                                    28
5308                                                    39
5309                                                    42
5310                                                    88
5311                                                   148
5312                                                   146
5313                                                   150
5314                                                   130
5315                                                   215
5316                                                   120
5317                                                   250
5318                                                   110
5319                                                   103
5320                                                    61
5321                                                    80
5322                                                    63
5323                                                    49
5324                                                    63
5325                                                   107
5326                                                    23
5327                                                    25
5328                                                    46
5329                                                    94
5330                                                    72
5331                                                    37
5332                                                   112
5333                                                    50
5334                                                   106
5335                                                   172
5336                                                   188
5337                                                   113
5338                                                   163
5339                                                    50
5340                                                   155
5341                                                    98
5342                                                    28
5343                                                    29
5344                                                    68
5345                                                    57
5346                                                   264
5347                                                    21
5348                                                    47
5349                                                    76
5350                                                    79
5351                                                   105
5352                                                    92
5353                                                   214
5354                                                   102
5355                                                   132
5356                                                   134
5357                                                541972
5358                                                427872
5359                                                403048
5360                                                428010
5361                                                344476
5362                                                407568
5363                                                477521
5364                                                505349
5365                                                453145
5366                                                452384
5367                                                447291
5368                                                490957
5369                                                490123
5370                                                492604
5371                                                486187
5372                                                512160
5373                                                540681
5374                                                563739
5375                                                609721
5376                                                749247
5377                                                754549
5378                                                783937
5379                                                947964
5380                                                953631
5381                                               1266434
5382                                               1761343
5383                                               1624942
5384                                               1642736
5385                                               1607344
5386                                               1770948
5387                                               1583496
5388                                               1640829
5389                                               1753853
5390                                               1993645
5391                                               1414364
5392                                               1599864
5393                                               1896150
5394                                               1666275
5395                                               1731910
5396                                               1880231
5397                                               1773089
5398                                               1800066
5399                                               1686475
5400                                               1560168
5401                                               1375260
5402                                               1811091
5403                                               2546439
5404                                               1643703
5405                                               1440380
5406                                               1419406
5407                                               1282613
5408                                               1560069
5409                                                114035
5410                                                 89997
5411                                                 86234
5412                                                 81115
5413                                                 86790
5414                                                105452
5415                                                107497
5416                                                119470
5417                                                113343
5418                                                116103
5419                                                102563
5420                                                 98555
5421                                                110878
5422                                                107713
5423                                                103658
5424                                                102420
5425                                                111325
5426                                                 93943
5427                                                 91409
5428                                                122057
5429                                                 94461
5430                                                 95281
5431                                                 96068
5432                                                 95086
5433                                                111309
5434                                                137805
5435                                                135484
5436                                                140268
5437                                                162975
5438                                                147906
5439                                                164102
5440                                                150383
5441                                                155510
5442                                                152314
5443                                                131269
5444                                                130994
5445                                                168335
5446                                                177613
5447                                                159785
5448                                                190076
5449                                                167407
5450                                                179006
5451                                                171164
5452                                                251938
5453                                                123948
5454                                                155261
5455                                                281618
5456                                                186797
5457                                                121729
5458                                                181520
5459                                                175472
5460                                                156195
5461                                                 15999
5462                                                 12379
5463                                                 12633
5464                                                 10869
5465                                                  9805
5466                                                 11623
5467                                                 14196
5468                                                 17719
5469                                                 17670
5470                                                 17488
5471                                                 13560
5472                                                 11748
5473                                                 15372
5474                                                 14664
5475                                                 12900
5476                                                 12244
5477                                                 13319
5478                                                 12234
5479                                                 12142
5480                                                 15309
5481                                                 15436
5482                                                 15443
5483                                                 17101
5484                                                 16431
5485                                                 16968
5486                                                 20212
5487                                                 23127
5488                                                 25373
5489                                                 56434
5490                                                 41083
5491                                                 37522
5492                                                 50440
5493                                                 20625
5494                                                 33224
5495                                                 32608
5496                                                 32786
5497                                                 51745
5498                                                 32941
5499                                                 29033
5500                                                 30073
5501                                                 71017
5502                                                 36476
5503                                                 38919
5504                                                 53843
5505                                                 27800
5506                                                 30289
5507                                                 74916
5508                                                 38529
5509                                                 16034
5510                                                 26636
5511                                                 16274
5512                                                 35241
5513                                                   961
5514                                                  1113
5515                                                   916
5516                                                  1302
5517                                                  1390
5518                                                   903
5519                                                  1109
5520                                                  1398
5521                                                  1125
5522                                                  1084
5523                                                   894
5524                                                   149
5525                                                    51
5526                                                   367
5527                                                    34
5528                                                    93
5529                                                   111
5530                                                   122
5531                                                   100
5532                                                    28
5533                                                    65
5534                                                    70
5535                                                    87
5536                                                   151
5537                                                   101
5538                                                   442
5539                                                   110
5540                                                   150
5541                                                   145
5542                                                   101
5543                                                   131
5544                                                   354
5545                                                  1651
5546                                                  3491
5547                                                   249
5548                                                   241
5549                                                    96
5550                                                   144
5551                                                   124
5552                                                   140
5553                                                   133
5554                                                   148
5555                                                    98
5556                                                    63
5557                                                    97
5558                                                   133
5559                                                   326
5560                                                   413
5561                                                   220
5562                                                   179
5563                                                   170
5564                                                   319
5565                                                   337
5566                                                  4920
5567                                                  2680
5568                                                  2934
5569                                                  3980
5570                                                  3789
5571                                                  3440
5572                                                  3724
5573                                                  3925
5574                                                  4062
5575                                                  4193
5576                                                  4523
5577                                                  4902
5578                                                  4555
5579                                                  4777
5580                                                  4488
5581                                                  4746
5582                                                  5142
5583                                                  5348
5584                                                  5172
5585                                                  5205
5586                                                  5629
5587                                                  5325
5588                                                  5352
5589                                                  5664
5590                                                  5641
5591                                                  6202
5592                                                  6603
5593                                                  6496
5594                                                  6444
5595                                                  7177
5596                                                  7376
5597                                                  7003
5598                                                  7223
5599                                                  6178
5600                                                 10049
5601                                                  7668
5602                                                  7323
5603                                                  6835
5604                                                  6568
5605                                                  7302
5606                                                  7285
5607                                                  6762
5608                                                  9390
5609                                                 12153
5610                                                  9921
5611                                                  9539
5612                                                  8823
5613                                                 29353
5614                                                 10828
5615                                                 22837
5616                                                 10120
5617                                                  9794
5618                                                 14387
5619                                                  6263
5620                                                  4751
5621                                                  6656
5622                                                  4746
5623                                                  7094
5624                                                  5116
5625                                                  5660
5626                                                  4630
5627                                                  4629
5628                                                  4757
5629                                                  4056
5630                                                  5020
5631                                                  6108
5632                                                  5128
5633                                                  5659
5634                                                  5499
5635                                                  6160
5636                                                  6523
5637                                                  6034
5638                                                  7323
5639                                                  5544
5640                                                  7645
5641                                                  7264
5642                                                  7062
5643                                                  8951
5644                                                  7817
5645                                                  8607
5646                                                  7668
5647                                                  8415
5648                                                  8103
5649                                                  7950
5650                                                 10210
5651                                                 10331
5652                                                  9358
5653                                                  9702
5654                                                  9317
5655                                                  9754
5656                                                  9549
5657                                                 10281
5658                                                  9920
5659                                                  8899
5660                                                  9034
5661                                                  9975
5662                                                 12115
5663                                                 11563
5664                                                  9936
5665                                                  9261
5666                                                 23346
5667                                                  9559
5668                                                  8314
5669                                                 10057
5670                                                 12144
5671                                                 11342
5672                                                  2062
5673                                                  1639
5674                                                  3836
5675                                                  2169
5676                                                  1901
5677                                                  2073
5678                                                  2365
5679                                                  5720
5680                                                  2014
5681                                                  2145
5682                                                  2433
5683                                                  2218
5684                                                  1266
5685                                                  1798
5686                                                  1719
5687                                                  1322
5688                                                  1484
5689                                                  1479
5690                                                  1535
5691                                                  1675
5692                                                  2985
5693                                                  3212
5694                                                  3326
5695                                                  6107
5696                                                  3826
5697                                                  3963
5698                                                  4890
5699                                                  3399
5700                                                  3287
5701                                                  3039
5702                                                  3076
5703                                                  2756
5704                                                  3223
5705                                                  3462
5706                                                  6089
5707                                                  3506
5708                                                  3294
5709                                                  3589
5710                                                  3497
5711                                                  3484
5712                                                  3404
5713                                                  3736
5714                                                  3675
5715                                                  5832
5716                                                  5887
5717                                                  5419
5718                                                 11051
5719                                                  7081
5720                                                  6111
5721                                                 11139
5722                                                  8522
5723                                                  9301
5724                                                  3934
5725                                                    25
5726                                                    27
5727                                                    40
5728                                                    62
5729                                                    42
5730                                                    26
5731                                                    75
5732                                                    48
5733                                                    58
5734                                                    38
5735                                                    61
5736                                                    33
5737                                                    39
5738                                                    37
5739                                                    31
5740                                                    48
5741                                                    31
5742                                                    40
5743                                                    20
5744                                                    11
5745                                                    19
5746                                                    43
5747                                                    40
5748                                                    37
5749                                                    36
5750                                                    56
5751                                                   106
5752                                                    60
5753                                                   101
5754                                                    79
5755                                                    58
5756                                                   109
5757                                                    56
5758                                                   134
5759                                                   210
5760                                                    46
5761                                                    40
5762                                                    36
5763                                                    49
5764                                                    42
5765                                                    53
5766                                                    74
5767                                                    28
5768                                                    46
5769                                                    45
5770                                                    33
5771                                                   111
5772                                                   116
5773                                                   111
5774                                                    56
5775                                                    54
5776                                                    66
5777                                                   103
5778                                                111845
5779                                                116855
5780                                                115250
5781                                                 90168
5782                                                100234
5783                                                121946
5784                                                107055
5785                                                108415
5786                                                108334
5787                                                125817
5788                                                123891
5789                                                137027
5790                                                138380
5791                                                120405
5792                                                119703
5793                                                128019
5794                                                141899
5795                                                168178
5796                                                157338
5797                                                165218
5798                                                190313
5799                                                159763
5800                                                152942
5801                                                151425
5802                                                178446
5803                                                207945
5804                                                224121
5805                                                191069
5806                                                191313
5807                                                188258
5808                                                141320
5809                                                153502
5810                                                137755
5811                                                134826
5812                                                150595
5813                                                157509
5814                                                162007
5815                                                163002
5816                                                161909
5817                                                150682
5818                                                138133
5819                                                143587
5820                                                156630
5821                                                161252
5822                                                155642
5823                                                177817
5824                                                158535
5825                                                214138
5826                                                148336
5827                                                106559
5828                                                 95138
5829                                                109029
5830                                                 90900
5831                                                  6349
5832                                                  3840
5833                                                  3658
5834                                                  4428
5835                                                  4556
5836                                                  3742
5837                                                  3820
5838                                                  4551
5839                                                  4856
5840                                                  4717
5841                                                  4653
5842                                                  5567
5843                                                  4782
5844                                                  4798
5845                                                  5336
5846                                                  5177
5847                                                  5424
5848                                                  6029
5849                                                  5773
5850                                                  5603
5851                                                  6255
5852                                                  6520
5853                                                  6238
5854                                                  5994
5855                                                  6036
5856                                                  6491
5857                                                  6627
5858                                                  5878
5859                                                  6332
5860                                                  6817
5861                                                  7006
5862                                                  8530
5863                                                  7712
5864                                                  6722
5865                                                 11654
5866                                                  7990
5867                                                  7619
5868                                                  7460
5869                                                  6657
5870                                                  7802
5871                                                  7656
5872                                                  7312
5873                                                  8252
5874                                                 11157
5875                                                 13182
5876                                                  9651
5877                                                  8887
5878                                                 21722
5879                                                  9147
5880                                                 20382
5881                                                  9919
5882                                                 10232
5883                                                 15036
5884                                                120869
5885                                                116406
5886                                                 99249
5887                                                 90891
5888                                                 92092
5889                                                 82294
5890                                                 98666
5891                                                 91330
5892                                                 81794
5893                                                 88633
5894                                                 95627
5895                                                 93957
5896                                                 87407
5897                                                 85663
5898                                                 61656
5899                                                100808
5900                                                114859
5901                                                114880
5902                                                115571
5903                                                140354
5904                                                135485
5905                                                136885
5906                                                134637
5907                                                127441
5908                                                129762
5909                                                168507
5910                                                149582
5911                                                139914
5912                                                138494
5913                                                122729
5914                                                132271
5915                                                103859
5916                                                123099
5917                                                147524
5918                                                162708
5919                                                125905
5920                                                 94820
5921                                                104458
5922                                                102228
5923                                                 97671
5924                                                101929
5925                                                103001
5926                                                105821
5927                                                 98165
5928                                                110939
5929                                                133540
5930                                                187794
5931                                                224555
5932                                                135946
5933                                                136329
5934                                                142550
5935                                                151447
5936                                                114647
5937                                                 18071
5938                                                 20560
5939                                                  9956
5940                                                   505
5941                                                  1399
5942                                                   475
5943                                                   793
5944                                                   868
5945                                                   862
5946                                                   505
5947                                                   378
5948                                                   574
5949                                                   588
5950                                                   626
5951                                                   614
5952                                                   711
5953                                                   669
5954                                                   817
5955                                                   646
5956                                                   884
5957                                                  1103
5958                                                  1301
5959                                                   856
5960                                                  1096
5961                                                  1529
5962                                                  1259
5963                                                  1278
5964                                                  1021
5965                                                  2144
5966                                                  1349
5967                                                  1326
5968                                                  1280
5969                                                  1027
5970                                                   932
5971                                                  1302
5972                                                  1158
5973                                                  1022
5974                                                  1301
5975                                                  1214
5976                                                  1092
5977                                                  1186
5978                                                  1251
5979                                                  1153
5980                                                  1108
5981                                                  2024
5982                                                  1011
5983                                                  1680
5984                                                  3017
5985                                                   981
5986                                                  2545
5987                                                   994
5988                                                   991
5989                                                  2531
5990                                                  5225
5991                                                  5024
5992                                                  5345
5993                                                  1248
5994                                                  2801
5995                                                   984
5996                                                   856
5997                                                   866
5998                                                   912
5999                                                   809
6000                                                   751
6001                                                   664
6002                                                   766
6003                                                  1131
6004                                                   905
6005                                                   936
6006                                                   990
6007                                                  1053
6008                                                  1022
6009                                                   989
6010                                                  1136
6011                                                  1149
6012                                                  1145
6013                                                  1070
6014                                                  2046
6015                                                  1949
6016                                                  1475
6017                                                  1160
6018                                                  2236
6019                                                  1338
6020                                                  1781
6021                                                  1809
6022                                                  1876
6023                                                  1392
6024                                                  2806
6025                                                  1850
6026                                                  1525
6027                                                  1563
6028                                                  1697
6029                                                  1683
6030                                                  1511
6031                                                  1373
6032                                                  1275
6033                                                  1538
6034                                                  3874
6035                                                  2015
6036                                                  1989
6037                                                  4270
6038                                                  1335
6039                                                  3812
6040                                                  1594
6041                                                  1761
6042                                                  4324
6043                                                  4818
6044                                                  4651
6045                                                  3861
6046                                                  4750
6047                                                  5217
6048                                                  2920
6049                                                  3568
6050                                                  4615
6051                                                  3677
6052                                                  2640
6053                                                  2275
6054                                                  1813
6055                                                  1218
6056                                                   876
6057                                                   891
6058                                                  1214
6059                                                  1361
6060                                                  1205
6061                                                  1464
6062                                                   819
6063                                                  2582
6064                                                  2723
6065                                                  1708
6066                                                  2163
6067                                                  2758
6068                                                  3155
6069                                                  4001
6070                                                  2114
6071                                                  4291
6072                                                  2333
6073                                                  2256
6074                                                  3946
6075                                                  2962
6076                                                  3364
6077                                                  2529
6078                                                  7033
6079                                                  5109
6080                                                  4244
6081                                                  8443
6082                                                  4976
6083                                                  4320
6084                                                 10580
6085                                                 40165
6086                                                 39375
6087                                                 32790
6088                                                 48081
6089                                                 46941
6090                                                 97316
6091                                                 36048
6092                                                  4457
6093                                                  2776
6094                                                  2551
6095                                                  4255
6096                                                  8951
6097                                                 11714
6098                                                 12155
6099                                                  7680
6100                                                  9270
6101                                                 12038
6102                                                 15425
6103                                                  8942
6104                                                  8618
6105                                                 10872
6106                                                  6360
6107                                                   711
6108                                                   178
6109                                                   198
6110                                                   192
6111                                                  2422
6112                                                 12806
6113                                                 13836
6114                                                 10440
6115                                                 13425
6116                                                 11830
6117                                                 13542
6118                                                 12961
6119                                                 13389
6120                                                 14611
6121                                                 16221
6122                                                 25203
6123                                                 20678
6124                                                 19386
6125                                                 21885
6126                                                 30183
6127                                                 24390
6128                                                 16549
6129                                                 18081
6130                                                 17251
6131                                                 23984
6132                                                 22772
6133                                                 23776
6134                                                 23358
6135                                                 22582
6136                                                 20053
6137                                                 19725
6138                                                 18700
6139                                                 18348
6140                                                 15022
6141                                                 17089
6142                                                 14707
6143                                                 14681
6144                                                 14726
6145                                                 13355
6146                                                 18135
6147                                                 16471
6148                                                 12664
6149                                                 25277
6150                                                 15610
6151                                                 32610
6152                                                 10002
6153                                                 36621
6154                                                  7259
6155                                                  7326
6156                                                  8156
6157                                                  7701
6158                                                  8829
6159                                                 10512
6160                                                 10114
6161                                                 18345
6162                                                 19204
6163                                                 24623
6164                                                 23011
6165                                                 23392
6166                                                 25800
6167                                                 23558
6168                                                 26556
6169                                                 27840
6170                                                 41542
6171                                                 27664
6172                                                 30384
6173                                                 46610
6174                                                 43720
6175                                                 42738
6176                                                 14203
6177                                                 35983
6178                                                 17894
6179                                                 35157
6180                                                 42532
6181                                                 36112
6182                                                 40590
6183                                                 84741
6184                                                 37837
6185                                                 33428
6186                                                 38762
6187                                                 33630
6188                                                 33829
6189                                                 30845
6190                                                 26988
6191                                                 26074
6192                                                 24897
6193                                                 79599
6194                                                 20144
6195                                                  9992
6196                                                 25712
6197                                                  6902
6198                                                 25798
6199                                                  7243
6200                                                  7819
6201                                                 18804
6202                                                 58453
6203                                                 28289
6204                                                 48181
6205                                                 17502
6206                                                 65476
6207                                                 11404
6208                                                 15683
6209                                                 17062
6210                                                 18584
6211                                                 21511
6212                                                 21938
6213                                                 18551
6214                                                 19625
6215                                                 19397
6216                                                 24967
6217                                                 23054
6218                                                 23128
6219                                                 28692
6220                                                 25971
6221                                                 29038
6222                                                 30209
6223                                                 45132
6224                                                 30794
6225                                                 33295
6226                                                 52301
6227                                                 47481
6228                                                 51887
6229                                                 29867
6230                                                 81813
6231                                                 34922
6232                                                 35468
6233                                                 36365
6234                                                 30992
6235                                                 33883
6236                                                 68210
6237                                                 33055
6238                                                 28860
6239                                                 34538
6240                                                 29243
6241                                                 25528
6242                                                 25543
6243                                                 23437
6244                                                 21287
6245                                                 17801
6246                                                 48370
6247                                                 17743
6248                                                  8309
6249                                                  8303
6250                                                  5482
6251                                                 12963
6252                                                  2864
6253                                                  3083
6254                                                  7583
6255                                                364049
6256                                                274898
6257                                                314592
6258                                                158479
6259                                                317891
6260                                                128863
6261                                                155562
6262                                                151409
6263                                                144063
6264                                                159959
6265                                                170360
6266                                                160273
6267                                                166808
6268                                                169347
6269                                                165463
6270                                                199189
6271                                                215802
6272                                                235105
6273                                                225401
6274                                                263856
6275                                                264838
6276                                                327392
6277                                                265495
6278                                                267512
6279                                                342668
6280                                                373472
6281                                                356792
6282                                                253075
6283                                                403401
6284                                                248948
6285                                                287896
6286                                                269625
6287                                                268428
6288                                                302083
6289                                                469333
6290                                                277356
6291                                                224336
6292                                                255440
6293                                                235146
6294                                                224247
6295                                                223459
6296                                                212871
6297                                                211090
6298                                                195550
6299                                                368973
6300                                                224791
6301                                                249249
6302                                                322305
6303                                                181119
6304                                                234650
6305                                                182714
6306                                                195160
6307                                                189357
6308                                                    57
6309                                                    82
6310                                                    72
6311                                                    85
6312                                                    91
6313                                                    97
6314                                                   125
6315                                                    74
6316                                                    76
6317                                                    37
6318                                                    29
6319                                                    74
6320                                                   139
6321                                                   193
6322                                                    71
6323                                                    55
6324                                                    62
6325                                                    50
6326                                                    30
6327                                                    63
6328                                                    58
6329                                                    58
6330                                                    56
6331                                                   100
6332                                                   132
6333                                                   177
6334                                                   155
6335                                                    93
6336                                                    86
6337                                                    94
6338                                                   139
6339                                                   170
6340                                                   179
6341                                                   152
6342                                                   208
6343                                                   124
6344                                                    53
6345                                                    83
6346                                                   125
6347                                                    74
6348                                                   340
6349                                                   245
6350                                                   108
6351                                                   746
6352                                                   101
6353                                                   184
6354                                                   368
6355                                                  4525
6356                                                  1856
6357                                                  3689
6358                                                   792
6359                                                    99
6360                                                   421
6361                                                   179
6362                                                   198
6363                                                   112
6364                                                   162
6365                                                   171
6366                                                    88
6367                                                   131
6368                                                   206
6369                                                   106
6370                                                   174
6371                                                   152
6372                                                    73
6373                                                   174
6374                                                    77
6375                                                    82
6376                                                    73
6377                                                   130
6378                                                    79
6379                                                    67
6380                                                    79
6381                                                   165
6382                                                   223
6383                                                   131
6384                                                    63
6385                                                   130
6386                                                   142
6387                                                   549
6388                                                   135
6389                                                   125
6390                                                   135
6391                                                   149
6392                                                   211
6393                                                   169
6394                                                   269
6395                                                   311
6396                                                   228
6397                                                   203
6398                                                   128
6399                                                   162
6400                                                   345
6401                                                  1525
6402                                                   692
6403                                                   163
6404                                                   265
6405                                                   351
6406                                                   598
6407                                                  2290
6408                                                 23028
6409                                                  3935
6410                                                 13326
6411                                                  7893
6412                                                   306
6413                                                  2696
6414                                                  4194
6415                                                  3021
6416                                                  2606
6417                                                  6828
6418                                                  7694
6419                                                  2692
6420                                                  2776
6421                                                  6534
6422                                                  4359
6423                                                  2106
6424                                                  1835
6425                                                  1866
6426                                                  1449
6427                                                  2170
6428                                                  1812
6429                                                  2265
6430                                                  2452
6431                                                  1861
6432                                                  1868
6433                                                  1576
6434                                                  6723
6435                                                  3739
6436                                                  2676
6437                                                  3007
6438                                                  4546
6439                                                  3020
6440                                                  4721
6441                                                  2929
6442                                                  7010
6443                                                  5452
6444                                                  4926
6445                                                  5550
6446                                                  3706
6447                                                  3249
6448                                                  3365
6449                                                 10441
6450                                                  5646
6451                                                  3383
6452                                                  7691
6453                                                  3907
6454                                                  5897
6455                                                 21365
6456                                                 29782
6457                                                 40612
6458                                                 42394
6459                                                 63758
6460                                                 71472
6461                                                140963
6462                                                 58981
6463                                                  4720
6464                                                  2712
6465                                                  2691
6466                                                  6314
6467                                                 13768
6468                                                 12104
6469                                                  9260
6470                                                  1754
6471                                                  2338
6472                                                   608
6473                                                   613
6474                                                  1037
6475                                                   753
6476                                                   871
6477                                                   603
6478                                                   631
6479                                                   608
6480                                                   972
6481                                                   867
6482                                                   800
6483                                                   787
6484                                                   879
6485                                                  1093
6486                                                  1163
6487                                                   801
6488                                                  1302
6489                                                   807
6490                                                   844
6491                                                  1368
6492                                                  1835
6493                                                  1678
6494                                                  1002
6495                                                  1944
6496                                                  1097
6497                                                  1766
6498                                                  1541
6499                                                  1203
6500                                                  1423
6501                                                  2348
6502                                                  1565
6503                                                  1241
6504                                                  1773
6505                                                  1134
6506                                                  1452
6507                                                  1326
6508                                                  1516
6509                                                  1540
6510                                                  1756
6511                                                  1924
6512                                                  1363
6513                                                  2797
6514                                                  5353
6515                                                  2759
6516                                                  3909
6517                                                  2034
6518                                                  3127
6519                                                  5029
6520                                                   277
6521                                                   314
6522                                                   288
6523                                                   258
6524                                                   273
6525                                                   195
6526                                                   306
6527                                                   237
6528                                                   235
6529                                                   264
6530                                                   261
6531                                                   137
6532                                                    77
6533                                                    50
6534                                                    65
6535                                                    25
6536                                                    28
6537                                                    99
6538                                                    54
6539                                                    12
6540                                                    68
6541                                                    43
6542                                                    74
6543                                                    56
6544                                                   103
6545                                                    46
6546                                                   122
6547                                                    75
6548                                                    90
6549                                                   121
6550                                                    85
6551                                                   115
6552                                                   100
6553                                                   100
6554                                                   224
6555                                                   121
6556                                                    78
6557                                                    71
6558                                                   143
6559                                                   172
6560                                                   125
6561                                                   167
6562                                                    86
6563                                                    83
6564                                                    67
6565                                                    90
6566                                                   348
6567                                                   358
6568                                                   237
6569                                                   377
6570                                                   188
6571                                                   149
6572                                                   303
6573                                                  6018
6574                                                  6233
6575                                                  3955
6576                                                  4760
6577                                                  4488
6578                                                  4316
6579                                                  5388
6580                                                  5043
6581                                                  5037
6582                                                  3515
6583                                                   682
6584                                                    61
6585                                                    76
6586                                                    63
6587                                                    66
6588                                                   109
6589                                                  5997
6590                                                  6209
6591                                                  6548
6592                                                  7342
6593                                                  6825
6594                                                  7126
6595                                                  7351
6596                                                  6656
6597                                                  6343
6598                                                  7592
6599                                                  8472
6600                                                  6653
6601                                                  6723
6602                                                  6563
6603                                                  8227
6604                                                 10115
6605                                                  8123
6606                                                  7460
6607                                                  7877
6608                                                  6704
6609                                                  9127
6610                                                  9912
6611                                                  8785
6612                                                 11318
6613                                                  9405
6614                                                  9357
6615                                                  8807
6616                                                  8077
6617                                                  7365
6618                                                  6859
6619                                                  8137
6620                                                  8149
6621                                                  7716
6622                                                  6955
6623                                                  7692
6624                                                  7984
6625                                                  7737
6626                                                 75510
6627                                                 78272
6628                                                 76600
6629                                                 62001
6630                                                 68958
6631                                                 82683
6632                                                 73389
6633                                                 72562
6634                                                 69039
6635                                                 81785
6636                                                 84635
6637                                                 94135
6638                                                 91288
6639                                                 78098
6640                                                 79407
6641                                                 84556
6642                                                 94971
6643                                                112401
6644                                                105558
6645                                                 99791
6646                                                120592
6647                                                109001
6648                                                100596
6649                                                 99404
6650                                                105463
6651                                                 87693
6652                                                104452
6653                                                 90801
6654                                                 93205
6655                                                 96489
6656                                                 89031
6657                                                102414
6658                                                 91671
6659                                                 88216
6660                                                 97894
6661                                                105296
6662                                                108744
6663                                                109371
6664                                                106826
6665                                                 95594
6666                                                 83245
6667                                                 89297
6668                                                 94533
6669                                                 83307
6670                                                 70873
6671                                                 68554
6672                                                 61332
6673                                                 89679
6674                                                 67608
6675                                                 61799
6676                                                 61162
6677                                                 72814
6678                                                 56809
6679                                                   271
6680                                                   217
6681                                                   327
6682                                                   148
6683                                                   530
6684                                                   107
6685                                                    79
6686                                                    86
6687                                                   120
6688                                                    56
6689                                                    33
6690                                                    68
6691                                                    71
6692                                                    73
6693                                                    83
6694                                                    80
6695                                                    91
6696                                                   133
6697                                                   104
6698                                                   149
6699                                                   121
6700                                                   218
6701                                                   134
6702                                                   134
6703                                                   211
6704                                                   210
6705                                                   340
6706                                                   204
6707                                                   542
6708                                                   159
6709                                                   306
6710                                                   306
6711                                                   225
6712                                                   248
6713                                                   427
6714                                                   204
6715                                                   237
6716                                                   214
6717                                                   209
6718                                                   225
6719                                                   164
6720                                                   213
6721                                                   160
6722                                                   184
6723                                                   578
6724                                                   159
6725                                                   357
6726                                                  1047
6727                                                   218
6728                                                   714
6729                                                   281
6730                                                   398
6731                                                   644
6732                                                  3057
6733                                                  4988
6734                                                  5750
6735                                                  6989
6736                                                  9947
6737                                                  1052
6738                                                  2026
6739                                                  1669
6740                                                   393
6741                                                   224
6742                                                   184
6743                                                    32
6744                                                   105
6745                                                   187
6746                                                   238
6747                                                    50
6748                                                   155
6749                                                   285
6750                                                   290
6751                                                   185
6752                                                   208
6753                                                   324
6754                                                   359
6755                                                   421
6756                                                   302
6757                                                   240
6758                                                   418
6759                                                   128
6760                                                   105
6761                                                   341
6762                                                   239
6763                                                    66
6764                                                   127
6765                                                    93
6766                                                   689
6767                                                   121
6768                                                   143
6769                                                   127
6770                                                   242
6771                                                   286
6772                                                   371
6773                                                   351
6774                                                   281
6775                                                   229
6776                                                    97
6777                                                   254
6778                                                   399
6779                                                   630
6780                                                   520
6781                                                   378
6782                                                   545
6783                                                   293
6784                                                   540
6785                                                 29458
6786                                                 19764
6787                                                 16967
6788                                                 17891
6789                                                 18490
6790                                                 15350
6791                                                 16827
6792                                                 18762
6793                                                 20210
6794                                                 19077
6795                                                 20115
6796                                                 21955
6797                                                 19640
6798                                                 20148
6799                                                 19549
6800                                                 20473
6801                                                 21742
6802                                                 24649
6803                                                 23089
6804                                                 23580
6805                                                 25765
6806                                                 26753
6807                                                 26106
6808                                                 26154
6809                                                 26713
6810                                                 27337
6811                                                 30427
6812                                                 27318
6813                                                 28997
6814                                                 31605
6815                                                 31609
6816                                                 35153
6817                                                 32391
6818                                                 30171
6819                                                 47937
6820                                                 32880
6821                                                 31535
6822                                                 31587
6823                                                 29642
6824                                                 32124
6825                                                 33096
6826                                                 30754
6827                                                 38103
6828                                                 51391
6829                                                 52648
6830                                                 41352
6831                                                 38397
6832                                                108936
6833                                                 43528
6834                                                 94412
6835                                                 43787
6836                                                 45093
6837                                                 64703
6838                                                   178
6839                                                   201
6840                                                   224
6841                                                   200
6842                                                   175
6843                                                   183
6844                                                   262
6845                                                   281
6846                                                   355
6847                                                   185
6848                                                   252
6849                                                   126
6850                                                   106
6851                                                    90
6852                                                    82
6853                                                    70
6854                                                    94
6855                                                    76
6856                                                   106
6857                                                    53
6858                                                    91
6859                                                    49
6860                                                    52
6861                                                   180
6862                                                   207
6863                                                   110
6864                                                    90
6865                                                    60
6866                                                   143
6867                                                   142
6868                                                   120
6869                                                   149
6870                                                    37
6871                                                   100
6872                                                   190
6873                                                    78
6874                                                    75
6875                                                   136
6876                                                   119
6877                                                    87
6878                                                    93
6879                                                   100
6880                                                    71
6881                                                   186
6882                                                    71
6883                                                   123
6884                                                   246
6885                                                   150
6886                                                   123
6887                                                    81
6888                                                   121
6889                                                   183
6890                                                    71
6891                                                  1337
6892                                                  1613
6893                                                  1505
6894                                                  1803
6895                                                  2002
6896                                                  1145
6897                                                  1729
6898                                                  2188
6899                                                  1893
6900                                                  1787
6901                                                  1576
6902                                                   173
6903                                                    31
6904                                                     9
6905                                                    19
6906                                                   108
6907                                                   164
6908                                                   291
6909                                                   189
6910                                                    78
6911                                                    83
6912                                                    44
6913                                                    41
6914                                                    78
6915                                                    39
6916                                                    29
6917                                                    64
6918                                                   105
6919                                                   157
6920                                                   188
6921                                                   298
6922                                                   267
6923                                                   346
6924                                                   348
6925                                                   221
6926                                                   251
6927                                                   301
6928                                                   241
6929                                                   249
6930                                                   192
6931                                                   356
6932                                                   284
6933                                                   271
6934                                                   184
6935                                                   140
6936                                                   289
6937                                                   443
6938                                                   402
6939                                                   316
6940                                                   273
6941                                                   233
6942                                                   316
6943                                                   242
6944                                                   445
6945                                                  1218
6946                                                   602
6947                                                  1562
6948                                                   580
6949                                                   697
6950                                                   710
6951                                                   710
6952                                                   601
6953                                                   779
6954                                                   492
6955                                                   633
6956                                                   872
6957                                                   547
6958                                                   599
6959                                                   408
6960                                                   641
6961                                                   518
6962                                                   703
6963                                                   620
6964                                                  1223
6965                                                  2432
6966                                                  3850
6967                                                  3112
6968                                                  3388
6969                                                  3563
6970                                                  3145
6971                                                  3691
6972                                                  3601
6973                                                  3001
6974                                                  3268
6975                                                  4083
6976                                                  3335
6977                                                  4112
6978                                                  3634
6979                                                  2747
6980                                                  2853
6981                                                  4900
6982                                                  2840
6983                                                  4114
6984                                                 20182
6985                                                 17545
6986                                                 12532
6987                                                 34775
6988                                                  7080
6989                                                  6704
6990                                                 13287
6991                                                279630
6992                                                 94446
6993                                                206538
6994                                                 58355
6995                                                  6403
6996                                                 22805
6997                                                  7413
6998                                                  6301
6999                                                 10506
7000                                                  8055
7001                                                  6523
7002                                                  6919
7003                                                  7247
7004                                                 13068
7005                                                  5588
7006                                                  6304
7007                                                  6149
7008                                                  6202
7009                                                  6149
7010                                                  6755
7011                                                  6874
7012                                                  5690
7013                                                  6495
7014                                                  6902
7015                                                  7303
7016                                                  7950
7017                                                 13706
7018                                                 14590
7019                                                 15289
7020                                                 22482
7021                                                 30722
7022                                                 25597
7023                                                 39315
7024                                                 25224
7025                                                 20367
7026                                                 13644
7027                                                 12944
7028                                                 14156
7029                                                 15193
7030                                                 15248
7031                                                 22449
7032                                                 14226
7033                                                 12332
7034                                                 14147
7035                                                 12498
7036                                                 14491
7037                                                 35248
7038                                                 30573
7039                                                 28153
7040                                                 63971
7041                                                 24709
7042                                                 21332
7043                                                 45052
7044                                                375905
7045                                                131087
7046                                                319053
7047                                                 96705
7048                                                 29359
7049                                                 39607
7050                                                  1958
7051                                                  1335
7052                                                  2955
7053                                                  1318
7054                                                  1540
7055                                                  1350
7056                                                  1285
7057                                                  3876
7058                                                  1210
7059                                                  1308
7060                                                  1461
7061                                                  1566
7062                                                  1305
7063                                                  1441
7064                                                  1511
7065                                                  1190
7066                                                  1537
7067                                                  1645
7068                                                  1678
7069                                                  2442
7070                                                  5005
7071                                                  4704
7072                                                  4313
7073                                                  6472
7074                                                 11916
7075                                                 11923
7076                                                 22416
7077                                                 13005
7078                                                  7456
7079                                                  2469
7080                                                  2108
7081                                                  2336
7082                                                  2189
7083                                                  2629
7084                                                  4090
7085                                                  1940
7086                                                  2245
7087                                                  2271
7088                                                  2325
7089                                                  2601
7090                                                  2432
7091                                                  2512
7092                                                  2791
7093                                                  4245
7094                                                  5133
7095                                                  3364
7096                                                  7549
7097                                                  4984
7098                                                  3634
7099                                                  9378
7100                                                  6370
7101                                                  5518
7102                                                  3313
7103                                                   665
7104                                                   780
7105                                                   865
7106                                                   892
7107                                                   987
7108                                                   645
7109                                                   907
7110                                                   902
7111                                                   698
7112                                                   570
7113                                                   613
7114                                                    94
7115                                                    51
7116                                                    15
7117                                                   114
7118                                                    64
7119                                                   699
7120                                                   654
7121                                                   101
7122                                                    55
7123                                                   167
7124                                                   147
7125                                                   204
7126                                                   197
7127                                                   218
7128                                                   126
7129                                                   190
7130                                                    95
7131                                                   116
7132                                                    62
7133                                                    48
7134                                                    75
7135                                                   103
7136                                                    77
7137                                                    99
7138                                                    48
7139                                                    59
7140                                                    32
7141                                                    49
7142                                                    60
     Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                           66354                        48606
2                           58798                        46930
3                           61545                        38904
4                           50690                        37033
5                           53795                        33032
6                           56382                        36992
7                           47046                        33656
8                           48629                        35663
9                           65398                        39461
10                          56751                        31827
11                          60339                        36884
12                          86294                        41160
13                          59460                        14876
14                          45662                        20534
15                          86202                        33698
16                          75983                        46290
17                          94436                        49834
18                          61281                        47138
19                          57418                        45534
20                          59217                        45068
21                          67472                        45820
22                          53888                        42126
23                          57211                        45114
24                          61292                        45100
25                          58304                        46024
26                          70560                        50685
27                          65342                        52100
28                          74542                        55485
29                          61261                        48612
30                          72290                        50955
31                          51735                        40505
32                          56540                        33867
33                          45392                        33710
34                          46668                        34108
35                          66182                        32521
36                          41512                        31315
37                          43343                        29662
38                          50884                        25833
39                          45037                        28612
40                          43780                        29314
41                          62275                        40495
42                          46575                        34912
43                          43241                        33847
44                          49457                        32181
45                          43430                        33424
46                          44886                        26728
47                          38940                        18044
48                          51694                        10554
49                          36612                        13176
50                          40040                        16783
51                          47038                        21310
52                          46816                        16707
53                         144911                       142544
54                         144238                       141752
55                         150966                       149070
56                         118665                       117113
57                         105468                       103616
58                         121671                       119008
59                         129760                       125298
60                         144840                       138778
61                         157926                       152716
62                         156129                       149988
63                         151926                       146421
64                         168354                       163669
65                         172234                       167495
66                         151893                       146793
67                         174030                       168890
68                         151500                       145686
69                         168971                       165697
70                         185304                       181969
71                         178377                       175047
72                         155975                       153157
73                         164863                       161565
74                         166729                       163668
75                         178660                       174775
76                         200713                       196838
77                         193887                       189236
78                         206109                       200098
79                         211565                       207378
80                         224623                       220904
81                         249197                       244982
82                         225053                       221166
83                         217786                       211787
84                         234503                       228843
85                         227331                       222163
86                         224519                       215572
87                         209686                       201874
88                         218352                       212065
89                         225627                       219886
90                         201392                       196076
91                         191340                       184109
92                         163769                       158964
93                         176386                       171700
94                         197865                       193131
95                         192522                       188374
96                         171961                       168224
97                         190763                       186977
98                         179990                       174865
99                         180933                       175771
100                        164589                       159917
101                        217351                       209762
102                        173859                       169391
103                        155407                       151331
104                        141137                       137146
105                         23561                        23520
106                         21936                        21900
107                         21868                        21843
108                         43092                        42735
109                         16058                        15861
110                         17548                        17531
111                         25635                        25200
112                         13000                        12778
113                         12363                        12332
114                         13711                        13661
115                          8921                         8918
116                         13770                        13543
117                          5968                         5462
118                          7763                         7597
119                         10894                        10601
120                          7483                         7483
121                          6936                         6934
122                          5441                         5441
123                          7420                         7420
124                          6097                         6091
125                          7582                         7569
126                          6036                         5988
127                          6512                         6358
128                          7171                         6354
129                          9572                         8335
130                          6638                         6557
131                          5621                         5619
132                          7286                         7022
133                          7800                         7800
134                          5613                         5604
135                          7866                         7860
136                          7507                         7470
137                          6354                         6346
138                          9496                         9453
139                          6355                         6350
140                          7179                         7175
141                          7960                         7954
142                          5748                         5748
143                          6514                         6511
144                          4790                         4790
145                          3312                         3312
146                          4446                         4446
147                          4860                         4860
148                          7238                         6479
149                          7467                         7235
150                          5341                         3648
151                          3047                         1373
152                          6645                         4867
153                          4530                         2010
154                          3916                         1119
155                          4924                         3295
156                          7756                         6064
157                         86013                        85914
158                         88902                        88768
159                         89723                        89523
160                         75890                        75666
161                         74126                        73865
162                         78648                        78162
163                         87352                        85604
164                         93343                        88265
165                         98508                        93443
166                         99327                        94582
167                         91050                        86046
168                        101910                        97513
169                        103039                        97207
170                         84727                        82124
171                         95172                        91613
172                         89115                        84844
173                         95173                        94558
174                         83431                        83242
175                         95827                        95585
176                         96109                        95887
177                         94519                        94288
178                         97509                        97214
179                        100695                       100467
180                        109746                       109519
181                        148183                       146947
182                        148861                       145983
183                        143456                       142575
184                        126114                       125821
185                        151442                       151259
186                        137408                       137225
187                        142819                       142515
188                        138158                       137769
189                        149526                       147668
190                        143998                       141309
191                        118714                       115149
192                        109400                       106866
193                        115563                       114562
194                        110639                       108644
195                        115636                       113541
196                        110561                       108838
197                        102664                       102204
198                        102556                       101932
199                        114387                       113811
200                         97863                        97423
201                        100716                       100498
202                        114839                       114284
203                        106217                       105403
204                        110214                       109901
205                        116472                       115538
206                        109037                       108669
207                        111525                       111193
208                         87663                        87407
209                         55237                        55237
210                         51165                        51165
211                         56202                        56202
212                         48356                        48356
213                         42662                        42662
214                         49642                        49642
215                         56335                        55593
216                         60188                        58886
217                         54299                        52956
218                         61283                        59381
219                         63787                        62627
220                         56025                        54830
221                         57426                        56141
222                         28438                        27767
223                         19259                        18438
224                         22867                        22422
225                         25106                        25093
226                         20483                        20483
227                         23840                        23840
228                         22372                        22372
229                         24052                        24052
230                         31623                        31623
231                         43789                        43789
232                         70982                        70982
233                         74223                        73796
234                         75277                        74371
235                         78812                        78750
236                         54130                        54130
237                         95474                        95474
238                         71991                        71991
239                         75473                        75473
240                         65786                        65742
241                         74393                        73415
242                         95286                        94833
243                         85477                        84332
244                         86183                        85503
245                         85577                        85057
246                         71752                        70938
247                         72057                        71409
248                         70027                        69919
249                         71344                        71289
250                         54158                        54046
251                         62577                        62217
252                         69542                        69480
253                         62312                        61765
254                         55357                        55233
255                         64514                        63918
256                         86920                        86848
257                         58650                        57910
258                         43422                        43420
259                         53514                        53514
260                         57183                        57183
261                       1212707                      1090140
262                       1209165                      1061704
263                       1592438                      1404012
264                       1510267                      1376641
265                       1081497                       991569
266                       1069306                       979613
267                       1152919                      1091769
268                        855637                       813006
269                        651916                       626994
270                        618032                       606393
271                        646991                       633894
272                        555042                       533478
273                        472090                       442924
274                        515246                       496868
275                        552210                       529779
276                        584420                       502057
277                        629688                       591630
278                        649476                       640601
279                        545249                       535184
280                        577652                       572197
281                        580769                       570729
282                        566776                       559588
283                        598608                       590750
284                        601234                       577737
285                        622966                       601359
286                        762371                       731692
287                        654819                       630301
288                        662032                       634245
289                        683201                       657421
290                        678869                       651945
291                        580523                       554225
292                        574120                       546421
293                        547244                       525805
294                        634791                       613601
295                        631798                       609389
296                        576600                       548252
297                        598286                       524768
298                        614444                       532714
299                        601125                       539258
300                        669440                       605995
301                        713009                       681404
302                        662527                       632904
303                        671313                       642307
304                        552070                       515386
305                        635319                       596185
306                        594412                       544991
307                        612526                       553683
308                        600149                       556205
309                        570610                       521004
310                        559991                       520299
311                        546048                       510560
312                        528452                       477193
313                         37630                        35130
314                         35055                        33273
315                         39032                        35793
316                         30439                        28182
317                         30791                        27376
318                         25723                        22228
319                         23632                        21132
320                         29723                        28076
321                         37374                        32848
322                         34587                        30219
323                         34535                        31177
324                         39796                        33103
325                         38051                        30389
326                         31621                        27053
327                         47353                        38940
328                         62868                        56910
329                         66042                        59198
330                         65684                        63371
331                         78865                        76846
332                         62986                        60769
333                         61746                        57783
334                         60700                        58628
335                         64127                        62054
336                         65605                        62471
337                         67852                        65681
338                         71243                        67865
339                         69754                        67989
340                         73048                        69426
341                         69824                        67842
342                         72651                        69124
343                         61153                        58991
344                         63677                        59663
345                         59787                        57584
346                         63907                        61760
347                         64215                        58626
348                         59902                        58701
349                         64618                        63182
350                         65184                        61787
351                         58148                        56451
352                         52861                        51856
353                         59412                        56444
354                         52470                        51028
355                         53912                        52538
356                         55726                        52874
357                         46973                        44920
358                         49548                        40420
359                         51284                        41921
360                         49070                        33450
361                         54310                        41623
362                         47055                        33997
363                         49436                        38822
364                         50798                        44329
365                         94741                        83067
366                         94064                        76241
367                         82588                        76829
368                         62911                        62473
369                         62161                        61863
370                         73752                        73457
371                         74985                        74724
372                         66166                        65842
373                         68870                        68448
374                         66124                        65795
375                         63116                        62077
376                         68648                        65145
377                         69930                        66015
378                         70795                        63370
379                         74892                        71196
380                         82914                        78368
381                         86202                        82905
382                         73919                        71627
383                         80272                        77074
384                         83807                        80019
385                         81788                        79510
386                         82176                        79198
387                         88152                        83729
388                         98743                        92363
389                         94328                        90429
390                        129053                       126579
391                        129787                       126836
392                        111022                       107243
393                        119025                       116318
394                        105212                        99942
395                        101425                        99123
396                        104264                       101616
397                         85534                        82690
398                         93316                        88848
399                         93716                        89297
400                         92706                        88342
401                         92161                        89277
402                         94154                        91664
403                         91423                        87170
404                        101459                        97285
405                         90359                        87394
406                         97254                        93313
407                        109455                       107215
408                         90420                        88092
409                         94440                        90447
410                         97651                        92519
411                         82336                        78981
412                         93078                        89517
413                         85221                        75868
414                         98866                        95516
415                         79299                        74716
416                         77539                        72888
417                         50369                        14051
418                         56246                        12118
419                         75465                        15835
420                         59144                        13539
421                         38978                        12785
422                         47140                        13805
423                         56846                        15734
424                         60246                        12990
425                         71626                        14831
426                         59604                        12423
427                         43078                        17415
428                         50536                        16192
429                         64106                        16488
430                         49129                        12344
431                         47095                        12353
432                         56180                        17272
433                         66632                        19499
434                         63319                        17805
435                         58589                        15962
436                         63558                        16807
437                         56137                        19934
438                         51052                        16180
439                         68918                        24770
440                         58338                        21471
441                         61781                        23226
442                         71706                        27500
443                         72824                        34099
444                         65000                        25432
445                         66486                        30258
446                         63390                        23652
447                         63377                        20976
448                         55605                        24487
449                         59492                        18092
450                         73035                        22507
451                         57176                        18316
452                         60584                        21522
453                         60889                        35196
454                         55625                        38219
455                         51050                        36567
456                         70724                        46587
457                         48823                        11317
458                         57836                        19570
459                         64426                        30834
460                         47260                        14964
461                         41141                        18685
462                         39618                        21356
463                         37259                        17774
464                         51829                        15335
465                         46636                        20650
466                         42403                        24024
467                         43476                        17036
468                         55083                        17525
469                         23072                        15032
470                         20266                        11761
471                         20166                        14642
472                         18819                        12452
473                         17371                        12106
474                         18380                        13855
475                         23024                        19595
476                         25670                        14900
477                         21489                        14668
478                         17089                        11461
479                         23460                        18602
480                         23893                        16947
481                         19255                        14952
482                         18440                        10971
483                         21237                        12030
484                         24698                        17100
485                         21787                        16534
486                         24775                        16928
487                         20872                        14962
488                         23949                        15230
489                         29969                        20668
490                         23216                        17997
491                         28990                        23981
492                         26450                        21846
493                         25545                        22606
494                         30289                        24910
495                         35543                        29338
496                         31938                        24969
497                         34656                        27204
498                         33480                        23654
499                         27508                        21434
500                         34793                        22680
501                         21612                        15997
502                         27215                        23689
503                         27236                        16303
504                         28635                        22384
505                         25870                        20819
506                         24862                        23837
507                         18572                        17853
508                         32729                        31416
509                         16321                         9159
510                         22629                        18488
511                         36170                        29553
512                         19375                        13297
513                         21411                        18267
514                         24562                        22104
515                         20394                        17859
516                         23946                        16360
517                         23196                        21117
518                         27418                        24387
519                         18981                        16400
520                         18870                        16518
521                        164495                       136560
522                        139568                       103512
523                        122486                       114978
524                        119464                       108772
525                        110783                        96799
526                        115460                       102318
527                        124104                       109552
528                        103377                        92854
529                        105901                        98097
530                        101823                        96418
531                         94315                        87201
532                        107868                       101828
533                        122785                       107305
534                        114294                       101478
535                        112114                        99273
536                        144444                       119755
537                        129188                       120588
538                        110267                       101094
539                        111144                       102622
540                        109684                       100807
541                        109762                       101619
542                        103103                        91894
543                        116524                        97727
544                        133329                       115942
545                        107362                       102574
546                        145176                       139671
547                        133411                       125900
548                        143731                       134708
549                        134775                       130578
550                        133959                       126850
551                        112892                        99456
552                        101994                        96860
553                         96118                        88480
554                        115965                       107303
555                        111724                       104797
556                        102359                        91506
557                        102270                        89210
558                         94371                        85100
559                        120093                       105522
560                        109584                        95895
561                         98563                        88559
562                        102495                        90708
563                        111143                        97450
564                        107972                        95284
565                        102739                        85322
566                         82586                        67518
567                         80178                        67959
568                         90805                        79314
569                         78188                        60158
570                         74805                        62376
571                         87685                        67858
572                         89330                        54563
573                        266590                        38620
574                        202800                        34993
575                        294367                        34244
576                        340034                        35086
577                        149739                        31920
578                        282806                        31359
579                        378320                        36280
580                        209920                        39636
581                        237105                        41634
582                        223825                        39915
583                        239194                        41688
584                        216495                        40462
585                        184828                        41346
586                        173509                        43108
587                        187899                        40645
588                        149626                        47734
589                        151436                        47834
590                        161467                        43992
591                        123397                        45408
592                        123500                        46711
593                        136452                        46596
594                        134187                        45645
595                        162597                        58753
596                        208462                        68585
597                        169339                        66816
598                        142806                        88350
599                        153136                        93206
600                        128297                        83581
601                        129731                        79509
602                        158078                        70062
603                         88434                        52816
604                         70664                        50060
605                        113999                        50688
606                        115632                        49344
607                         97967                        45164
608                         72695                        44469
609                        116878                        44279
610                         98979                        42716
611                         86003                        53590
612                         90117                        55936
613                         82485                        47368
614                         93527                        50621
615                        102365                        54092
616                         75911                        38247
617                        156113                        62564
618                        100262                        80271
619                        141258                        92800
620                        158603                        90556
621                        127365                        74744
622                        151309                        77528
623                        122524                        85793
624                        115560                        67894
625                         62067                        48936
626                         51806                        40496
627                         57504                        48318
628                         54243                        30612
629                         42283                        31629
630                         55653                        47389
631                         72837                        65345
632                         53703                        30615
633                         56533                        35177
634                         42762                        30132
635                         70323                        63144
636                         73877                        68721
637                         54175                        40779
638                         46420                        33817
639                         60966                        38181
640                         70173                        51457
641                         61933                        49677
642                         68937                        52515
643                         55182                        45741
644                         74576                        53327
645                         67448                        54938
646                         72591                        63454
647                        105548                        98037
648                         73481                        61402
649                         82776                        76701
650                         74583                        66417
651                        115728                       111301
652                         82435                        70155
653                         86445                        80661
654                         76378                        61921
655                         80020                        74758
656                         98619                        94585
657                         65901                        53494
658                         91797                        87986
659                         66858                        60635
660                        100217                        93903
661                         81262                        68265
662                        107069                       101770
663                         69389                        65998
664                        116730                       113016
665                         63171                        44419
666                         67078                        62159
667                        104569                        99704
668                         69073                        50733
669                         70507                        66789
670                         82193                        78474
671                         61773                        57777
672                         70682                        54003
673                         73764                        69312
674                         94985                        92319
675                         56697                        48639
676                         56132                        46680
677                         37857                        30738
678                         35161                        30548
679                         40989                        38257
680                         32058                        26570
681                         30729                        27836
682                         36726                        33607
683                         48756                        47301
684                         36854                        34956
685                         45974                        43393
686                         35156                        30488
687                         45134                        40258
688                         39488                        21799
689                         36661                        29447
690                         34573                        28889
691                         53746                        51686
692                         51809                        43865
693                         48655                        45108
694                         53916                        48562
695                         45548                        40205
696                         65763                        55317
697                         52957                        49560
698                         59731                        55049
699                         74652                        69267
700                         61455                        52697
701                         72570                        66368
702                         55790                        44033
703                         87927                        80549
704                         62515                        53623
705                         71615                        67207
706                         61035                        55433
707                         67039                        64208
708                         73748                        69049
709                         56626                        52456
710                         63494                        59129
711                         48803                        46863
712                         73116                        68759
713                         72778                        68698
714                         72097                        68694
715                         55702                        50463
716                         81049                        75726
717                         59637                        57118
718                         48607                        45348
719                         72556                        69329
720                         54084                        47217
721                         52873                        48858
722                         63862                        57602
723                         52497                        48150
724                         48423                        43900
725                         58723                        54053
726                         64386                        60382
727                         42379                        39193
728                         45922                        43899
729                        577491                       400004
730                        542059                       358219
731                        574072                       409910
732                        500759                       325850
733                        431503                       328369
734                        501609                       391455
735                        580588                       465154
736                        554940                       365002
737                        578565                       399665
738                        496813                       335249
739                        535276                       419559
740                        539609                       384773
741                        504172                       354840
742                        476540                       327300
743                        570423                       406010
744                        634481                       448052
745                        614943                       468148
746                        612822                       457559
747                        568324                       427635
748                        676086                       486210
749                        638020                       497895
750                        627505                       500705
751                        762155                       617212
752                        690083                       535843
753                        715927                       581802
754                        774585                       606613
755                        966269                       803974
756                        780156                       611157
757                        815016                       683335
758                        742128                       584086
759                        725079                       593193
760                        788588                       641757
761                        620548                       481047
762                        737043                       585001
763                        653683                       493009
764                        749590                       615887
765                        717946                       609139
766                        754074                       688966
767                        617473                       552076
768                        845500                       758625
769                        605211                       453830
770                        622038                       498932
771                        824997                       697813
772                        598714                       462539
773                        610249                       512270
774                        650580                       561485
775                        560634                       472576
776                        646532                       479453
777                        617677                       503613
778                        697090                       600156
779                        515263                       412977
780                        537781                       412780
781                         52173                        51397
782                         55159                        53929
783                         52630                        51753
784                         46804                        46345
785                         40270                        39641
786                         49887                        47520
787                         50824                        46940
788                         49315                        47638
789                         50255                        49341
790                         53877                        52570
791                         49802                        48879
792                         55402                        53611
793                         60166                        59228
794                         53388                        51731
795                         54908                        53989
796                         50518                        48538
797                         58804                        57426
798                         59592                        57205
799                         56436                        54581
800                         49303                        48581
801                         57148                        56333
802                         57808                        56786
803                         61945                        60632
804                         66951                        65842
805                         68900                        67026
806                         80549                        78410
807                         73591                        70488
808                         79455                        76908
809                         92381                        87953
810                         85425                        81417
811                         91400                        87881
812                         93391                        89914
813                         86571                        85065
814                         87227                        85161
815                         79068                        76931
816                         70271                        68211
817                         79211                        77245
818                         64579                        62948
819                         68028                        66321
820                         62385                        61036
821                         60235                        57777
822                         74631                        72182
823                         77676                        75825
824                         67380                        65871
825                         74589                        73386
826                         73264                        72146
827                         76543                        75409
828                         70933                        69530
829                         83379                        79721
830                         65730                        64181
831                         64838                        63840
832                         48953                        47584
833                         44521                        43577
834                         46959                        45982
835                         47235                        46493
836                         36088                        35448
837                         37099                        36423
838                         31693                        30800
839                         42157                        40290
840                         43220                        37770
841                         49489                        44831
842                         47536                        43920
843                         45109                        42005
844                         52443                        49064
845                         51469                        46353
846                         46106                        42271
847                         57607                        52877
848                         53422                        47930
849                         54784                        52839
850                         47189                        46616
851                         45255                        44346
852                         52809                        51497
853                         56846                        55626
854                         48824                        47631
855                         55095                        52816
856                         59064                        56769
857                         73611                        71429
858                         71727                        67565
859                         63988                        60623
860                         69298                        67505
861                         72847                        69608
862                         67534                        66053
863                         76734                        74809
864                         80421                        78506
865                         72313                        69888
866                         76808                        73455
867                         69666                        66957
868                         66780                        64009
869                         70678                        66844
870                         64932                        63103
871                         58950                        56551
872                         53020                        50510
873                         56637                        53990
874                         68370                        65306
875                         81264                        77719
876                         59968                        57601
877                         73551                        71331
878                         80582                        79027
879                         68467                        65595
880                         75878                        72235
881                         86592                        79402
882                         64898                        62672
883                         85050                        83320
884                         58062                        55401
885                        140579                        73712
886                        134472                        72198
887                        118250                        69011
888                        123302                        61020
889                         97740                        67880
890                        112776                        70785
891                        131185                        62415
892                        124311                        56574
893                        135091                        56198
894                        101890                        57577
895                         87943                        59836
896                        112925                        62638
897                        128610                        59751
898                        110006                        61099
899                         97094                        55198
900                        128198                        55637
901                        128398                        63725
902                        101801                        72265
903                         97754                        62733
904                        102019                        65764
905                         98491                        62834
906                         93996                        60783
907                        115647                        69845
908                        146607                        73695
909                        129131                        71467
910                        145202                        98661
911                        182794                        87445
912                        165541                        84406
913                        164984                        85200
914                        127683                        72505
915                        119148                        53982
916                         97641                        58143
917                         82512                        47882
918                        119273                        49687
919                        138114                        55875
920                         91746                        58557
921                        112472                        78217
922                        107051                        97144
923                        139400                       132586
924                        128756                       122988
925                        122876                        71978
926                        110522                        62353
927                        135736                        60499
928                        114119                        63264
929                        105623                        73227
930                        120149                        83841
931                        114519                       103508
932                        134421                        86145
933                        120289                        95546
934                        120281                       107320
935                        152919                       126996
936                        115838                        90300
937                         37858                        20645
938                         35340                        18145
939                         39056                        21260
940                         38650                        19366
941                         29256                        17456
942                         32825                        20313
943                         36598                        22295
944                         38397                        19246
945                         40334                        20800
946                         40696                        18548
947                         40806                        24130
948                         35113                        21300
949                         35119                        18727
950                         34775                        19742
951                         41170                        18046
952                         49657                        22011
953                         44016                        25163
954                         41058                        23305
955                         40102                        23701
956                         44629                        23010
957                         40811                        24884
958                         40115                        22812
959                         47942                        27526
960                         46213                        25201
961                         48250                        27062
962                         52873                        30631
963                         62337                        34863
964                         58792                        33861
965                         52339                        33479
966                         48179                        30542
967                         42934                        26714
968                         41465                        26023
969                         39737                        21261
970                         46169                        23578
971                         40171                        21560
972                         41141                        23193
973                         50566                        35778
974                         43746                        33143
975                         40579                        33762
976                         50119                        37466
977                         38735                        19722
978                         41914                        24141
979                         45812                        27937
980                         39567                        22402
981                         37627                        22829
982                         35775                        22443
983                         33519                        18969
984                         41561                        20670
985                         36954                        21964
986                         40469                        22405
987                         33310                        18467
988                         36485                        20325
989                         33309                        15301
990                         26097                        16151
991                         30390                        11313
992                         19876                         8770
993                         27788                         7638
994                         29814                        10739
995                         24916                        12499
996                         24157                        12761
997                         39233                        14379
998                         27219                        19340
999                         24386                        14116
1000                        35016                        14261
1001                        36207                        14925
1002                        24335                        14588
1003                        37710                        17061
1004                        27745                        18431
1005                        44924                        20610
1006                        31864                        20461
1007                        31183                        20588
1008                        30162                        19620
1009                        43943                        21556
1010                        28553                        19135
1011                        23709                        18523
1012                        37280                        17719
1013                        29325                        19289
1014                        51113                        31922
1015                        37284                        29903
1016                        48407                        26218
1017                        41014                        30969
1018                        43920                        24339
1019                        32956                        22617
1020                        41618                        20782
1021                        30303                        19948
1022                        31431                        22038
1023                        51669                        25089
1024                        30894                        21799
1025                        34237                        24494
1026                        34893                        17504
1027                        29192                        16686
1028                        25226                        17584
1029                        34923                        19581
1030                        23903                        17130
1031                        25444                        19550
1032                        31640                        17060
1033                        29076                        21773
1034                        24428                        15354
1035                        19397                        11016
1036                        42946                        20816
1037                        27926                        16753
1038                        25061                        14684
1039                        24567                        14863
1040                        28687                        13653
1041                        58612                        34676
1042                        54104                        34993
1043                        41644                        33834
1044                        30694                        30201
1045                        30435                        29475
1046                        33242                        31654
1047                        35507                        33636
1048                        37333                        36574
1049                        35399                        34277
1050                        35459                        33684
1051                        38960                        37274
1052                        36895                        33904
1053                        38660                        30932
1054                        35317                        31037
1055                        44254                        35941
1056                        74656                        31703
1057                        52472                        38692
1058                        38267                        37519
1059                        40566                        38542
1060                        60364                        48127
1061                        63010                        41698
1062                        49169                        38915
1063                        50086                        41514
1064                        54738                        44134
1065                        53259                        41822
1066                        77807                        63540
1067                        63660                        52651
1068                        78859                        58695
1069                        78678                        45747
1070                        71065                        47209
1071                        58377                        41385
1072                        51767                        40850
1073                        47743                        34337
1074                        55664                        36501
1075                        66137                        37775
1076                        63436                        39250
1077                        55651                        34413
1078                        50735                        32105
1079                        50950                        38773
1080                        47723                        39099
1081                        38838                        38187
1082                        35287                        34916
1083                        38563                        38264
1084                        36602                        35745
1085                        36265                        36113
1086                        38503                        38197
1087                        43709                        42744
1088                        36449                        35205
1089                        32113                        31834
1090                        33176                        32898
1091                        37144                        36874
1092                        58639                        58127
1093                       808554                       722788
1094                       786664                       681332
1095                      1093869                       962785
1096                      1096638                       997846
1097                       749930                       681435
1098                       747731                       676326
1099                       814312                       763323
1100                       527995                       492714
1101                       396225                       378049
1102                       349302                       341731
1103                       367464                       358999
1104                       297183                       280842
1105                       273330                       251925
1106                       282555                       268104
1107                       302063                       284792
1108                       296957                       226957
1109                       343857                       312764
1110                       363761                       357387
1111                       287109                       279700
1112                       305952                       301831
1113                       311765                       304882
1114                       296687                       291524
1115                       321892                       316323
1116                       306935                       290890
1117                       312826                       298569
1118                       398193                       377664
1119                       353113                       336538
1120                       353495                       334560
1121                       374448                       357012
1122                       385718                       367628
1123                       309928                       292423
1124                       301690                       283662
1125                       294872                       280916
1126                       358536                       345073
1127                       369785                       356360
1128                       297393                       280322
1129                       326248                       279356
1130                       336666                       284383
1131                       284995                       245999
1132                       289111                       250802
1133                       294948                       275797
1134                       332058                       313898
1135                       328752                       311498
1136                       294780                       269525
1137                       337149                       309850
1138                       308755                       271596
1139                       327154                       280561
1140                       342180                       308755
1141                       294096                       255280
1142                       290195                       260858
1143                       251247                       222972
1144                       255504                       215572
1145                        19313                        11290
1146                        21243                        11291
1147                        25724                        11718
1148                        30842                        10619
1149                        21015                        10740
1150                        23120                        12082
1151                        21785                        12911
1152                        25674                        10818
1153                        34335                        11070
1154                        21993                        11226
1155                        22943                        12347
1156                        22661                        11837
1157                        17661                        10608
1158                        14967                         8797
1159                        21940                         9085
1160                        22000                         9469
1161                        27562                        10648
1162                        18916                        10816
1163                        20819                        10968
1164                        20799                        11076
1165                        23661                        12115
1166                        25823                        11523
1167                        31496                        13129
1168                        22016                        13721
1169                        25582                        13951
1170                        27275                        16461
1171                        24664                        15248
1172                        24024                        15669
1173                        25644                        15804
1174                        23778                        12424
1175                        24617                        11608
1176                        19370                        10359
1177                        18295                         8983
1178                        22340                         9534
1179                        24591                         8762
1180                        18699                         9812
1181                        25913                        19573
1182                        23399                        19990
1183                        23334                        15904
1184                        25781                        22499
1185                        22383                         7993
1186                        16983                         9907
1187                        19921                        11944
1188                        17005                         7537
1189                        25788                         9790
1190                        24814                        11567
1191                        19963                        10210
1192                        31117                         8618
1193                        21080                         8876
1194                        19077                        10229
1195                        19278                         7965
1196                        23797                         7769
1197                       112405                        53606
1198                        79786                        50138
1199                        92803                        38464
1200                        58507                        25297
1201                        78304                        27392
1202                        92252                        32763
1203                        67429                        34370
1204                        68261                        36440
1205                        95034                        37980
1206                        58966                        33430
1207                        66949                        40519
1208                        94107                        39788
1209                        95953                        47869
1210                        59931                        35359
1211                       102120                        47692
1212                        68961                        42655
1213                       114243                        49819
1214                        83400                        59816
1215                        83033                        58853
1216                        84829                        62035
1217                       118286                        61528
1218                        85845                        63761
1219                        83755                        63019
1220                        93290                        55330
1221                        86917                        61873
1222                       132961                        72566
1223                       104373                        76411
1224                       128509                        74032
1225                        99433                        72755
1226                       119601                        65839
1227                        86844                        61103
1228                       123093                        62452
1229                        90467                        64400
1230                        82813                        60377
1231                       145921                        68322
1232                        92640                        63701
1233                        88144                        58121
1234                       103947                        47628
1235                        91331                        49707
1236                        75956                        47570
1237                       104472                        51350
1238                        63925                        38985
1239                        69396                        47347
1240                       102049                        45516
1241                        78579                        51870
1242                        74510                        38772
1243                        62445                        36165
1244                       111769                        48097
1245                        66921                        35280
1246                        77092                        41312
1247                        63792                        35070
1248                        86681                        38505
1249                       503211                       464119
1250                       476795                       434534
1251                       503346                       445275
1252                       437811                       377999
1253                       386816                       344831
1254                       407482                       364156
1255                       414550                       373075
1256                       457858                       402489
1257                       513482                       429082
1258                       474081                       417038
1259                       474781                       423534
1260                       525256                       455593
1261                       501339                       438547
1262                       429281                       383854
1263                       560916                       479718
1264                       612906                       548306
1265                       676143                       598816
1266                       660271                       620019
1267                       697779                       654945
1268                       617282                       577210
1269                       647068                       597062
1270                       651663                       604228
1271                       693787                       638982
1272                       729054                       685066
1273                       707754                       662158
1274                       771995                       717655
1275                       760938                       722277
1276                       798952                       750254
1277                       829250                       786795
1278                       776459                       717859
1279                       719676                       661788
1280                       736290                       679538
1281                       713734                       667223
1282                       744169                       679213
1283                       694687                       624534
1284                       683543                       642967
1285                       741163                       701806
1286                       679969                       635124
1287                       651848                       607924
1288                       582784                       547007
1289                       618124                       560370
1290                       614826                       578104
1291                       622979                       588931
1292                       584082                       543841
1293                       583298                       535974
1294                       597683                       515933
1295                       619502                       543232
1296                       592751                       464442
1297                       671880                       572717
1298                       569043                       478771
1299                       551745                       465765
1300                       510469                       429167
1301                        30707                        23563
1302                        28292                        23562
1303                        33007                        23066
1304                        27852                        22957
1305                        27922                        20471
1306                        31136                        23717
1307                        29388                        24127
1308                        30867                        25642
1309                        36387                        24437
1310                        33823                        25000
1311                        33416                        23996
1312                        41597                        23794
1313                        42689                        26268
1314                        34913                        25432
1315                        47365                        27175
1316                        43316                        31984
1317                        42839                        27102
1318                        30401                        24582
1319                        29946                        25634
1320                        28448                        22867
1321                        40116                        30602
1322                        35417                        30724
1323                        34669                        29924
1324                        43915                        34878
1325                        35030                        29736
1326                        44395                        35734
1327                        41366                        36900
1328                        51516                        41015
1329                        44678                        38948
1330                        40283                        31059
1331                        28738                        24244
1332                        30492                        22090
1333                        29553                        25236
1334                        28378                        23620
1335                        33653                        23217
1336                        24977                        21481
1337                        29135                        22423
1338                        24411                        14354
1339                        28395                        21583
1340                        26090                        19541
1341                        29425                        22501
1342                        26383                        21886
1343                        26514                        22959
1344                        27016                        20733
1345                        23322                        20672
1346                        23901                        21186
1347                        28126                        25897
1348                        29613                        23898
1349                        25973                        24183
1350                        25637                        23521
1351                        25245                        22479
1352                        25514                        19681
1353                        63153                        53909
1354                        62784                        57101
1355                        52876                        44565
1356                        45662                        41823
1357                        55299                        49172
1358                        60225                        53792
1359                        60127                        56099
1360                        53203                        49207
1361                        58508                        50414
1362                        55281                        51959
1363                        62424                        58060
1364                        64726                        56426
1365                        67519                        59907
1366                        57247                        53116
1367                        63218                        56902
1368                        59446                        54335
1369                        72867                        64673
1370                        72493                        68104
1371                        66739                        61778
1372                        77863                        72976
1373                        78463                        71332
1374                        71226                        66186
1375                        64500                        61570
1376                        70840                        62702
1377                        67711                        62706
1378                        88003                        81157
1379                        79188                        75120
1380                        95353                        86878
1381                        84989                        80571
1382                        93290                        85388
1383                        71581                        67112
1384                        78698                        71636
1385                        74870                        69920
1386                        71531                        67176
1387                        90613                        81128
1388                        76713                        72728
1389                        77991                        74117
1390                        60210                        53843
1391                        62912                        57555
1392                        66128                        62564
1393                        77004                        68627
1394                        62466                        58352
1395                        72617                        69336
1396                        69213                        62741
1397                        66215                        62874
1398                        62664                        60468
1399                        63558                        61346
1400                        84349                        76463
1401                        69525                        66086
1402                        64198                        61303
1403                        62815                        59594
1404                        60063                        54422
1405                       242667                       208471
1406                       257139                       212615
1407                       261652                       222447
1408                       164641                       136643
1409                       170082                       139509
1410                       190226                       156661
1411                       225328                       196060
1412                       287368                       198024
1413                       238141                       183727
1414                       239306                       192750
1415                       232926                       181855
1416                       291019                       214209
1417                       261493                       208106
1418                       243521                       185973
1419                       262288                       214317
1420                       249522                       181278
1421                       245037                       201210
1422                       248566                       208605
1423                       231864                       197250
1424                       223384                       188594
1425                       249029                       218716
1426                       251358                       216694
1427                       280465                       233875
1428                       304968                       256582
1429                       354359                       306200
1430                       346631                       278911
1431                       346716                       266450
1432                       330913                       287711
1433                       404480                       323081
1434                       356188                       296940
1435                       389228                       322140
1436                       387862                       322563
1437                       360825                       300934
1438                       374369                       316975
1439                       333132                       257688
1440                       340355                       246377
1441                       382750                       278785
1442                       298957                       239070
1443                       312568                       252130
1444                       278150                       216859
1445                       283375                       223370
1446                       323762                       258642
1447                       339800                       271636
1448                       289988                       228539
1449                       309389                       253337
1450                       289359                       240951
1451                       317965                       249204
1452                       323359                       243186
1453                       313450                       249848
1454                       272986                       211934
1455                       285499                       221731
1456                       249496                       178683
1457                       737426                       690117
1458                       771939                       709816
1459                       758446                       706708
1460                       588522                       547612
1461                       555230                       513648
1462                       626738                       581899
1463                       707397                       658543
1464                       781895                       645890
1465                       780894                       697293
1466                       775889                       693913
1467                       742234                       661215
1468                       832068                       721416
1469                       800322                       716568
1470                       682854                       589490
1471                       751988                       672883
1472                       740533                       638404
1473                       754549                       688674
1474                       740291                       678533
1475                       739216                       682204
1476                       733613                       677997
1477                       777022                       722078
1478                       794064                       742930
1479                       883032                       815706
1480                       967206                       900291
1481                      1216977                      1148604
1482                      1312116                      1208641
1483                      1252367                      1129604
1484                      1120373                      1052771
1485                      1406275                      1285656
1486                      1188680                      1099882
1487                      1253507                      1154092
1488                      1328704                      1206950
1489                      1244428                      1156872
1490                      1210170                      1120295
1491                      1088404                       954845
1492                      1035648                       902142
1493                      1115911                       984679
1494                      1001739                       920108
1495                       954230                       869575
1496                       851860                       769079
1497                       869687                       782210
1498                       936644                       843930
1499                      1017429                       909308
1500                       894348                       810061
1501                       940038                       860636
1502                       929791                       864046
1503                       965974                       869917
1504                      1006703                       896750
1505                      1004628                       903841
1506                       868987                       784230
1507                       881104                       796191
1508                       764352                       669971
1509                        39603                        39603
1510                        45912                        45912
1511                        35320                        35320
1512                        38141                        38141
1513                        34726                        34726
1514                        40781                        40777
1515                        47080                        46868
1516                        33771                        33362
1517                        65281                        65081
1518                        43066                        42475
1519                        37551                        36298
1520                        43108                        43001
1521                        40650                        40432
1522                        28024                        27515
1523                        49249                        48165
1524                        52903                        52023
1525                        48439                        48350
1526                        54651                        54651
1527                        58876                        58876
1528                        65209                        65209
1529                        52404                        52401
1530                        66056                        66056
1531                        73523                        73518
1532                        62452                        62435
1533                       148840                       148812
1534                       176819                       176637
1535                       152474                       152425
1536                       108757                       108757
1537                       162094                       162094
1538                       110774                       110774
1539                        97961                        97961
1540                       137205                       137205
1541                       131916                       131905
1542                        71634                        71254
1543                        60372                        60355
1544                        56276                        56259
1545                        59938                        59937
1546                        89722                        89700
1547                        54403                        54289
1548                        37964                        37036
1549                        48050                        47856
1550                        48433                        48391
1551                        50909                        50607
1552                        42880                        42880
1553                        43743                        43736
1554                        53466                        53304
1555                        50853                        50015
1556                        46670                        46577
1557                        53548                        53543
1558                        64771                        64771
1559                        44864                        44864
1560                        52490                        52490
1561                        73781                        40642
1562                        53006                        36258
1563                        67993                        31407
1564                        42163                        24099
1565                        51277                        21537
1566                        60803                        27115
1567                        50391                        27743
1568                        49480                        31370
1569                        72567                        33748
1570                        47882                        29737
1571                        49235                        32916
1572                        66807                        31968
1573                        74081                        37192
1574                        46213                        29150
1575                        76242                        36956
1576                        56838                        37654
1577                        86222                        43015
1578                        63274                        44695
1579                        63317                        47517
1580                        64383                        45260
1581                        81233                        47243
1582                        60260                        43473
1583                        60386                        44879
1584                        79610                        42477
1585                        58395                        41732
1586                        95424                        58523
1587                        80757                        62187
1588                        92609                        55420
1589                        75174                        56502
1590                        86061                        48220
1591                        55906                        38303
1592                        76278                        37158
1593                        54408                        38066
1594                        51717                        35990
1595                        95445                        40398
1596                        56810                        38168
1597                        54828                        35505
1598                        71780                        31887
1599                        63601                        34092
1600                        47399                        29216
1601                        73046                        37453
1602                        49846                        34513
1603                        49331                        33997
1604                        61958                        31708
1605                        53147                        36700
1606                        44375                        20734
1607                        42392                        18229
1608                        80265                        26855
1609                        48865                        22592
1610                        43569                        18915
1611                        43410                        18762
1612                        52719                        19934
1613                        89293                        82776
1614                        98303                        88588
1615                        94650                        87738
1616                        75010                        67406
1617                        67938                        62262
1618                        80593                        74840
1619                        85346                        78170
1620                        92267                        76143
1621                        90087                        78873
1622                        94917                        84289
1623                        92671                        83102
1624                       103676                        83282
1625                       104611                        91636
1626                        97946                        82670
1627                        94858                        84698
1628                        91927                        78977
1629                        97929                        89096
1630                        95910                        86294
1631                        90761                        82479
1632                        86244                        78393
1633                        95410                        88554
1634                        93960                        85345
1635                       103354                        92025
1636                       115528                       103255
1637                       121262                       109196
1638                       136667                       122253
1639                       127827                       111168
1640                       128855                       117745
1641                       150847                       130970
1642                       132949                       116932
1643                       146362                       130734
1644                       146345                       129471
1645                       129556                       116807
1646                       134166                       118816
1647                       124874                       106617
1648                       117694                       100776
1649                       128778                       110321
1650                       108780                        95744
1651                       108167                        94087
1652                       100707                        88306
1653                        98707                        85472
1654                       116220                       102101
1655                       121769                       106814
1656                       107527                        93745
1657                       117032                       105514
1658                       107118                        97737
1659                       113793                       100108
1660                       119326                       104366
1661                       126670                       110991
1662                       105387                        93251
1663                       101558                        88980
1664                        86648                        72830
1665                       100892                        70749
1666                        97475                        72170
1667                       110083                        92028
1668                        60258                        60256
1669                        57663                        57663
1670                        64644                        63089
1671                        63652                        63178
1672                        62686                        62667
1673                        62364                        62364
1674                        64616                        64585
1675                        68191                        68129
1676                        71959                        71956
1677                        82686                        82686
1678                        60035                        59972
1679                        72212                        64530
1680                       184334                        74018
1681                       153645                        93116
1682                        84814                        84715
1683                        77456                        75885
1684                       134722                        95992
1685                       124789                        79670
1686                       124509                        80224
1687                       110773                        77011
1688                       115356                        84065
1689                       120165                        84711
1690                       135007                        98977
1691                       106702                        84854
1692                       122109                        99129
1693                       122310                        94240
1694                       122273                        90030
1695                       111991                        81585
1696                       106093                        84441
1697                       101431                        77703
1698                       108782                        77197
1699                       104422                        80245
1700                        94538                        76637
1701                        97564                        44647
1702                        85778                        39456
1703                        82913                        49272
1704                        67462                        43760
1705                        60884                        60875
1706                        67423                        67423
1707                        68487                        68487
1708                        64436                        64436
1709                        67731                        67727
1710                        71352                        71344
1711                        79619                        79619
1712                        82438                        82438
1713                        75561                        75558
1714                        70789                        70789
1715                        66305                        66305
1716                        92499                        92499
1717                        25061                        17512
1718                        26067                        17094
1719                        24469                        15525
1720                        17594                         8740
1721                        16518                         7947
1722                        18248                        12552
1723                        19392                        13712
1724                        34534                        13430
1725                        17836                        12000
1726                        24617                        13587
1727                        23740                        13949
1728                        21716                        14948
1729                        16593                        13301
1730                        25919                        14361
1731                        28427                        19393
1732                        29623                        21081
1733                        32404                        23119
1734                        28656                        20079
1735                        29055                        18578
1736                        31223                        21335
1737                        41787                        26619
1738                        29516                        23664
1739                        26188                        20546
1740                        26652                        23701
1741                        24020                        21786
1742                        41506                        31489
1743                        43528                        31542
1744                        39030                        29950
1745                        43460                        34042
1746                        37523                        28434
1747                        34582                        24083
1748                        58266                        26280
1749                        31812                        24985
1750                        30451                        23420
1751                        52968                        24324
1752                        32543                        22762
1753                        29235                        29007
1754                        27667                        27528
1755                        23850                        23653
1756                        14147                        14035
1757                        17814                        10044
1758                        23563                        17661
1759                        37704                        19742
1760                        24343                        19986
1761                        24832                        19166
1762                        24337                        19783
1763                        26111                        20250
1764                        31870                        20561
1765                        24417                        17600
1766                        19359                        12322
1767                        18068                        12166
1768                        14925                        11265
1769                       305294                       279127
1770                       273909                       255725
1771                       295915                       266175
1772                       258550                       243962
1773                       263490                       248450
1774                       278063                       260080
1775                       287219                       270313
1776                       284193                       266377
1777                       279410                       264897
1778                       252026                       237399
1779                       272685                       257340
1780                       261635                       248700
1781                       235041                       223135
1782                       233798                       221484
1783                       253448                       237139
1784                       292538                       271845
1785                       294901                       276259
1786                       289455                       270143
1787                       287127                       275003
1788                       292736                       277836
1789                       296215                       281136
1790                       291685                       276865
1791                       315859                       292787
1792                       348617                       332848
1793                       310581                       292683
1794                       413266                       396506
1795                       371995                       358088
1796                       375650                       358605
1797                       386476                       375290
1798                       356482                       353410
1799                       337125                       334424
1800                       342974                       338254
1801                       312541                       308422
1802                       349758                       344546
1803                       321412                       311075
1804                       292763                       278731
1805                       279933                       272779
1806                       253095                       246328
1807                       321150                       305407
1808                       294229                       286268
1809                       304302                       293708
1810                       304905                       300231
1811                       271060                       269499
1812                       292808                       291294
1813                       278266                       276280
1814                       233302                       231591
1815                       214140                       212347
1816                       237853                       235274
1817                       201319                       198193
1818                       208775                       206579
1819                       207261                       205300
1820                       178835                       177360
1821                       182057                       181763
1822                       185649                       185479
1823                       159305                       159009
1824                       369224                       363809
1825                       147729                       147268
1826                       151242                       150475
1827                       268719                       258913
1828                       138778                       136936
1829                       130547                       130164
1830                       180363                       178207
1831                       120077                       119843
1832                       217372                       211701
1833                        99750                        99417
1834                       124637                       124613
1835                       140762                       140535
1836                       116633                       116569
1837                        88635                        88369
1838                        73954                        73781
1839                       102046                       101671
1840                        78921                        78822
1841                        71330                        71232
1842                        69771                        69762
1843                        66375                        66240
1844                        61655                        56419
1845                        99286                        88289
1846                        62996                        59732
1847                        66679                        66557
1848                        91722                        89830
1849                       100409                        99951
1850                        90828                        90347
1851                       106764                       106687
1852                       104967                       104758
1853                        94882                        94743
1854                       121652                       121156
1855                        94925                        94891
1856                        94310                        94185
1857                       115500                       114658
1858                        67404                        67361
1859                        73792                        73229
1860                        57634                        57230
1861                        42332                        42292
1862                        58756                        58756
1863                        52975                        52751
1864                        83724                        79396
1865                        74647                        74573
1866                        53934                        51454
1867                        40125                        39000
1868                        59750                        48200
1869                        58282                        40428
1870                        48187                        34402
1871                        72844                        64832
1872                        76560                        61309
1873                        53100                        52597
1874                        46871                        46617
1875                        45930                        45574
1876                        45323                        45121
1877                        41941                        41607
1878                        33965                        33573
1879                        35806                        34671
1880                        41447                        39552
1881                        48800                        46810
1882                        46227                        44926
1883                        49953                        48620
1884                        50755                        48622
1885                        36511                        34301
1886                        35430                        33594
1887                        55341                        52100
1888                        81906                        80146
1889                        84578                        83519
1890                        97525                        97342
1891                       111928                       111602
1892                        83624                        83231
1893                        81636                        81029
1894                        84548                        84232
1895                        87245                        87050
1896                        91423                        90364
1897                        87823                        86456
1898                        89650                        88239
1899                        86923                        86724
1900                        89724                        89158
1901                        89974                        89685
1902                        83375                        82783
1903                        80819                        80543
1904                        77201                        76580
1905                        81190                        80611
1906                        92390                        91891
1907                        75046                        73839
1908                        82674                        81555
1909                        93048                        92655
1910                        93426                        92113
1911                        86016                        85180
1912                        67329                        66273
1913                        68437                        67696
1914                        68301                        68115
1915                        65638                        65493
1916                        68053                        67744
1917                        54365                        53806
1918                        60997                        49618
1919                        73022                        62051
1920                        61014                        41192
1921                        76676                        63206
1922                        60466                        46299
1923                        66316                        50818
1924                        55664                        44041
1925                        40779                        40770
1926                        33996                        33983
1927                        34366                        34366
1928                        26734                        26728
1929                        23240                        23240
1930                        27742                        27736
1931                        30101                        29467
1932                        30659                        29783
1933                        30561                        29677
1934                        28386                        27568
1935                        27557                        27252
1936                        29386                        28741
1937                        30815                        30425
1938                        23906                        23140
1939                        34710                        34070
1940                        44223                        43508
1941                        48356                        48304
1942                        45767                        45767
1943                        46960                        46960
1944                        44672                        44672
1945                        44376                        44376
1946                        43713                        43713
1947                        50052                        50052
1948                        53882                        53878
1949                        50901                        50741
1950                        59457                        58906
1951                        55432                        55427
1952                        58619                        58619
1953                        62287                        62287
1954                        62583                        61701
1955                        58557                        53588
1956                        59554                        56305
1957                        56076                        52613
1958                        64087                        57580
1959                        53432                        51896
1960                        50109                        49596
1961                        53735                        53008
1962                        46258                        44511
1963                        46780                        45789
1964                        43300                        42423
1965                        48873                        48818
1966                        44199                        44199
1967                        51568                        51568
1968                        47069                        47040
1969                        43387                        43046
1970                        47575                        41738
1971                        49271                        42969
1972                        47142                        40189
1973                        56189                        45878
1974                        47657                        36799
1975                        44915                        36161
1976                        36246                        31778
1977                        33496                        32877
1978                        28671                        27888
1979                        27033                        27030
1980                        22566                        22566
1981                        19308                        19308
1982                        25520                        25520
1983                        23210                        23210
1984                        24947                        24874
1985                        21707                        20935
1986                        19662                        19232
1987                        21570                        21570
1988                        26316                        26313
1989                        24789                        24789
1990                        19581                        19578
1991                        23770                        23770
1992                        28194                        28182
1993                        33050                        33001
1994                        30353                        29963
1995                        29296                        27838
1996                        29038                        29038
1997                        30114                        30114
1998                        28450                        28450
1999                        31073                        31073
2000                        33820                        33820
2001                        34430                        34430
2002                        39017                        39017
2003                        37249                        37249
2004                        36599                        36599
2005                        38424                        38417
2006                        38863                        38373
2007                        34881                        33050
2008                        35973                        34793
2009                        33804                        32382
2010                        36773                        34415
2011                        32581                        32327
2012                        27733                        27733
2013                        31213                        30624
2014                        30037                        28275
2015                        28282                        27849
2016                        24096                        22962
2017                        28189                        28170
2018                        28335                        27986
2019                        31548                        31448
2020                        26995                        26966
2021                        26074                        25883
2022                        28674                        26632
2023                        28555                        25982
2024                        30472                        27118
2025                        33310                        29161
2026                        29457                        25953
2027                        29842                        26556
2028                        23333                        21583
2029                        42090                        42085
2030                        45153                        45138
2031                        43254                        43251
2032                        38644                        38639
2033                        36592                        36575
2034                        39405                        39405
2035                        39707                        39707
2036                        42153                        42153
2037                        38516                        38516
2038                        42041                        42041
2039                        43964                        43964
2040                        45099                        45099
2041                        35122                        35122
2042                        39676                        39676
2043                        41186                        41186
2044                        47535                        47531
2045                        49976                        49967
2046                        48059                        48059
2047                        46984                        46984
2048                        49368                        49356
2049                        49058                        49041
2050                        48751                        48751
2051                        51584                        51550
2052                        54572                        54572
2053                        57129                        56977
2054                        67336                        67336
2055                        56932                        56932
2056                        55749                        55744
2057                        58386                        58386
2058                        53696                        53696
2059                        45785                        45776
2060                        48451                        48451
2061                        43325                        43325
2062                        44760                        44760
2063                        41486                        41282
2064                        46749                        46749
2065                        43418                        43393
2066                        41669                        41626
2067                        54074                        54049
2068                        62924                        62885
2069                        83611                        83611
2070                        48082                        48082
2071                        50003                        50003
2072                        39018                        39018
2073                        39235                        39235
2074                        41745                        41745
2075                        40435                        40435
2076                        39739                        39739
2077                        38819                        38819
2078                        39321                        39321
2079                        43730                        43723
2080                        39600                        39600
2081                       148005                       116383
2082                       145560                       111019
2083                       172045                       128053
2084                       142269                       114044
2085                        80863                        64858
2086                        73351                        59946
2087                        71573                        63091
2088                        65664                        58719
2089                        59472                        53567
2090                        51592                        48470
2091                        51370                        47914
2092                        37541                        35491
2093                        35913                        31952
2094                        36841                        34449
2095                        42657                        39561
2096                        51402                        46655
2097                        46041                        41719
2098                        47145                        45500
2099                        35146                        33583
2100                        39152                        38649
2101                        43037                        41132
2102                        44135                        42995
2103                        37884                        36718
2104                        45181                        41231
2105                        41887                        38418
2106                        52307                        46817
2107                        42519                        37941
2108                        45654                        41076
2109                        47696                        43523
2110                        50436                        46212
2111                        43436                        39195
2112                        34410                        29727
2113                        32986                        29400
2114                        46805                        43191
2115                        54378                        50153
2116                        43743                        37689
2117                        47833                        25454
2118                        50276                        26306
2119                        42526                        25464
2120                        45428                        25799
2121                        44551                        38488
2122                        43196                        37920
2123                        47822                        42720
2124                        38271                        32923
2125                        47811                        42235
2126                        39267                        33643
2127                        42168                        36418
2128                        41626                        36623
2129                        35060                        30091
2130                        32683                        27845
2131                        35484                        31808
2132                        36853                        30884
2133                        59699                        59094
2134                        65864                        65038
2135                        69908                        69023
2136                        55914                        55172
2137                        54694                        53993
2138                        56733                        55909
2139                        64629                        63811
2140                        78128                        77365
2141                        59794                        58929
2142                        69433                        68582
2143                        75526                        74725
2144                        72798                        72031
2145                        47921                        47092
2146                        65438                        64582
2147                        69656                        68665
2148                        76905                        76151
2149                        77769                        76963
2150                        79707                        78843
2151                        73082                        72131
2152                        80219                        79372
2153                        75267                        74158
2154                        77321                        76597
2155                        79428                        78534
2156                        82475                        81674
2157                        89795                        88478
2158                       101029                       100147
2159                        85243                        84459
2160                        86014                        84970
2161                        80432                        79360
2162                        77328                        76253
2163                        76087                        75078
2164                        77390                        76306
2165                        72595                        71643
2166                        74447                        73411
2167                        65328                        64043
2168                        79763                        78504
2169                        74093                        72532
2170                        75081                        73790
2171                        90075                        88604
2172                       110684                       109753
2173                       106219                       105385
2174                        94630                        93761
2175                        96460                        95540
2176                        67758                        66973
2177                        80955                        80089
2178                        78180                        77307
2179                        74765                        74004
2180                        65345                        64393
2181                        83161                        82293
2182                        78810                        78242
2183                        86365                        85707
2184                        82484                        82034
2185                       163283                       162931
2186                       170626                       170458
2187                       173617                       173538
2188                       380464                       380298
2189                       141505                       141430
2190                       149575                       149358
2191                       274024                       273223
2192                       173012                       172749
2193                       143119                       143027
2194                       179826                       179544
2195                       141312                       141267
2196                       236162                       234219
2197                       116491                       115647
2198                       146172                       146143
2199                       178390                       178375
2200                       164191                       164176
2201                       124196                       124129
2202                       112137                       112127
2203                       138531                       138486
2204                       110369                       110361
2205                       120360                       120360
2206                       115293                       115289
2207                        92421                        92386
2208                        90163                        90074
2209                       119004                       117907
2210                       101373                        95899
2211                        84518                        84438
2212                       110589                       110537
2213                       119759                       119724
2214                        78782                        78761
2215                        99890                        99789
2216                       109669                       109172
2217                        87880                        86751
2218                       123760                       111289
2219                        95493                        94996
2220                        89268                        89235
2221                       103707                       103533
2222                        65951                        65784
2223                        69588                        69293
2224                        75187                        74523
2225                        82910                        82899
2226                        79079                        79058
2227                        69966                        69942
2228                       110718                       110637
2229                        82809                        82780
2230                        58247                        57771
2231                        67361                        65240
2232                       143117                       142049
2233                        61449                        61054
2234                        68251                        67520
2235                        86855                        81221
2236                       111555                        96695
2237                        57250                        48182
2238                        49488                        44629
2239                        53690                        43816
2240                        46317                        40092
2241                        42801                        33357
2242                        43346                        34239
2243                        35144                        29409
2244                        39719                        34386
2245                        58741                        44763
2246                        52519                        43925
2247                        49369                        40996
2248                        61148                        43009
2249                        58650                        38750
2250                        51329                        42224
2251                        71477                        49597
2252                        69967                        55240
2253                        86518                        68115
2254                        75881                        70667
2255                        89643                        84625
2256                        84760                        78820
2257                        87081                        75517
2258                        77551                        72041
2259                        85645                        80982
2260                        77507                        67097
2261                        79172                        73162
2262                        89264                        78695
2263                        94248                        89211
2264                        96387                        84822
2265                        88543                        82279
2266                        91281                        80178
2267                        76250                        70488
2268                        81735                        69674
2269                        82454                        76994
2270                        69855                        64229
2271                        86801                        70271
2272                        68331                        63208
2273                        78052                        72169
2274                        70520                        57991
2275                        61467                        53591
2276                        71512                        64967
2277                        83672                        71611
2278                        63962                        58791
2279                        62840                        58373
2280                        68425                        57885
2281                        70004                        64068
2282                        60250                        44927
2283                        59544                        44771
2284                        79707                        51793
2285                        64164                        45690
2286                        56976                        35312
2287                        63368                        44865
2288                        68870                        52556
2289                       852656                       663310
2290                       759069                       555357
2291                       671313                       554564
2292                       639039                       496733
2293                       601012                       505844
2294                       668922                       550979
2295                       767186                       600933
2296                       648983                       485540
2297                       660163                       478366
2298                       583832                       475267
2299                       572923                       489000
2300                       624296                       504922
2301                       691700                       517822
2302                       608982                       480873
2303                       600987                       478669
2304                       728228                       533041
2305                       723134                       571900
2306                       612042                       535065
2307                       599226                       513745
2308                       626262                       536381
2309                       616583                       529408
2310                       586106                       492931
2311                       640741                       511309
2312                       766442                       589127
2313                       668330                       547333
2314                       857319                       754239
2315                       869763                       678138
2316                       857459                       683943
2317                       874885                       716742
2318                       778329                       662253
2319                       678141                       530629
2320                       636647                       545155
2321                       616788                       528432
2322                       685755                       533598
2323                       713924                       546260
2324                       619799                       519975
2325                       638185                       538971
2326                       590480                       536035
2327                       730848                       670638
2328                       696228                       633029
2329                       665688                       540561
2330                       653367                       522678
2331                       713532                       537992
2332                       649550                       518799
2333                       640697                       529675
2334                       642455                       540024
2335                       573512                       518540
2336                       646594                       519848
2337                       569013                       476250
2338                       554739                       497106
2339                       630813                       533599
2340                       570683                       442218
2341                       689386                       425319
2342                       535050                       399344
2343                       598735                       326312
2344                       421482                       275520
2345                       532751                       280569
2346                       569248                       319822
2347                       472051                       313846
2348                       453680                       309653
2349                       664707                       353189
2350                       510769                       329672
2351                       545844                       355763
2352                       755016                       356708
2353                       732123                       340718
2354                       494766                       307494
2355                       804545                       382667
2356                       608183                       397112
2357                       881614                       472040
2358                       625962                       489650
2359                       644139                       520131
2360                       665007                       529014
2361                       795955                       525550
2362                       624082                       502278
2363                       624198                       515494
2364                       710304                       471730
2365                       629756                       501415
2366                       892289                       621426
2367                       780701                       648106
2368                       891883                       619129
2369                       749424                       611441
2370                       819542                       551433
2371                       602974                       473339
2372                       747294                       457339
2373                       599906                       470993
2374                       559134                       437056
2375                       880125                       496137
2376                       596410                       461693
2377                       604810                       455796
2378                       664121                       371569
2379                       603912                       387484
2380                       526377                       379305
2381                       722405                       447949
2382                       499505                       375573
2383                       528578                       413604
2384                       650176                       396513
2385                       564496                       437764
2386                       496957                       295183
2387                       457962                       272767
2388                       776257                       359145
2389                       502397                       281141
2390                       484236                       258542
2391                       475337                       260164
2392                       568731                       287820
2393                        22040                        21900
2394                        24499                        24499
2395                        22274                        22269
2396                        39461                        38947
2397                        15204                        15204
2398                        14000                        14000
2399                        26395                        26395
2400                        16116                        16116
2401                        13659                        13659
2402                        14771                        14721
2403                        11299                        11299
2404                        18479                        18479
2405                        10055                        10055
2406                        12539                        12539
2407                        12115                        12115
2408                        12476                        12476
2409                        12820                        12820
2410                         9430                         9428
2411                        11940                        11869
2412                         9950                         9950
2413                        11762                        11762
2414                        11955                        11955
2415                        12061                        12061
2416                        11475                        11475
2417                        13755                        13595
2418                        11593                        11245
2419                         9945                         9945
2420                        12770                        12770
2421                        12621                        12621
2422                         9183                         9183
2423                        12797                        12797
2424                        14362                        14362
2425                        12711                        12711
2426                        14372                        12193
2427                        12312                        12127
2428                        12544                        12544
2429                        14558                        14558
2430                        10499                        10499
2431                        10175                        10091
2432                         9696                         9376
2433                        10906                        10906
2434                         8879                         8879
2435                         7518                         7514
2436                        13926                        13805
2437                        12095                        12095
2438                         8453                         8320
2439                         5326                         5135
2440                        12313                        12277
2441                         8010                         8010
2442                         8489                         7986
2443                         8595                         6899
2444                        10003                         9556
2445                        76409                        58430
2446                        71186                        59160
2447                        76858                        55878
2448                        61812                        53742
2449                        64704                        57854
2450                        67846                        60331
2451                        68860                        61783
2452                        64198                        59269
2453                        68464                        64373
2454                        61819                        56579
2455                        55607                        51312
2456                        55708                        52275
2457                        49922                        46870
2458                        42643                        40596
2459                        49957                        47580
2460                        57626                        55795
2461                        58384                        58293
2462                        55562                        55153
2463                        56623                        56607
2464                        59346                        59339
2465                        60178                        60174
2466                        61459                        61457
2467                        58136                        58136
2468                        63652                        63652
2469                        56652                        56426
2470                        69956                        69314
2471                        69411                        69372
2472                        74925                        74925
2473                        73636                        73588
2474                        63211                        63207
2475                        61137                        61113
2476                        62241                        62233
2477                        52815                        52815
2478                        59623                        59621
2479                        47810                        47810
2480                        48897                        48895
2481                        45328                        45323
2482                        38323                        38323
2483                        46878                        46762
2484                        46843                        46687
2485                        47591                        47514
2486                        50344                        50191
2487                        41664                        41664
2488                        46026                        46020
2489                        43670                        43661
2490                        47525                        47494
2491                        41883                        41881
2492                        49768                        49768
2493                        46376                        46376
2494                        41019                        41015
2495                        44512                        44510
2496                        38412                        38401
2497                        17941                        17941
2498                        16474                        16474
2499                        16455                        16455
2500                        15306                        15306
2501                        13839                        13839
2502                        15905                        15905
2503                        16556                        16365
2504                        17113                        16691
2505                        17722                        17375
2506                        17569                        16893
2507                        19729                        19365
2508                        16399                        15861
2509                        17417                        16884
2510                        10110                         9981
2511                         8941                         8492
2512                        11436                        10961
2513                        10081                        10081
2514                         9064                         9064
2515                        11661                        11661
2516                        11261                        11261
2517                        10860                        10860
2518                        13396                        13396
2519                        17193                        17193
2520                        23357                        23357
2521                        28610                        28512
2522                        29063                        28846
2523                        29972                        29941
2524                        24061                        24061
2525                        34559                        34559
2526                        27287                        27287
2527                        29065                        29065
2528                        26416                        26416
2529                        26693                        26524
2530                        32893                        32562
2531                        25737                        25406
2532                        24599                        24364
2533                        27146                        27009
2534                        24171                        23945
2535                        24602                        24340
2536                        22498                        22377
2537                        24223                        24223
2538                        19043                        19021
2539                        21556                        21318
2540                        24331                        24278
2541                        20081                        19817
2542                        18241                        18119
2543                        24083                        23658
2544                        25845                        25793
2545                        21145                        20725
2546                        14818                        14818
2547                        19442                        19442
2548                        17715                        17715
2549                        94152                        55851
2550                        68729                        50716
2551                        82354                        42015
2552                        51757                        33252
2553                        75625                        36786
2554                        77722                        46934
2555                        65219                        43524
2556                        59451                        40755
2557                        90340                        44449
2558                        72992                        35990
2559                        90094                        49373
2560                       135835                        47783
2561                       137297                        52595
2562                        82386                        42717
2563                       141686                        50247
2564                        89641                        50111
2565                       136435                        60131
2566                        82700                        64691
2567                        82412                        66986
2568                        93500                        75599
2569                       111094                        75694
2570                        83660                        68312
2571                        83483                        67480
2572                       100747                        64831
2573                        84600                        68163
2574                       128488                        91543
2575                       112201                        94295
2576                       116950                        80513
2577                       100710                        82324
2578                       101727                        65865
2579                        73643                        57880
2580                        97550                        58347
2581                        74649                        58506
2582                        68871                        53036
2583                       118179                        62417
2584                        81182                        60977
2585                        78191                        56279
2586                        89504                        46251
2587                        85296                        51105
2588                        66588                        45156
2589                        96616                        55623
2590                        64027                        46496
2591                        73768                        55748
2592                        87472                        50763
2593                        78737                        62199
2594                        67663                        34123
2595                        59249                        25517
2596                       116945                        50531
2597                        68895                        30325
2598                        63067                        25006
2599                        56919                        19605
2600                        75992                        33448
2601                      6288852                      4850404
2602                      5842744                      4618390
2603                      6364280                      4964462
2604                      6302263                      5005077
2605                      4789009                      3901953
2606                      5347836                      4178583
2607                      6174346                      4854619
2608                      5151514                      4058501
2609                      5268565                      3966597
2610                      4957516                      3918658
2611                      4910239                      3930198
2612                      5447001                      4153478
2613                      4905189                      3664891
2614                      4417407                      3476493
2615                      5188361                      3938275
2616                      5363751                      4072662
2617                      5581833                      4363708
2618                      5054348                      4316352
2619                      4956010                      4318011
2620                      5114912                      4342839
2621                      5310327                      4391462
2622                      5039517                      4322985
2623                      5429599                      4627252
2624                      5821533                      4757799
2625                      5891860                      5067198
2626                      6743615                      5803954
2627                      6557305                      5690216
2628                      6464120                      5517910
2629                      6736304                      5893642
2630                      6293217                      5304563
2631                      5713003                      4967232
2632                      5930474                      5094263
2633                      5444854                      4747545
2634                      5818348                      4991626
2635                      5783174                      4647155
2636                      5303307                      4584203
2637                      5545447                      4696225
2638                      5234561                      4400469
2639                      5162693                      4477300
2640                      5105697                      4487887
2641                      5089974                      4275071
2642                      4916591                      4287622
2643                      5272967                      4583727
2644                      4908091                      4129139
2645                      5016747                      4336247
2646                      4756763                      4096226
2647                      4709853                      4022475
2648                      5384428                      4216452
2649                      4800193                      3978637
2650                      4652070                      3873041
2651                      4517384                      3783261
2652                      4498940                      3585322
2653                      1410682                       838268
2654                      1274757                       843691
2655                      1370014                       851507
2656                      1945832                      1360761
2657                       936711                       688674
2658                      1226468                       730580
2659                      1792438                      1080986
2660                      1114328                       770544
2661                      1139428                       717110
2662                      1246074                       823728
2663                      1119504                       689894
2664                      1354079                       947889
2665                       968402                       630337
2666                       975942                       669129
2667                      1093844                       751408
2668                      1162462                       733844
2669                      1006861                       696240
2670                       864029                       624783
2671                       874951                       709163
2672                       926274                       685993
2673                       958695                       667604
2674                       897636                       643461
2675                       911221                       645013
2676                      1008593                       665158
2677                      1019569                       731844
2678                       959673                       767183
2679                       900453                       719728
2680                       977615                       807806
2681                       991776                       776961
2682                       952728                       683696
2683                       815979                       665542
2684                       775857                       678849
2685                       789666                       608751
2686                       897528                       678317
2687                       799142                       611907
2688                       748955                       614557
2689                       849213                       608287
2690                       676640                       469625
2691                       682108                       544939
2692                       639278                       508577
2693                       591547                       515039
2694                       622778                       535269
2695                       623079                       524273
2696                       686343                       590706
2697                       764384                       587463
2698                       611582                       542973
2699                       705601                       579413
2700                       877588                       705334
2701                       662668                       521878
2702                       709209                       527359
2703                       709812                       598705
2704                       839639                       688813
2705                       167414                       123158
2706                       139645                        90393
2707                        94574                        83053
2708                        69838                        68234
2709                        68483                        67265
2710                        77857                        74953
2711                        80955                        77112
2712                        80411                        79009
2713                        76855                        75700
2714                        73819                        72718
2715                        78483                        77611
2716                        80879                        79842
2717                        74504                        72761
2718                        69858                        68313
2719                        89869                        78780
2720                       131259                        82933
2721                       103086                        91173
2722                        79793                        78731
2723                        91202                        87927
2724                       150890                       125837
2725                       134020                       100912
2726                       113968                        95673
2727                       114021                        97555
2728                       133190                       115238
2729                       123188                       107273
2730                       165010                       146199
2731                       149613                       130392
2732                       175172                       148133
2733                       168707                       126509
2734                       138124                       103719
2735                       110955                        78424
2736                        99448                        82335
2737                        96981                        74460
2738                       102870                        79189
2739                       108047                        80712
2740                       114261                        80697
2741                       101991                        76595
2742                        97223                        71587
2743                        98907                        91531
2744                        94573                        88600
2745                        91134                        89233
2746                        89094                        86399
2747                        88192                        85848
2748                        88902                        86801
2749                        88582                        86051
2750                        76807                        73763
2751                        83459                        81116
2752                        85808                        82066
2753                        66836                        65073
2754                        72437                        71564
2755                        80110                        78503
2756                       168014                       165202
2757                       210731                       118884
2758                       190882                       114872
2759                       179311                       112575
2760                       171591                        67807
2761                       154750                        89195
2762                       201556                       128442
2763                       158765                        92309
2764                       161367                        82411
2765                       176421                        94305
2766                       183075                       110435
2767                       188578                        87593
2768                       195267                        95660
2769                       188074                       104368
2770                       183994                       109841
2771                       222837                       139749
2772                       256799                       194086
2773                       202457                       126235
2774                       203169                       132127
2775                       207466                       160465
2776                       242570                       182840
2777                       192927                       131851
2778                       228626                       161932
2779                       187327                       120773
2780                       188319                       108732
2781                       225043                       146618
2782                       328342                       216115
2783                       251715                       199572
2784                       234417                       148946
2785                       232431                       169986
2786                       226206                       112958
2787                       269397                        77155
2788                       267531                        91576
2789                       296862                       126899
2790                       284414                        77088
2791                       282139                        64801
2792                       231030                        71927
2793                       197263                        66462
2794                       189301                        69497
2795                        99269                        62657
2796                       111107                        78825
2797                       110120                        75569
2798                       140294                        73593
2799                        95584                        62105
2800                       122138                        60231
2801                        83445                        55736
2802                       109209                        74366
2803                       171633                        77184
2804                        87653                        54822
2805                       123185                        64717
2806                        89797                        56526
2807                       113323                        54693
2808                        65593                        43675
2809                       146899                       142957
2810                       137281                       133753
2811                       164506                       153477
2812                       159678                       157704
2813                       148713                       146287
2814                       192457                       189673
2815                       155102                       153318
2816                       150653                       149604
2817                       131614                       130683
2818                       163941                       163071
2819                       191620                       190382
2820                       187292                       185599
2821                       192926                       190861
2822                       181742                       180491
2823                       194985                       191239
2824                       168132                       162753
2825                       201546                       198132
2826                       200822                       194473
2827                       223234                       203758
2828                       227904                       219530
2829                       213877                       210316
2830                       201103                       197041
2831                       203162                       194810
2832                       246997                       233727
2833                       232729                       217648
2834                       229202                       214852
2835                       209424                       202616
2836                       211678                       203570
2837                       214115                       207728
2838                       215173                       203788
2839                       206607                       200150
2840                       216402                       211306
2841                       196640                       189850
2842                       207325                       204118
2843                       197920                       194073
2844                       199687                       196063
2845                       189899                       185709
2846                       189334                       186798
2847                       173047                       170235
2848                       182951                       179810
2849                       183581                       180892
2850                       187337                       184423
2851                       194487                       191745
2852                       165166                       162543
2853                       186408                       180042
2854                       175160                       168368
2855                       222601                       217667
2856                       164795                       161204
2857                       239435                       233610
2858                       216531                       213939
2859                       182859                       180461
2860                       151703                       149408
2861                        34131                        33449
2862                        27796                        27464
2863                        53565                        53191
2864                        31509                        31278
2865                        20453                        20442
2866                        24106                        24091
2867                        26056                        25875
2868                        24070                        23559
2869                        23626                        22910
2870                        32028                        30915
2871                        33623                        32414
2872                        37496                        28895
2873                        63440                        55975
2874                        40136                        34566
2875                        33508                        28303
2876                        39834                        38899
2877                        33326                        31600
2878                        33861                        32152
2879                        36296                        34718
2880                        36733                        36021
2881                        35931                        35664
2882                        36950                        36950
2883                        36902                        36365
2884                        39761                        37730
2885                        88320                        87358
2886                        93735                        93645
2887                        88075                        88025
2888                        86206                        86108
2889                        31349                        31095
2890                        59234                        59207
2891                        48278                        47343
2892                        40660                        40607
2893                        54824                        52269
2894                        57805                        57440
2895                        46417                        46258
2896                        39684                        39671
2897                        54540                        53940
2898                        33908                        33663
2899                        40019                        39916
2900                        45033                        44764
2901                        29426                        29352
2902                        43205                        42384
2903                        43027                        42482
2904                        37710                        37217
2905                        42168                        42112
2906                        28107                        28013
2907                        48078                        47556
2908                        34327                        33947
2909                        31509                        29875
2910                        41297                        40338
2911                        40667                        40584
2912                        46530                        46476
2913                        92551                        91482
2914                        77581                        76135
2915                        92391                        90449
2916                        71859                        71378
2917                        66854                        66399
2918                       105976                       105941
2919                        74205                        74205
2920                        73979                        73804
2921                        62709                        62705
2922                        87719                        86923
2923                        97340                        97340
2924                        90214                        90214
2925                        92946                        92946
2926                        97376                        97376
2927                        96394                        96062
2928                       106991                       106091
2929                       126133                       125075
2930                       148438                       146016
2931                       209378                       201034
2932                       220254                       215552
2933                       165788                       165457
2934                       148935                       147430
2935                       141194                       137805
2936                       146586                       142602
2937                       157610                       153175
2938                       148159                       143276
2939                       154263                       151760
2940                       143632                       141651
2941                       154895                       152478
2942                       156775                       155072
2943                       131514                       129466
2944                       148327                       146905
2945                       122877                       122534
2946                       138959                       138863
2947                       136089                       136035
2948                       124238                       123012
2949                       131170                       131036
2950                       117738                       117521
2951                       106393                       106262
2952                       120502                       120389
2953                       114436                       114286
2954                       111590                       111440
2955                       123833                       123551
2956                       103328                       102683
2957                       122278                       120040
2958                       125640                       123660
2959                       136075                       134179
2960                       119047                       118219
2961                       159185                       158806
2962                       141551                       141307
2963                       127360                       127178
2964                        91849                        91580
2965                        37361                        35701
2966                        31888                        29697
2967                        25053                        23316
2968                        16977                        15683
2969                        21661                        21641
2970                        24940                        24940
2971                        28873                        28873
2972                        23613                        23400
2973                        13875                        13875
2974                        58521                        58521
2975                        68051                        68051
2976                        65113                        65113
2977                        68176                        68176
2978                        67737                        67732
2979                        50144                        49338
2980                        41089                        39987
2981                        24524                        24296
2982                        47650                        46025
2983                        47493                        46013
2984                        38774                        37629
2985                        27930                        26110
2986                        41589                        40894
2987                        38987                        34597
2988                        68608                        66178
2989                        94164                        89912
2990                        93373                        88473
2991                        84649                        81949
2992                        87514                        84829
2993                        97870                        95730
2994                        92813                        90283
2995                        63996                        63441
2996                        93614                        92304
2997                        90144                        90144
2998                       101271                       101271
2999                        98639                        98639
3000                        98706                        98706
3001                       100546                       100546
3002                        94989                        94766
3003                        81594                        81543
3004                        83262                        83262
3005                        76855                        76855
3006                        84758                        84758
3007                        79206                        79197
3008                        73642                        72862
3009                        72341                        69018
3010                        75569                        73329
3011                        99215                        97444
3012                        80673                        79715
3013                        92562                        92435
3014                        80938                        80938
3015                        80759                        80759
3016                        71824                        71824
3017                      1543244                      1405420
3018                      1482119                      1313839
3019                      1653880                      1451476
3020                      1610488                      1553052
3021                      1282556                      1202939
3022                      1251188                      1161050
3023                      1040994                       952497
3024                       829275                       763935
3025                       734908                       686375
3026                      1289999                      1201529
3027                      1533380                      1423671
3028                      1481099                      1379624
3029                      1507257                      1420424
3030                      1675327                      1583962
3031                      1535468                      1434870
3032                      1671422                      1576950
3033                      1892992                      1819642
3034                      2001072                      1924480
3035                      1778186                      1679257
3036                      1580995                      1476928
3037                      1741286                      1616257
3038                      1710965                      1581211
3039                      1634174                      1526434
3040                      1688132                      1563979
3041                      1912392                      1771310
3042                      1882796                      1722082
3043                      1778214                      1641401
3044                      1754229                      1622057
3045                      1709717                      1571460
3046                      1938636                      1739148
3047                      1739179                      1546212
3048                      1754547                      1594507
3049                      1499923                      1325206
3050                      2140204                      1606312
3051                      1924049                      1421240
3052                      1744793                      1467255
3053                      1769205                      1659338
3054                      1944064                      1740557
3055                      1673304                      1454479
3056                      2207293                      1926354
3057                      2092118                      1883192
3058                      2094020                      1888086
3059                      2234833                      1981931
3060                      2391861                      2091748
3061                      2256054                      2073467
3062                      2555663                      2207055
3063                      3056113                      2693843
3064                      2024180                      1874982
3065                      2285896                      2122673
3066                      1759854                      1579234
3067                      2131754                      1793640
3068                      2301885                      1950429
3069                        61550                        51248
3070                        54653                        44605
3071                        52402                        46293
3072                        59783                        48017
3073                        49867                        44005
3074                        48743                        42722
3075                        45378                        38437
3076                        52448                        45862
3077                        47316                        40259
3078                        52719                        47060
3079                        59418                        48824
3080                        63301                        54704
3081                        62416                        53333
3082                        63932                        55653
3083                        69105                        57456
3084                        69080                        61215
3085                        70717                        62373
3086                        60974                        58688
3087                        65879                        64096
3088                        65678                        60860
3089                        59438                        55636
3090                        54443                        50678
3091                        64304                        57525
3092                        63385                        58481
3093                        70310                        62604
3094                        75235                        64810
3095                        56512                        52291
3096                        59636                        52831
3097                        45826                        40822
3098                        53254                        45859
3099                        51877                        45121
3100                        49856                        45580
3101                        62552                        51589
3102                        65349                        57142
3103                        64335                        52070
3104                        60616                        48775
3105                        57169                        50674
3106                        60978                        48991
3107                        54550                        47756
3108                        50652                        45385
3109                        51414                        45427
3110                        61900                        50890
3111                        49719                        44120
3112                        53739                        43150
3113                        50507                        45927
3114                        52195                        44808
3115                        60211                        42530
3116                        43085                        35670
3117                        53618                        42137
3118                        43493                        37726
3119                        50533                        42015
3120                        41674                        38144
3121                        87253                        81571
3122                        73208                        65278
3123                        96473                        87752
3124                        67168                        64475
3125                        57320                        56502
3126                        58080                        55015
3127                        64298                        63466
3128                        59042                        57804
3129                        54407                        48140
3130                        65256                        55554
3131                        71400                        61522
3132                        71003                        60216
3133                        69709                        58004
3134                        76580                        65666
3135                        87580                        80619
3136                        99814                        97150
3137                        85223                        82377
3138                       100013                        92534
3139                       105729                       102614
3140                       102416                        99833
3141                       115223                       113970
3142                       105615                       104112
3143                       120607                       113683
3144                       139483                       122026
3145                       127546                       118625
3146                       149295                       143295
3147                       120604                       115881
3148                       103647                        99766
3149                       101084                        98097
3150                       101566                        96845
3151                       133791                       129035
3152                       130127                       121786
3153                       114085                       108571
3154                       145940                       137881
3155                       107823                       101941
3156                       101521                        96824
3157                       108694                       101842
3158                       102559                        91081
3159                        79444                        75467
3160                        99573                        95289
3161                        97128                        93973
3162                        88621                        86429
3163                        87830                        85607
3164                        92680                        90778
3165                       103715                        93142
3166                       125171                       106297
3167                       151636                       129791
3168                        93311                        92124
3169                        90661                        88261
3170                       103379                        87560
3171                       122381                        82671
3172                       113925                        80770
3173                       171022                        26985
3174                       112587                        23083
3175                       163274                        21945
3176                       218536                        24194
3177                       104698                        19930
3178                       153899                        23679
3179                       153091                        23980
3180                       143431                        16151
3181                       149323                        11631
3182                       175195                        18786
3183                       149404                        32353
3184                       171435                        21810
3185                       170316                        22841
3186                       151438                        23813
3187                       168419                        30496
3188                       137723                        29123
3189                       128570                        25361
3190                       126954                        27934
3191                       132132                        28706
3192                       140909                        35322
3193                       127786                        27222
3194                       116618                        27837
3195                       119311                        25437
3196                       132003                        25789
3197                       106448                        23189
3198                       150874                        28096
3199                       104204                        24577
3200                       135925                        25144
3201                        72784                        23417
3202                       107780                        19177
3203                        92179                        20884
3204                        95334                        18281
3205                        73747                        14078
3206                       108920                        17362
3207                        63839                        17965
3208                        63022                        19112
3209                        58377                        16056
3210                        71862                        21424
3211                        66924                        13781
3212                        74730                        18832
3213                        73299                        18929
3214                        73399                        19111
3215                        77343                        17632
3216                        77973                        18382
3217                        63989                        17168
3218                        72930                        18359
3219                        89909                        22077
3220                        53550                        16807
3221                        71394                        19634
3222                        75574                        20728
3223                        57217                        17942
3224                        51551                        12613
3225                        56576                        55084
3226                        41403                        38839
3227                        44058                        41891
3228                        81232                        76008
3229                        55358                        53685
3230                        44676                        43074
3231                        36229                        34146
3232                        33976                        32557
3233                        45753                        43903
3234                        48812                        46731
3235                        45421                        43151
3236                        40027                        36597
3237                        41422                        36953
3238                        42089                        41378
3239                        52966                        51334
3240                        60118                        58343
3241                        56573                        55935
3242                        60632                        57070
3243                        48374                        42941
3244                        57414                        53549
3245                        52168                        38683
3246                        46239                        38378
3247                        59311                        46627
3248                        46572                        38847
3249                        48834                        32849
3250                        71026                        62164
3251                        54316                        45986
3252                        55967                        45124
3253                        58052                        49307
3254                        47750                        35846
3255                        61912                        53230
3256                        59762                        48050
3257                        57075                        33941
3258                        45162                        26508
3259                        56828                        48051
3260                        64362                        54682
3261                        39644                        27199
3262                        42182                        31689
3263                        46722                        22994
3264                        45109                        21568
3265                        42455                        22446
3266                        42293                        26468
3267                        46460                        23754
3268                        36160                        22423
3269                        26864                        19801
3270                        35671                        27387
3271                        42525                        30226
3272                        33040                        21260
3273                        38437                        28562
3274                        31098                        23123
3275                        29742                        21493
3276                        33191                        18463
3277                       379827                       374905
3278                       323552                       315925
3279                       285875                       279258
3280                       340356                       333770
3281                       245077                       242624
3282                       220453                       219494
3283                       210000                       209727
3284                       216301                       215425
3285                       209815                       208940
3286                       330230                       323805
3287                       303387                       296851
3288                       326492                       322926
3289                       310297                       301905
3290                       346198                       319927
3291                       461886                       454624
3292                       361978                       350013
3293                       412176                       401417
3294                       377459                       366510
3295                       353847                       351624
3296                       274880                       270626
3297                       287648                       269822
3298                       275103                       253661
3299                       304680                       281848
3300                       310337                       303926
3301                       288800                       267623
3302                       371801                       324925
3303                       320008                       298365
3304                       291091                       272250
3305                       269435                       251773
3306                       299160                       283260
3307                       320630                       301233
3308                       326877                       300180
3309                       360040                       341083
3310                       354629                       331926
3311                       378394                       356219
3312                       379621                       352619
3313                       348102                       318316
3314                       347478                       316405
3315                       291016                       269775
3316                       289056                       270163
3317                       275149                       254808
3318                       193288                       178757
3319                       230798                       213428
3320                       221148                       202051
3321                       169859                       151329
3322                       166555                       150047
3323                       194691                       155053
3324                       159109                       121051
3325                       152089                       128164
3326                       114875                        99603
3327                       137479                       127169
3328                       148481                       144359
3329                       419604                       267985
3330                       346526                       246935
3331                       422601                       303763
3332                       437161                       141280
3333                       223104                        81706
3334                       287224                       164217
3335                       314723                        84341
3336                       256168                        81361
3337                       221228                        76675
3338                       308471                        67816
3339                       371570                        91677
3340                       354730                        85265
3341                       363284                        76213
3342                       360925                        91075
3343                       408207                        87026
3344                       437111                        93898
3345                       505653                        83144
3346                       523670                       131367
3347                       247804                       119820
3348                       328835                       100510
3349                       324912                       151221
3350                       330973                       200378
3351                       356072                       135291
3352                       403121                       148178
3353                       393893                       137891
3354                       366955                       200147
3355                       360828                       146704
3356                       357270                        96130
3357                       377458                        91439
3358                       411094                        83338
3359                       480758                        79916
3360                       487465                        79603
3361                       501314                        71486
3362                       491570                        73293
3363                       389135                       155355
3364                       292155                        89444
3365                       525470                        59673
3366                       491382                       178430
3367                       441382                        39142
3368                       336914                        47124
3369                       495600                        46784
3370                       371224                        50280
3371                       264162                        47418
3372                       576746                        43137
3373                       453361                        43380
3374                       492510                        43324
3375                       558004                        50218
3376                       427062                        45613
3377                       749722                        43669
3378                       692555                        43027
3379                       544300                        44732
3380                       644701                        33034
3381                       163252                       161041
3382                       119554                       117398
3383                       148271                       145975
3384                       192476                       188723
3385                       123444                       121147
3386                       115621                       114230
3387                       107993                       107106
3388                        98886                        97806
3389                        72005                        70937
3390                        83193                        80684
3391                       114930                       112345
3392                       110890                       104612
3393                       126035                       118414
3394                       126240                       124696
3395                       152569                       147793
3396                       148242                       143847
3397                       138509                       138186
3398                       165115                       164229
3399                       128531                       127062
3400                       170766                       168989
3401                       144426                       124980
3402                       132333                       122543
3403                       140062                       111539
3404                       118071                       100213
3405                       113606                        82670
3406                       129536                       113573
3407                       120188                       101180
3408                       157872                       130698
3409                       175117                       160648
3410                       136769                        94468
3411                       137538                       122657
3412                       109063                        94756
3413                       139233                        86916
3414                       139628                        91310
3415                       115665                        97921
3416                       118010                       102881
3417                       103111                        66169
3418                       111069                        92085
3419                       107222                        65916
3420                       113161                        55446
3421                       113566                        58374
3422                       108880                        66514
3423                       121099                        47041
3424                        86049                        49708
3425                        66465                        47260
3426                        82527                        60254
3427                       114505                        58664
3428                        77229                        49336
3429                        88415                        58403
3430                        85546                        70769
3431                        69451                        57082
3432                        89228                        51669
3433                        52911                        47454
3434                        46309                        42335
3435                        64255                        58704
3436                        64584                        61981
3437                        38159                        34495
3438                        41109                        39611
3439                        51449                        50552
3440                        36487                        34753
3441                        21613                        17160
3442                        31814                        26018
3443                        42895                        38574
3444                        44009                        39396
3445                        48647                        43757
3446                        55079                        47569
3447                        50920                        44436
3448                        51709                        46525
3449                        52174                        47211
3450                        61296                        54347
3451                        45874                        39617
3452                        60321                        49619
3453                        51042                        42210
3454                        49896                        44480
3455                        54299                        40487
3456                        50498                        38583
3457                        39956                        25890
3458                        57234                        42382
3459                        61912                        49679
3460                        64097                        49222
3461                        68455                        62658
3462                        84129                        76848
3463                        71218                        65725
3464                        60368                        50741
3465                        76225                        67998
3466                        63738                        56653
3467                        55848                        49040
3468                        63442                        55324
3469                        65308                        58861
3470                        53825                        47308
3471                        53593                        47055
3472                        63351                        53893
3473                        61818                        55984
3474                        53137                        43482
3475                        57889                        54012
3476                        53802                        49890
3477                        41429                        36166
3478                        39110                        28771
3479                        37747                        23629
3480                        38114                        29860
3481                        46228                        38644
3482                        56134                        52364
3483                        42516                        38447
3484                        51019                        42962
3485                      1105024                       789983
3486                       851394                       629888
3487                      1068900                       767092
3488                      1230819                       854172
3489                       810334                       590905
3490                       869893                       583553
3491                       863463                       598774
3492                       785706                       520297
3493                       774581                       433158
3494                       879979                       508418
3495                       879750                       593425
3496                       912363                       571073
3497                       915775                       591585
3498                       922535                       642866
3499                      1031223                       741802
3500                      1017577                       787725
3501                       981907                       779093
3502                      1072286                       841777
3503                       994337                       756136
3504                      1141139                       875058
3505                      1049284                       767194
3506                       982661                       742995
3507                      1080885                       743699
3508                      1105673                       754051
3509                      1019444                       686497
3510                      1297476                       930190
3511                      1048239                       778316
3512                      1148604                       804836
3513                      1044686                       858071
3514                      1085393                       776264
3515                      1109373                       868963
3516                      1068760                       777740
3517                      1125966                       774859
3518                      1138586                       768004
3519                       979800                       746942
3520                      1000029                       759839
3521                       882638                       603191
3522                       874382                       628086
3523                       793166                       494820
3524                       875802                       541169
3525                       839789                       549845
3526                       788214                       531244
3527                       841671                       522649
3528                       760404                       512998
3529                       635484                       453590
3530                       747005                       499433
3531                       863744                       516542
3532                       650045                       443401
3533                       736658                       513810
3534                       748272                       554459
3535                       700097                       488806
3536                       717093                       438280
3537                        58267                        55674
3538                        51402                        50218
3539                        59574                        57170
3540                        51655                        50780
3541                        48172                        47431
3542                        71344                        70657
3543                        66202                        65223
3544                        52113                        51327
3545                        57337                        56959
3546                        60396                        60146
3547                        66008                        65297
3548                        64374                        63388
3549                        65591                        64689
3550                        64380                        63531
3551                        71325                        69129
3552                        61107                        59029
3553                       120787                       119477
3554                       108101                       102789
3555                        97001                        85856
3556                       107306                        98316
3557                       101242                        96275
3558                        94994                        90148
3559                       101256                        92483
3560                       112738                       100384
3561                       112251                       102165
3562                       115591                       103962
3563                        97172                        91757
3564                        93171                        86477
3565                        92426                        85234
3566                        91455                        84589
3567                        92687                        79282
3568                        91873                        90017
3569                        76010                        73290
3570                        78507                        77855
3571                        78326                        76347
3572                        75438                        74325
3573                        79429                        76854
3574                        78283                        75904
3575                        61383                        59420
3576                        75835                        74485
3577                        74306                        72834
3578                        73032                        71739
3579                        69936                        68305
3580                        60440                        58910
3581                        64998                        62780
3582                        69360                        67078
3583                        80618                        78498
3584                        69046                        67727
3585                        93696                        92435
3586                        86489                        85284
3587                        78850                        77645
3588                        58167                        57476
3589                        48259                        47076
3590                        41941                        41573
3591                        53095                        51965
3592                        43218                        42958
3593                        41418                        41409
3594                        67687                        66363
3595                        52579                        52392
3596                        50726                        50160
3597                        46221                        46141
3598                        56248                        56074
3599                        56120                        56021
3600                        51833                        51618
3601                        52783                        52593
3602                        55991                        55353
3603                        65691                        64310
3604                        53305                        52152
3605                        68241                        67173
3606                        74845                        72125
3607                       105686                       100063
3608                       104087                       100492
3609                        99701                        99392
3610                        80085                        78540
3611                        85590                        82572
3612                        82558                        78534
3613                        96138                        90776
3614                        92579                        88150
3615                        80495                        77812
3616                        76991                        73923
3617                        74443                        71188
3618                        78652                        75889
3619                        66209                        63033
3620                        68408                        66398
3621                        56519                        55425
3622                        66470                        64704
3623                        61878                        59813
3624                        60644                        59633
3625                        67763                        66917
3626                        62063                        61560
3627                        44760                        44065
3628                        56253                        55054
3629                        52331                        51367
3630                        57221                        56231
3631                        65212                        64020
3632                        45845                        43904
3633                        68867                        66445
3634                        65573                        61273
3635                        82127                        78439
3636                        62205                        59996
3637                        80381                        75964
3638                        82432                        81352
3639                        66705                        64793
3640                        42575                        41478
3641                       314088                       144115
3642                       374690                       155394
3643                       322927                        70239
3644                       259393                        64285
3645                       152336                        81853
3646                       153455                        58525
3647                       160654                        61277
3648                       181076                        78828
3649                       178836                        47723
3650                       258734                       197398
3651                       273444                       132407
3652                       237899                       121028
3653                       313380                       129091
3654                       295221                       101364
3655                       217769                       126297
3656                       296612                       216414
3657                       299530                       208801
3658                       191046                       124174
3659                       209488                       132616
3660                       202874                       123194
3661                       181492                       121224
3662                       185544                       117561
3663                       205930                       163970
3664                       226639                       189089
3665                       244423                       201545
3666                       258145                       201099
3667                       270448                       165598
3668                       222760                       139198
3669                       273844                       114672
3670                       274332                        92784
3671                       210964                        91662
3672                       300936                       125724
3673                       297272                       102107
3674                       256952                       107636
3675                       248419                        84090
3676                       248949                       100133
3677                       183797                       119863
3678                       173260                       117793
3679                       126062                        56500
3680                       207270                        75819
3681                       174441                        62893
3682                       118307                        63280
3683                       124114                        77569
3684                       107661                        77330
3685                       109348                        64627
3686                       128993                        67727
3687                       166595                        71539
3688                       137088                        68194
3689                       164744                        83636
3690                       137306                        82818
3691                       137695                        78471
3692                       137335                        87330
3693                        65224                        39632
3694                        54128                        33415
3695                        59281                        38874
3696                        59706                        34658
3697                        50420                        26199
3698                        61252                        29000
3699                        60521                        31532
3700                        59969                        30459
3701                        67163                        26069
3702                        67155                        28374
3703                        65951                        35704
3704                        69111                        36547
3705                        63530                        36081
3706                        62988                        37498
3707                        66150                        40789
3708                        66047                        44188
3709                        64249                        47773
3710                        72729                        49838
3711                        68574                        44090
3712                        69795                        39950
3713                        58771                        36454
3714                        57006                        34005
3715                        71766                        37248
3716                        77052                        39495
3717                        70541                        39858
3718                        83304                        47612
3719                        63686                        41778
3720                        65841                        34458
3721                        58940                        39160
3722                        69363                        39936
3723                        74954                        47279
3724                        80833                        46352
3725                        79487                        46726
3726                        86106                        54973
3727                        72099                        43567
3728                        66499                        32258
3729                        64790                        27683
3730                        56629                        29066
3731                        52832                        23048
3732                        58412                        26547
3733                        48950                        27044
3734                        51701                        28613
3735                        55270                        26421
3736                        53212                        26222
3737                        42490                        23611
3738                        56768                        27240
3739                        53011                        24153
3740                        42036                        20098
3741                        49594                        23375
3742                        48124                        26459
3743                        49076                        25431
3744                        42883                        15994
3745                        85602                        30893
3746                        85182                        26270
3747                        64241                        27971
3748                       106807                        33109
3749                        59971                        19808
3750                        62412                        22359
3751                        66101                        26431
3752                        61905                        16137
3753                        56588                        13461
3754                        54087                        11699
3755                        72380                        11681
3756                        56960                        16657
3757                        75541                        23305
3758                        78666                        29683
3759                        76133                        23455
3760                        56942                        22376
3761                        76449                        29049
3762                        54397                        29304
3763                        62391                        34194
3764                        64486                        22539
3765                        50452                        21944
3766                        53079                        25243
3767                        46546                        21263
3768                        53464                        25221
3769                        51854                        26529
3770                        85215                        37397
3771                        51513                        24644
3772                        68202                        23712
3773                        46197                        20062
3774                        63559                        19483
3775                        63475                        22105
3776                        49847                        20620
3777                        98937                        19410
3778                        76358                        30054
3779                       130393                        37626
3780                       101192                        21102
3781                        64810                        23218
3782                       100369                        19745
3783                        69545                        27121
3784                        59753                        19304
3785                        54046                        19113
3786                        90341                        18011
3787                        57479                        17429
3788                       101697                        23365
3789                        55118                        18439
3790                        52634                        20566
3791                       120190                        53302
3792                        52206                        21692
3793                        56450                        27533
3794                        34621                        21733
3795                        48326                        20678
3796                        36101                        20713
3797                       133812                        54018
3798                       152694                        58264
3799                       193461                        68317
3800                       159255                        49384
3801                       104165                        44173
3802                       107474                        54759
3803                       105689                        51797
3804                       102970                        52183
3805                       105134                        42631
3806                       131224                        47831
3807                       170288                        74347
3808                       109405                        66104
3809                       102109                        58716
3810                        93098                        51565
3811                        98000                        38957
3812                       102083                        46479
3813                       101765                        44440
3814                       101564                        55035
3815                       104577                        60676
3816                       104856                        63416
3817                       102058                        64259
3818                        97038                        59986
3819                       106755                        66233
3820                       104644                        71630
3821                       126619                        78101
3822                       134715                        88177
3823                       135793                        88463
3824                       112153                        64076
3825                       107912                        62278
3826                       131583                        55549
3827                       132626                        46241
3828                        92121                        37170
3829                        77658                        41031
3830                       103538                        46596
3831                       116813                        65346
3832                       105547                        45052
3833                       118436                        44935
3834                       104097                        48047
3835                        70223                        47115
3836                        78949                        41425
3837                        74000                        36410
3838                        97397                        41534
3839                        78474                        51368
3840                        80667                        43897
3841                        85445                        40526
3842                       108880                        47967
3843                        93488                        51889
3844                        66196                        48986
3845                        61275                        44326
3846                        70185                        42601
3847                        73575                        40602
3848                        75613                        36619
3849                      1111990                      1032762
3850                      1040085                       961115
3851                      1186206                      1086151
3852                      1174453                      1135571
3853                       924140                       868269
3854                       874458                       808238
3855                       709660                       639521
3856                       551265                       497726
3857                       522579                       487013
3858                       893144                       840269
3859                      1068749                       996106
3860                       991798                       915276
3861                       994233                       931964
3862                      1146574                      1087086
3863                      1076082                      1008961
3864                      1138473                      1065540
3865                      1351660                      1295162
3866                      1497059                      1436819
3867                      1283110                      1204789
3868                      1149175                      1066852
3869                      1256423                      1158712
3870                      1231945                      1135206
3871                      1156383                      1073915
3872                      1175490                      1079717
3873                      1315138                      1201242
3874                      1278012                      1147087
3875                      1201140                      1091515
3876                      1208191                      1102266
3877                      1173633                      1064384
3878                      1347098                      1196473
3879                      1185191                      1038686
3880                      1178148                      1068850
3881                       993144                       871563
3882                      1487759                      1104179
3883                      1360962                      1011876
3884                      1213749                      1010395
3885                      1195781                      1114859
3886                      1346017                      1196714
3887                      1143034                       980990
3888                      1554658                      1349459
3889                      1454007                      1301235
3890                      1466036                      1318494
3891                      1546848                      1369895
3892                      1673999                      1459897
3893                      1635523                      1501295
3894                      1804698                      1567442
3895                      2173801                      1911609
3896                      1396553                      1288254
3897                      1635492                      1520604
3898                      1209129                      1079975
3899                      1439004                      1228427
3900                      1652276                      1415837
3901                        45082                        16333
3902                        32393                        13134
3903                        59340                        11916
3904                        64625                        11670
3905                        29915                        10326
3906                        28566                        11695
3907                        32830                        11502
3908                        34375                         9518
3909                        32760                         7816
3910                        36235                        10839
3911                        42371                        11941
3912                        39415                        11916
3913                        36013                        12612
3914                        31404                        13833
3915                        35990                        13498
3916                        34359                        13619
3917                        33709                        14895
3918                        31169                        15324
3919                        36614                        16968
3920                        28610                        17081
3921                        22911                        13895
3922                        28861                        13632
3923                        33249                        15345
3924                        37247                        14971
3925                        27509                        15929
3926                        37755                        18048
3927                        35166                        16664
3928                        36192                        13083
3929                        26504                        14528
3930                        30982                        15423
3931                        32892                        14675
3932                        31829                        13628
3933                        34846                        12022
3934                        42225                        12979
3935                        39768                        12606
3936                        30678                        14568
3937                        27960                        12092
3938                        29026                        12371
3939                        32843                         9615
3940                        37475                        12424
3941                        38294                        12951
3942                        27302                        12899
3943                        27495                        12370
3944                        30992                        11801
3945                        34589                        10664
3946                        36286                        12730
3947                        37569                        12782
3948                        24285                        10919
3949                        36340                        14237
3950                        30532                        14860
3951                        32008                        14248
3952                        33520                        11090
3953                       241483                        87168
3954                       263399                        81459
3955                       171099                        67684
3956                       287179                        89646
3957                       155705                        61615
3958                       179091                        70029
3959                       181061                        74065
3960                       152719                        53017
3961                       136321                        41407
3962                       147723                        39215
3963                       188074                        42989
3964                       144772                        50605
3965                       192008                        71779
3966                       199056                        80170
3967                       199650                        83963
3968                       164398                        77111
3969                       195958                        88545
3970                       136304                        86797
3971                       139898                        82057
3972                       151956                        62925
3973                       136949                        80129
3974                       136253                        75629
3975                       137697                        78153
3976                       139061                        79193
3977                       146650                        87650
3978                       204709                        95021
3979                       125822                        78006
3980                       155336                        67085
3981                       123689                        59676
3982                       162385                        56516
3983                       168483                        64611
3984                       120115                        56006
3985                       252981                        64836
3986                       166547                        70857
3987                       291296                        71215
3988                       248999                        61117
3989                       159540                        62016
3990                       248462                        54479
3991                       152429                        54722
3992                       129121                        52474
3993                       135173                        47086
3994                       223725                        49545
3995                       130533                        48945
3996                       222914                        56123
3997                       134163                        48793
3998                       125651                        54765
3999                       289482                        71560
4000                       125727                        59046
4001                       133417                        68931
4002                        91427                        61025
4003                       126497                        58417
4004                       108151                        64404
4005                       811135                       680184
4006                       713836                       611024
4007                       864105                       700661
4008                       838616                       629436
4009                       674356                       589240
4010                       754581                       664869
4011                       662818                       562622
4012                       688287                       588028
4013                       655607                       547423
4014                       729885                       621196
4015                       801922                       673261
4016                       784659                       651749
4017                       834833                       709302
4018                       798961                       698141
4019                       844713                       707259
4020                       882977                       747298
4021                       936382                       832619
4022                       821279                       738432
4023                       879371                       774040
4024                       916190                       825797
4025                       825622                       718728
4026                       799217                       705610
4027                       883412                       738517
4028                       948234                       794533
4029                       917243                       753806
4030                      1003588                       827534
4031                       831800                       740396
4032                       869045                       750465
4033                       792529                       711258
4034                       825558                       724592
4035                       838469                       736869
4036                       868983                       772950
4037                       835985                       708348
4038                       900148                       768301
4039                       876427                       742694
4040                       865638                       760965
4041                       772911                       692333
4042                       817547                       703737
4043                       694973                       593439
4044                       727698                       630763
4045                       767058                       672334
4046                       739255                       637044
4047                       695839                       618398
4048                       652936                       544828
4049                       687168                       586732
4050                       735358                       620881
4051                       879305                       712463
4052                       583560                       496722
4053                       741401                       630109
4054                       685585                       613647
4055                       688133                       601246
4056                       575984                       504611
4057                        85113                        67429
4058                        75236                        57451
4059                        96337                        83236
4060                        85878                        60604
4061                        67090                        55387
4062                        65380                        54104
4063                        68751                        56865
4064                        66459                        54847
4065                        68420                        54539
4066                        68005                        57361
4067                        77169                        56616
4068                        63641                        41727
4069                        80891                        63580
4070                        74261                        59331
4071                        75534                        55278
4072                        92159                        70619
4073                       105218                        89643
4074                        55531                        52256
4075                        66292                        62587
4076                        80923                        67508
4077                        67037                        46061
4078                        68398                        58585
4079                        72462                        59471
4080                        72609                        63133
4081                        71199                        51675
4082                        98482                        74731
4083                        69593                        60659
4084                        76907                        62257
4085                        57417                        46175
4086                        68699                        52920
4087                        72217                        56073
4088                        68959                        56098
4089                        83566                        55829
4090                        70738                        51756
4091                        81674                        49536
4092                        86849                        60107
4093                        57747                        40772
4094                        74271                        43662
4095                        45384                        26413
4096                        46695                        33538
4097                        51076                        35369
4098                        58795                        27726
4099                        45660                        29902
4100                        52480                        27928
4101                        45227                        33528
4102                        48379                        32190
4103                        76708                        39458
4104                        41897                        27523
4105                        49631                        25724
4106                        45817                        32110
4107                        52200                        31953
4108                        35181                        26144
4109                        85018                        59964
4110                        77891                        51001
4111                        68979                        53846
4112                        85153                        62850
4113                        53984                        40902
4114                        57141                        44175
4115                        61623                        45125
4116                        61606                        43572
4117                        69825                        43587
4118                        70023                        50404
4119                        82571                        54473
4120                        77367                        49871
4121                        73214                        51156
4122                        87065                        58016
4123                        85511                        58162
4124                        71334                        58390
4125                        85843                        63879
4126                        88176                        64574
4127                        83457                        61316
4128                        68843                        52183
4129                        80940                        62537
4130                        73193                        58784
4131                        91876                        68533
4132                       102310                        86821
4133                       100854                        79379
4134                       120922                        98982
4135                        91801                        73510
4136                        91292                        70451
4137                        84896                        63204
4138                        87565                        59275
4139                        84823                        65116
4140                        85720                        67298
4141                        96077                        62287
4142                       148487                       128876
4143                       161892                       118422
4144                       107514                        77957
4145                       108864                        89654
4146                       110662                        81778
4147                        99433                        80522
4148                        92150                        79866
4149                        93014                        77773
4150                       104114                        80241
4151                        89576                        74665
4152                       110527                        84691
4153                        88991                        71315
4154                        64492                        51331
4155                       137949                       114076
4156                        85079                        74926
4157                        90623                        77619
4158                        86637                        77817
4159                        79806                        67743
4160                        73730                        65955
4161                       279198                       241336
4162                       256972                       215851
4163                       353465                       247566
4164                       248190                       214068
4165                       256617                       223707
4166                       341058                       303438
4167                       291557                       248573
4168                       293163                       250706
4169                       171467                       148757
4170                       282227                       275968
4171                       316099                       279470
4172                       320261                       272661
4173                       361690                       310800
4174                       371503                       333528
4175                       442631                       390221
4176                       432882                       384184
4177                       410344                       355517
4178                       439766                       378940
4179                       543933                       487248
4180                       529896                       496920
4181                       540160                       496292
4182                       475384                       453444
4183                       492671                       466170
4184                       423109                       365760
4185                       511629                       423617
4186                       469278                       401173
4187                       445056                       385978
4188                       425716                       366851
4189                       469064                       404819
4190                       452690                       387457
4191                       428184                       357119
4192                       395979                       362726
4193                       398066                       343885
4194                       409105                       349590
4195                       401177                       321936
4196                       395388                       331784
4197                       427037                       350600
4198                       378525                       337797
4199                       311194                       269122
4200                       368147                       316529
4201                       448594                       407712
4202                       331342                       287983
4203                       360655                       317977
4204                       291648                       249147
4205                       366968                       323061
4206                       393817                       326949
4207                       544715                       502578
4208                       311044                       269851
4209                       417366                       345620
4210                       393855                       349480
4211                       334219                       278109
4212                       242853                       205536
4213                       797649                       742543
4214                       713343                       651338
4215                       868587                       733966
4216                       652636                       606209
4217                       649833                       608290
4218                       885423                       839621
4219                       768461                       716108
4220                       753561                       699084
4221                       616979                       587560
4222                       832023                       817362
4223                       939127                       892219
4224                       924384                       866463
4225                       983841                       922619
4226                      1000249                       950223
4227                      1076533                      1009927
4228                      1095669                      1028147
4229                      1176091                      1109685
4230                      1254912                      1164225
4231                      1502402                      1384985
4232                      1514438                      1435534
4233                      1414742                      1335097
4234                      1317882                      1265795
4235                      1377239                      1287855
4236                      1341622                      1208292
4237                      1481861                      1316229
4238                      1483444                      1330833
4239                      1343841                      1233605
4240                      1269406                      1164066
4241                      1357738                      1246080
4242                      1347828                      1235470
4243                      1231916                      1104420
4244                      1267810                      1193559
4245                      1168859                      1062591
4246                      1305784                      1213743
4247                      1179491                      1064780
4248                      1180446                      1087631
4249                      1225629                      1115346
4250                      1138029                      1070179
4251                       936433                       869387
4252                      1102724                      1021992
4253                      1231619                      1171614
4254                      1019763                       958453
4255                      1081791                      1022901
4256                       930067                       867106
4257                      1061988                       984378
4258                      1155024                      1047180
4259                      1443234                      1369646
4260                      1044961                       981186
4261                      1329664                      1234678
4262                      1220766                      1153105
4263                      1061752                       976499
4264                       785375                       731458
4265                        52627                        52623
4266                        44990                        44559
4267                        50921                        50026
4268                        35219                        35219
4269                        38832                        38832
4270                        49526                        49526
4271                        42414                        42414
4272                        50130                        50130
4273                        55043                        55043
4274                        46935                        46935
4275                        48369                        48369
4276                        48161                        48161
4277                        47211                        47207
4278                        52030                        52018
4279                        53063                        52434
4280                        63782                        63234
4281                        75842                        75402
4282                        69122                        67070
4283                       115881                       114416
4284                       116220                       114465
4285                        97134                        96889
4286                       108943                       107009
4287                       127318                       122745
4288                       101501                        94130
4289                        85486                        77486
4290                       111731                       102069
4291                        89862                        85807
4292                        82803                        80128
4293                        85645                        82840
4294                        88873                        86448
4295                        85309                        83275
4296                        85282                        82260
4297                        77844                        77841
4298                       118312                       118297
4299                        50414                        50354
4300                        62527                        62471
4301                        63600                        63502
4302                        64572                        64557
4303                        45256                        45256
4304                        64586                        64586
4305                        60675                        60671
4306                        53874                        53860
4307                        71523                        71472
4308                        67879                        67323
4309                        72001                        70057
4310                        94225                        91689
4311                        53686                        51858
4312                       105380                       104228
4313                       111646                       111163
4314                        92438                        92438
4315                        59840                        59837
4316                        39852                        39852
4317                       145905                        65956
4318                       142744                        63529
4319                       114740                        61198
4320                       173717                        65179
4321                        95834                        44616
4322                       105313                        49248
4323                       102797                        48420
4324                        89681                        34250
4325                        87706                        30133
4326                        83839                        28495
4327                       118893                        24825
4328                        94677                        39055
4329                       117482                        50463
4330                       125142                        61487
4331                       126800                        57821
4332                       106104                        50283
4333                       125864                        59357
4334                        82367                        58695
4335                        89672                        60961
4336                       113598                        53991
4337                        98631                        52785
4338                       101708                        59131
4339                        98244                        53517
4340                       115691                        72463
4341                       113292                        71803
4342                       157431                        87341
4343                       114110                        68454
4344                       116439                        52417
4345                        85537                        44015
4346                       114155                        45383
4347                       114780                        48638
4348                        93344                        44789
4349                       172193                        46051
4350                       137893                        60411
4351                       223890                        70815
4352                       178124                        46441
4353                       106185                        44830
4354                       173887                        43958
4355                       115053                        49626
4356                       102112                        45394
4357                        98884                        39886
4358                       165528                        42926
4359                        97386                        46059
4360                       170048                        51303
4361                       100818                        42825
4362                        93142                        42330
4363                       206007                        50079
4364                       104963                        45442
4365                       110390                        54037
4366                        70702                        50178
4367                       102239                        49855
4368                        74829                        46089
4369                        96731                        91017
4370                        91111                        84391
4371                       112308                        92567
4372                        92535                        86813
4373                        87240                        82184
4374                       106624                       101913
4375                       100205                        94328
4376                        90998                        83528
4377                        89982                        86875
4378                        99595                        97636
4379                       126259                       119366
4380                       135381                       127432
4381                       151574                       143702
4382                       156622                       151162
4383                       187196                       177935
4384                       206798                       197316
4385                       196319                       186793
4386                       183483                       171926
4387                       176104                       156784
4388                       186834                       176029
4389                       185976                       174614
4390                       167023                       161292
4391                       177170                       167882
4392                       169878                       152289
4393                       172837                       154560
4394                       168792                       151091
4395                       163241                       150878
4396                       143903                       132626
4397                       159042                       143582
4398                       152826                       137883
4399                       150802                       129416
4400                       151541                       143072
4401                       136902                       121275
4402                       149863                       137318
4403                       145983                       130518
4404                       145553                       132114
4405                       144993                       129030
4406                       136692                       128214
4407                       121464                       112323
4408                       145368                       135646
4409                       238305                       230450
4410                       124417                       115167
4411                       122383                       112637
4412                       110392                       100247
4413                       124387                       114098
4414                       144769                       132177
4415                       272380                       261473
4416                       106670                        97223
4417                       147358                       134139
4418                       134523                       124209
4419                       127142                       115949
4420                        96939                        89684
4421                       280957                       115070
4422                       284141                       135029
4423                       307364                       154963
4424                       233511                       117121
4425                       219244                        95631
4426                       274679                       110585
4427                       269424                       106369
4428                       229176                       103302
4429                       231441                       108153
4430                       243448                       127647
4431                       320040                       147692
4432                       283173                       153973
4433                       252364                       130376
4434                       237216                       120712
4435                       230764                        93338
4436                       229356                       123900
4437                       233361                        91284
4438                       216084                       103197
4439                       256158                       122311
4440                       290192                       136244
4441                       265162                       132055
4442                       244176                       118231
4443                       284765                       144446
4444                       254022                       145311
4445                       285152                       149013
4446                       266160                       148736
4447                       265101                       151848
4448                       247277                       128069
4449                       274236                       151226
4450                       263366                       131405
4451                       250219                       105242
4452                       190678                        59068
4453                       160844                        60966
4454                       192225                        80065
4455                       181703                       109464
4456                       188933                       104062
4457                       202046                        93837
4458                       179821                       102611
4459                       139511                        83416
4460                       183008                       102042
4461                       156193                        91822
4462                       159508                        90791
4463                       130860                        76814
4464                       139459                        69825
4465                       175546                        79745
4466                       155493                        77573
4467                       171809                        88259
4468                       135043                        83060
4469                       170198                        88067
4470                       145282                        96088
4471                       142511                        91808
4472                       128597                        79897
4473                        34340                        30455
4474                        36160                        27858
4475                        37911                        33382
4476                        34637                        30146
4477                        29583                        25668
4478                        38074                        33342
4479                        35706                        31048
4480                        39194                        34250
4481                        38986                        33736
4482                        37712                        32230
4483                        39030                        34192
4484                        36718                        32322
4485                        32179                        27627
4486                        31956                        23314
4487                        21567                        20132
4488                        26126                        24206
4489                        35982                        34860
4490                        33941                        30513
4491                        35433                        26056
4492                        38758                        29043
4493                        41839                        27914
4494                        39386                        27720
4495                        46330                        31288
4496                        56180                        39075
4497                        51533                        37858
4498                        57169                        40469
4499                        48494                        32965
4500                        41639                        27767
4501                        41625                        28751
4502                        46229                        30730
4503                        46162                        29243
4504                        42279                        21962
4505                        48280                        16501
4506                        42788                        24483
4507                        50119                        35865
4508                        54526                        42500
4509                        39258                        27639
4510                        42022                        28214
4511                        26980                        15061
4512                        37349                        20111
4513                        34383                        23273
4514                        35419                        26767
4515                        38327                        33427
4516                        35122                        29727
4517                        24128                        18779
4518                        30579                        19080
4519                        28583                        21917
4520                        23217                        17454
4521                        30985                        24103
4522                        35600                        23178
4523                        38988                        23259
4524                        26578                        16737
4525                       417267                       384955
4526                       413110                       377227
4527                       410912                       382367
4528                       377208                       325851
4529                       335299                       305277
4530                       297414                       273036
4531                       310621                       279362
4532                       331202                       300861
4533                       286598                       221348
4534                       302618                       254209
4535                       312060                       276634
4536                       349901                       312195
4537                       369155                       314559
4538                       379439                       333274
4539                       370355                       326207
4540                       423287                       392942
4541                       454242                       409643
4542                       402766                       358451
4543                       493974                       461318
4544                       549173                       525125
4545                       578560                       535419
4546                       523808                       471474
4547                       583925                       527520
4548                       654853                       590323
4549                       686630                       614585
4550                       803363                       717323
4551                       560803                       510423
4552                       529154                       475718
4553                       571867                       518051
4554                       558750                       505801
4555                       534810                       502400
4556                       556266                       502964
4557                       583718                       532965
4558                       586277                       500461
4559                       504325                       471542
4560                       538378                       474086
4561                       495637                       433890
4562                       459058                       402410
4563                       373894                       325592
4564                       403955                       371050
4565                       419622                       367140
4566                       394529                       348346
4567                       409924                       375200
4568                       396745                       357648
4569                       364852                       325917
4570                       374625                       340809
4571                       437234                       373119
4572                       391446                       340741
4573                       365488                       315429
4574                       334853                       301752
4575                       373198                       310260
4576                       312460                       291735
4577                       272954                       272607
4578                       271730                       270658
4579                       557393                       554443
4580                       328916                       325918
4581                       215202                       214541
4582                       247527                       246808
4583                       262248                       261272
4584                       253455                       252413
4585                       211840                       207420
4586                       350858                       349205
4587                       335233                       329875
4588                       350305                       284346
4589                       657895                       481756
4590                       431765                       324255
4591                       317623                       302546
4592                       343793                       343446
4593                       301471                       300935
4594                       315526                       315111
4595                       364293                       362522
4596                       333645                       331448
4597                       336710                       335811
4598                       326971                       324791
4599                       307371                       305238
4600                       317254                       316117
4601                       343174                       342069
4602                       356463                       355096
4603                       343858                       340794
4604                       339389                       337167
4605                       279475                       277038
4606                       530470                       524889
4607                       463083                       459278
4608                       373566                       367615
4609                       506449                       491057
4610                       549125                       544998
4611                       465220                       461966
4612                       353690                       349815
4613                       531787                       518252
4614                       311060                       309163
4615                       444405                       442760
4616                       458296                       455582
4617                       271119                       269468
4618                       418534                       415277
4619                       435355                       434180
4620                       414298                       411117
4621                       466077                       439612
4622                       283710                       283183
4623                       500442                       498461
4624                       349297                       346063
4625                       311482                       307475
4626                       373586                       366756
4627                       368736                       363944
4628                       415128                       402710
4629                        79424                        76469
4630                        68362                        66189
4631                        76899                        75276
4632                        75670                        71739
4633                        63015                        61453
4634                        65420                        63280
4635                        60738                        58852
4636                        68181                        66193
4637                        60953                        59019
4638                        76184                        74211
4639                        73804                        70169
4640                        81016                        77169
4641                        83777                        79781
4642                        80444                        77829
4643                        87334                        82483
4644                        92603                        88122
4645                        86627                        84862
4646                        79531                        77896
4647                        87848                        87549
4648                        88375                        86928
4649                        76045                        71564
4650                        72767                        68455
4651                        85865                        77643
4652                        93002                        82748
4653                        93250                        80208
4654                        90573                        79394
4655                        80183                        77776
4656                        79905                        78077
4657                        78017                        75398
4658                        80823                        78797
4659                        78353                        77273
4660                        86438                        85456
4661                        89117                        86769
4662                        89696                        86965
4663                        88162                        86752
4664                        88200                        87009
4665                        81492                        80749
4666                        82848                        81149
4667                        74453                        73697
4668                        71146                        70533
4669                        74103                        73377
4670                        74891                        73420
4671                        69215                        68589
4672                        65581                        63934
4673                        70299                        69867
4674                        75907                        73208
4675                        72030                        66876
4676                        57080                        52157
4677                        60249                        59122
4678                        56778                        56177
4679                        65875                        64396
4680                        57313                        56646
4681                        58143                        57397
4682                        52758                        51587
4683                        64562                        63970
4684                        49514                        49474
4685                        56104                        56074
4686                        63058                        63058
4687                        43970                        43970
4688                        46649                        46649
4689                        44142                        44106
4690                        47348                        46851
4691                        54680                        53623
4692                        52120                        51541
4693                        60398                        59496
4694                        51229                        51224
4695                        56728                        54657
4696                        66602                        63213
4697                        70028                        69755
4698                        72114                        70265
4699                        58156                        57801
4700                        69613                        69445
4701                        66523                        60015
4702                        63643                        60285
4703                        75488                        64455
4704                        79540                        69396
4705                        79485                        69249
4706                        85090                        77055
4707                        66404                        61487
4708                        72522                        67694
4709                        72460                        69331
4710                        69692                        66487
4711                        71705                        68403
4712                        80724                        78267
4713                        59475                        59228
4714                        80728                        78934
4715                        77192                        77132
4716                        74663                        74660
4717                        67279                        67277
4718                        70679                        70655
4719                        52394                        52394
4720                        57722                        57703
4721                        65345                        65341
4722                        59732                        59722
4723                        61340                        61330
4724                        48198                        47965
4725                        49967                        46940
4726                        61736                        58228
4727                        69173                        65403
4728                        46214                        43577
4729                        51507                        50993
4730                        46789                        46789
4731                        55907                        55900
4732                        45676                        45411
4733                        48053                        47523
4734                        36927                        35874
4735                        48704                        47918
4736                        36290                        35681
4737                        35236                        34949
4738                        42294                        41990
4739                        35547                        35307
4740                        41053                        40763
4741                        40285                        39530
4742                        37323                        35716
4743                        46384                        43936
4744                        38336                        35483
4745                        48867                        45782
4746                        51876                        51504
4747                        47742                        43287
4748                        59178                        52831
4749                        67329                        64634
4750                        63165                        59305
4751                        56341                        52711
4752                        61326                        57870
4753                        52137                        42152
4754                        54801                        49804
4755                        63018                        49240
4756                        56957                        49605
4757                        58067                        47150
4758                        66741                        59667
4759                        51531                        48167
4760                        60996                        57154
4761                        57728                        54131
4762                        55477                        53294
4763                        58554                        56109
4764                        65683                        62687
4765                        44612                        42433
4766                        60828                        56454
4767                        63564                        61577
4768                        63800                        60645
4769                        53361                        51084
4770                        59993                        58125
4771                        42867                        41615
4772                        44374                        43176
4773                        48303                        48249
4774                        45208                        44872
4775                        41230                        39868
4776                        34858                        33709
4777                        36940                        33667
4778                        56138                        52052
4779                        57377                        53859
4780                        36491                        34167
4781                        39559                        39027
4782                        40838                        40765
4783                        44683                        44595
4784                        38686                        37522
4785                        44357                        39137
4786                        40030                        32583
4787                        50467                        43426
4788                        47268                        45560
4789                        38364                        35373
4790                        41970                        41823
4791                        38280                        38274
4792                        33681                        33675
4793                        20977                        20196
4794                        41563                        36824
4795                        43895                        41539
4796                        41998                        41780
4797                        50023                        48792
4798                        51125                        46656
4799                        44390                        40849
4800                        58196                        57596
4801                        66591                        66372
4802                        39726                        39590
4803                        47026                        46759
4804                        44453                        44453
4805                        51045                        51032
4806                        53948                        53548
4807                        55395                        55395
4808                        67078                        67069
4809                        73209                        72950
4810                        74050                        74050
4811                        67436                        66812
4812                        55316                        54341
4813                        57050                        56671
4814                        56940                        56921
4815                        51362                        51287
4816                        57722                        55548
4817                        48459                        48443
4818                        70586                        69358
4819                        55339                        54907
4820                        56259                        55978
4821                        57606                        57218
4822                        57719                        57377
4823                        53344                        53306
4824                        60518                        60510
4825                        53521                        53492
4826                        56330                        56309
4827                        71112                        71097
4828                        70657                        70657
4829                        58029                        58023
4830                        79230                        79169
4831                        83862                        83768
4832                        60574                        60565
4833                        57767                        57735
4834                        60048                        60045
4835                        66502                        66490
4836                        53730                        53730
4837                       149507                       125661
4838                       155921                       115859
4839                       145577                        91917
4840                       136681                       128682
4841                       110313                        98751
4842                        99840                        85262
4843                        88686                        74993
4844                        56008                        46336
4845                        48145                        41712
4846                       106129                        91095
4847                       156643                       137002
4848                       171300                       150538
4849                       176525                       159927
4850                       196586                       182693
4851                       157526                       144314
4852                       177027                       161785
4853                       188319                       177176
4854                       215379                       204056
4855                       209016                       194537
4856                       165576                       149734
4857                       183883                       163647
4858                       180027                       156663
4859                       166466                       147604
4860                       165570                       144224
4861                       192336                       171945
4862                       214719                       192454
4863                       207714                       189496
4864                       202555                       183995
4865                       209345                       189262
4866                       215096                       175832
4867                       193052                       160356
4868                       185822                       154279
4869                       168647                       133555
4870                       219908                        82058
4871                       213182                        57335
4872                       197300                       128656
4873                       223821                       199325
4874                       219402                       175065
4875                       187201                       136890
4876                       246578                       180501
4877                       279427                       228122
4878                       253426                       203379
4879                       288428                       218488
4880                       272698                       201893
4881                       247635                       206856
4882                       259056                       161728
4883                       378746                       292229
4884                       258822                       219632
4885                       280302                       238111
4886                       187563                       141952
4887                       248520                       144796
4888                       236295                       138815
4889                        60033                        52278
4890                        65083                        52370
4891                        70207                        58674
4892                        70183                        67735
4893                        69915                        67676
4894                        78967                        74502
4895                        75836                        74569
4896                        74658                        74025
4897                        59465                        57223
4898                        94584                        89533
4899                        78667                        74349
4900                        90738                        89663
4901                       103860                       101545
4902                        92687                        89785
4903                        80964                        75830
4904                        95174                        94339
4905                        83748                        82334
4906                        70977                        68675
4907                        73286                        70853
4908                        60463                        58400
4909                        71348                        70182
4910                        72790                        71154
4911                        75266                        72854
4912                        78990                        77461
4913                        90813                        88916
4914                        88886                        86921
4915                        88588                        86438
4916                        87199                        85053
4917                        74262                        72937
4918                        86231                        85119
4919                        72034                        70155
4920                        82869                        80975
4921                        71279                        69781
4922                        83304                        80879
4923                        72798                        71485
4924                        77849                        76195
4925                        85226                        83707
4926                        88013                        85683
4927                        83168                        82300
4928                        92754                        91907
4929                        82820                        81984
4930                        85983                        85203
4931                        95689                        94789
4932                       100727                        99966
4933                        70947                        70255
4934                        99111                        98394
4935                        90911                        90251
4936                        79923                        79401
4937                        66149                        65971
4938                        79708                        79193
4939                        92624                        92023
4940                        88528                        88155
4941                       266347                       265938
4942                       259214                       258720
4943                       531875                       529840
4944                       325189                       324726
4945                       217732                       217343
4946                       261588                       260780
4947                       259106                       257996
4948                       257584                       256978
4949                       205985                       205196
4950                       337359                       335968
4951                       377004                       369371
4952                       341733                       309380
4953                       650319                       361895
4954                       420580                       304494
4955                       311748                       264786
4956                       319507                       319299
4957                       287239                       286871
4958                       301259                       300809
4959                       351048                       350689
4960                       326550                       326096
4961                       322988                       322390
4962                       342112                       341835
4963                       330251                       329976
4964                       378295                       378187
4965                       354406                       354206
4966                       371434                       371093
4967                       360183                       359261
4968                       370666                       369496
4969                       366657                       365830
4970                       493244                       478960
4971                       457635                       443122
4972                       410248                       324711
4973                       525545                       523712
4974                       573690                       552847
4975                       484433                       458041
4976                       430280                       429117
4977                       523147                       511072
4978                       365092                       363375
4979                       481104                       480649
4980                       487393                       486972
4981                       317663                       317318
4982                       441270                       440777
4983                       469299                       468419
4984                       452164                       451747
4985                       475337                       474543
4986                       327319                       326841
4987                       576262                       573867
4988                       391445                       390709
4989                       365173                       363400
4990                       421309                       418855
4991                       374734                       374205
4992                       328559                       327228
4993                       122109                        72547
4994                       106677                        62582
4995                        92310                        60970
4996                       113652                        56900
4997                        95607                        65375
4998                        99116                        65248
4999                        78419                        42377
5000                        73312                        39594
5001                        74431                        40258
5002                        72308                        42485
5003                        93142                        49718
5004                        92883                        57335
5005                        98802                        63692
5006                       104071                        73929
5007                       109274                        75354
5008                       119176                        94007
5009                       122568                        89224
5010                        99973                        82906
5011                       120710                       104376
5012                       113756                        86862
5013                       107476                        83536
5014                       107589                        83700
5015                        96487                        71699
5016                        99752                        75310
5017                       112683                        89946
5018                       155485                       116583
5019                       108884                        90997
5020                       119394                        85875
5021                        96170                        73086
5022                       109441                        66829
5023                       117621                        63638
5024                       103064                        59372
5025                       125916                        69081
5026                       148369                        95501
5027                       171184                       100786
5028                       115672                        61890
5029                       102024                        67728
5030                       106944                        57961
5031                        86169                        63628
5032                        79310                        61407
5033                        78942                        60251
5034                       103419                        65809
5035                        70646                        52685
5036                        89546                        53433
5037                        66932                        49805
5038                        74656                        50158
5039                       122355                        61004
5040                        55459                        38452
5041                        68768                        43452
5042                        54062                        42971
5043                        64902                        42726
5044                        48231                        39156
5045                      1613702                      1288632
5046                      1561258                      1144739
5047                      1392007                       939912
5048                      1395566                      1039670
5049                       960172                       817185
5050                       911093                       735264
5051                       892446                       710489
5052                       964604                       771794
5053                       993408                       733102
5054                      1397085                      1228548
5055                      1376595                      1088287
5056                      1356472                      1118453
5057                      1447623                      1091904
5058                      1525510                      1094937
5059                      1652432                      1446564
5060                      1564658                      1379670
5061                      1713211                      1488491
5062                      1447132                      1259358
5063                      1413025                      1245189
5064                      1198246                      1034295
5065                      1197855                      1035008
5066                      1153490                       969971
5067                      1329077                      1169825
5068                      1402395                      1297883
5069                      1374242                      1233355
5070                      1630640                      1398829
5071                      1477093                      1226902
5072                      1268950                      1062854
5073                      1335078                       964900
5074                      1363234                       976198
5075                      1299214                      1034533
5076                      1474559                      1071647
5077                      1544629                      1146035
5078                      1550045                      1225103
5079                      1594861                      1215673
5080                      1515562                      1161264
5081                      1328964                      1124257
5082                      1320919                      1124850
5083                      1099219                       896073
5084                      1247605                       951744
5085                      1147083                       882135
5086                       883739                       731907
5087                       957869                       822317
5088                       902750                       791893
5089                       791466                       658990
5090                       832091                       662650
5091                      1048473                       756323
5092                       862689                       623664
5093                       928933                       705849
5094                       769871                       621920
5095                       800065                       656702
5096                       795564                       682312
5097                      1505735                       736767
5098                      1439566                       670843
5099                      1124601                       630164
5100                      1603343                       644607
5101                      1000540                       509394
5102                      1127325                       592607
5103                      1080426                       543744
5104                       980840                       432321
5105                       964608                       416179
5106                       981836                       435848
5107                      1211778                       420581
5108                      1098336                       516483
5109                      1206077                       602428
5110                      1269316                       691449
5111                      1326953                       706832
5112                      1250665                       791920
5113                      1350426                       771445
5114                      1039496                       738944
5115                      1131257                       827155
5116                      1235785                       745879
5117                      1085092                       710560
5118                      1096810                       724984
5119                      1029574                       657021
5120                      1108146                       705841
5121                      1168263                       785437
5122                      1677681                      1031656
5123                      1184385                       850212
5124                      1257241                       699685
5125                      1013490                       641109
5126                      1209213                       563931
5127                      1271965                       531132
5128                      1103370                       536817
5129                      1658275                       610051
5130                      1510896                       712577
5131                      2057091                       738083
5132                      1620237                       542496
5133                      1180206                       556255
5134                      1539555                       519721
5135                      1045919                       551758
5136                       951934                       530183
5137                       945670                       506482
5138                      1417828                       527241
5139                       912052                       493727
5140                      1407174                       528218
5141                       878493                       459450
5142                       871290                       499341
5143                      1846428                       740217
5144                       903533                       485346
5145                      1122442                       570261
5146                       750058                       507151
5147                      1020576                       489927
5148                       715314                       482359
5149                        32988                        32947
5150                        42556                        42186
5151                        51512                        50879
5152                        28902                        28878
5153                        23871                        23853
5154                        46097                        45969
5155                        55965                        55562
5156                        28679                        28639
5157                        27286                        27170
5158                        35996                        35886
5159                        36058                        34881
5160                        43226                        33043
5161                        89795                        45597
5162                        49375                        39037
5163                        36230                        32497
5164                        41643                        41634
5165                        39238                        39194
5166                        39321                        39316
5167                        44049                        44034
5168                        40762                        40759
5169                        38403                        38394
5170                        41986                        41986
5171                        41881                        41881
5172                        51223                        51218
5173                        44657                        44566
5174                        45212                        44836
5175                        44036                        44033
5176                        41122                        41041
5177                        42267                        37812
5178                        61474                        60082
5179                        55339                        55214
5180                        45151                        36361
5181                        60947                        60820
5182                        56830                        55178
5183                        53407                        53362
5184                        44928                        44270
5185                        75319                        75099
5186                        42944                        42825
5187                        49667                        48727
5188                        63256                        63172
5189                        36653                        36639
5190                        51134                        51070
5191                        52556                        52480
5192                        47818                        47751
5193                        64822                        64779
5194                        35122                        35053
5195                        72326                        72053
5196                        45913                        45821
5197                        42693                        42637
5198                        52474                        52342
5199                        49770                        49569
5200                        45295                        43671
5201                        64328                        47504
5202                        71669                        52786
5203                        71684                        57071
5204                        70735                        40392
5205                        59769                        40665
5206                        50121                        35285
5207                        57078                        40602
5208                        64456                        45157
5209                        71015                        45592
5210                        85450                        61304
5211                        57696                        42853
5212                        55724                        39013
5213                        73795                        41062
5214                        64184                        38326
5215                        77402                        50959
5216                        64128                        50775
5217                        82460                        59982
5218                        67224                        43548
5219                       115305                        98023
5220                       153767                       137801
5221                       177047                       154944
5222                       131076                       109459
5223                       156047                       132587
5224                       182001                       152990
5225                       229916                       204560
5226                       260501                       225967
5227                       155221                       126592
5228                       171480                       139118
5229                       177314                       139480
5230                       204436                       170178
5231                       164256                       150823
5232                       184967                       156415
5233                       210259                       179610
5234                       182064                       127496
5235                       145835                       126406
5236                       156818                       123839
5237                       131088                        96910
5238                       127397                        98906
5239                       114504                        82978
5240                        96952                        76483
5241                       110433                        73562
5242                        96265                        65087
5243                       107604                        84302
5244                       108603                        81857
5245                       101066                        74252
5246                        87450                        69047
5247                       113765                        71787
5248                       106869                        68748
5249                       101107                        67008
5250                        79049                        63934
5251                       112747                        89122
5252                        79080                        67243
5253                        15833                        14866
5254                        13185                        12270
5255                         9747                         8824
5256                         7088                         6842
5257                         8270                         8270
5258                         9906                         9906
5259                        10591                        10591
5260                        11213                        11213
5261                         6794                         6792
5262                        18222                        18222
5263                        22126                        22126
5264                        22179                        22179
5265                        20560                        20560
5266                        19376                        19359
5267                        17327                        17071
5268                        19415                        18637
5269                        12286                        12129
5270                        20407                        19307
5271                        18383                        17428
5272                        15972                        15337
5273                        16213                        15518
5274                        18721                        18176
5275                        19499                        16609
5276                        25559                        24464
5277                        31728                        28755
5278                        35696                        32831
5279                        29858                        28353
5280                        30179                        28499
5281                        32429                        31259
5282                        31245                        29640
5283                        28185                        27875
5284                        30412                        29287
5285                        28098                        28098
5286                        32834                        32834
5287                        26696                        26696
5288                        27272                        27269
5289                        30486                        30486
5290                        29291                        29291
5291                        26380                        26380
5292                        28359                        28359
5293                        25509                        25509
5294                        27715                        27711
5295                        25257                        25158
5296                        24248                        23556
5297                        24038                        22192
5298                        26951                        25835
5299                        28742                        28033
5300                        27787                        27245
5301                        29308                        29215
5302                        27814                        27814
5303                        25129                        25129
5304                        20920                        20920
5305                       183681                        87877
5306                       177572                        77777
5307                       129655                        72901
5308                       214105                        91216
5309                       111270                        52268
5310                       120219                        58517
5311                       130004                        63859
5312                       105650                        43845
5313                       104008                        42732
5314                        97801                        35310
5315                       136938                        36246
5316                       121816                        53843
5317                       126706                        63737
5318                       142174                        78486
5319                       145475                        73698
5320                       121354                        65129
5321                       156524                        85778
5322                       101678                        78855
5323                       113884                        80158
5324                       127939                        65541
5325                       120286                        75446
5326                       108156                        68166
5327                       113201                        71809
5328                       131038                        87459
5329                       125572                        87918
5330                       182481                       116196
5331                       129450                        88533
5332                       135374                        68956
5333                        97288                        57317
5334                       123575                        61524
5335                       126419                        63312
5336                        96827                        54513
5337                       168903                        58114
5338                       158069                        81108
5339                       235292                        85158
5340                       184380                        60995
5341                       124388                        63443
5342                       182667                        58748
5343                       132566                        68923
5344                       113114                        58017
5345                       108809                        52244
5346                       175373                        56867
5347                       114878                        62840
5348                       186636                        67867
5349                       107623                        55695
5350                        92990                        56731
5351                       247470                        98976
5352                       140399                        66287
5353                       196648                        80147
5354                       115800                        70537
5355                       180321                        70164
5356                       102561                        69224
5357                     10207830                      7709584
5358                      9422776                      6970320
5359                     10713277                      8149439
5360                     10240878                      7187023
5361                      7349757                      5691267
5362                      8017464                      6207080
5363                      7602862                      5602594
5364                      7098160                      5245067
5365                      6604080                      4655046
5366                      8616979                      6508667
5367                      9594018                      6934369
5368                      9234784                      6849127
5369                     10466072                      7408766
5370                     10008534                      7440445
5371                     10040762                      7649502
5372                     10271370                      8199581
5373                     10863029                      8555284
5374                     10448164                      8503871
5375                     10350629                      8749239
5376                     10404656                      8479507
5377                     10136876                      8386276
5378                      9824723                      8193011
5379                     10264348                      8315739
5380                     10753156                      8737861
5381                     11166526                      8984514
5382                     12407004                      9967538
5383                     10773128                      8834970
5384                     10515651                      8223281
5385                     10147819                      8039866
5386                     11254801                      8492744
5387                     10923377                      8085657
5388                     10623982                      7835766
5389                     11276356                      7987029
5390                     12211188                      8747757
5391                     11804441                      8376124
5392                     10711949                      7835836
5393                     10720882                      8128710
5394                     10499801                      7808771
5395                      9102948                      6830380
5396                     10055499                      7745105
5397                      9700550                      7248858
5398                      9807875                      7231163
5399                      9357289                      7502570
5400                     10123401                      7251667
5401                      9409896                      7213493
5402                      9564300                      7102422
5403                     12698112                      9083373
5404                      8701405                      6684515
5405                     10271872                      7438490
5406                      9138082                      6846324
5407                      9314348                      6735384
5408                      8911429                      6464896
5409                      2414074                      1681101
5410                      2248150                      1571422
5411                      3330284                      2543801
5412                      2532203                      1534025
5413                      1636667                      1068035
5414                      1920547                      1357081
5415                      1983632                      1238998
5416                      1764684                      1168747
5417                      1577393                      1029900
5418                      2203553                      1441557
5419                      2539406                      1566290
5420                      2327571                      1433086
5421                      3201512                      1755945
5422                      2437197                      1445593
5423                      2203085                      1276041
5424                      2365115                      1494929
5425                      2357779                      1344666
5426                      2409223                      1478205
5427                      2158078                      1621160
5428                      2268691                      1560891
5429                      2244434                      1668013
5430                      2239891                      1730973
5431                      2346061                      1664868
5432                      2504101                      1822960
5433                      2606451                      1823295
5434                      2628017                      2009090
5435                      2548753                      1853715
5436                      2419021                      1643599
5437                      2322716                      1528937
5438                      2926188                      1971340
5439                      2898451                      1761130
5440                      2529688                      1385581
5441                      2859002                      1826974
5442                      3079248                      1953255
5443                      2688398                      1975170
5444                      2246865                      1582301
5445                      3065692                      1944101
5446                      2406247                      1619231
5447                      2486040                      1644832
5448                      2538488                      1771851
5449                      2257593                      1216115
5450                      2470528                      1608842
5451                      2223310                      1665447
5452                      2681463                      1557228
5453                      2734390                      1670969
5454                      2293244                      1225073
5455                      3123582                      1921220
5456                      2240990                      1438474
5457                      2761390                      1345680
5458                      2868823                      1515056
5459                      2538772                      1418302
5460                      2707753                      1383713
5461                       297873                       130112
5462                       323315                       142224
5463                       386799                       167338
5464                       268576                       105843
5465                       203322                       104487
5466                       210703                       109832
5467                       207108                       114356
5468                       189492                       106572
5469                       170583                        77113
5470                       208644                        92147
5471                       326050                       204703
5472                       227171                       153534
5473                       201432                       131472
5474                       188233                       117477
5475                       179628                       104714
5476                       193032                       111107
5477                       192349                       112529
5478                       211027                       134565
5479                       223752                       142739
5480                       244143                       159059
5481                       219758                       152301
5482                       212715                       144484
5483                       262557                       169488
5484                       251112                       178907
5485                       287874                       187139
5486                       318422                       212682
5487                       346014                       243994
5488                       278539                       167775
5489                       213895                       110853
5490                       238201                       106610
5491                       257285                       107016
5492                       198590                        97204
5493                       162737                        97314
5494                       212841                       124984
5495                       255700                       173262
5496                       195911                        97308
5497                       199617                        92473
5498                       168152                        97396
5499                       114281                        82970
5500                       155583                        99134
5501                       140577                        86993
5502                       149760                        88060
5503                       118579                        89574
5504                       125241                        84429
5505                       140173                        88187
5506                       159513                        89654
5507                       170068                       100404
5508                       149053                        94019
5509                       135481                        94434
5510                       125527                        89811
5511                       124938                        82660
5512                       128929                        94219
5513                       265512                       173990
5514                       200421                       130079
5515                       218795                       153468
5516                       229538                       158483
5517                       207280                       137581
5518                       172460                       113141
5519                       181617                       118386
5520                       233196                       154898
5521                       258204                       189678
5522                       199514                       131656
5523                       149984                        95710
5524                       173759                       110653
5525                       166006                       100702
5526                       153118                       101913
5527                       136223                        88241
5528                       141332                        90750
5529                       178201                       116857
5530                       150195                        92866
5531                       179772                       116587
5532                       196442                       132375
5533                       220635                       148972
5534                       205049                       137139
5535                       164738                       105248
5536                       167769                       115065
5537                       216598                       154627
5538                       215484                       138657
5539                       223817                       136028
5540                       205576                       102983
5541                       174184                        94082
5542                       203016                       117301
5543                       293014                       174068
5544                       199865                       131064
5545                       222049                       142077
5546                       250754                       171472
5547                       277195                       148164
5548                       215669                       131645
5549                       225570                       138921
5550                       256639                       170946
5551                       193143                       107369
5552                       206734                       150547
5553                       170193                       108832
5554                       195711                       120154
5555                       203386                       126155
5556                       221981                       143651
5557                       275008                       222151
5558                       230747                       171819
5559                       233733                       176286
5560                       278348                       180392
5561                       256178                       177033
5562                       298994                       177899
5563                       221084                       145333
5564                       244203                       172511
5565                       204228                       111600
5566                       258478                       245666
5567                       191657                       184571
5568                       188865                       177981
5569                       286729                       263946
5570                       177809                       173143
5571                       189136                       157579
5572                       210972                       167489
5573                       189263                       178913
5574                       180419                       173552
5575                       181207                       179693
5576                       189246                       184656
5577                       179168                       166892
5578                       155034                       147300
5579                       181228                       167896
5580                       161333                       158073
5581                       160297                       158757
5582                       177515                       169534
5583                       171218                       168301
5584                       194141                       192628
5585                       210388                       198851
5586                       199211                       186158
5587                       188752                       182988
5588                       192553                       187555
5589                       186024                       181105
5590                       185101                       177112
5591                       182813                       170310
5592                       210713                       182309
5593                       183159                       167327
5594                       181315                       169246
5595                       196220                       184501
5596                       205927                       201472
5597                       228252                       221419
5598                       205002                       202535
5599                       263404                       259582
5600                       290272                       282860
5601                       207964                       202999
5602                       213890                       197171
5603                       203368                       182834
5604                       221513                       218334
5605                       216975                       213697
5606                       199144                       196644
5607                       198718                       179561
5608                       205302                       202870
5609                       192143                       190685
5610                       190774                       185955
5611                       180992                       169659
5612                       187780                       166227
5613                       196303                       187363
5614                       199803                       193911
5615                       194071                       187903
5616                       190555                       188395
5617                       186202                       183395
5618                       153891                       151346
5619                        33481                        28765
5620                        24789                        18067
5621                        24713                        18837
5622                        25648                        19630
5623                        39372                        35079
5624                        19551                        14540
5625                        21681                        14002
5626                        37274                        32441
5627                        33975                        29561
5628                        27859                        22077
5629                        26913                        23454
5630                        19239                        13508
5631                        18346                        13229
5632                        17961                        12676
5633                        19321                        13554
5634                        22053                        15258
5635                        21061                        13679
5636                        24531                        18158
5637                        39856                        35503
5638                        35581                        29076
5639                        24874                        16648
5640                        25010                        16530
5641                        24556                        15602
5642                        24303                        15904
5643                        24002                        15219
5644                        67061                        66748
5645                        44265                        44185
5646                        42489                        42360
5647                        40757                        40688
5648                        41195                        41168
5649                        44450                        44427
5650                        46020                        45988
5651                        37460                        37443
5652                        43342                        41044
5653                        47946                        45880
5654                        56280                        56264
5655                        39398                        39291
5656                        43304                        43271
5657                        41820                        41795
5658                        40326                        40187
5659                        38686                        38139
5660                        39914                        39041
5661                        60323                        58420
5662                        47208                        32639
5663                        56560                        38257
5664                        57149                        45027
5665                        42822                        41657
5666                        64602                        61439
5667                        53363                        36294
5668                        40125                        34932
5669                        43241                        38975
5670                        48885                        40257
5671                        55914                        53093
5672                        82614                        65868
5673                        88922                        75107
5674                        89311                        74553
5675                       114437                        93126
5676                        88460                        66539
5677                       106195                        65656
5678                       120892                        77117
5679                        84655                        74568
5680                        91080                        74160
5681                        87565                        74278
5682                        84463                        81134
5683                        64454                        57500
5684                       110789                        76161
5685                        99462                        71620
5686                       101081                        67635
5687                       126119                        89623
5688                       117589                        97862
5689                       112257                        83324
5690                       127401                        89674
5691                       137738                        90348
5692                       122063                        78321
5693                       122695                        85619
5694                       126528                        96107
5695                       116370                        77918
5696                       117221                        76877
5697                        82653                        75760
5698                        96597                        88408
5699                       102279                        94362
5700                       120491                       112280
5701                       117600                       109052
5702                       121711                       115907
5703                       133481                       127581
5704                       122285                       117071
5705                       153291                       146852
5706                       170610                       148967
5707                       126935                       114535
5708                       125473                       104839
5709                       143658                       124789
5710                       170299                       149095
5711                       132972                       115541
5712                       127844                       115696
5713                       105821                        87773
5714                        95963                        75285
5715                        75551                        75015
5716                        92378                        88862
5717                        96599                        88030
5718                       103106                        97916
5719                       119617                       119075
5720                       127374                       126000
5721                       120962                       118685
5722                       106575                       106092
5723                       107889                       107796
5724                        79554                        79340
5725                        46927                        37398
5726                        47400                        43236
5727                        43423                        38801
5728                        55893                        51673
5729                        57974                        54677
5730                        45769                        40451
5731                        47700                        36898
5732                        52678                        45324
5733                        51746                        19895
5734                        56499                        15585
5735                        26419                        21740
5736                        20178                        14837
5737                        45633                        25279
5738                        30601                        16986
5739                        57123                        50015
5740                        74184                        60985
5741                        72325                        63253
5742                        64736                        56628
5743                        71550                        71041
5744                        67578                        64906
5745                        81549                        79458
5746                        74744                        73066
5747                        78808                        76952
5748                        78536                        76394
5749                        70606                        68147
5750                        84698                        78261
5751                        61839                        55196
5752                        36633                        32338
5753                        44636                        40583
5754                        36714                        30261
5755                        63179                        59569
5756                        83633                        81517
5757                        65929                        63240
5758                        83714                        82649
5759                        85504                        84213
5760                        93620                        91173
5761                        74454                        72229
5762                        92947                        87097
5763                        90311                        38344
5764                        90414                        64654
5765                        87549                        86728
5766                        76846                        73724
5767                        78812                        56757
5768                        63718                        63653
5769                        49724                        49518
5770                        45965                        44232
5771                        62352                        58032
5772                        89738                        89665
5773                        89483                        87724
5774                        88840                        86198
5775                        97843                        96320
5776                        72788                        72703
5777                        45429                        45155
5778                      1538195                      1461095
5779                      1360608                      1277612
5780                      1310921                      1229947
5781                      1378241                      1291299
5782                      1449838                      1365781
5783                      1181616                      1093008
5784                      1434759                      1328429
5785                      1337035                      1248089
5786                      1181948                      1105520
5787                      1222284                      1165131
5788                       912892                       856749
5789                       881912                       822315
5790                       806432                       747128
5791                       853098                       794746
5792                       858056                       801573
5793                       911326                       860705
5794                       961878                       904618
5795                       902975                       839520
5796                       892415                       830646
5797                      1071307                       986593
5798                      1245968                      1160556
5799                      1290309                      1201487
5800                      1032288                       948516
5801                      1097188                      1018813
5802                      1085561                      1007608
5803                      1838138                      1767977
5804                      1913364                      1844798
5805                      2123362                      2061235
5806                      2066074                      1989159
5807                      2168105                      2095827
5808                      2407209                      2348868
5809                      1905813                      1829396
5810                      1756380                      1685047
5811                      2289867                      2216400
5812                      2399302                      2314634
5813                      1845111                      1770414
5814                      1925543                      1849563
5815                      1658970                      1585488
5816                      2032219                      1957059
5817                      2132149                      2059479
5818                      1698370                      1629800
5819                      1772455                      1709046
5820                      1603341                      1528140
5821                      1791637                      1727385
5822                      1954663                      1870563
5823                      1918345                      1728825
5824                      2403372                      2247565
5825                      3462626                      3403581
5826                      2601999                      2504422
5827                      2297516                      2207075
5828                      2036110                      1910596
5829                      1985818                      1807927
5830                      1940375                      1762034
5831                       170310                       162934
5832                        66648                        63207
5833                        71289                        66708
5834                       153859                       146050
5835                        63193                        59298
5836                        64544                        61925
5837                        68336                        65221
5838                        66556                        62017
5839                        70611                        66782
5840                        62685                        56998
5841                        54001                        50705
5842                        56369                        49195
5843                        58116                        52744
5844                        57761                        52514
5845                        62461                        57930
5846                        66660                        62157
5847                        67525                        63281
5848                        76109                        67996
5849                        76174                        69563
5850                        80510                        71102
5851                        77338                        67363
5852                        78414                        71208
5853                        69740                        63813
5854                        83187                        75924
5855                        85804                        77573
5856                        82485                        73227
5857                        80928                        71120
5858                        79815                        72142
5859                        71205                        62169
5860                        80493                        69740
5861                        73288                        65629
5862                        84116                        80490
5863                        76179                        71311
5864                        88147                        83152
5865                       108825                        98860
5866                        83079                        73582
5867                        86865                        81394
5868                        69885                        66437
5869                        68824                        64339
5870                        90394                        85958
5871                        74294                        69701
5872                        67822                        63180
5873                        63105                        58991
5874                        60320                        56437
5875                        59434                        54951
5876                        63901                        59663
5877                        64825                        59465
5878                        70493                        56412
5879                        69454                        58829
5880                        68630                        54563
5881                        62954                        52627
5882                        72166                        63539
5883                        59678                        45920
5884                        71779                        63314
5885                        90196                        78807
5886                       130858                        77381
5887                       510679                        87490
5888                        84522                        48070
5889                        74100                        68552
5890                        84575                        81798
5891                        82312                        79021
5892                        76848                        73426
5893                        76777                        74127
5894                        64007                        59543
5895                        74882                        69716
5896                        69781                        66070
5897                        85292                        77980
5898                        89060                        79456
5899                        77432                        69985
5900                        92390                        82437
5901                        90767                        79319
5902                        85041                        74671
5903                        93275                        79635
5904                        85103                        72282
5905                        85140                        71189
5906                        76625                        66466
5907                        85948                        73112
5908                        94852                        84928
5909                       124673                       122062
5910                       130528                       128739
5911                       122863                       119020
5912                       106152                       103151
5913                        82404                        76118
5914                        70414                        61829
5915                        76176                        69118
5916                        77064                        67000
5917                        75075                        68907
5918                        87544                        75729
5919                        81022                        72855
5920                        72873                        66654
5921                        82832                        75156
5922                        72633                        63363
5923                        61143                        56001
5924                        62037                        56905
5925                        65007                        61719
5926                        53435                        47528
5927                        68875                        62918
5928                        68809                        62915
5929                        71644                        64795
5930                        87882                        81976
5931                       105221                        94444
5932                        96974                        85616
5933                        91408                        83228
5934                        75362                        67302
5935                        91609                        81468
5936                        69718                        63551
5937                       130414                       120023
5938                        62632                        48089
5939                        83965                        57656
5940                       139814                        38355
5941                       163245                        20306
5942                        98908                        15934
5943                       152289                        19201
5944                       198609                        16033
5945                       193381                        19496
5946                       147745                        28319
5947                       116850                        31735
5948                       115871                        21562
5949                       112444                        19544
5950                       116625                        22882
5951                       109312                        22412
5952                       110332                        25990
5953                       130384                        28410
5954                       133358                        28780
5955                       160334                        21251
5956                       194755                        21955
5957                       163128                        21883
5958                       142600                        23000
5959                       126532                        16005
5960                       124578                        14923
5961                       120977                        16211
5962                       155718                        38543
5963                       229892                        35260
5964                       230991                        28718
5965                       164488                        33465
5966                       270674                        24202
5967                       241315                        32810
5968                       214935                        34310
5969                       178059                        27840
5970                       216923                        25076
5971                       397270                        33659
5972                       140817                        30878
5973                       128696                        29244
5974                       175191                        36250
5975                       129691                        30134
5976                       209329                        33461
5977                       142153                        30291
5978                       189313                        33908
5979                       203327                        28992
5980                       186513                        20143
5981                       168623                        28279
5982                       206009                        23086
5983                       183442                        30174
5984                       223654                        35158
5985                       203170                        30235
5986                       232673                        34562
5987                       216858                        29095
5988                       152922                        33746
5989                       193851                        30669
5990                        81710                        68828
5991                        67052                        61296
5992                        69696                        58822
5993                        67132                        59595
5994                        71746                        56452
5995                        48949                        38018
5996                        75591                        69169
5997                        82556                        69587
5998                        97756                        91641
5999                        73161                        68104
6000                        48303                        42964
6001                        45124                        38815
6002                        47263                        40288
6003                        50248                        42738
6004                        50046                        44515
6005                        51527                        44155
6006                        60566                        52388
6007                        51065                        44365
6008                        69185                        62542
6009                        96078                        88137
6010                        71343                        62534
6011                        86891                        78410
6012                        61694                        52484
6013                        53909                        48160
6014                        58486                        49409
6015                       115493                        92651
6016                       135796                       119449
6017                       115732                        98172
6018                       150871                       135611
6019                        75283                        71041
6020                        91098                        85697
6021                        78751                        56750
6022                        71333                        62963
6023                       102078                        94035
6024                       112857                       104277
6025                        83333                        75470
6026                        75309                        72832
6027                       121098                       118412
6028                        93908                        91577
6029                        73248                        70290
6030                        60339                        57573
6031                        45907                        43921
6032                        44082                        40702
6033                        59882                        54734
6034                        69402                        66798
6035                        64535                        62128
6036                        81002                        76106
6037                       118216                       114404
6038                        62604                        54599
6039                        69396                        65667
6040                        75099                        65836
6041                        84768                        81563
6042                        76630                        73433
6043                       323046                       161255
6044                       287235                       204607
6045                       322293                       262364
6046                       425919                       358595
6047                       360040                       278475
6048                       211630                       130864
6049                       226238                       137522
6050                       269169                       120695
6051                       293086                       104980
6052                       306158                       180681
6053                       323694                       252684
6054                       227064                       147725
6055                       234958                       149961
6056                       228952                       147484
6057                       253846                       175956
6058                       237414                       161740
6059                       259060                       179461
6060                       266531                       188278
6061                       272014                       192595
6062                       309309                       154837
6063                       323784                       157632
6064                       279678                       187977
6065                       256708                       169790
6066                       279535                       181152
6067                       317217                       174976
6068                       548399                       542369
6069                       449314                       445093
6070                       414839                       410536
6071                       394882                       391343
6072                       393750                       390320
6073                       382898                       379395
6074                       366096                       363231
6075                       337512                       334653
6076                       376331                       372604
6077                       377986                       373862
6078                       409483                       405190
6079                       478559                       474436
6080                       467254                       463182
6081                       343176                       338910
6082                       351806                       347585
6083                       354163                       350222
6084                       314531                       311549
6085                       312997                       310580
6086                       298477                       296356
6087                       319531                       292306
6088                       354552                       317474
6089                       475224                       464057
6090                       430203                       352920
6091                       308162                       264359
6092                       305307                       302263
6093                       323455                       319826
6094                       344998                       341681
6095                       367515                       364446
6096                       447156                        62602
6097                       350633                       104300
6098                       322595                        98285
6099                       397779                       131382
6100                       365682                        98904
6101                       233907                        93132
6102                       356693                        97734
6103                       431105                       102535
6104                       482924                        89817
6105                       415934                        92309
6106                       268155                        96160
6107                       251336                        98272
6108                       264170                       102205
6109                       241372                        68912
6110                       212814                        75919
6111                       247154                       113823
6112                       290599                       130758
6113                       286938                       108571
6114                       383746                        99070
6115                       426661                        88857
6116                       277065                       109341
6117                       268074                       101541
6118                       314570                        80822
6119                       455022                        86886
6120                       312011                       114963
6121                       503389                       192191
6122                       480713                       167077
6123                       482129                       130071
6124                       487713                       129619
6125                       446178                       115181
6126                       486886                       200815
6127                       463747                       125062
6128                       382891                        90426
6129                       373293                       215216
6130                       382469                       272024
6131                       371750                       176258
6132                       418129                        88929
6133                       446787                       103005
6134                       380509                       117825
6135                       348704                       156262
6136                       301355                       144528
6137                       348988                       142550
6138                       359291                       134715
6139                       316422                       148831
6140                       390731                       214059
6141                       374405                       150958
6142                       310309                       109878
6143                       502651                       249330
6144                       485812                       315628
6145                       476140                       326362
6146                       430361                       255415
6147                       409948                       247424
6148                       471873                       310280
6149                       204946                       161600
6150                       174366                       156973
6151                       177833                       149638
6152                       167857                       148544
6153                       194253                       120011
6154                       110088                        82401
6155                       193752                       175882
6156                       218572                       185753
6157                       221898                       204822
6158                       175216                       163759
6159                       123012                       106302
6160                       104445                        89626
6161                       117240                        98662
6162                       116390                        99540
6163                       116034                       100643
6164                       122269                       101941
6165                       134246                       113844
6166                       115633                        98011
6167                       150869                       133119
6168                       213257                       191985
6169                       160945                       137134
6170                       212512                       185661
6171                       158180                       133047
6172                       129995                       113416
6173                       183787                       155523
6174                       283406                       232206
6175                       220760                       183724
6176                       234481                       200995
6177                       375816                       349597
6178                       164275                       159994
6179                       191150                       174009
6180                       187643                       126219
6181                       156042                       123294
6182                       249876                       225833
6183                       297887                       259511
6184                       172423                       150695
6185                       159465                       144673
6186                       183706                       165253
6187                       137997                       123526
6188                       143399                       131640
6189                       144058                       125425
6190                       118784                       101931
6191                        98532                        80640
6192                       198654                       184675
6193                       221494                       186675
6194                       162535                       147195
6195                       228724                       212979
6196                       328254                       321791
6197                       178320                       174386
6198                       258555                       254297
6199                       193117                       181789
6200                       229144                       225725
6201                       196385                       194306
6202                        38298                        17392
6203                        40786                        29812
6204                        38514                        21582
6205                        34838                        25029
6206                        51277                        14813
6207                        33102                        22505
6208                        52667                        42924
6209                        41935                        31462
6210                        35898                        26099
6211                        48602                        40971
6212                        35000                        27100
6213                        33990                        27064
6214                        33872                        25625
6215                        38937                        30262
6216                        37652                        26290
6217                        35352                        25044
6218                        40019                        29054
6219                        43184                        30196
6220                        38971                        26953
6221                        45490                        30577
6222                        42146                        29467
6223                        50333                        31735
6224                        45228                        30869
6225                        43980                        29975
6226                        44639                        25054
6227                        57100                        38785
6228                        66921                        45887
6229                        56364                        42162
6230                        65284                        38841
6231                        57395                        40421
6232                        50161                        34931
6233                        56782                        41978
6234                        51165                        35806
6235                        47715                        35586
6236                        50332                        30913
6237                        49986                        36779
6238                        47828                        32757
6239                        58794                        39419
6240                        43014                        30184
6241                        44999                        31735
6242                        50130                        32426
6243                        46315                        30574
6244                        42831                        26704
6245                        49806                        28414
6246                        47601                        25307
6247                        42589                        28013
6248                        59040                        49076
6249                        82539                        78260
6250                        60697                        53182
6251                        81248                        72436
6252                        55011                        49537
6253                        67636                        60762
6254                        72555                        68737
6255                      1202219                       927628
6256                      1001739                       812839
6257                      1066101                       773430
6258                      1562690                       776311
6259                      1183450                       577048
6260                       804532                       475224
6261                      1255362                       810002
6262                      1383179                       791377
6263                      1340878                       823844
6264                      1107450                       775312
6265                       826663                       555285
6266                       813224                       525271
6267                       819118                       531466
6268                       895149                       599057
6269                       896406                       603851
6270                       885608                       597801
6271                      1018823                       687077
6272                       982826                       641936
6273                      1122182                       706995
6274                      1358388                       890686
6275                      1149901                       733843
6276                      1256272                       832555
6277                      1073692                       685116
6278                      1009397                       647896
6279                      1078419                       686342
6280                      1649727                      1093508
6281                      1729174                      1157601
6282                      1696764                      1090180
6283                      1872007                      1345931
6284                      1530739                       867501
6285                      1465604                       858903
6286                      1347372                       776305
6287                      1239244                       750032
6288                      1659702                       944331
6289                      1983926                      1072505
6290                      1241566                       797304
6291                      1203386                       762725
6292                      1388676                       937395
6293                      1074273                       758453
6294                      1139852                       723375
6295                      1075401                       694807
6296                      1074281                       650674
6297                       952800                       549146
6298                      1124589                       720629
6299                      1221965                       756490
6300                      1171348                       721289
6301                      1419929                       978489
6302                      1796713                      1334038
6303                      1392665                       891430
6304                      1540187                      1068557
6305                      1337523                       878110
6306                      1391152                      1010323
6307                      1242361                       885769
6308                        53704                        41330
6309                        65478                        61171
6310                        59146                        54104
6311                        68036                        62283
6312                        64773                        57036
6313                        71341                        55196
6314                        88355                        59742
6315                        70518                        54249
6316                        61018                        58486
6317                        55278                        54996
6318                        63875                        62344
6319                        60177                        48527
6320                        50829                        46035
6321                        60552                        56522
6322                        51542                        50220
6323                        48476                        47546
6324                        50338                        44252
6325                        55767                        52253
6326                        61187                        60212
6327                        68259                        60759
6328                        68273                        55944
6329                        64720                        59348
6330                        65768                        64199
6331                        62894                        58581
6332                        60992                        53142
6333                        66737                        49615
6334                        73563                        61050
6335                        61189                        52906
6336                        62058                        55130
6337                        65908                        58869
6338                        77984                        75849
6339                        84708                        80202
6340                        72121                        70371
6341                        91634                        90107
6342                       107020                       101119
6343                        78362                        76016
6344                        68478                        61431
6345                        87450                        74663
6346                        82363                        78471
6347                        75089                        73919
6348                        69656                        68119
6349                        65314                        58499
6350                        67961                        64447
6351                        67241                        66400
6352                        68720                        66311
6353                        63634                        61718
6354                        64668                        57944
6355                        72537                        67100
6356                        72004                        70448
6357                        77543                        74174
6358                        77124                        75331
6359                        69624                        67891
6360                        57099                        52817
6361                        56274                        48825
6362                        58219                        53041
6363                        61778                        56645
6364                        69543                        58863
6365                        58495                        47328
6366                        70294                        42139
6367                        90071                        61128
6368                        57781                        55528
6369                        73652                        62769
6370                        53790                        51182
6371                        57391                        55718
6372                        51819                        49692
6373                        51062                        50140
6374                        53222                        51546
6375                        42532                        41354
6376                        52302                        50194
6377                        55759                        52069
6378                        54862                        52916
6379                        56091                        55271
6380                        64553                        59504
6381                        66101                        49439
6382                        57016                        52869
6383                        61918                        59707
6384                        54518                        49947
6385                        49710                        46746
6386                        63102                        56481
6387                        58577                        46887
6388                        46271                        42686
6389                        55404                        52478
6390                        66009                        62895
6391                        60533                        59150
6392                        67704                        67320
6393                        60124                        59725
6394                        87497                        85672
6395                       110584                       109325
6396                        58758                        56542
6397                        57702                        51719
6398                        61181                        56049
6399                        77042                        76174
6400                        54303                        53650
6401                        57349                        56284
6402                        52458                        46606
6403                        57368                        56748
6404                        48436                        46651
6405                        54463                        51394
6406                        50458                        45723
6407                        58058                        54677
6408                        54655                        49804
6409                        63874                        62168
6410                        67812                        65059
6411                        48150                        46456
6412                        48584                        47415
6413                        39088                        38035
6414                       613924                       527744
6415                       423209                       327463
6416                       312487                       218018
6417                       506091                       416839
6418                       560213                       479680
6419                       353079                       264827
6420                       384513                       298259
6421                       485264                       416893
6422                       568587                       428439
6423                       453173                       264530
6424                       386326                       298350
6425                       401068                       310037
6426                       402723                       320850
6427                       375823                       291965
6428                       331638                       262287
6429                       330377                       229436
6430                       364252                       259297
6431                       252687                       172564
6432                       402461                       293697
6433                       420043                       230160
6434                       523705                       224811
6435                       384500                       246147
6436                       374783                       247454
6437                       361492                       240331
6438                       411291                       279520
6439                       722268                       334967
6440                       544011                       276152
6441                       494063                       188282
6442                       752366                       201968
6443                       405712                       200221
6444                       577392                       357448
6445                       413741                       187987
6446                       459543                       190862
6447                       583615                       262815
6448                       703049                       232259
6449                       794485                       164674
6450                       752218                       224693
6451                       371325                       312771
6452                       280484                       204288
6453                       476292                       316602
6454                       222861                       203296
6455                       158515                       157513
6456                       102947                       101885
6457                       211272                       209810
6458                       321032                       292107
6459                       419061                       291927
6460                       419749                       278125
6461                       404190                       316098
6462                       194545                        74838
6463                       145505                        79247
6464                       291152                       242010
6465                       282900                       190479
6466                       193803                        62497
6467                        66135                        59517
6468                        55579                        47671
6469                        58298                        48938
6470                        73725                        37305
6471                        68510                        23489
6472                        56024                        25102
6473                        93605                        42396
6474                       100042                        36175
6475                        98141                        35478
6476                        77407                        36905
6477                        58968                        28364
6478                        58463                        27096
6479                        57300                        27891
6480                        64991                        33550
6481                        63551                        31442
6482                        61792                        31782
6483                        69274                        35803
6484                        75306                        39687
6485                        86904                        32946
6486                        82427                        35016
6487                        78244                        36183
6488                        82871                        39049
6489                        76668                        35579
6490                        76418                        37124
6491                        73121                        34009
6492                       113180                        51238
6493                       105792                        54878
6494                       116043                        49445
6495                       113131                        53307
6496                       140149                        46236
6497                       125075                        40297
6498                        97316                        45526
6499                        99360                        44715
6500                       155634                        44373
6501                       148454                        50839
6502                       109826                        47390
6503                       126435                        42540
6504                       111566                        46322
6505                        77579                        41689
6506                        92248                        45777
6507                        99700                        42285
6508                        93504                        41713
6509                        71519                        35130
6510                        69428                        40647
6511                        91847                        38589
6512                        91066                        42819
6513                       100653                        51398
6514                       105217                        53663
6515                       115110                        53542
6516                        94228                        47552
6517                        91022                        45738
6518                        89599                        41839
6519                        67289                        39170
6520                        76262                        29167
6521                        51710                        25722
6522                        66638                        27359
6523                        73668                        33266
6524                        55628                        41484
6525                        47379                        26125
6526                        60179                        25039
6527                        59003                        48421
6528                        48395                        33226
6529                        71276                        39626
6530                        51430                        21041
6531                        51315                        23963
6532                        51765                        22345
6533                        45840                        19481
6534                        35881                        18592
6535                        46140                         8861
6536                        43533                        22005
6537                        50425                        20452
6538                        41827                        19493
6539                        51162                        22007
6540                        67284                        40501
6541                        53639                        22134
6542                        55446                        32147
6543                        56451                        23711
6544                        57145                        24773
6545                        48928                        28914
6546                        56470                        31306
6547                        63837                        33088
6548                        43351                        23346
6549                        57336                        29032
6550                        42394                        24682
6551                        69115                        35449
6552                        54460                        25647
6553                        55359                        24531
6554                        86402                        33910
6555                        64146                        26376
6556                        53961                        25195
6557                        51941                        25863
6558                        52407                        22044
6559                        48749                        20350
6560                        51980                        20445
6561                        50413                        24402
6562                        50664                        23970
6563                        46978                        19071
6564                        61513                        31646
6565                        48542                        19864
6566                        75274                        28074
6567                       141031                        64166
6568                        88795                        37567
6569                       119566                        28446
6570                        80417                        27774
6571                        70680                        29268
6572                       121607                        35501
6573                       116801                        49191
6574                        97857                        60970
6575                        98958                        63480
6576                       124468                        62945
6577                       116140                        47447
6578                        72969                        45659
6579                        91022                        47255
6580                       118895                        42648
6581                       137627                        41686
6582                        88997                        41860
6583                        67506                        46482
6584                        68205                        44184
6585                        72049                        47488
6586                        63357                        43606
6587                        70275                        42658
6588                        72796                        45362
6589                        66526                        43188
6590                        72880                        45087
6591                        63892                        39816
6592                       100425                        34087
6593                       148287                        42423
6594                       108608                        49026
6595                       121688                        58516
6596                       113058                        46713
6597                       107720                        36179
6598                       199351                        75040
6599                       189740                        70019
6600                       175934                        53411
6601                       161887                        55968
6602                       158063                        60840
6603                       177544                        63050
6604                       173650                        62414
6605                       168349                        48462
6606                       191197                        47411
6607                       223945                        50094
6608                       174176                        43598
6609                       230634                        41132
6610                       223203                        56490
6611                       139762                        50812
6612                       158457                        63727
6613                       155331                        64616
6614                       153949                        51704
6615                       153566                        72720
6616                       168363                        53110
6617                       164133                        55240
6618                       135902                        65648
6619                       210639                        53529
6620                       264250                        56406
6621                       135097                        59096
6622                       178184                        44375
6623                       212873                        59471
6624                       212524                        71141
6625                       185749                        62604
6626                      1012389                       959747
6627                       884082                       831557
6628                       840433                       790546
6629                       920916                       868362
6630                       972151                       913002
6631                       755782                       702784
6632                       966392                       893064
6633                       914474                       851550
6634                       799762                       748134
6635                       840115                       794198
6636                       598616                       551748
6637                       558535                       509468
6638                       522541                       475272
6639                       557461                       510569
6640                       574907                       529354
6641                       586009                       543637
6642                       615520                       568315
6643                       572808                       521219
6644                       570846                       523454
6645                       677650                       618120
6646                       846737                       784482
6647                       860005                       793164
6648                       661785                       603467
6649                       711322                       652958
6650                       715949                       658086
6651                      1337481                      1285980
6652                      1384274                      1337891
6653                      1541331                      1496630
6654                      1476810                      1424124
6655                      1598855                      1550404
6656                      1799757                      1761072
6657                      1378948                      1324067
6658                      1231946                      1178399
6659                      1656491                      1602635
6660                      1787982                      1727340
6661                      1345962                      1286252
6662                      1417998                      1358190
6663                      1179887                      1117996
6664                      1520465                      1460395
6665                      1601320                      1542668
6666                      1219914                      1168719
6667                      1260178                      1209898
6668                      1125685                      1067166
6669                      1269943                      1214991
6670                      1406605                      1341305
6671                      1442193                      1277346
6672                      1790490                      1664507
6673                      2701610                      2656630
6674                      1982018                      1923043
6675                      1775687                      1710186
6676                      1522820                      1442446
6677                      1385480                      1288525
6678                      1441332                      1332601
6679                        57333                        37618
6680                        44886                        23838
6681                        44841                        29455
6682                        56811                        26608
6683                        53643                         9238
6684                        29023                        10221
6685                        43155                        12675
6686                        54034                        11788
6687                        45794                        13436
6688                        54992                        13041
6689                        33521                        13492
6690                        32139                        12700
6691                        31510                        11688
6692                        33337                        14044
6693                        31626                        12529
6694                        35311                        14322
6695                        41623                        15816
6696                        42457                        16063
6697                        43650                        17157
6698                        50049                        24106
6699                        53281                        27904
6700                        54996                        29611
6701                        54513                        29280
6702                        52478                        24730
6703                        42770                        15204
6704                        76179                        22207
6705                        62728                        23992
6706                        68242                        20546
6707                        51626                        21822
6708                        63451                        17357
6709                        70111                        16752
6710                        60274                        16202
6711                        50482                        14519
6712                        42501                        16236
6713                        74600                        21513
6714                        42529                        18452
6715                        48335                        16781
6716                        50128                        18407
6717                        44161                        17619
6718                        51394                        18336
6719                        50458                        18245
6720                        28158                        17375
6721                        40621                        14085
6722                        49622                        12671
6723                        43410                        15169
6724                        50788                        13810
6725                        71260                        16002
6726                        48887                        19517
6727                        58306                        17307
6728                        57605                        18678
6729                        43327                        17645
6730                        60172                        17860
6731                        47918                        12574
6732                       152323                        72699
6733                       120690                        88551
6734                       142324                        69456
6735                       150858                        75190
6736                       131661                        75459
6737                       116959                        70352
6738                       155975                        80040
6739                       123105                        72870
6740                       101261                        66124
6741                       152103                        75334
6742                       118763                        61151
6743                        98117                        72028
6744                       109102                        80224
6745                        96658                        54423
6746                        75257                        33218
6747                        77835                        16643
6748                        61778                        34614
6749                        90373                        40451
6750                        97570                        37813
6751                        94303                        34143
6752                       114203                        31618
6753                        94854                        38651
6754                        95997                        34817
6755                       104764                        35386
6756                        90205                        38435
6757                       111333                        44356
6758                       131428                        49955
6759                       123210                        51069
6760                       127089                        51804
6761                       160585                        73486
6762                       152040                        84993
6763                       167809                       102592
6764                       146579                        86441
6765                       149836                        87202
6766                       209631                        96700
6767                       193154                        79252
6768                       145077                        81699
6769                       129146                        73084
6770                       106611                        66359
6771                       119204                        63253
6772                       121257                        59606
6773                       143484                        80526
6774                       106551                        58637
6775                       112654                        56961
6776                       135508                        76060
6777                       116357                        58635
6778                       170281                        67653
6779                       282357                       102844
6780                       208309                        99039
6781                       253417                        71856
6782                       210805                        82723
6783                       190953                        85739
6784                       277538                        84253
6785                      1411792                      1246594
6786                       945549                       824335
6787                       961484                       853140
6788                      1404338                      1229379
6789                       953110                       762953
6790                       793694                       663097
6791                       939370                       751485
6792                       919162                       735347
6793                       982039                       821114
6794                       927954                       774153
6795                       796520                       698823
6796                       778033                       654675
6797                       745721                       630329
6798                       808832                       688480
6799                       801386                       704199
6800                       817470                       716654
6801                       865623                       732278
6802                       889303                       747801
6803                       944712                       804265
6804                      1087069                       904139
6805                      1013908                       836576
6806                      1006738                       856452
6807                       977682                       833165
6808                      1005806                       861275
6809                      1016825                       860214
6810                      1214992                       969122
6811                      1267464                      1026993
6812                      1127352                       903265
6813                      1054980                       909823
6814                      1112756                       900867
6815                      1123278                       916402
6816                      1241825                      1002084
6817                      1151651                       953596
6818                      1259277                      1104012
6819                      1698911                      1456001
6820                      1185502                      1038439
6821                      1185824                      1044589
6822                      1092118                       962600
6823                      1088253                       990216
6824                      1322626                      1192231
6825                      1127463                       988524
6826                       970056                       867587
6827                       995740                       868710
6828                      1176993                      1044381
6829                       950191                       823880
6830                      1007621                       857235
6831                      1054822                       860149
6832                      1116991                       950346
6833                      1003194                       845213
6834                      1042788                       859649
6835                      1003637                       876947
6836                      1007511                       873053
6837                       875004                       719380
6838                        89386                        70278
6839                        78726                        65116
6840                        92613                        79114
6841                       109265                        94522
6842                        98063                        78202
6843                        70172                        58959
6844                        77107                        65958
6845                        73436                        63381
6846                        75735                        63827
6847                        82107                        68555
6848                        59465                        49861
6849                        63457                        53310
6850                        59729                        49424
6851                        59782                        52292
6852                        61965                        54502
6853                        66685                        56309
6854                        66122                        56903
6855                        68909                        57883
6856                        61856                        48845
6857                       109665                        90141
6858                       105463                        87901
6859                       100571                        86175
6860                        81491                        65556
6861                        83116                        71645
6862                        86618                        71974
6863                       130340                       105531
6864                       128485                       110433
6865                       125573                       105149
6866                       118640                       105965
6867                        87799                        74772
6868                       123456                       106244
6869                       125467                        85800
6870                       112547                        86638
6871                        92767                        72042
6872                       186645                       163451
6873                       127369                       105192
6874                       108081                        97879
6875                       109216                       102366
6876                       130683                       122343
6877                       147714                       139193
6878                       130851                       122644
6879                       107141                        99605
6880                        97261                        89586
6881                       193382                       186396
6882                        81143                        72020
6883                        99281                        90304
6884                       101336                        80701
6885                       152057                       131345
6886                       107675                        92859
6887                       107806                        82914
6888                       122107                       106434
6889                       111083                        98009
6890                       109586                        87099
6891                        73558                        61080
6892                        81602                        72271
6893                        79982                        68850
6894                        83640                        71291
6895                        81753                        77355
6896                        67390                        57613
6897                        73013                        63649
6898                        88890                        83664
6899                        72660                        65167
6900                        84659                        72753
6901                        83684                        73112
6902                        73875                        65363
6903                        96188                        82449
6904                        74229                        61436
6905                        54024                        44408
6906                        57080                        46789
6907                        69840                        59452
6908                        70285                        56268
6909                        68207                        58891
6910                        73538                        61052
6911                        75429                        60971
6912                        76797                        56842
6913                        73330                        55779
6914                        68790                        49217
6915                        82836                        64602
6916                        87743                        80325
6917                       100813                        93221
6918                       104346                        94389
6919                        83711                        76256
6920                        93556                        76638
6921                        72381                        53363
6922                        80031                        55455
6923                        69239                        46751
6924                        76464                        49414
6925                       109149                        86741
6926                        79491                        60608
6927                        70788                        52284
6928                        78643                        59164
6929                        74226                        55995
6930                        71764                        53764
6931                        73915                        53280
6932                        67422                        51297
6933                        67854                        51342
6934                        70143                        55427
6935                        86758                        69742
6936                        71703                        54549
6937                        85323                        59560
6938                       152144                       119085
6939                        99062                        77868
6940                        93631                        56029
6941                        83867                        60509
6942                        75164                        52404
6943                       100206                        68818
6944                       347832                       269325
6945                       404470                       379574
6946                       484078                       465886
6947                       434203                       411052
6948                       496308                       466132
6949                       473316                       373479
6950                       633460                       448431
6951                       402660                       369347
6952                       624918                       563910
6953                       354342                       330959
6954                       392401                       368385
6955                       352630                       319603
6956                       359171                       340114
6957                       410154                       377569
6958                       384583                       362091
6959                       389955                       355131
6960                       392890                       356287
6961                       374558                       360306
6962                       387007                       358844
6963                       402064                       377884
6964                       515651                       462812
6965                       393958                       358319
6966                       382864                       362405
6967                       409514                       380874
6968                       393553                       368996
6969                       555725                       494674
6970                       511546                       270379
6971                       403511                       260424
6972                       417710                       290383
6973                       563461                       322838
6974                       445573                       345141
6975                       569756                       372164
6976                       423673                       352351
6977                       534266                       445866
6978                       766062                       451173
6979                       369051                       314751
6980                       360815                       312758
6981                       403705                       339954
6982                       461406                       407168
6983                       389659                       340915
6984                       389225                       330935
6985                       384028                       336742
6986                       379170                       326854
6987                       334545                       297818
6988                       341412                       269131
6989                       328339                       286438
6990                       470183                       400218
6991                       348245                       290464
6992                       341850                       285574
6993                       330127                       288385
6994                       315859                       275102
6995                       299479                       258470
6996                       239497                       208505
6997                       872132                       658154
6998                      1048426                       887121
6999                      1109459                       948844
7000                      1131215                       960202
7001                      1132825                       995470
7002                      1117290                       820402
7003                      1420079                       967838
7004                      1039727                       869351
7005                      1303310                      1078992
7006                       933693                       768631
7007                       927237                       838555
7008                       826005                       703791
7009                       903418                       736995
7010                       973412                       795312
7011                       934886                       781773
7012                       994773                       824932
7013                       998472                       844250
7014                       957116                       822614
7015                      1044181                       892786
7016                      1103729                       912290
7017                      1232317                      1008009
7018                      1088469                       891867
7019                      1065844                       931973
7020                      1066819                       887134
7021                      1024024                       850086
7022                      1240236                      1034139
7023                      1173182                       762656
7024                       953957                       686928
7025                      1019327                       765706
7026                      1168364                       778716
7027                      1123519                       923264
7028                      1375327                      1067433
7029                      1114896                       951883
7030                      1386872                      1204976
7031                      1925092                      1272106
7032                      1181120                       986234
7033                      1149096                       892014
7034                      1229648                      1019860
7035                      1328662                      1082688
7036                      1209320                       967633
7037                      1183780                       997168
7038                      1109954                       910786
7039                      1132567                       852503
7040                       938243                       877970
7041                       958680                       851836
7042                       924248                       848018
7043                      1198725                      1079130
7044                      1039504                       943596
7045                      1068860                       988168
7046                      1055777                       978886
7047                      1037160                       969744
7048                       940931                       882014
7049                       709623                       659612
7050                        43510                        16182
7051                        86761                        24295
7052                        78746                        18038
7053                        88491                        33221
7054                        42212                        20648
7055                        51360                        15877
7056                        71335                        16744
7057                        70471                        15795
7058                        47761                        18324
7059                        55150                        32793
7060                        48852                        25885
7061                        40068                        17241
7062                        48916                        14987
7063                        59143                        20376
7064                        51316                        13438
7065                        49796                        18884
7066                        58463                        19751
7067                        47263                        16764
7068                        62137                        19695
7069                        72523                        22942
7070                        63506                        19689
7071                        80308                        22062
7072                        60420                        18261
7073                        63653                        10485
7074                        62154                        12581
7075                        64157                        22095
7076                        70552                        29585
7077                        66407                        28816
7078                        75355                        31581
7079                        67853                        26941
7080                        69077                        31580
7081                        74864                        41798
7082                        66289                        34182
7083                        85838                        41686
7084                       196316                        41452
7085                        99896                        41352
7086                       133920                        41763
7087                        89596                        45791
7088                        80852                        50868
7089                       108277                        36643
7090                       104733                        43815
7091                       103161                        45011
7092                       113402                        27189
7093                        52455                        52455
7094                        56405                        56405
7095                        67254                        67250
7096                        56055                        56051
7097                        48524                        48524
7098                        55222                        55222
7099                        54792                        54789
7100                        71247                        71247
7101                        57223                        57223
7102                        37466                        37466
7103                       108057                        56521
7104                        91809                        60988
7105                       101040                        56490
7106                       122445                        63079
7107                        91187                        60278
7108                        80056                        56566
7109                       108263                        63245
7110                       101458                        80933
7111                        81933                        54668
7112                       107823                        77036
7113                        85378                        50445
7114                        88926                        58000
7115                        85404                        63300
7116                        66357                        42497
7117                        68278                        39068
7118                        60414                        16155
7119                        74418                        49006
7120                        79774                        58009
7121                        79900                        46810
7122                        77537                        37834
7123                        97649                        41568
7124                        82992                        44906
7125                        79992                        46344
7126                        90918                        48111
7127                        95259                        51403
7128                       101410                        58275
7129                       116594                        61248
7130                       107051                        60122
7131                        90769                        49398
7132                       113974                        61633
7133                       109041                        59333
7134                       103754                        71721
7135                        93526                        60658
7136                        84913                        60404
7137                       121639                        67553
7138                       103272                        53233
7139                        83833                        57366
7140                        85450                        49866
7141                        81719                        46130
7142                        80529                        45744
     Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)
1                           17748                              0.00
2                           11868                              0.00
3                           22628                             13.53
4                           13655                              2.71
5                           20739                             24.41
6                           19390                              0.00
7                           13390                              0.00
8                           12941                             24.60
9                           25929                              8.22
10                          24925                              0.00
11                          23455                              0.00
12                          45134                              0.00
13                          44585                              0.00
14                          25126                              2.78
15                          52442                             61.28
16                          29679                             13.94
17                          44550                             52.97
18                          14113                             30.67
19                          11884                              0.00
20                          14149                              0.00
21                          21568                             83.27
22                          11720                             41.55
23                          12096                              0.00
24                          16193                              0.00
25                          12280                              0.00
26                          19851                             24.75
27                          13108                            134.40
28                          19011                             46.54
29                          12578                             71.03
30                          21330                              5.45
31                          11200                             29.91
32                          22651                             21.72
33                          11682                              0.00
34                          12560                              0.00
35                          33661                              0.00
36                          10197                              0.00
37                          13681                              0.00
38                          25051                              0.00
39                          16290                            134.72
40                          14466                              0.00
41                          21767                             13.44
42                          11626                             37.59
43                           9394                              0.00
44                          17273                              2.68
45                          10006                              0.00
46                          18158                              0.00
47                          20896                              0.00
48                          41141                              0.00
49                          23436                              0.00
50                          23258                              0.00
51                          25728                              0.00
52                          30109                              0.00
53                           2367                              0.00
54                           2486                              0.00
55                           1896                              0.00
56                           1552                              0.00
57                           1852                              0.00
58                           2663                              0.00
59                           4463                              0.00
60                           6063                              0.00
61                           5209                              0.00
62                           6141                              0.00
63                           5505                              0.00
64                           4685                              0.00
65                           4739                              0.00
66                           5100                              0.00
67                           5140                              0.00
68                           5814                              0.00
69                           3269                              5.54
70                           3159                            176.55
71                           3060                            269.18
72                           2797                             21.90
73                           3298                              0.00
74                           3061                              0.00
75                           3880                              5.41
76                           3862                             13.47
77                           4406                            244.80
78                           5891                            120.33
79                           4023                            164.03
80                           3488                            230.01
81                           3668                            546.62
82                           3626                            260.58
83                           5730                            268.04
84                           5549                            111.28
85                           5152                             15.88
86                           8947                              0.00
87                           7767                             44.44
88                           6184                            102.78
89                           5741                              0.00
90                           5316                              0.00
91                           6357                            873.61
92                           4805                              0.00
93                           4686                              0.00
94                           4734                              0.00
95                           4148                              0.00
96                           3737                              0.00
97                           3786                              0.00
98                           5125                              0.00
99                           5162                              0.00
100                          4672                              0.00
101                          7589                              0.00
102                          4468                              0.00
103                          4076                              0.00
104                          3991                              0.00
105                             6                             35.22
106                            11                             24.12
107                             4                             20.96
108                             0                            357.07
109                             0                            197.36
110                             4                             12.96
111                             9                            426.51
112                           120                            102.29
113                             0                             30.91
114                             0                             50.50
115                             0                              3.26
116                           185                             40.71
117                           505                              1.62
118                           160                              6.47
119                           273                             19.37
120                             0                              0.00
121                             0                              1.61
122                             0                              0.00
123                             0                              0.00
124                             0                              6.40
125                            13                              0.00
126                            49                              0.00
127                           154                              0.00
128                           817                              0.00
129                          1237                              0.00
130                            81                              0.00
131                             0                              1.63
132                             0                            264.71
133                             0                              0.00
134                             9                              0.00
135                             6                              0.00
136                             0                             37.75
137                             0                              8.19
138                             0                             42.47
139                             0                              4.88
140                             0                              4.85
141                             0                              6.42
142                             0                              0.00
143                             0                              3.17
144                             0                              0.00
145                             0                              0.00
146                             0                              0.00
147                             0                              0.00
148                           759                              0.00
149                           232                              0.00
150                          1693                              0.00
151                          1674                              0.00
152                          1778                              0.00
153                          2521                              0.00
154                          2797                              0.00
155                          1629                              0.00
156                          1691                              0.00
157                            99                              0.00
158                           133                              0.00
159                           200                              0.00
160                           224                              0.00
161                           261                              0.00
162                           486                              0.00
163                          1748                              0.00
164                          5078                              0.00
165                          5065                              0.00
166                          4745                              0.00
167                          5003                              0.00
168                          4397                              0.00
169                          5831                              0.00
170                          2603                              0.00
171                          3559                              0.00
172                          4271                              0.00
173                           614                              0.00
174                           189                              0.00
175                           241                              0.00
176                           222                              0.00
177                           231                              0.00
178                           294                              0.00
179                           228                              0.00
180                           227                              0.00
181                          1236                              0.00
182                          2878                              0.00
183                           881                              0.00
184                           293                              0.00
185                           183                              0.00
186                           183                              0.00
187                           303                              0.00
188                           388                              0.00
189                          1858                              0.00
190                          2688                              0.00
191                          3565                              0.00
192                          2534                              0.00
193                          1001                              0.00
194                          1995                              0.00
195                          1949                            145.83
196                          1723                              0.00
197                           460                              0.00
198                           624                              0.00
199                           576                              0.00
200                           440                              0.00
201                           218                              0.00
202                           556                              0.00
203                           813                              0.00
204                           313                              0.00
205                           934                              0.00
206                           368                              0.00
207                           332                              0.00
208                           256                              0.00
209                             0                              0.00
210                             0                              0.00
211                             0                              0.00
212                             0                              0.00
213                             0                              0.00
214                             0                              0.00
215                           742                              0.00
216                          1302                              0.00
217                          1342                              0.00
218                          1902                              0.00
219                          1160                              0.00
220                          1196                              0.00
221                          1284                              0.00
222                           671                              0.00
223                           821                              0.00
224                           446                              0.00
225                            13                              0.00
226                             0                              0.00
227                             0                              0.00
228                             0                              0.00
229                             0                              0.00
230                             0                              0.00
231                             0                              0.00
232                             0                              0.00
233                           427                              0.00
234                           907                              0.00
235                            62                              0.00
236                             0                              0.00
237                             0                              0.00
238                             0                              0.00
239                             0                              0.00
240                            44                              0.00
241                           978                              0.00
242                           453                              0.00
243                          1102                             43.06
244                           640                             40.28
245                           520                              0.00
246                           814                              0.00
247                           598                             50.00
248                           108                              0.00
249                            56                              0.00
250                           111                              0.00
251                           360                              0.00
252                            62                              0.00
253                           547                              0.00
254                           124                              0.00
255                           596                              0.00
256                            71                              0.00
257                           740                              0.00
258                             2                              0.00
259                             0                              0.00
260                             0                              0.00
261                        110737                          11829.59
262                        136747                          10714.52
263                        180150                           8275.96
264                        126664                           6962.06
265                         82338                           7590.24
266                         82444                           7249.07
267                         53798                           7352.34
268                         36306                           6324.22
269                         19805                           5117.73
270                          7596                           4042.59
271                         10780                           2316.59
272                         18373                           3190.67
273                         25572                           3594.34
274                         13336                           5041.79
275                         17304                           5126.49
276                         76298                           6065.20
277                         33545                           4513.07
278                          5989                           2885.76
279                          6574                           3491.36
280                          2082                           3372.38
281                          7357                           2683.59
282                          4954                           2234.75
283                          5181                           2676.28
284                         20674                           2822.80
285                         18032                           3574.73
286                         27317                           3362.15
287                         21862                           2656.02
288                         24278                           3510.13
289                         22961                           2818.56
290                         23422                           3501.78
291                         23083                           3215.29
292                         24486                           3213.40
293                         18497                           2941.83
294                         18366                           2823.53
295                         19736                           2673.97
296                         26484                           1863.18
297                         71989                           1529.08
298                         79865                           1864.19
299                         59212                           2654.56
300                         61959                           1486.34
301                         30059                           1546.29
302                         27625                           1998.56
303                         27241                           1764.61
304                         34846                           1838.10
305                         36941                           2193.32
306                         47018                           2403.05
307                         56311                           2532.59
308                         41203                           2740.84
309                         46809                           2796.24
310                         36501                           3190.49
311                         31874                           3613.09
312                         47883                           3375.80
313                          2500                              0.00
314                          1782                              0.00
315                          3239                              0.00
316                          2257                              0.00
317                          3415                              0.00
318                          3495                              0.00
319                          2500                              0.00
320                          1647                              0.00
321                          4526                              0.00
322                          4368                              0.00
323                          3358                              0.00
324                          6693                              0.00
325                          7662                              0.00
326                          4567                              0.00
327                          8413                              0.00
328                          5958                              0.00
329                          6844                              0.00
330                          2313                              0.00
331                          2018                              0.00
332                          2216                              0.00
333                          3963                              0.00
334                          2072                              0.00
335                          2073                              0.00
336                          3135                              0.00
337                          2170                              0.00
338                          3378                              0.00
339                          1765                              0.00
340                          3622                              0.00
341                          1982                              0.00
342                          3527                              0.00
343                          2162                              0.00
344                          4014                              0.00
345                          2203                              0.00
346                          2147                              0.00
347                          5589                              0.00
348                          1201                              0.00
349                          1436                              0.00
350                          3396                              0.00
351                          1599                             98.61
352                          1005                              0.00
353                          2968                              0.00
354                          1442                              0.00
355                          1374                              0.00
356                          2852                              0.00
357                          2053                              0.00
358                          9128                              0.00
359                          9363                              0.00
360                         15620                              0.00
361                         12686                              0.00
362                         13058                              0.00
363                         10614                              0.00
364                          6469                              0.00
365                          1618                          10056.67
366                          9593                           8230.00
367                          5694                             65.29
368                           421                             16.76
369                           299                              0.00
370                           294                              0.00
371                           261                              0.00
372                           324                              0.00
373                           422                              0.00
374                           323                              5.61
375                           286                            753.79
376                           529                           2974.56
377                          2240                           1674.84
378                          2923                           4501.47
379                          3317                            379.19
380                          3810                            736.09
381                          3290                              7.39
382                          2205                             86.59
383                          2760                            438.87
384                          3448                            340.71
385                          1905                            372.90
386                          2476                            501.53
387                          3516                            907.04
388                          3531                           2849.46
389                          2536                           1363.39
390                          2236                            237.24
391                          1896                           1054.56
392                          1659                           2120.09
393                          2619                             87.48
394                          4693                            576.94
395                          2299                              3.62
396                          2639                              9.04
397                          2813                             30.80
398                          4468                              0.00
399                          4415                              3.61
400                          3574                            790.11
401                          2780                            103.94
402                          2475                             14.30
403                          3423                            829.75
404                          4163                             10.68
405                          2925                             39.05
406                          3915                             26.59
407                          2235                              5.31
408                          2289                             38.97
409                          3977                             15.94
410                          5113                             19.58
411                          3273                             81.93
412                          3449                            112.35
413                          9266                             87.51
414                          3312                             37.57
415                          4539                             42.96
416                          4651                              0.00
417                         30968                           5350.60
418                         39680                           4447.65
419                         58784                            846.12
420                         42886                           2718.94
421                         24850                           1342.37
422                         31447                           1888.97
423                         40083                           1028.74
424                         42510                           4746.69
425                         53585                           3210.41
426                         45209                           1971.64
427                         24553                           1110.04
428                         31743                           2601.48
429                         45980                           1637.21
430                         34342                           2442.79
431                         29601                           5140.45
432                         34690                           4218.02
433                         45313                           1819.79
434                         42734                           2780.36
435                         41548                           1079.14
436                         41443                           5308.09
437                         34194                           2008.90
438                         33164                           1708.49
439                         43021                           1127.31
440                         33783                           3084.23
441                         37926                            629.27
442                         43027                           1179.38
443                         38098                            626.93
444                         37441                           2126.84
445                         34920                           1307.21
446                         36952                           2785.53
447                         41426                            975.21
448                         30171                            947.11
449                         38536                           2863.62
450                         50265                            262.55
451                         37361                           1499.19
452                         37783                           1278.49
453                         23102                           2591.34
454                         17270                            135.28
455                         14361                            121.79
456                         23746                            391.47
457                         31773                           5732.14
458                         37402                            863.75
459                         32786                            805.18
460                         28230                           4065.90
461                         21704                            752.55
462                         17557                            705.21
463                         18571                            913.86
464                         31756                           4737.81
465                         25970                             16.03
466                         18265                            114.12
467                         26345                             94.50
468                         37445                            112.67
469                          3875                           4164.71
470                          4248                           4257.36
471                          4307                           1216.09
472                          3867                           2500.65
473                          4116                           1149.67
474                          2827                           1698.16
475                          2618                            810.30
476                          6935                           3834.39
477                          3691                           3129.54
478                          3926                           1702.18
479                          4384                            473.54
480                          4766                           2179.90
481                          2203                           2099.60
482                          5538                           1931.33
483                          4672                           4535.79
484                          4202                           3397.00
485                          3612                           1641.68
486                          4937                           2909.73
487                          5011                            899.55
488                          4315                           4404.09
489                          7461                           1840.33
490                          3282                           1936.76
491                          3986                           1023.11
492                          2443                           2161.32
493                          2366                            572.64
494                          4244                           1134.74
495                          5684                            521.66
496                          4739                           2229.60
497                          6030                           1421.71
498                          5889                           3937.60
499                          4733                           1340.27
500                         10832                           1280.32
501                          2464                           3150.27
502                          2797                            729.47
503                          9726                           1206.47
504                          4960                           1291.55
505                          1862                           3189.34
506                           840                            184.34
507                           643                             75.93
508                           937                            375.40
509                          2692                           4470.47
510                          3462                            679.76
511                          5483                           1134.58
512                          1838                           4240.19
513                          2275                            869.61
514                          1860                            597.63
515                          1971                            563.46
516                          3423                           4163.25
517                          2057                             21.43
518                          2962                             68.46
519                          2459                            122.29
520                          2132                            219.20
521                         12278                          15657.53
522                         10331                          25724.53
523                          7473                             34.62
524                         10525                            166.48
525                         13967                             16.53
526                         13139                              3.69
527                         14528                             24.09
528                         10365                            158.19
529                          7645                            158.76
530                          5279                            125.71
531                          7044                             69.47
532                          5967                             72.28
533                         15397                             82.35
534                         12776                             39.50
535                         12833                              7.52
536                         24666                             22.55
537                          8582                             18.72
538                          9171                              1.87
539                          8502                             20.53
540                          8864                             13.03
541                          8139                              3.71
542                         11209                              0.00
543                         18793                              3.69
544                         17379                              7.35
545                          4009                            779.61
546                          5498                              7.28
547                          7500                             10.85
548                          9014                              8.99
549                          4188                              8.95
550                          7102                              7.12
551                         13421                             14.16
552                          5118                             15.97
553                          7629                              8.85
554                          8644                             17.67
555                          6149                            778.00
556                         10464                            389.63
557                         13055                              5.26
558                          9262                              8.81
559                         13749                            822.15
560                         13670                             19.35
561                          9992                             11.93
562                         11780                              7.08
563                         13678                             14.36
564                         12676                             12.27
565                         17417                              0.00
566                         15061                              6.84
567                         12176                             42.77
568                         11475                             16.21
569                         18030                              0.00
570                         12417                             12.83
571                         19802                             25.10
572                         34760                              6.80
573                        227884                             85.85
574                        167807                              0.00
575                        260041                             81.18
576                        304844                            103.50
577                        117819                              0.00
578                        251447                              0.00
579                        342041                              0.00
580                        170280                              5.00
581                        195472                              0.00
582                        183910                              0.00
583                        197488                             17.63
584                        176033                              0.00
585                        143475                              7.59
586                        130401                              0.00
587                        147254                              0.00
588                        101892                              0.00
589                        103602                              0.00
590                        117476                              0.00
591                         77990                              0.00
592                         76789                              0.00
593                         89856                              0.00
594                         88542                              0.00
595                        103844                              0.00
596                        139859                             17.96
597                        101612                            910.68
598                         54456                              0.00
599                         59917                             12.75
600                         44715                              0.00
601                         50223                              0.00
602                         88016                              0.00
603                         35618                              0.00
604                         20604                              0.00
605                         63311                              0.00
606                         66286                              2.46
607                         52804                              0.00
608                         27221                           1004.17
609                         72599                              0.00
610                         56263                              0.00
611                         31484                            929.17
612                         34181                              0.00
613                         35116                              0.00
614                         42906                              0.00
615                         48273                              0.00
616                         37664                              0.00
617                         93534                             14.21
618                         19966                             25.26
619                         48427                             30.18
620                         68007                             40.39
621                         52612                              9.42
622                         73765                             16.16
623                         36704                             26.96
624                         47662                              4.05
625                           762                          12368.92
626                          2932                           8377.98
627                          2843                           6342.66
628                           886                          22744.87
629                           920                           9733.86
630                          1257                           7007.34
631                          1141                           6350.37
632                           735                          22353.33
633                          1107                          20249.06
634                           728                          11902.48
635                           824                           6354.81
636                          1223                           3933.22
637                          1039                          12357.09
638                          1082                          11521.22
639                           839                          21946.09
640                          1330                          17386.67
641                          1238                          11018.56
642                          1067                          15355.40
643                          2155                           7286.03
644                          1573                          19675.58
645                          1472                          11038.05
646                          1676                           7460.89
647                          2518                           4992.64
648                          2038                          10040.61
649                          1977                           4098.08
650                          1850                           6316.80
651                          2126                           2300.95
652                          2832                           9447.43
653                          1786                           3997.50
654                          1181                          13275.87
655                           798                           4464.22
656                           716                           3318.11
657                           591                          11815.49
658                          1880                           1930.85
659                           786                           5438.20
660                          1476                           4838.01
661                          4058                           8939.25
662                          2452                           2846.99
663                          1999                           1392.56
664                          2416                           1298.13
665                           754                          17997.24
666                          1376                           3543.84
667                           474                           4391.02
668                          1144                          17195.99
669                           268                           3449.69
670                           676                           3042.91
671                          1024                           2972.04
672                           688                          15989.95
673                          1280                           3172.70
674                          1066                           1599.83
675                           621                           7436.68
676                          1061                           8391.76
677                          2919                           4199.31
678                          2288                           2324.75
679                          2231                            500.67
680                          1561                           3926.79
681                          2816                             76.44
682                          2327                            791.69
683                          1427                             27.74
684                          1819                             77.96
685                          1757                            823.94
686                          3036                           1631.66
687                          1831                           3046.08
688                          2155                          15532.97
689                          2199                           5014.92
690                          1913                           3770.61
691                          1816                            243.99
692                          2852                           5091.98
693                          3487                             59.46
694                          2309                           3044.72
695                          4716                            626.81
696                          6674                           3771.80
697                          3294                            102.41
698                          4030                            652.26
699                          4085                           1300.15
700                          3806                           4951.32
701                          4902                           1299.83
702                          5692                           6064.59
703                          5044                           2334.14
704                          4943                           3948.61
705                          4402                              5.40
706                          4067                           1535.36
707                          2794                             35.93
708                          4664                             35.82
709                          3991                            178.47
710                          4336                             28.44
711                          1898                             42.42
712                          4305                             52.72
713                          3762                            317.77
714                          3377                             26.04
715                          5166                             73.53
716                          5299                             24.04
717                          2106                            412.43
718                          3244                             15.36
719                          3170                             57.90
720                          3519                           3347.67
721                          3767                            247.21
722                          6203                             56.32
723                          4209                            136.83
724                          4377                            145.80
725                          4553                            116.95
726                          3728                            276.14
727                          2897                            288.89
728                          1098                            924.43
729                         98401                          79085.61
730                        122999                          60840.92
731                        148005                          16157.38
732                        124306                          50602.55
733                         83149                          19984.20
734                         89472                          20682.52
735                         99696                          15737.69
736                        138161                          51776.16
737                        133072                          45827.83
738                        130934                          30629.92
739                         92629                          23087.45
740                         93016                          61820.11
741                        106128                          43203.62
742                        103092                          46148.29
743                        109269                          55144.49
744                        132686                          53743.95
745                        121209                          25584.93
746                        111789                          43474.78
747                        122226                          18463.00
748                        129684                          60192.72
749                        115528                          24597.33
750                        104571                          22229.01
751                        127530                          17412.55
752                        110898                          43341.41
753                        120335                          13789.59
754                        140254                          27719.35
755                        148652                          13642.58
756                        132173                          36826.73
757                        119900                          11782.03
758                        122233                          35809.23
759                        119920                          11966.13
760                        134309                          12522.28
761                        110126                          29374.73
762                        147023                           5019.86
763                        146837                          13835.91
764                        116500                          17202.07
765                         84880                          23926.61
766                         60642                           4465.52
767                         61643                           3754.42
768                         82422                           4453.27
769                        105804                          45576.80
770                        114147                           8958.58
771                        114520                          12664.89
772                         88542                          47632.78
773                         88537                           9441.36
774                         81172                           7922.80
775                         78545                           9512.88
776                        126926                          40152.66
777                        109501                           4563.70
778                         93435                           3499.95
779                         91215                          11071.74
780                        111073                          13928.01
781                           776                              0.00
782                          1230                              0.00
783                           877                              0.00
784                           458                              0.00
785                           629                              0.00
786                          2367                              0.00
787                          3884                              0.00
788                          1678                              0.00
789                           915                              0.00
790                          1307                              0.00
791                           923                              0.00
792                          1792                              0.00
793                           939                              0.00
794                          1656                              0.00
795                           920                              0.00
796                          1981                              0.00
797                          1345                             32.93
798                          1780                            606.82
799                          1140                            715.10
800                           715                              6.51
801                           815                              0.00
802                          1019                              3.22
803                          1272                             41.74
804                          1052                             57.53
805                          1705                            168.73
806                          1623                            516.29
807                          2376                            726.39
808                          1625                            922.99
809                          2821                           1606.66
810                          3220                            787.80
811                          2342                           1177.44
812                          2642                            834.98
813                          1401                            105.12
814                          2065                              0.00
815                          2137                              0.00
816                          2023                             37.50
817                          1966                              0.00
818                          1631                              0.00
819                          1643                             63.89
820                          1349                              0.00
821                          2458                              0.00
822                          2449                              0.00
823                          1850                              0.00
824                          1509                              0.00
825                          1203                              0.00
826                          1118                              0.00
827                          1134                              0.00
828                          1403                              0.00
829                          3658                              0.00
830                          1549                              0.00
831                           998                              0.00
832                          1369                              0.00
833                           944                              0.00
834                           977                              0.00
835                           742                              0.00
836                           640                              0.00
837                           676                              0.00
838                           893                              0.00
839                          1866                              0.00
840                          5450                              0.00
841                          4658                              0.00
842                          3615                              0.00
843                          3104                              0.00
844                          3378                              0.00
845                          5116                              0.00
846                          3835                              0.00
847                          4730                              0.00
848                          5493                              0.00
849                          1945                              0.00
850                           572                              0.00
851                           909                              0.00
852                          1312                              0.00
853                          1220                              0.00
854                          1193                              0.00
855                          2279                              0.00
856                          2294                              0.00
857                          2182                              0.00
858                          4162                              0.00
859                          3366                              0.00
860                          1792                              0.00
861                          3239                              0.00
862                          1481                              0.00
863                          1925                              0.00
864                          1915                              0.00
865                          2425                              0.00
866                          3352                              0.00
867                          2709                              0.00
868                          2694                             77.78
869                          3833                              0.00
870                          1829                              0.00
871                          2399                              0.00
872                          2510                              0.00
873                          2647                              0.00
874                          3064                              0.00
875                          3545                              0.00
876                          2367                              0.00
877                          2220                              0.00
878                          1555                              0.00
879                          2872                              0.00
880                          3643                              0.00
881                          7189                              0.00
882                          2227                              0.00
883                          1730                              0.00
884                          2660                              0.00
885                         36494                          30373.33
886                         31521                          30753.33
887                         48622                            616.67
888                         62281                              0.00
889                         29860                              0.00
890                         41991                              0.00
891                         68771                              0.00
892                         67738                              0.00
893                         78893                              0.00
894                         44261                             51.78
895                         28107                              0.00
896                         50287                              0.00
897                         68859                              0.00
898                         48907                              0.00
899                         41895                              0.00
900                         72561                              0.00
901                         64673                              0.00
902                         29536                              0.00
903                         35020                              0.00
904                         36255                              0.00
905                         35656                              0.00
906                         33213                              0.00
907                         45802                              0.00
908                         72912                              0.00
909                         57475                            188.89
910                         46541                              0.00
911                         95349                              0.00
912                         81135                              0.00
913                         79784                              0.00
914                         55178                              0.00
915                         65166                              0.00
916                         39499                              0.00
917                         34630                              0.00
918                         69587                              0.00
919                         82238                              0.00
920                         33189                              0.00
921                         34255                              0.00
922                          9907                              0.00
923                          6814                              0.00
924                          5767                              0.00
925                         50898                              0.00
926                         48169                              0.00
927                         75237                              0.00
928                         50854                              0.00
929                         32395                              0.00
930                         36308                              0.00
931                         11012                              0.00
932                         48276                              0.00
933                         24743                              0.00
934                         12960                              0.00
935                         25923                              0.00
936                         25538                              0.00
937                         11524                           5688.98
938                         12134                           5061.53
939                         15580                           2215.72
940                         17734                           1550.73
941                          9975                           1825.35
942                         11042                           1470.45
943                         11753                           2550.11
944                         15190                           3961.27
945                         16206                           3327.66
946                         19395                           2752.83
947                         15546                           1129.73
948                         11566                           2246.61
949                         14547                           1844.92
950                         12078                           2954.19
951                         18135                           4988.79
952                         24285                           3361.58
953                         15846                           3006.74
954                         15001                           2752.49
955                         14786                           1614.53
956                         17605                           4014.41
957                         14290                           1637.35
958                         14978                           2324.42
959                         19119                           1296.56
960                         18742                           2270.07
961                         20240                            948.34
962                         21038                           1204.07
963                         26115                           1358.45
964                         23155                           1776.29
965                         17581                           1279.21
966                         15866                           1770.93
967                         15126                           1092.81
968                         12630                           2811.25
969                         16314                           2162.17
970                         22228                            361.84
971                         17453                           1158.54
972                         14397                           3551.32
973                         13534                           1253.60
974                         10414                            187.93
975                          6721                             96.31
976                         11727                            925.76
977                         16305                           2708.25
978                         16954                            818.68
979                         15552                           2322.80
980                         14729                           2436.75
981                         13885                            913.07
982                         12428                            903.98
983                         12562                           1988.20
984                         18131                           2760.80
985                         14953                             38.16
986                         17914                            149.98
987                         14766                             78.05
988                         16160                              0.00
989                         18008                              0.00
990                          9941                              5.24
991                         19064                             13.01
992                         11106                              0.00
993                         20149                              0.00
994                         19075                              0.00
995                         12407                             10.22
996                         11396                              0.00
997                         24853                              0.00
998                          7879                              0.00
999                         10269                              0.00
1000                        20755                              0.00
1001                        21282                              0.00
1002                         9747                              0.00
1003                        20649                              0.00
1004                         9315                              0.00
1005                        24314                              0.00
1006                        11403                              0.00
1007                        10595                              0.00
1008                        10515                             27.97
1009                        22386                              0.00
1010                         9418                              0.00
1011                         5186                              0.00
1012                        19562                              0.00
1013                        10035                              0.00
1014                        19191                              0.00
1015                         7380                              0.00
1016                        22189                              0.00
1017                        10045                              0.00
1018                        19582                              0.00
1019                        10339                              0.00
1020                        20836                              0.00
1021                        10355                              0.00
1022                         9392                              0.00
1023                        26430                            150.00
1024                         9095                              0.00
1025                         9743                              0.00
1026                        17389                              0.00
1027                        12506                              0.00
1028                         7643                              0.00
1029                        15342                              0.00
1030                         6773                              0.00
1031                         5894                              0.00
1032                        14580                              0.00
1033                         7303                              0.00
1034                         9073                              0.00
1035                         8381                              0.00
1036                        22129                              0.00
1037                        11172                              0.00
1038                        10376                              0.00
1039                         9704                              0.00
1040                        15033                              0.00
1041                        23936                              0.00
1042                        19111                              0.00
1043                         7809                              0.00
1044                          493                              0.00
1045                          960                              0.00
1046                         1588                              0.00
1047                         1871                              0.00
1048                          760                              0.00
1049                         1121                              0.00
1050                         1774                              0.00
1051                         1686                              0.00
1052                         2991                              0.00
1053                         7728                              0.00
1054                         4280                              0.00
1055                         8313                              0.00
1056                        42953                              0.00
1057                        13780                              0.00
1058                          748                              0.00
1059                         2024                              0.00
1060                        12237                              0.00
1061                        21313                              0.00
1062                        10254                              0.00
1063                         8572                              0.00
1064                        10604                              0.00
1065                        11436                              0.00
1066                        14267                              0.00
1067                        11009                              0.00
1068                        20164                              0.00
1069                        32931                              0.00
1070                        23856                              0.00
1071                        16991                              0.00
1072                        10917                              0.00
1073                        13406                              0.00
1074                        19163                              0.00
1075                        28362                              0.00
1076                        24171                             15.28
1077                        21237                              0.00
1078                        18630                              0.00
1079                        12176                              0.00
1080                         8624                              0.00
1081                          651                              0.00
1082                          371                              0.00
1083                          299                              0.00
1084                          857                              0.00
1085                          152                              0.00
1086                          307                              0.00
1087                          965                              0.00
1088                         1244                              0.00
1089                          280                              0.00
1090                          278                              0.00
1091                          270                              0.00
1092                          512                              0.00
1093                        74359                          11407.39
1094                        94922                          10409.70
1095                       123270                           7813.94
1096                        92325                           6467.24
1097                        61343                           7151.37
1098                        64490                           6914.91
1099                        44152                           6837.17
1100                        29335                           5946.28
1101                        13372                           4805.39
1102                         3775                           3796.27
1103                         6303                           2162.27
1104                        13203                           3137.80
1105                        17899                           3505.86
1106                         9643                           4807.50
1107                        12275                           4996.20
1108                        64067                           5933.08
1109                        26702                           4391.32
1110                         3504                           2870.30
1111                         3995                           3414.61
1112                          760                           3361.00
1113                         4251                           2631.39
1114                         2991                           2172.01
1115                         2937                           2632.26
1116                        13264                           2780.79
1117                        11398                           2858.47
1118                        17235                           3294.46
1119                        13954                           2621.48
1120                        15484                           3450.33
1121                        14619                           2816.82
1122                        14652                           3438.21
1123                        14481                           3024.08
1124                        14886                           3142.13
1125                        11067                           2888.60
1126                        10676                           2786.97
1127                        11566                           1857.91
1128                        15427                           1644.63
1129                        45364                           1527.87
1130                        50473                           1809.99
1131                        36929                           2067.44
1132                        36845                           1464.84
1133                        17691                           1459.53
1134                        16220                           1939.47
1135                        15650                           1604.43
1136                        23570                           1684.64
1137                        25218                           2081.15
1138                        35034                           2124.32
1139                        44327                           2266.22
1140                        31108                           2317.12
1141                        36398                           2418.11
1142                        26671                           2666.02
1143                        25112                           3163.23
1144                        36982                           2950.53
1145                         7289                            734.63
1146                         9360                            591.88
1147                        13677                            328.35
1148                        19216                           1006.92
1149                         9711                            564.00
1150                        10219                            818.59
1151                         8473                            401.48
1152                        12978                           1877.79
1153                        21945                           1319.37
1154                         9879                            887.29
1155                        10101                            494.82
1156                        10132                            692.20
1157                         6299                            753.76
1158                         5225                            943.98
1159                        10943                           1911.96
1160                        11295                           1235.94
1161                        16180                            733.32
1162                         6585                           1515.05
1163                         9442                            408.08
1164                         7719                           2004.91
1165                        10836                            711.05
1166                        13605                            695.48
1167                        17841                            525.40
1168                         7347                            948.25
1169                        11356                            275.06
1170                        10377                            437.36
1171                         9197                            219.02
1172                         7105                           1249.61
1173                         9423                            418.14
1174                        10432                            922.12
1175                        12647                            361.43
1176                         8635                            376.53
1177                         8236                           1075.85
1178                        12740                             65.89
1179                        15349                            480.20
1180                         8286                            600.74
1181                         5205                           1134.33
1182                         3352                             57.48
1183                         7424                              6.02
1184                         3113                            169.26
1185                        12577                           1813.78
1186                         6777                            299.27
1187                         7667                            309.45
1188                         7840                           1628.56
1189                        15763                            235.17
1190                        12927                            319.96
1191                         9464                            288.64
1192                        21297                           1202.06
1193                        12189                             14.88
1194                         8805                             43.17
1195                        11300                             13.46
1196                        16028                              0.00
1197                        58799                              0.00
1198                        29624                             23.09
1199                        54339                              0.00
1200                        33210                              0.00
1201                        50912                              0.00
1202                        59483                              5.83
1203                        33059                              0.00
1204                        31818                              2.92
1205                        57051                              2.93
1206                        25528                              8.80
1207                        26422                              8.83
1208                        54316                              2.95
1209                        48084                              0.00
1210                        24573                              0.00
1211                        54428                              0.00
1212                        26305                              0.00
1213                        64424                              0.00
1214                        23581                              2.91
1215                        24166                             14.48
1216                        22794                              0.00
1217                        56759                              0.00
1218                        22084                              0.00
1219                        20736                              0.00
1220                        37960                              0.00
1221                        24837                            206.94
1222                        60394                              0.00
1223                        27962                              0.00
1224                        54477                              0.00
1225                        26678                              0.00
1226                        53762                              0.00
1227                        25741                              0.00
1228                        60642                              0.00
1229                        26066                              0.00
1230                        22437                              0.00
1231                        77202                            397.22
1232                        28443                            495.83
1233                        30023                              0.00
1234                        56319                              0.00
1235                        41286                            337.50
1236                        28386                              0.00
1237                        53122                              0.00
1238                        24940                              0.00
1239                        22050                              0.00
1240                        56533                              0.00
1241                        26708                              0.00
1242                        35738                              0.00
1243                        26280                              0.00
1244                        63672                              0.00
1245                        31641                              0.00
1246                        35780                              0.00
1247                        28723                              0.00
1248                        48176                              0.00
1249                        35717                           3374.92
1250                        38523                           3737.71
1251                        57240                            831.54
1252                        57794                           2018.02
1253                        40739                           1245.92
1254                        41724                           1601.45
1255                        40843                            631.36
1256                        52181                           3188.00
1257                        81904                           2495.31
1258                        55816                           1227.15
1259                        50778                            469.43
1260                        68092                           1570.72
1261                        61455                           1337.17
1262                        43807                           1619.72
1263                        76794                           4403.81
1264                        61850                           2749.18
1265                        75570                           1757.18
1266                        36845                           3407.44
1267                        41707                           1126.33
1268                        36597                           3474.23
1269                        48070                           1936.74
1270                        46005                           1430.60
1271                        53809                            995.66
1272                        41647                           2341.46
1273                        44653                            943.19
1274                        53155                           1185.95
1275                        37287                           1373.46
1276                        45537                           3161.37
1277                        40770                           1685.32
1278                        56141                           2458.45
1279                        56794                           1093.50
1280                        55107                           1645.20
1281                        44437                           2073.80
1282                        64322                            633.85
1283                        68905                           1248.14
1284                        39078                           1497.45
1285                        37168                           2189.89
1286                        44746                             99.14
1287                        42910                           1013.81
1288                        35421                            355.95
1289                        53741                           4013.11
1290                        34642                           2080.36
1291                        33275                            772.74
1292                        37012                           3228.94
1293                        46784                            541.29
1294                        81139                            611.03
1295                        75649                            620.61
1296                       125798                           2510.08
1297                        99143                             20.35
1298                        90214                             57.84
1299                        85966                             14.07
1300                        80987                            314.80
1301                         7140                              3.33
1302                         4722                              7.60
1303                         9807                            134.55
1304                         4797                             98.00
1305                         7441                             10.34
1306                         7157                            261.71
1307                         5261                              0.00
1308                         5225                              0.00
1309                        11950                              0.00
1310                         8823                              0.00
1311                         9420                              0.00
1312                        17803                              0.00
1313                        16376                             45.13
1314                         9436                             45.21
1315                        19540                            649.63
1316                        11023                            309.25
1317                        15494                            242.92
1318                         5820                              0.00
1319                         4312                              0.00
1320                         5354                            226.75
1321                         8883                            631.08
1322                         4552                            140.85
1323                         4703                             42.44
1324                         8680                            357.27
1325                         5172                            121.33
1326                         8482                            179.35
1327                         3663                            803.37
1328                         9726                            775.84
1329                         5730                              0.00
1330                         8944                            278.90
1331                         4413                             80.91
1332                         7942                            459.17
1333                         4310                              7.56
1334                         4407                            350.54
1335                        10437                              0.00
1336                         3496                              0.00
1337                         6713                              0.00
1338                        10058                              0.00
1339                         6812                              0.00
1340                         6549                              0.00
1341                         6834                             89.88
1342                         3382                           1114.76
1343                         3556                              0.00
1344                         6154                            129.78
1345                         2645                              4.99
1346                         2715                              0.00
1347                         2229                              0.00
1348                         5715                              0.00
1349                         1790                              0.00
1350                         2116                              0.00
1351                         2766                              0.00
1352                         5612                            221.67
1353                         9225                             19.50
1354                         5619                             64.48
1355                         8311                              0.00
1356                         3840                              0.00
1357                         6127                              0.00
1358                         6427                              6.28
1359                         4028                              0.00
1360                         3996                              0.00
1361                         8082                             12.36
1362                         3322                              0.00
1363                         4364                              0.00
1364                         8294                              6.16
1365                         7612                              0.00
1366                         4132                              0.00
1367                         6310                              6.11
1368                         5111                              0.00
1369                         8194                              0.00
1370                         4377                             12.09
1371                         4943                             18.13
1372                         4844                             42.31
1373                         7130                              0.00
1374                         5016                             24.17
1375                         2930                              0.00
1376                         8132                              6.04
1377                         5000                              6.05
1378                         6840                              6.06
1379                         4043                             24.29
1380                         8475                              0.00
1381                         4418                              0.00
1382                         7902                              0.00
1383                         4469                              0.00
1384                         7062                              0.00
1385                         4950                              0.00
1386                         4354                              0.00
1387                         9485                              0.00
1388                         3985                              0.00
1389                         3873                              0.00
1390                         6367                              0.00
1391                         5168                            188.89
1392                         3564                              0.00
1393                         8377                              0.00
1394                         4114                              0.00
1395                         3281                              0.00
1396                         6473                              0.00
1397                         3341                              0.00
1398                         2195                              0.00
1399                         2213                              0.00
1400                         7886                              0.00
1401                         3439                              0.00
1402                         2895                              0.00
1403                         3221                              0.00
1404                         5641                              0.00
1405                        34191                              4.44
1406                        44524                              0.00
1407                        39206                              0.00
1408                        27998                              0.00
1409                        30573                              0.00
1410                        33559                              7.07
1411                        29268                              0.00
1412                        89344                              0.00
1413                        54399                             15.15
1414                        46555                              0.00
1415                        51069                              2.08
1416                        76810                              0.00
1417                        53387                              0.00
1418                        57548                              0.00
1419                        47971                              0.00
1420                        68237                              7.16
1421                        43820                              7.13
1422                        39873                             88.86
1423                        34604                             10.63
1424                        34788                              1.99
1425                        30314                              0.00
1426                        34665                              0.00
1427                        46590                              0.00
1428                        48382                              3.50
1429                        47542                            616.72
1430                        67626                             93.80
1431                        80224                             41.57
1432                        43148                             55.28
1433                        81281                            117.60
1434                        59172                             76.01
1435                        67078                             10.36
1436                        65288                             10.35
1437                        59891                              0.00
1438                        57394                              0.00
1439                        74835                            608.33
1440                        93488                            490.28
1441                       103965                              0.00
1442                        59887                              0.00
1443                        59757                            680.56
1444                        61291                              0.00
1445                        60006                              0.00
1446                        65119                              0.00
1447                        68164                              0.00
1448                        61449                              0.00
1449                        56052                              0.00
1450                        48409                              0.00
1451                        68760                              0.00
1452                        80172                              0.00
1453                        63602                              0.00
1454                        61052                              0.00
1455                        63767                              0.00
1456                        70813                              0.00
1457                        46305                           1003.66
1458                        60823                           1300.00
1459                        51735                              3.51
1460                        40901                              8.81
1461                        41582                              0.00
1462                        44834                              5.36
1463                        48854                              0.00
1464                       136005                              0.00
1465                        83581                             19.25
1466                        81976                              0.00
1467                        81018                              1.74
1468                       110651                              1.73
1469                        83754                              0.00
1470                        93364                              0.00
1471                        79105                              0.00
1472                       102123                              6.14
1473                        65777                             98.06
1474                        60808                            949.51
1475                        55968                           1043.79
1476                        55602                             13.96
1477                        54944                              0.00
1478                        51132                              3.06
1479                        67280                             45.79
1480                        66844                             70.11
1481                        67208                           1164.83
1482                       102680                            794.73
1483                       121974                            788.82
1484                        66494                           1108.37
1485                       118367                           2252.42
1486                        87701                           1097.84
1487                        97865                           1550.71
1488                       120720                           1033.42
1489                        87403                            152.99
1490                        89875                              0.00
1491                       132616                            943.06
1492                       132856                            650.73
1493                       131233                              0.00
1494                        81630                              0.00
1495                        83524                           1130.68
1496                        82778                              2.90
1497                        87477                              0.00
1498                        92714                              0.00
1499                       108119                              1.63
1500                        84288                              0.00
1501                        79402                              0.00
1502                        65745                              0.00
1503                        96055                              1.64
1504                       109953                              0.00
1505                       100787                              0.00
1506                        84757                              0.00
1507                        84913                              0.00
1508                        94381                              0.00
1509                            0                              0.00
1510                            0                              0.00
1511                            0                              0.00
1512                            0                              0.00
1513                            0                              0.00
1514                            3                              0.00
1515                          212                              0.00
1516                          409                              0.00
1517                          200                              0.00
1518                          591                              0.00
1519                         1253                              0.00
1520                          107                              0.00
1521                          218                              0.00
1522                          509                              0.00
1523                         1084                              0.00
1524                          880                              0.00
1525                           89                              0.00
1526                            0                              0.00
1527                            0                              0.00
1528                            0                              0.00
1529                            3                              0.00
1530                            0                              0.00
1531                            4                              0.00
1532                           17                              0.00
1533                           29                              0.00
1534                          182                              0.00
1535                           49                              0.00
1536                            0                              0.00
1537                            0                              0.00
1538                            0                              0.00
1539                            0                              0.00
1540                            0                              0.00
1541                           11                              0.00
1542                          380                              0.00
1543                           18                              0.00
1544                           17                              0.00
1545                            1                              0.00
1546                           22                              0.00
1547                          114                              0.00
1548                          928                              0.00
1549                          194                              0.00
1550                           42                              0.00
1551                          302                              0.00
1552                            0                              0.00
1553                            7                              0.00
1554                          162                              0.00
1555                          838                              0.00
1556                           93                              0.00
1557                            4                              0.00
1558                            0                              0.00
1559                            0                              0.00
1560                            0                              0.00
1561                        33140                              0.00
1562                        16748                              0.00
1563                        36586                              0.00
1564                        18065                              0.00
1565                        29740                              0.00
1566                        33688                              0.00
1567                        22648                              0.00
1568                        18110                              0.00
1569                        38819                              0.00
1570                        18128                             16.82
1571                        16319                              0.00
1572                        34838                              0.00
1573                        36886                              2.81
1574                        17063                              0.00
1575                        39285                              0.00
1576                        19184                              0.00
1577                        43207                              0.00
1578                        18579                              0.00
1579                        15801                              0.00
1580                        19123                              0.00
1581                        33990                              0.00
1582                        16787                              0.00
1583                        15508                              0.00
1584                        37132                              0.00
1585                        16663                              0.00
1586                        36901                              0.00
1587                        18570                              0.00
1588                        37189                              0.00
1589                        18664                              8.01
1590                        37841                              0.00
1591                        17603                              0.00
1592                        39120                              0.00
1593                        16342                              0.00
1594                        15727                              0.00
1595                        54823                            223.61
1596                        18295                            347.22
1597                        19323                              0.00
1598                        39894                              0.00
1599                        29144                            365.28
1600                        18183                              0.00
1601                        35593                              0.00
1602                        15333                              0.00
1603                        15335                              0.00
1604                        30250                              0.00
1605                        16447                              0.00
1606                        23642                              0.00
1607                        24163                              0.00
1608                        53410                              0.00
1609                        26273                              0.00
1610                        24654                              0.00
1611                        24648                              0.00
1612                        32786                              0.00
1613                         6513                              3.18
1614                         9715                              0.00
1615                         6908                              3.24
1616                         7596                              8.27
1617                         5676                              0.00
1618                         5752                              0.00
1619                         7177                              0.00
1620                        16124                              0.00
1621                        11207                              6.75
1622                        10628                              0.00
1623                         9569                              0.00
1624                        20392                              1.69
1625                        12975                              0.00
1626                        15276                              0.00
1627                        10160                              0.00
1628                        12950                              0.00
1629                         8827                              5.78
1630                         9571                             45.96
1631                         8194                             88.42
1632                         7851                              0.00
1633                         6856                              0.00
1634                         8615                              0.00
1635                        11329                              0.00
1636                        12273                              0.00
1637                        11757                            308.13
1638                        14370                             43.66
1639                        16658                              0.00
1640                        11041                             70.18
1641                        19780                             97.24
1642                        15941                             75.32
1643                        15496                            131.14
1644                        16871                              2.67
1645                        12725                             23.94
1646                        15350                              0.00
1647                        18019                            238.89
1648                        16918                              0.00
1649                        18457                              0.00
1650                        13037                              0.00
1651                        14029                             51.39
1652                        12400                              0.00
1653                        13235                              0.00
1654                        14119                              0.00
1655                        14953                              1.50
1656                        13782                              0.00
1657                        11518                              0.00
1658                         9380                              0.00
1659                        13684                              1.51
1660                        14960                              0.00
1661                        15679                              0.00
1662                        12136                              0.00
1663                        12578                              0.00
1664                        13818                              0.00
1665                        30143                              0.00
1666                        25305                              0.00
1667                        18055                              0.00
1668                            3                              0.00
1669                            0                              0.00
1670                         1555                              0.00
1671                          474                              0.00
1672                           19                              0.00
1673                            0                              0.00
1674                           31                              0.00
1675                           62                              0.00
1676                            3                              0.00
1677                            0                              0.00
1678                           63                              0.00
1679                         7681                              0.00
1680                       110316                              0.00
1681                        60529                              0.00
1682                          100                              0.00
1683                         1570                              0.00
1684                        38729                              0.00
1685                        45119                              0.00
1686                        44285                              0.00
1687                        33762                              0.00
1688                        31291                              0.00
1689                        35135                            319.44
1690                        36030                              0.00
1691                        21848                              0.00
1692                        22980                              0.00
1693                        28070                              0.00
1694                        32242                              0.00
1695                        30406                              0.00
1696                        21652                              0.00
1697                        23728                              0.00
1698                        31585                              0.00
1699                        23882                            294.44
1700                        17901                              0.00
1701                        52918                              0.00
1702                        46322                              0.00
1703                        33641                              0.00
1704                        23702                              0.00
1705                            9                              0.00
1706                            0                              0.00
1707                            0                              0.00
1708                            0                              0.00
1709                            4                              0.00
1710                            8                              0.00
1711                            0                              0.00
1712                            0                              0.00
1713                            3                              0.00
1714                            0                              0.00
1715                            0                              0.00
1716                            0                              0.00
1717                         7392                            156.67
1718                         8749                            223.33
1719                         8943                              0.00
1720                         8854                              0.00
1721                         8571                              0.00
1722                         5696                              0.00
1723                         5680                              0.00
1724                        21104                              0.00
1725                         5836                              0.00
1726                        11029                              0.00
1727                         9791                              0.00
1728                         6767                              0.00
1729                         3292                              0.00
1730                        11558                              0.00
1731                         9034                              0.00
1732                         8543                              0.00
1733                         9285                              0.00
1734                         8573                              3.80
1735                        10477                              0.00
1736                         9888                              0.00
1737                        15169                              0.00
1738                         5852                              0.00
1739                         5642                              0.00
1740                         2951                              0.00
1741                         2222                             11.37
1742                        10017                              0.00
1743                        11982                              3.79
1744                         9080                              0.00
1745                         9419                              0.00
1746                         9081                              7.46
1747                        10499                              0.00
1748                        31985                              0.00
1749                         6827                              0.00
1750                         7031                              0.00
1751                        28644                              0.00
1752                         9781                              0.00
1753                          228                              0.00
1754                          139                              0.00
1755                          162                             35.47
1756                          108                              3.51
1757                         7770                              0.00
1758                         5902                              0.00
1759                        17962                              0.00
1760                         4357                              0.00
1761                         5666                              0.00
1762                         4553                              0.00
1763                         5861                              0.00
1764                        11309                              0.00
1765                         6817                              0.00
1766                         7038                              0.00
1767                         5902                              0.00
1768                         3660                              0.00
1769                        24839                           1328.45
1770                        16936                           1247.26
1771                        28517                           1223.26
1772                        13539                           1049.02
1773                        14158                            882.53
1774                        16838                           1144.75
1775                        16013                            892.66
1776                        16399                           1417.41
1777                        13225                           1288.26
1778                        13346                           1281.45
1779                        13759                           1586.12
1780                        11297                           1639.08
1781                        10383                           1523.98
1782                        10780                           1533.15
1783                        15090                           1218.28
1784                        19121                           1572.14
1785                        17590                           1052.34
1786                        18057                           1254.97
1787                        10773                           1351.12
1788                        13619                           1280.45
1789                        13951                           1127.74
1790                        13478                           1342.34
1791                        21670                           1402.58
1792                        14512                           1257.39
1793                        12905                           4993.08
1794                        15522                           1238.11
1795                        12451                           1456.13
1796                        15768                           1276.42
1797                         9694                           1492.11
1798                         1331                           1741.46
1799                          903                           1797.91
1800                         2829                           1891.19
1801                         2567                           1551.77
1802                         3875                           1337.36
1803                         6745                           3591.89
1804                         6240                           7792.13
1805                         5725                           1428.09
1806                         5726                           1040.53
1807                         9584                           6159.18
1808                         6846                           1114.49
1809                         9412                           1181.59
1810                         3730                            943.89
1811                          734                            826.82
1812                          541                            972.96
1813                          860                           1125.49
1814                          844                            866.56
1815                          691                           1102.43
1816                         1246                           1332.72
1817                         1929                           1196.57
1818                         1074                           1121.44
1819                          955                           1006.50
1820                          441                           1034.22
1821                           45                            249.10
1822                           30                            140.22
1823                          110                            186.14
1824                         4532                            883.83
1825                           89                            371.31
1826                            7                            759.73
1827                         2157                           7648.30
1828                          236                           1605.95
1829                          123                            258.99
1830                         1323                            833.23
1831                           92                            141.73
1832                         3997                           1673.24
1833                          165                            167.53
1834                            2                             22.72
1835                           59                            167.19
1836                           22                             41.28
1837                          231                             35.09
1838                          139                             34.87
1839                          332                             43.10
1840                           95                              4.11
1841                           90                              8.23
1842                            7                              2.06
1843                          136                              0.00
1844                         5228                              8.27
1845                        10901                             96.40
1846                         3256                              8.33
1847                           98                             22.98
1848                           15                           1876.68
1849                          393                             64.71
1850                          473                              8.35
1851                           52                             25.03
1852                          137                             72.85
1853                            0                            139.15
1854                          339                            157.46
1855                            7                             26.86
1856                           85                             38.93
1857                          690                            150.85
1858                           43                              0.00
1859                          144                            418.79
1860                          403                              1.96
1861                           38                              1.94
1862                            0                              0.00
1863                          220                              3.88
1864                         4311                             17.45
1865                           74                              0.00
1866                         2473                              7.76
1867                         1126                              0.00
1868                        11548                              1.95
1869                        17854                              0.00
1870                        13785                              0.00
1871                         8013                              0.00
1872                        15251                              0.00
1873                          503                              0.00
1874                          253                              0.00
1875                          356                              0.00
1876                          202                              0.00
1877                          335                              0.00
1878                          392                              0.00
1879                         1135                              0.00
1880                         1895                              0.00
1881                         1990                              0.00
1882                         1301                              0.00
1883                         1334                              0.00
1884                         2134                              0.00
1885                         2210                              0.00
1886                         1836                              0.00
1887                         3241                              0.00
1888                         1760                              0.00
1889                         1059                              0.00
1890                          182                              0.00
1891                          326                              0.00
1892                          393                              0.00
1893                          608                              0.00
1894                          316                              0.00
1895                          195                              0.00
1896                         1059                              0.00
1897                         1368                              0.00
1898                         1411                              0.00
1899                          199                              0.00
1900                          566                              0.00
1901                          288                              0.00
1902                          592                              0.00
1903                          276                              0.00
1904                          621                              0.00
1905                          579                              0.00
1906                          499                              0.00
1907                         1147                             59.72
1908                          979                            140.28
1909                          394                              0.00
1910                         1313                              0.00
1911                          836                              0.00
1912                         1056                              0.00
1913                          742                              0.00
1914                          187                              0.00
1915                          145                              0.00
1916                          309                              0.00
1917                          559                              0.00
1918                        11378                              0.00
1919                        10971                              0.00
1920                        19822                              0.00
1921                        13470                              0.00
1922                        14168                              0.00
1923                        15498                              0.00
1924                        11623                              0.00
1925                            3                              5.25
1926                            5                              7.88
1927                            0                              0.00
1928                            6                              0.00
1929                            0                              0.00
1930                            3                              2.64
1931                          635                              0.00
1932                          876                              0.00
1933                          884                              0.00
1934                          818                              0.00
1935                          280                             24.34
1936                          618                             27.07
1937                          389                              0.00
1938                          766                              0.00
1939                          640                              0.00
1940                          715                              0.00
1941                           49                              2.70
1942                            0                              0.00
1943                            0                              0.00
1944                            0                              0.00
1945                            0                              0.00
1946                            0                              0.00
1947                            0                              0.00
1948                            4                              0.00
1949                          160                              0.00
1950                          551                              0.00
1951                            4                              0.00
1952                            0                              0.00
1953                            0                              0.00
1954                          882                              0.00
1955                         4969                              0.00
1956                         3246                              2.61
1957                         3459                              5.23
1958                         6507                              0.00
1959                         1238                            298.61
1960                          391                            122.22
1961                          727                              0.00
1962                         1747                              0.00
1963                          991                              0.00
1964                          877                              0.00
1965                           56                              0.00
1966                            0                              0.00
1967                            0                              0.00
1968                           29                              0.00
1969                          340                              0.00
1970                         5837                              0.00
1971                         6302                              0.00
1972                         6953                              0.00
1973                        10311                              0.00
1974                        10858                              0.00
1975                         8755                              0.00
1976                         4467                              0.00
1977                            0                            619.24
1978                            9                            773.33
1979                            3                              0.00
1980                            0                              0.00
1981                            0                              0.00
1982                            0                              0.00
1983                            0                              0.00
1984                           73                              0.00
1985                          772                              0.00
1986                          431                              0.00
1987                            0                              0.00
1988                            3                              0.00
1989                            0                              0.00
1990                            0                              3.06
1991                            0                              0.00
1992                           12                              0.00
1993                           43                              6.10
1994                          389                              0.00
1995                         1458                              0.00
1996                            0                              0.00
1997                            0                              0.00
1998                            0                              0.00
1999                            0                              0.00
2000                            0                              0.00
2001                            0                              0.00
2002                            0                              0.00
2003                            0                              0.00
2004                            0                              0.00
2005                            7                              0.00
2006                          490                              0.00
2007                         1831                              0.00
2008                         1180                              0.00
2009                         1422                              0.00
2010                         2358                              0.00
2011                          253                              0.00
2012                            0                              0.00
2013                          590                              0.00
2014                         1762                              0.00
2015                          432                              0.00
2016                         1134                              0.00
2017                           16                              3.00
2018                          349                              0.00
2019                          100                              0.00
2020                           29                              0.00
2021                          192                              0.00
2022                         2042                              0.00
2023                         2573                              0.00
2024                         3354                              0.00
2025                         4149                              0.00
2026                         3505                              0.00
2027                         3286                              0.00
2028                         1750                              0.00
2029                            6                              0.00
2030                            9                              5.78
2031                            3                              0.00
2032                            0                              5.76
2033                            0                             17.24
2034                            0                              0.00
2035                            0                              0.00
2036                            0                              0.00
2037                            0                              0.00
2038                            0                              0.00
2039                            0                              0.00
2040                            0                              0.00
2041                            0                              0.00
2042                            0                              0.00
2043                            0                              0.00
2044                            4                              0.00
2045                            9                              0.00
2046                            0                              0.00
2047                            0                              0.00
2048                           12                              0.00
2049                           17                              0.00
2050                            0                              0.00
2051                           34                              0.00
2052                            0                              0.00
2053                            0                            152.78
2054                            0                              0.00
2055                            0                              0.00
2056                            4                              0.00
2057                            0                              0.00
2058                            0                              0.00
2059                            9                              0.00
2060                            0                              0.00
2061                            0                              0.00
2062                            0                              0.00
2063                            0                            204.17
2064                            0                              0.00
2065                           26                              0.00
2066                           43                              0.00
2067                           25                              0.00
2068                           39                              0.00
2069                            0                              0.00
2070                            0                              0.00
2071                            0                              0.00
2072                            0                              0.00
2073                            0                              0.00
2074                            0                              0.00
2075                            0                              0.00
2076                            0                              0.00
2077                            0                              0.00
2078                            0                              0.00
2079                            7                              0.00
2080                            0                              0.00
2081                        31622                              0.00
2082                        34540                              0.00
2083                        43992                              0.00
2084                        28225                              0.00
2085                        16005                              0.00
2086                        13405                              0.00
2087                         8482                              0.00
2088                         6945                              0.00
2089                         5897                              8.18
2090                         3118                              4.10
2091                         3457                              0.00
2092                         2051                              0.00
2093                         3960                              0.00
2094                         2393                              0.00
2095                         3096                              0.00
2096                         4747                              0.00
2097                         4322                              0.00
2098                         1645                              0.00
2099                         1563                              0.00
2100                          502                              0.00
2101                         1905                              0.00
2102                         1140                              0.00
2103                         1166                              0.00
2104                         3950                              0.00
2105                         3470                              0.00
2106                         5490                              0.00
2107                         4578                              0.00
2108                         4578                              0.00
2109                         4173                              0.00
2110                         4224                              0.00
2111                         4240                              0.00
2112                         4683                              0.00
2113                         3586                              0.00
2114                         3614                              0.00
2115                         4225                              0.00
2116                         6053                              0.00
2117                        22380                              0.00
2118                        23949                             21.15
2119                        16967                             95.90
2120                        19629                              0.00
2121                         6063                              0.00
2122                         5269                              7.39
2123                         5102                              0.00
2124                         5316                             32.84
2125                         5544                             32.63
2126                         5426                            199.07
2127                         5526                            223.98
2128                         4738                            265.09
2129                         4708                            261.29
2130                         4411                            426.61
2131                         3272                            404.59
2132                         5595                            373.70
2133                          583                             21.81
2134                          766                             59.32
2135                          782                            103.31
2136                          639                            103.62
2137                          648                             53.54
2138                          773                             50.58
2139                          780                             38.07
2140                          693                             70.03
2141                          846                             19.16
2142                          812                             38.35
2143                          757                             44.79
2144                          736                             32.00
2145                          797                             31.99
2146                          786                             70.33
2147                          947                             44.71
2148                          734                             19.14
2149                          805                              0.00
2150                          864                              0.00
2151                          951                              0.00
2152                          847                              0.00
2153                         1109                              0.00
2154                          724                              0.00
2155                          894                              0.00
2156                          801                              0.00
2157                          894                            423.61
2158                          883                              0.00
2159                          783                              0.00
2160                         1044                              0.00
2161                         1071                              0.00
2162                         1076                              0.00
2163                         1010                              0.00
2164                         1084                              0.00
2165                          952                              0.00
2166                         1036                              0.00
2167                          972                            313.89
2168                         1052                            206.94
2169                         1561                              0.00
2170                         1291                              0.00
2171                         1025                            445.83
2172                          930                              0.00
2173                          819                             15.44
2174                          862                              6.16
2175                          803                            116.92
2176                          727                             58.37
2177                          823                             42.97
2178                          824                             49.06
2179                          733                             27.50
2180                          832                            118.86
2181                          797                             70.57
2182                          516                             52.18
2183                          659                              0.00
2184                          444                              6.16
2185                           27                            325.48
2186                           12                            155.26
2187                           36                             43.39
2188                            0                            165.19
2189                            0                             75.05
2190                            0                            216.59
2191                            0                            800.63
2192                            0                            262.94
2193                            0                             91.94
2194                            0                            281.60
2195                            0                             44.77
2196                            0                           1943.12
2197                            0                            844.14
2198                           13                             14.94
2199                            9                              6.64
2200                            0                             14.94
2201                           62                              4.98
2202                            1                              8.31
2203                           26                             18.20
2204                            3                              4.97
2205                            0                              0.00
2206                            3                              1.66
2207                           35                              0.00
2208                           89                              0.00
2209                          981                            116.39
2210                         5462                             11.69
2211                           58                             21.77
2212                           31                             20.14
2213                           18                             16.77
2214                            9                             11.68
2215                           97                              3.32
2216                          460                             36.47
2217                         1074                             54.62
2218                        12416                             54.54
2219                          478                             19.66
2220                           22                             11.43
2221                          161                             13.02
2222                          145                             22.70
2223                          211                             84.24
2224                          658                              4.83
2225                            0                             11.25
2226                            8                             12.64
2227                            8                             16.32
2228                           63                             18.35
2229                            0                             29.06
2230                          431                             44.75
2231                         2117                              4.58
2232                         1034                             33.58
2233                          371                             24.44
2234                          721                             10.71
2235                         5633                              1.53
2236                        14860                              0.00
2237                         9060                              7.83
2238                         4851                              7.81
2239                         9864                             10.37
2240                         6204                             20.68
2241                         9434                             10.40
2242                         9106                              0.00
2243                         5735                              0.00
2244                         5325                              7.78
2245                        13978                              0.00
2246                         8594                              0.00
2247                         8373                              0.00
2248                        18138                              0.00
2249                        19899                              0.00
2250                         9106                              0.00
2251                        21851                             28.83
2252                        14708                             18.38
2253                        18329                             73.73
2254                         5198                             15.84
2255                         5017                              0.00
2256                         5940                              0.00
2257                        11498                             66.42
2258                         5489                             21.28
2259                         4662                              0.00
2260                        10410                              0.00
2261                         5916                             94.44
2262                        10568                              0.00
2263                         4984                             53.35
2264                        11533                             32.04
2265                         6256                              8.02
2266                        11103                              0.00
2267                         5757                              5.35
2268                        12060                              0.00
2269                         5460                              0.00
2270                         5626                              0.00
2271                        16530                              0.00
2272                         5123                              0.00
2273                         5883                              0.00
2274                        12529                              0.00
2275                         7875                              0.00
2276                         6545                              0.00
2277                        12061                              0.00
2278                         5171                              0.00
2279                         4467                              0.00
2280                        10541                              0.00
2281                         5936                              0.00
2282                        15323                              0.00
2283                        14773                              0.00
2284                        27913                              0.00
2285                        18474                              0.00
2286                        21664                              0.00
2287                        18503                              0.00
2288                        16314                              0.00
2289                       105318                          84028.58
2290                        95640                         108072.79
2291                       115546                           1203.17
2292                       141970                            336.81
2293                        95137                             31.67
2294                       117936                              7.05
2295                       166200                             52.45
2296                       163126                            316.84
2297                       181456                            341.24
2298                       108231                            333.82
2299                        83783                            140.01
2300                       119235                            138.43
2301                       173688                            190.09
2302                       128033                             75.76
2303                       122303                             14.42
2304                       195144                             43.22
2305                       151197                             35.92
2306                        76948                             29.11
2307                        85422                             58.47
2308                        89808                             73.02
2309                        87160                             14.24
2310                        93163                             12.63
2311                       129426                              7.08
2312                       177295                             20.41
2313                       119640                           1357.03
2314                       103047                             32.94
2315                       191573                             52.33
2316                       173498                             17.56
2317                       158100                             42.53
2318                       116062                             14.03
2319                       147483                             28.04
2320                        91460                             31.62
2321                        88338                             17.58
2322                       152122                             35.22
2323                       166651                           1012.94
2324                        99430                            393.17
2325                        99203                             10.59
2326                        54424                             21.16
2327                        58682                           1528.97
2328                        63160                             38.60
2329                       125103                             23.75
2330                       130675                             14.02
2331                       175512                             28.37
2332                       130727                             24.34
2333                       111022                              0.00
2334                       102418                             13.72
2335                        54887                             85.88
2336                       126683                             63.26
2337                        92763                              0.00
2338                        57607                             25.69
2339                        97164                             50.21
2340                       128451                             13.59
2341                       264040                             27.11
2342                       135634                             72.30
2343                       272311                            111.54
2344                       145935                             27.12
2345                       252140                             42.30
2346                       249396                             30.26
2347                       158187                             18.17
2348                       143979                             48.52
2349                       311503                             15.18
2350                       181063                             33.46
2351                       190038                             42.72
2352                       398281                             27.49
2353                       391377                             27.48
2354                       187253                             18.31
2355                       421701                            176.91
2356                       211034                             36.53
2357                       409431                            142.85
2358                       136184                            127.38
2359                       123969                             39.29
2360                       135888                            105.41
2361                       270162                            242.84
2362                       121708                             95.46
2363                       108704                              0.00
2364                       238574                              0.00
2365                       127743                            598.61
2366                       270807                             55.70
2367                       132335                            259.93
2368                       272640                            113.58
2369                       137879                            104.62
2370                       268101                              8.71
2371                       129597                             37.67
2372                       289932                             23.22
2373                       128913                              0.00
2374                       122078                              0.00
2375                       382606                           1381.94
2376                       133264                           1454.17
2377                       149014                              0.00
2378                       292551                              0.00
2379                       215545                            883.33
2380                       147071                              0.00
2381                       274435                             20.76
2382                       123876                             56.45
2383                       114974                              0.00
2384                       253660                              2.98
2385                       126732                              0.00
2386                       201773                              0.00
2387                       185195                              0.00
2388                       417112                              0.00
2389                       221256                              0.00
2390                       225695                              0.00
2391                       215173                              0.00
2392                       280911                              0.00
2393                            0                            139.72
2394                            0                              0.00
2395                            4                              0.00
2396                          514                              0.00
2397                            0                              0.00
2398                            0                              0.00
2399                            0                              0.00
2400                            0                              0.00
2401                            0                              0.00
2402                           51                              0.00
2403                            0                              0.00
2404                            0                              0.00
2405                            0                              0.00
2406                            0                              0.00
2407                            0                              0.00
2408                            0                              0.00
2409                            0                              0.00
2410                            2                              0.00
2411                           71                              0.00
2412                            0                              0.00
2413                            0                              0.00
2414                            0                              0.00
2415                            0                              0.00
2416                            0                              0.00
2417                          160                              0.00
2418                          348                              0.00
2419                            0                              0.00
2420                            0                              0.00
2421                            0                              0.00
2422                            0                              0.00
2423                            0                              0.00
2424                            0                              0.00
2425                            0                              0.00
2426                         2180                              0.00
2427                          185                              0.00
2428                            0                              0.00
2429                            0                              0.00
2430                            0                              0.00
2431                           84                              0.00
2432                          320                              0.00
2433                            0                              0.00
2434                            0                              0.00
2435                            4                              0.00
2436                          121                              0.00
2437                            0                              0.00
2438                          134                              0.00
2439                          191                              0.00
2440                           37                              0.00
2441                            0                              0.00
2442                          503                              0.00
2443                         1696                              0.00
2444                          446                              0.00
2445                        17978                              0.00
2446                        12026                              0.00
2447                        20979                              0.00
2448                         8070                              0.00
2449                         6841                              8.88
2450                         7515                              0.00
2451                         7075                              2.23
2452                         4929                              0.00
2453                         4084                              6.71
2454                         5240                              0.00
2455                         4288                              6.74
2456                         3422                             11.26
2457                         3052                              0.00
2458                         2047                              0.00
2459                         2357                             20.28
2460                         1695                            136.20
2461                           88                              2.25
2462                          404                              4.50
2463                           12                              4.50
2464                            0                              6.74
2465                            0                              4.48
2466                            0                              2.24
2467                            0                              0.00
2468                            0                              0.00
2469                            4                            222.22
2470                          643                              0.00
2471                           39                              0.00
2472                            0                              0.00
2473                            0                             48.17
2474                            0                              4.36
2475                           23                              0.00
2476                            8                              0.00
2477                            0                              0.00
2478                            0                              2.14
2479                            0                              0.00
2480                            0                              2.11
2481                            5                              0.00
2482                            0                              0.00
2483                          116                              0.00
2484                          156                              0.00
2485                           78                              0.00
2486                          153                              0.00
2487                            0                              0.00
2488                            7                              0.00
2489                            9                              0.00
2490                           31                              0.00
2491                            2                              0.00
2492                            0                              0.00
2493                            0                              0.00
2494                            4                              0.00
2495                            2                              0.00
2496                           11                              0.00
2497                            0                              0.00
2498                            0                              0.00
2499                            0                              0.00
2500                            0                              0.00
2501                            0                              0.00
2502                            0                              0.00
2503                          191                              0.00
2504                          422                              0.00
2505                          347                              0.00
2506                          676                              0.00
2507                          364                              0.00
2508                          538                              0.00
2509                          533                              0.00
2510                          129                              0.00
2511                          449                              0.00
2512                          476                              0.00
2513                            0                              0.00
2514                            0                              0.00
2515                            0                              0.00
2516                            0                              0.00
2517                            0                              0.00
2518                            0                              0.00
2519                            0                              0.00
2520                            0                              0.00
2521                           98                              0.00
2522                          218                              0.00
2523                           31                              0.00
2524                            0                              0.00
2525                            0                              0.00
2526                            0                              0.00
2527                            0                              0.00
2528                            0                              0.00
2529                          169                              0.00
2530                          332                              0.00
2531                          331                              0.00
2532                          236                              0.00
2533                          136                              0.00
2534                          226                              0.00
2535                          262                              0.00
2536                          120                              0.00
2537                            0                              0.00
2538                           22                              0.00
2539                          238                              0.00
2540                           53                              0.00
2541                          264                              0.00
2542                          122                              0.00
2543                          424                              0.00
2544                           51                              0.00
2545                          420                              0.00
2546                            0                              0.00
2547                            0                              0.00
2548                            0                              0.00
2549                        38302                              0.00
2550                        18014                              0.00
2551                        40339                              0.00
2552                        18506                              0.00
2553                        38840                              0.00
2554                        30788                              0.00
2555                        21691                              2.82
2556                        18697                              0.00
2557                        45891                              0.00
2558                        36998                              2.84
2559                        40703                             17.08
2560                        88049                              2.85
2561                        84699                              2.85
2562                        39668                              0.00
2563                        91438                              0.00
2564                        39530                              0.00
2565                        76304                              0.00
2566                        17980                             28.07
2567                        15426                              0.00
2568                        17901                              0.00
2569                        35397                              2.75
2570                        15348                              0.00
2571                        16003                              0.00
2572                        35916                              0.00
2573                        16139                            297.22
2574                        36939                              5.31
2575                        17906                              0.00
2576                        36437                              0.00
2577                        18386                              0.00
2578                        35862                              0.00
2579                        15763                              0.00
2580                        39203                              0.00
2581                        16143                              0.00
2582                        15835                              0.00
2583                        55151                            611.11
2584                        19916                            288.89
2585                        21912                              0.00
2586                        43253                              0.00
2587                        34191                              0.00
2588                        21432                              0.00
2589                        40993                              0.00
2590                        17531                              0.00
2591                        18020                              0.00
2592                        36709                              0.00
2593                        16538                              0.00
2594                        33540                              0.00
2595                        33732                              0.00
2596                        66415                              0.00
2597                        38570                              0.00
2598                        38060                              0.00
2599                        37314                              0.00
2600                        42544                              0.00
2601                      1252626                         185822.04
2602                      1025049                         199305.12
2603                      1371440                          28377.23
2604                      1233956                          63229.39
2605                       856560                          30495.62
2606                      1137230                          32022.60
2607                      1283547                          36180.18
2608                      1027702                          65310.73
2609                      1246220                          55747.80
2610                       999728                          39129.89
2611                       952191                          27849.06
2612                      1221305                          72218.55
2613                      1189350                          50947.69
2614                       886424                          54490.73
2615                      1183732                          66354.72
2616                      1226810                          64278.56
2617                      1184889                          33236.49
2618                       685816                          52179.41
2619                       612362                          25637.35
2620                       703542                          68530.71
2621                       888238                          30627.73
2622                       689176                          27356.26
2623                       779808                          22539.94
2624                      1013834                          49899.96
2625                       796786                          27875.85
2626                       905205                          34456.08
2627                       846752                          20336.50
2628                       898027                          48182.84
2629                       822400                          20262.54
2630                       943996                          44658.04
2631                       726046                          19725.51
2632                       815629                          20582.31
2633                       660984                          36325.52
2634                       816629                          10092.51
2635                      1110987                          25031.21
2636                       687179                          31924.40
2637                       819935                          29286.95
2638                       826567                           7524.51
2639                       666515                          18878.91
2640                       610349                           7461.20
2641                       762528                          52375.15
2642                       614905                          14064.72
2643                       673149                          16090.51
2644                       725218                          53733.65
2645                       667149                          13350.50
2646                       648632                          11904.06
2647                       673454                          13924.23
2648                      1121076                          46899.12
2649                       812925                           8631.31
2650                       771093                           7935.35
2651                       718334                          15789.15
2652                       894946                          18672.81
2653                       567270                           5144.13
2654                       417746                          13319.61
2655                       517936                            570.88
2656                       582846                           2224.99
2657                       247318                            718.76
2658                       494585                           1302.15
2659                       699957                          11495.52
2660                       341545                           2239.59
2661                       421675                            643.00
2662                       420765                           1581.50
2663                       429405                            205.00
2664                       402360                           3830.31
2665                       336994                           1071.02
2666                       306759                             53.71
2667                       342166                            270.32
2668                       428556                             62.20
2669                       310569                             52.15
2670                       239196                             50.47
2671                       165724                             63.97
2672                       240262                             18.52
2673                       291065                             25.26
2674                       254166                              8.42
2675                       266208                              0.00
2676                       343390                             46.37
2677                       286271                           1454.78
2678                       192423                             67.17
2679                       180618                            107.23
2680                       167641                           2168.70
2681                       214730                             84.95
2682                       269005                             26.53
2683                       150401                             36.24
2684                        96786                            221.98
2685                       180702                            212.82
2686                       218969                            242.69
2687                       186892                            343.37
2688                       133326                           1071.49
2689                       240723                            202.69
2690                       206981                             33.97
2691                       135415                           1753.95
2692                       130691                              9.65
2693                        76496                             12.86
2694                        87496                             12.87
2695                        98775                             31.45
2696                        95603                             33.55
2697                       176872                             49.05
2698                        68522                             86.91
2699                       126121                             68.20
2700                       172155                             99.56
2701                       140736                             54.44
2702                       181810                             39.96
2703                       111074                             33.54
2704                       150820                              6.39
2705                        33065                          11190.00
2706                        23536                          25716.67
2707                        10948                            573.33
2708                         1605                              0.00
2709                         1218                              0.00
2710                         2904                              0.00
2711                         3843                              0.00
2712                         1402                              0.00
2713                         1155                              0.00
2714                         1101                              0.00
2715                          871                              0.00
2716                         1037                              0.00
2717                         1742                              0.00
2718                         1545                              0.00
2719                        11089                              0.00
2720                        48326                              0.00
2721                        11913                              0.00
2722                         1062                              0.00
2723                         3275                              0.00
2724                        25053                              0.00
2725                        33108                              0.00
2726                        18295                              0.00
2727                        16465                              0.00
2728                        17953                              0.00
2729                        15914                              0.00
2730                        18811                              0.00
2731                        19220                              0.00
2732                        27039                              0.00
2733                        42199                              0.00
2734                        34404                              0.00
2735                        32531                              0.00
2736                        17112                              0.00
2737                        22521                              0.00
2738                        23680                              0.00
2739                        27335                              0.00
2740                        33563                              0.00
2741                        25396                              0.00
2742                        25636                              0.00
2743                         7377                              0.00
2744                         5974                              0.00
2745                         1901                              0.00
2746                         2695                              0.00
2747                         2344                              0.00
2748                         2101                              0.00
2749                         2531                              0.00
2750                         3043                              0.00
2751                         2343                              0.00
2752                         3743                              0.00
2753                         1763                              0.00
2754                          873                              0.00
2755                         1606                              0.00
2756                         2812                              0.00
2757                        91847                              0.00
2758                        76010                              0.00
2759                        66737                              0.00
2760                       103784                              0.00
2761                        65519                             36.39
2762                        72236                            877.78
2763                        66233                            223.33
2764                        78956                              0.00
2765                        82115                              0.00
2766                        72640                              0.00
2767                       100985                              0.00
2768                        99114                            493.06
2769                        83706                              0.00
2770                        73830                            322.22
2771                        82907                            180.56
2772                        62713                              0.00
2773                        75979                            243.06
2774                        70394                            647.22
2775                        47001                              0.00
2776                        59730                              0.00
2777                        61075                              0.00
2778                        66694                              0.00
2779                        66554                              0.00
2780                        78959                            627.78
2781                        78214                            211.11
2782                       110545                           1681.94
2783                        52123                             20.00
2784                        84046                           1425.00
2785                        55753                           6691.94
2786                       105975                           7273.06
2787                       186792                           5450.28
2788                       171021                           4934.99
2789                       169317                            646.59
2790                       206445                            881.40
2791                       217338                              0.00
2792                       158920                            183.33
2793                       130218                            583.26
2794                       119038                            766.50
2795                        36611                              0.00
2796                        32268                             13.61
2797                        34551                              0.00
2798                        66700                              0.00
2799                        33479                              0.00
2800                        61907                              0.00
2801                        27709                              0.00
2802                        34842                              0.00
2803                        94449                              0.00
2804                        32831                              0.00
2805                        58468                              0.00
2806                        33271                              0.00
2807                        58630                              0.00
2808                        21907                             10.80
2809                         2630                           1312.32
2810                         2846                            682.12
2811                        11029                              0.00
2812                         1738                            236.11
2813                         1716                            709.72
2814                         1883                            901.39
2815                         1348                            436.11
2816                         1049                              0.00
2817                          566                            365.28
2818                          383                            487.50
2819                         1238                              0.00
2820                         1332                            361.11
2821                         1423                            641.67
2822                         1252                              0.00
2823                         3747                              0.00
2824                         4043                           1335.28
2825                         2898                            515.74
2826                         3979                           2370.89
2827                        15197                           4278.33
2828                         6984                           1390.00
2829                         2286                           1275.00
2830                          707                           3355.56
2831                         1006                           7346.67
2832                         2258                          11012.27
2833                         2448                          12632.65
2834                         2969                          11381.14
2835                         3059                           3748.07
2836                         3085                           5022.92
2837                         3452                           2935.00
2838                         8329                           3056.11
2839                         3716                           2741.11
2840                         2951                           2145.00
2841                         6195                            594.44
2842                         2691                            515.28
2843                         3244                            602.78
2844                         3132                            491.67
2845                         3034                           1155.56
2846                         2537                              0.00
2847                         2812                              0.00
2848                         3141                              0.00
2849                         2689                              0.00
2850                         2913                              0.00
2851                         2743                              0.00
2852                         2622                              0.00
2853                         6367                              0.00
2854                         6791                              0.00
2855                         4934                              0.00
2856                         3591                              0.00
2857                         5825                              0.00
2858                         2592                              0.00
2859                         2398                              0.00
2860                         2295                              0.00
2861                          662                             19.25
2862                          327                              4.82
2863                          320                             54.68
2864                          218                             12.88
2865                            0                             11.27
2866                            3                             11.27
2867                          140                             40.30
2868                          408                            103.26
2869                          622                             93.61
2870                         1098                             14.52
2871                         1198                             11.29
2872                         8576                             24.17
2873                         7431                             33.80
2874                         5565                              4.81
2875                         5199                              6.39
2876                          927                              7.98
2877                         1719                              7.96
2878                         1694                             15.88
2879                         1578                              0.00
2880                          671                             41.15
2881                          247                             20.55
2882                            0                              0.00
2883                           17                            520.00
2884                          800                           1231.57
2885                           20                            941.47
2886                           21                             69.26
2887                           34                             15.50
2888                           83                             15.57
2889                          246                              8.23
2890                            9                             18.16
2891                          926                              8.27
2892                           35                             18.20
2893                         2490                             64.50
2894                          330                             34.70
2895                          141                             18.15
2896                            6                              6.58
2897                           15                            585.83
2898                          156                             89.43
2899                           95                              8.08
2900                          242                             27.26
2901                           63                             11.15
2902                          784                             36.49
2903                          528                             17.40
2904                          472                             20.53
2905                           50                              6.31
2906                           85                              9.47
2907                          453                             69.46
2908                           47                            332.83
2909                         1615                             18.96
2910                          951                              7.92
2911                           17                             65.13
2912                           17                             36.67
2913                         1070                              0.00
2914                         1446                              0.00
2915                         1634                            306.94
2916                          308                            173.61
2917                           31                            423.61
2918                           36                              0.00
2919                            0                              0.00
2920                            0                            175.00
2921                            4                              0.00
2922                            0                            795.83
2923                            0                              0.00
2924                            0                              0.00
2925                            0                              0.00
2926                            0                              0.00
2927                          333                              0.00
2928                          900                              0.00
2929                          665                            393.61
2930                         1188                           1235.00
2931                         7400                            944.17
2932                         3642                           1060.00
2933                          176                            155.00
2934                            6                           1499.72
2935                           11                           3377.78
2936                            9                           3975.00
2937                           49                           4385.00
2938                          138                           4745.00
2939                          143                           2360.00
2940                          141                           1840.00
2941                           87                           2330.00
2942                          121                           1581.67
2943                          142                           1906.11
2944                          137                           1285.00
2945                          199                            144.44
2946                           97                              0.00
2947                           54                              0.00
2948                          152                           1073.61
2949                          110                             25.00
2950                           88                            129.17
2951                          131                              0.00
2952                          113                              0.00
2953                          150                              0.00
2954                          150                              0.00
2955                          282                              0.00
2956                          644                              0.00
2957                         2238                              0.00
2958                         1980                              0.00
2959                         1896                              0.00
2960                          828                              0.00
2961                          379                              0.00
2962                          244                              0.00
2963                          182                              0.00
2964                          269                              0.00
2965                         1660                              0.00
2966                         2191                              0.00
2967                         1737                              0.00
2968                         1256                             37.50
2969                            0                             19.44
2970                            0                              0.00
2971                            0                              0.00
2972                            0                            212.50
2973                            0                              0.00
2974                            0                              0.00
2975                            0                              0.00
2976                            0                              0.00
2977                            0                              0.00
2978                            4                              0.00
2979                          807                              0.00
2980                         1102                              0.00
2981                           53                            175.00
2982                            0                           1625.00
2983                            0                           1480.00
2984                            0                           1145.00
2985                            0                           1820.00
2986                            0                            695.00
2987                            0                           4390.00
2988                            0                           2430.00
2989                            0                           4252.50
2990                            0                           4900.00
2991                            0                           2700.00
2992                            0                           2685.00
2993                            0                           2140.00
2994                            0                           2530.00
2995                            0                            555.00
2996                            0                           1310.00
2997                            0                              0.00
2998                            0                              0.00
2999                            0                              0.00
3000                            0                              0.00
3001                            0                              0.00
3002                          113                            109.72
3003                           51                              0.00
3004                            0                              0.00
3005                            0                              0.00
3006                            0                              0.00
3007                            9                              0.00
3008                          780                              0.00
3009                         3322                              0.00
3010                         2240                              0.00
3011                         1771                              0.00
3012                          958                              0.00
3013                          127                              0.00
3014                            0                              0.00
3015                            0                              0.00
3016                            0                              0.00
3017                        99070                          38754.60
3018                       135368                          32911.64
3019                       177400                          25004.38
3020                        27830                          29605.75
3021                        49697                          29919.69
3022                        61429                          28709.03
3023                        60542                          27954.84
3024                        35998                          29342.75
3025                        25242                          23290.74
3026                        55800                          32670.58
3027                        73118                          36591.19
3028                        74895                          26579.43
3029                        58294                          28538.34
3030                        53653                          37712.62
3031                        59481                          41117.01
3032                        66072                          28399.83
3033                        47477                          25873.30
3034                        46602                          29990.19
3035                        61140                          37788.55
3036                        73033                          31034.45
3037                        89290                          35738.22
3038                        95426                          34328.61
3039                        82026                          25714.93
3040                        97435                          26718.84
3041                       107540                          33541.91
3042                       119871                          40842.24
3043                       107904                          28909.54
3044                       101883                          30289.93
3045                       110755                          27501.39
3046                       171242                          28247.08
3047                       160781                          32186.13
3048                       129666                          30374.15
3049                       155366                          19350.79
3050                       508756                          25136.12
3051                       485685                          17124.03
3052                       257015                          20523.37
3053                        88791                          21076.61
3054                       183826                          19681.74
3055                       201547                          17277.53
3056                       259875                          21064.41
3057                       189928                          18996.98
3058                       186808                          19126.71
3059                       230049                          22853.11
3060                       282243                          17870.86
3061                       167309                          15277.68
3062                       333030                          15578.37
3063                       344775                          17495.30
3064                       134693                          14505.17
3065                       147882                          15340.52
3066                       162290                          18330.90
3067                       321614                          16499.43
3068                       340852                          10604.73
3069                        10233                             69.44
3070                        10048                              0.00
3071                         6109                              0.00
3072                        11766                              0.00
3073                         5861                              0.00
3074                         6021                              0.00
3075                         6941                              0.00
3076                         6586                              0.00
3077                         6817                            240.28
3078                         5659                              0.00
3079                        10355                            240.28
3080                         8597                              0.00
3081                         8258                            825.00
3082                         8278                              0.00
3083                        11648                              0.00
3084                         7860                              5.00
3085                         7806                            537.50
3086                         1906                            380.00
3087                         1628                            155.00
3088                         4818                              0.00
3089                         3787                             15.00
3090                         3330                            435.00
3091                         3346                           3432.22
3092                         3224                           1680.00
3093                         4549                           3157.78
3094                         8290                           2135.00
3095                         3211                           1010.00
3096                         4842                           1964.17
3097                         3826                           1178.33
3098                         6333                           1061.39
3099                         6511                            245.00
3100                         3941                            335.00
3101                        10963                              0.00
3102                         7275                            931.94
3103                        12265                              0.00
3104                        10957                            883.33
3105                         5887                            608.33
3106                        11987                              0.00
3107                         6794                              0.00
3108                         5267                              0.00
3109                         5988                              0.00
3110                        11010                              0.00
3111                         5598                              0.00
3112                        10589                              0.00
3113                         4580                              0.00
3114                         7387                              0.00
3115                        17682                              0.00
3116                         7415                              0.00
3117                        11482                              0.00
3118                         5767                              0.00
3119                         8518                              0.00
3120                         3529                              0.00
3121                          955                           4727.27
3122                         1066                           6864.11
3123                         1102                           7619.38
3124                          621                           2071.42
3125                          798                             20.45
3126                          998                           2066.77
3127                          594                            238.09
3128                         1096                            143.16
3129                         1587                           4679.64
3130                          790                           8911.29
3131                         1048                           8830.00
3132                          969                           9817.92
3133                          531                          11173.61
3134                          744                          10170.01
3135                          802                           6158.34
3136                         2085                            578.74
3137                         2320                            526.69
3138                         4244                           3235.08
3139                         1582                           1532.98
3140                         2139                            443.73
3141                          262                            991.15
3142                          318                           1185.39
3143                         1820                           5103.64
3144                        12736                           4721.07
3145                         1894                           7027.59
3146                          379                           5620.33
3147                          457                           4265.84
3148                         1867                           2013.51
3149                         2213                            773.95
3150                         3216                           1503.98
3151                         3360                           1396.15
3152                         6545                           1797.15
3153                         4798                            715.83
3154                         4998                           3061.55
3155                         4167                           1715.92
3156                         4685                             13.01
3157                         4807                           2044.47
3158                         9927                           1550.94
3159                         3947                             29.58
3160                         4222                             62.71
3161                         3147                              7.36
3162                         2192                              0.00
3163                         2223                              0.00
3164                         1903                              0.00
3165                        10559                             14.64
3166                        18323                            551.65
3167                        21749                             95.71
3168                         1186                              0.00
3169                         2400                              0.00
3170                        15802                             16.67
3171                        39333                            376.67
3172                        21615                          11540.00
3173                       144037                              0.00
3174                        89486                             18.44
3175                       141291                             38.54
3176                       194319                             23.18
3177                        84702                             65.28
3178                       130220                              0.00
3179                       129104                              6.21
3180                       127194                             86.61
3181                       137692                              0.00
3182                       156408                              1.56
3183                       117051                              0.00
3184                       149625                              0.00
3185                       147472                              3.13
3186                       127625                              0.00
3187                       137924                              0.00
3188                       108520                             80.00
3189                       102794                            415.00
3190                        97230                           1790.87
3191                       102390                           1035.00
3192                       105549                             38.13
3193                       100554                             11.27
3194                        88091                            690.35
3195                        89696                           4178.21
3196                       101973                           4240.83
3197                        78560                           4698.86
3198                       118273                           4504.90
3199                        75549                           4077.42
3200                       105248                           5532.69
3201                        46348                           3019.39
3202                        81916                           6686.68
3203                        69163                           2131.99
3204                        74252                           2800.95
3205                        53944                           5725.69
3206                        87870                           3688.91
3207                        44324                           1549.52
3208                        41935                           1974.89
3209                        36551                           5770.54
3210                        49094                           1344.55
3211                        50469                           2674.77
3212                        52164                           3734.14
3213                        50473                           3897.20
3214                        52396                           1892.16
3215                        54219                           5491.30
3216                        56152                           3438.18
3217                        45674                           1147.04
3218                        53192                           1378.43
3219                        61181                           6651.48
3220                        33496                           3246.36
3221                        47199                           4561.48
3222                        53233                           1613.41
3223                        37685                           1590.02
3224                        29550                           9387.59
3225                         1459                             33.01
3226                         2461                            102.72
3227                         2155                             11.57
3228                         5159                             65.21
3229                         1671                              1.45
3230                         1602                              0.00
3231                         2082                              0.00
3232                         1420                              0.00
3233                         1850                              0.00
3234                         2081                              0.00
3235                         2271                              0.00
3236                         3430                              0.00
3237                         4470                              0.00
3238                          712                              0.00
3239                         1632                              0.00
3240                         1755                             20.00
3241                          466                            171.44
3242                         1842                           1720.00
3243                         4123                           1310.00
3244                         3865                              0.00
3245                        13475                             10.00
3246                         7260                            600.95
3247                         8564                           4119.67
3248                         2931                           4793.45
3249                        11537                           4447.88
3250                         4656                           4206.19
3251                         4848                           3482.96
3252                         6081                           4761.49
3253                         6082                           2663.46
3254                         6408                           5495.88
3255                         6886                           1795.84
3256                         9992                           1720.96
3257                        18533                           4600.51
3258                        15138                           3516.22
3259                         7486                           1290.97
3260                         8239                           1441.24
3261                         7591                           4854.19
3262                         9454                           1038.71
3263                        21164                           2564.53
3264                        20099                           3442.88
3265                        16153                           3855.21
3266                        14098                           1727.12
3267                        17567                           5138.93
3268                        10262                           3474.47
3269                         6111                            951.80
3270                         7182                           1102.03
3271                         6961                           5337.74
3272                         9259                           2521.34
3273                         4436                           5439.08
3274                         6493                           1482.44
3275                         6989                           1260.37
3276                         6208                           8519.43
3277                         2661                           2259.97
3278                         2246                           5381.61
3279                         2393                           4223.58
3280                         2665                           3921.15
3281                         2391                             62.60
3282                          747                            212.46
3283                          161                            113.13
3284                          274                            601.87
3285                          806                             68.82
3286                         4851                           1574.92
3287                         3146                           3390.53
3288                         2677                            889.40
3289                         4186                           4207.01
3290                        25698                            572.79
3291                         5993                           1269.22
3292                         9088                           2876.37
3293                         5723                           5035.04
3294                         2462                           8486.35
3295                          903                           1319.94
3296                         3256                            997.14
3297                        14712                           3114.75
3298                        19285                           2156.91
3299                        14107                           8724.65
3300                         2985                           3426.36
3301                         8349                          12828.11
3302                        16195                          30681.22
3303                         7081                          14562.13
3304                        12777                           6064.11
3305                        12924                           4738.19
3306                         8707                           7192.66
3307                        10985                           8411.55
3308                        21095                           5602.38
3309                        16388                           2569.45
3310                        19972                           2731.55
3311                        21756                            419.10
3312                        26935                             66.67
3313                        28701                           1084.32
3314                        27733                           3339.88
3315                        20797                            443.14
3316                        18872                             21.57
3317                        20318                             23.32
3318                        14527                              3.58
3319                        17359                             10.72
3320                        19079                             17.82
3321                        18486                             43.56
3322                        14229                           2278.65
3323                        20895                          18743.48
3324                        19753                          18304.40
3325                        12680                          11245.20
3326                        15227                             45.39
3327                        10291                             19.81
3328                         3765                            357.51
3329                       151603                             15.74
3330                        99582                              8.60
3331                       118838                              0.00
3332                       295881                              0.00
3333                       141398                              0.00
3334                       123007                              0.00
3335                       230381                              0.00
3336                       174689                            117.12
3337                       144256                            297.69
3338                       240556                             98.61
3339                       279893                              0.00
3340                       269465                              0.00
3341                       287071                              0.00
3342                       269662                            188.89
3343                       320842                            338.89
3344                       342086                           1127.78
3345                       422509                              0.00
3346                       390977                           1325.00
3347                       127269                            715.28
3348                       228325                              0.00
3349                       172079                           1612.50
3350                       129902                            693.06
3351                       217563                           3218.06
3352                       254838                            105.56
3353                       252847                           3155.56
3354                       162792                           4015.28
3355                       213091                           1033.33
3356                       260599                            541.71
3357                       284377                           1642.70
3358                       327756                              0.00
3359                       400602                            240.28
3360                       407239                            623.01
3361                       427649                           2179.17
3362                       416966                           1310.34
3363                       231176                           2604.17
3364                       200704                           2006.94
3365                       461184                           4612.42
3366                       311446                           1505.56
3367                       402240                              0.00
3368                       289789                              0.00
3369                       448816                              0.00
3370                       320943                              1.38
3371                       216743                              0.00
3372                       533592                             17.16
3373                       409969                             12.40
3374                       449186                              0.00
3375                       507786                              0.00
3376                       381449                              0.00
3377                       706053                              0.00
3378                       649528                              0.00
3379                       499568                              0.00
3380                       611655                             12.25
3381                         2192                             19.22
3382                         2072                             84.23
3383                         2039                            257.13
3384                         3635                            118.38
3385                         2290                              7.08
3386                         1382                              8.91
3387                          873                             14.26
3388                         1074                              7.14
3389                         1059                              8.93
3390                         2492                             16.05
3391                         2582                              3.56
3392                         6147                            130.95
3393                         7605                             16.05
3394                         1542                              1.77
3395                         4601                            174.10
3396                         4395                              0.00
3397                          287                             35.10
3398                          533                            352.77
3399                          109                           1360.44
3400                         1081                            696.21
3401                        18669                            776.71
3402                         5808                           3981.87
3403                        10056                          18467.33
3404                          907                          16951.41
3405                        14996                          15939.80
3406                         2084                          13879.00
3407                          243                          18764.51
3408                         1731                          25442.59
3409                         1916                          12553.53
3410                         3849                          38452.62
3411                         4440                          10441.83
3412                         4350                           9956.71
3413                        16445                          35871.87
3414                        21053                          27264.12
3415                         6528                          11216.54
3416                         6973                           8156.12
3417                         6263                          30679.67
3418                        10173                           8811.29
3419                        27480                          13825.64
3420                        37647                          20067.70
3421                        35829                          19362.13
3422                        32804                           9562.24
3423                        43570                          30487.31
3424                        19350                          16989.77
3425                        10248                           8957.44
3426                        12168                          10104.87
3427                        17270                          38570.18
3428                        12767                          15125.89
3429                         4514                          25498.27
3430                         4505                          10270.89
3431                         2454                           9915.15
3432                         2096                          35462.53
3433                         5228                            230.04
3434                         3947                             26.33
3435                         5539                             12.27
3436                         2547                             55.95
3437                         3626                             37.57
3438                         1472                             25.65
3439                          892                              5.20
3440                         1713                             20.74
3441                         4411                             41.35
3442                         5758                             37.88
3443                         4301                             20.65
3444                         4581                             32.67
3445                         4869                             20.63
3446                         7491                             18.91
3447                         6479                              5.16
3448                         5160                             24.08
3449                         4235                            728.13
3450                         4939                           2009.67
3451                         1742                           4514.23
3452                         3263                           7438.80
3453                         3446                           5385.76
3454                         3059                           2356.73
3455                         3843                           9970.21
3456                         3582                           8332.82
3457                         4005                          10061.07
3458                         4598                          10253.64
3459                         4817                           7415.42
3460                         4611                          10264.17
3461                         4766                           1030.83
3462                         6583                            698.73
3463                         5039                            453.76
3464                         7308                           2318.11
3465                         7824                            402.47
3466                         6646                            439.02
3467                         6737                             70.34
3468                         8087                             30.46
3469                         6230                            217.05
3470                         5850                            667.26
3471                         6428                            110.45
3472                         9317                            141.15
3473                         5768                             65.91
3474                         9622                             32.84
3475                         3634                            243.10
3476                         3809                            103.31
3477                         5151                            112.00
3478                         6755                           3583.75
3479                         2406                          11711.85
3480                         3445                           4808.74
3481                         2468                           5117.37
3482                         2470                           1300.43
3483                         3622                            447.23
3484                         2685                           5372.83
3485                       306952                           8088.35
3486                       211183                          10323.11
3487                       290597                          11210.70
3488                       371804                           4843.16
3489                       219153                            275.71
3490                       283782                           2558.39
3491                       264201                            488.11
3492                       264747                            661.15
3493                       335026                           6397.10
3494                       358809                          12752.14
3495                       274655                          11669.31
3496                       325870                          15419.83
3497                       307678                          16511.69
3498                       263775                          15893.52
3499                       280262                           9159.67
3500                       228409                           1442.84
3501                       197493                           5321.61
3502                       207893                          22615.89
3503                       215617                          22584.07
3504                       239773                          26306.88
3505                       255073                          27017.13
3506                       212638                          27028.45
3507                       242488                          94696.80
3508                       256759                          94863.13
3509                       228291                         104656.22
3510                       261536                         105750.27
3511                       180042                          89881.02
3512                       242410                         101357.90
3513                       135926                          50689.13
3514                       220019                          89109.83
3515                       210973                          29436.24
3516                       252030                          38989.85
3517                       273930                          77176.68
3518                       312684                          57897.47
3519                       208596                          24262.22
3520                       217343                          22847.76
3521                       210718                          68728.73
3522                       225792                          20503.70
3523                       265657                          32688.74
3524                       286624                          48009.23
3525                       245563                          44381.53
3526                       232255                          24714.09
3527                       250138                          68883.46
3528                       207221                          40184.81
3529                       163400                          18492.84
3530                       216563                          31009.63
3531                       238503                         108699.18
3532                       158608                          48035.59
3533                       150810                          72037.88
3534                       167786                          26026.74
3535                       185907                          25383.34
3536                       147921                         130892.80
3537                         2561                             31.84
3538                         1185                              0.00
3539                         2403                              0.00
3540                          801                             73.61
3541                          741                              0.00
3542                          687                              0.00
3543                          973                              6.67
3544                          756                             30.00
3545                          378                              0.00
3546                          187                             62.50
3547                          712                              0.00
3548                          986                              0.00
3549                          902                              0.00
3550                          772                             77.78
3551                         2196                              0.00
3552                         2062                             16.11
3553                         1160                            150.00
3554                         2349                           2963.16
3555                         7905                           3240.00
3556                         6770                           2220.00
3557                         1282                           3685.00
3558                          592                           4255.00
3559                          553                           8220.00
3560                         1259                          11095.48
3561                         1668                           8418.33
3562                          868                          10761.81
3563                          985                           4430.39
3564                         1092                           5600.72
3565                         1542                           5650.00
3566                         5237                           1630.00
3567                        12975                            430.00
3568                          775                           1080.00
3569                         2720                              0.00
3570                          652                              0.00
3571                         1979                              0.00
3572                         1113                              0.00
3573                         2575                              0.00
3574                         2380                              0.00
3575                         1963                              0.00
3576                         1350                              0.00
3577                         1472                              0.00
3578                         1293                              0.00
3579                         1631                              0.00
3580                         1531                              0.00
3581                         2218                              0.00
3582                         2282                              0.00
3583                         2121                              0.00
3584                         1318                              0.00
3585                         1261                              0.00
3586                         1205                              0.00
3587                         1205                              0.00
3588                          692                              0.00
3589                          866                            317.28
3590                          225                            142.29
3591                          840                            290.28
3592                          125                            135.70
3593                            9                              0.00
3594                         1324                              0.00
3595                          187                              0.00
3596                          566                              0.00
3597                           80                              0.00
3598                          104                             69.44
3599                           99                              0.00
3600                           40                            175.00
3601                          190                              0.00
3602                          628                             10.00
3603                         1376                              5.00
3604                         1137                             15.00
3605                          734                            334.00
3606                         1647                           1073.42
3607                         4268                           1355.00
3608                         2319                           1275.56
3609                          119                            190.00
3610                          340                           1205.00
3611                          738                           2280.00
3612                          347                           3676.99
3613                         1638                           3723.82
3614                          548                           3881.61
3615                          318                           2365.00
3616                          883                           2185.00
3617                          585                           2670.00
3618                          578                           2185.00
3619                         1486                           1690.33
3620                          940                           1070.00
3621                         1053                             40.05
3622                         1766                              0.00
3623                         2065                              0.00
3624                          983                             28.30
3625                          802                             43.30
3626                          283                            220.07
3627                          567                            128.54
3628                         1200                              0.00
3629                          964                              0.00
3630                          990                              0.00
3631                         1189                              3.35
3632                         1942                              0.00
3633                         2422                              0.00
3634                         4299                              0.00
3635                         3685                              3.37
3636                         2209                              0.00
3637                         4411                              5.07
3638                         1079                              0.00
3639                         1912                              0.00
3640                         1097                              0.00
3641                       169973                              0.00
3642                       219296                              0.00
3643                       252688                              0.00
3644                       195108                              0.00
3645                        70483                              0.00
3646                        94916                             13.33
3647                        99275                            102.78
3648                       102248                              0.00
3649                       131113                              0.00
3650                        61336                              0.00
3651                       141037                              0.00
3652                       116836                             34.72
3653                       184289                              0.00
3654                       193857                              0.00
3655                        91452                             20.00
3656                        79968                            230.00
3657                        88824                           1905.00
3658                        58653                           8220.00
3659                        76539                            333.33
3660                        79430                            250.00
3661                        60269                              0.00
3662                        64240                           3743.33
3663                        39623                           2337.22
3664                        37550                              0.00
3665                        39453                           3425.28
3666                        39117                          17928.06
3667                        86483                          18366.67
3668                        70961                          12600.00
3669                       149148                          10023.33
3670                       170944                          10603.33
3671                       110662                           8640.00
3672                       165911                           9301.67
3673                       192425                           2739.44
3674                       146298                           3018.05
3675                       159462                           4866.66
3676                       144364                           4451.67
3677                        57278                           6655.00
3678                        50450                           5018.06
3679                        66016                           3546.67
3680                       124377                           7073.33
3681                       103045                           8503.33
3682                        48441                           6586.67
3683                        39419                           7126.67
3684                        24044                           6286.67
3685                        38634                           6086.67
3686                        55041                           6225.56
3687                        75750                          19306.67
3688                        46086                          22807.77
3689                        63963                          17144.44
3690                        50111                           4376.67
3691                        58067                           1156.67
3692                        49678                            326.67
3693                        25547                             44.80
3694                        20669                             43.91
3695                        20250                            156.88
3696                        24180                            867.20
3697                        24221                              0.00
3698                        32252                              0.00
3699                        28947                             41.67
3700                        29181                            329.39
3701                        41094                              0.00
3702                        38780                              1.49
3703                        30248                              0.00
3704                        32111                            452.98
3705                        27446                              3.01
3706                        25490                              0.00
3707                        25361                              0.00
3708                        21860                              0.00
3709                        16371                            105.00
3710                        21877                           1013.40
3711                        24245                            240.00
3712                        28560                           1285.00
3713                        21522                            795.28
3714                        22329                            671.85
3715                        29878                           4640.20
3716                        32642                           4914.98
3717                        25083                           5599.84
3718                        29634                           6058.05
3719                        16249                           5659.25
3720                        25320                           6063.43
3721                        13631                           6148.79
3722                        23087                           6339.77
3723                        24844                           2830.34
3724                        29563                           4917.90
3725                        27196                           5564.24
3726                        27767                           3365.91
3727                        26782                           1749.44
3728                        30148                           4092.74
3729                        33415                           3691.73
3730                        26375                           1188.64
3731                        26829                           2955.32
3732                        27197                           4667.85
3733                        18685                           3221.12
3734                        19278                           3809.85
3735                        23929                           4920.17
3736                        23948                           3042.27
3737                        17285                           1594.11
3738                        27220                           2307.08
3739                        25269                           3588.69
3740                        17063                           4874.75
3741                        21451                           4769.31
3742                        19618                           2046.21
3743                        20247                           3397.73
3744                        19313                           7575.88
3745                        54709                              0.00
3746                        58844                             68.06
3747                        36270                              0.00
3748                        73698                              0.00
3749                        40163                              0.00
3750                        40052                              0.00
3751                        39670                              0.00
3752                        45768                              0.00
3753                        43127                              0.00
3754                        42388                              0.00
3755                        60621                             77.78
3756                        40304                              0.00
3757                        52236                              0.00
3758                        48983                              0.00
3759                        52678                              0.00
3760                        34566                              0.00
3761                        47400                              0.00
3762                        24543                            550.00
3763                        26027                           2170.00
3764                        39348                           2600.00
3765                        24593                           3915.00
3766                        23055                           4781.39
3767                        21141                           4141.94
3768                        23918                           4324.72
3769                        19443                           5881.94
3770                        41823                           5995.00
3771                        23013                           3855.83
3772                        39990                           4500.00
3773                        22606                           3530.00
3774                        40947                           3129.44
3775                        40394                            976.67
3776                        27240                           1986.67
3777                        77620                           1906.67
3778                        46304                              0.00
3779                        92767                              0.00
3780                        79513                            576.39
3781                        41248                            344.44
3782                        79967                            656.94
3783                        42424                              0.00
3784                        40449                              0.00
3785                        34933                              0.00
3786                        72330                              0.00
3787                        40050                              0.00
3788                        78332                              0.00
3789                        36679                              0.00
3790                        32067                              0.00
3791                        66879                              8.12
3792                        30514                              0.00
3793                        28917                              0.00
3794                        12888                              0.00
3795                        27648                              0.00
3796                        15388                              0.00
3797                        79795                              0.00
3798                        94431                              0.00
3799                       125144                              0.00
3800                       109473                            398.61
3801                        59992                              0.00
3802                        52715                              0.00
3803                        53892                              0.00
3804                        50534                            252.78
3805                        62503                              0.00
3806                        83393                              0.00
3807                        95941                              0.00
3808                        43301                              0.00
3809                        43393                              0.00
3810                        41533                              0.00
3811                        59043                              0.00
3812                        55605                              0.00
3813                        57325                              0.00
3814                        46529                              0.00
3815                        43901                              0.00
3816                        41439                              0.00
3817                        37605                            194.44
3818                        37052                              0.00
3819                        40005                            516.67
3820                        31541                           1473.33
3821                        47343                           1175.28
3822                        46538                              0.00
3823                        47330                              0.00
3824                        47967                            109.72
3825                        45519                            115.28
3826                        76034                              0.00
3827                        86166                            219.44
3828                        54952                              0.00
3829                        36627                              0.00
3830                        56942                              0.00
3831                        51258                            208.33
3832                        60496                              0.00
3833                        73502                              0.00
3834                        56050                              0.00
3835                        23108                              0.00
3836                        37524                              0.00
3837                        37590                              0.00
3838                        55862                              0.00
3839                        27106                              0.00
3840                        36770                              0.00
3841                        44919                              0.00
3842                        60912                              0.00
3843                        41599                              0.00
3844                        17210                              0.00
3845                        16948                              0.00
3846                        27584                              0.00
3847                        32973                              0.00
3848                        38994                              0.00
3849                        49937                          29290.48
3850                        55112                          23857.54
3851                        80412                          19643.50
3852                        17965                          20918.26
3853                        34138                          21732.46
3854                        43042                          23178.06
3855                        44271                          25867.81
3856                        26543                          26995.86
3857                        16419                          19146.28
3858                        32387                          20487.37
3859                        43825                          28817.78
3860                        51156                          25365.52
3861                        40145                          22123.39
3862                        34497                          24991.63
3863                        36400                          30720.86
3864                        46333                          26600.65
3865                        32720                          23777.27
3866                        32450                          27789.66
3867                        43208                          35113.14
3868                        53238                          29085.06
3869                        63575                          34136.92
3870                        64812                          31927.10
3871                        60001                          22467.47
3872                        73174                          22599.25
3873                        85232                          28664.03
3874                        96718                          34207.59
3875                        84463                          25161.56
3876                        80776                          25149.39
3877                        84760                          24489.04
3878                       124721                          25903.36
3879                       119447                          27057.56
3880                        87973                          21324.00
3881                       104146                          17435.17
3882                       362932                          20647.48
3883                       334016                          15070.09
3884                       185289                          18064.33
3885                        61746                          19176.16
3886                       132342                          16961.34
3887                       145602                          16441.67
3888                       185190                          20008.82
3889                       134711                          18060.88
3890                       129444                          18097.26
3891                       155334                          21619.28
3892                       196813                          17288.48
3893                       119573                          14654.54
3894                       222150                          15105.65
3895                       245385                          16806.91
3896                        94240                          14059.30
3897                        99947                          14941.52
3898                       111406                          17747.26
3899                       194493                          16084.46
3900                       226122                          10317.41
3901                        28748                              0.00
3902                        19259                              0.00
3903                        47412                             12.66
3904                        52955                              0.00
3905                        19589                              0.00
3906                        16871                              0.00
3907                        21328                              0.00
3908                        24858                              0.00
3909                        24943                              0.00
3910                        25396                              0.00
3911                        30429                              0.00
3912                        27499                              0.00
3913                        23402                              0.00
3914                        17571                              0.00
3915                        22492                              0.00
3916                        20735                              5.00
3917                        18599                            215.00
3918                        14585                           1260.00
3919                        19306                            340.00
3920                        11519                             10.00
3921                         8740                            276.67
3922                        13604                           1625.20
3923                        15464                           2439.96
3924                        19864                           2412.10
3925                         8354                           3226.10
3926                        15819                           3888.33
3927                        15457                           3045.36
3928                        19034                           4074.69
3929                         9636                           2340.37
3930                        12559                           2999.73
3931                        17510                            706.82
3932                        17376                            823.91
3933                        20894                           1929.71
3934                        27789                           1457.82
3935                        26367                            795.13
3936                        15363                            746.43
3937                        13959                           1908.99
3938                        16275                            379.83
3939                        22101                           1127.39
3940                        23483                           1568.10
3941                        23672                           1672.03
3942                        13596                            806.94
3943                        12597                           2528.16
3944                        17869                           1321.37
3945                        23456                            469.30
3946                        22781                            774.82
3947                        22423                           2364.40
3948                        12100                           1265.87
3949                        20198                           1905.45
3950                        14857                            815.07
3951                        17271                            488.76
3952                        20809                           1620.80
3953                       154236                             79.17
3954                       181797                            143.06
3955                       103275                            140.28
3956                       197097                            435.84
3957                        93847                            243.61
3958                       109062                              0.00
3959                       106744                            251.39
3960                        99150                            551.39
3961                        94573                            341.67
3962                       108324                            183.33
3963                       144764                            320.83
3964                        94167                              0.00
3965                       120229                              0.00
3966                       118397                            488.89
3967                       114378                           1308.33
3968                        85586                           1701.39
3969                       106502                            911.11
3970                        48344                           1163.06
3971                        51086                           6755.00
3972                        83816                           5214.17
3973                        46178                          10641.67
3974                        46683                          13940.28
3975                        46752                          12791.94
3976                        43114                          16755.00
3977                        46987                          12012.50
3978                        92318                          17369.72
3979                        32132                          15683.89
3980                        74180                          14070.56
3981                        49303                          14710.83
3982                        98747                           7122.50
3983                        93591                          10280.83
3984                        54738                           9370.00
3985                       185705                           2440.00
3986                        94280                           1409.72
3987                       220081                              0.00
3988                       186259                           1623.61
3989                        97105                            419.44
3990                       193377                            605.56
3991                        97707                              0.00
3992                        76648                              0.00
3993                        88087                              0.00
3994                       174180                              0.00
3995                        81588                              0.00
3996                       166791                              0.00
3997                        85370                              0.00
3998                        70886                              0.00
3999                       217922                              0.00
4000                        66681                              0.00
4001                        64486                              0.00
4002                        30401                              0.00
4003                        68080                              0.00
4004                        43747                              0.00
4005                       126819                           4132.56
4006                        98744                           4068.37
4007                       158716                           4727.70
4008                       206026                           3153.45
4009                        82534                           2581.67
4010                        87750                           1962.77
4011                        97915                           2281.08
4012                        99509                            750.00
4013                       104591                           3592.23
4014                       104911                           3778.06
4015                       128076                            585.28
4016                       131811                           1098.61
4017                       123117                           2413.89
4018                       100820                              0.00
4019                       137296                            157.78
4020                       133301                           2378.33
4021                       100199                           3563.65
4022                        65178                          17668.62
4023                        94491                          10840.09
4024                        87262                           3130.00
4025                        96534                          10360.26
4026                        74748                          18858.84
4027                        97933                          46962.62
4028                        82513                          71187.79
4029                        84303                          79133.56
4030                        98647                          77406.70
4031                        58982                          32421.42
4032                        81188                          37392.62
4033                        50028                          31242.94
4034                        78844                          22122.28
4035                        87306                          14295.21
4036                        78542                          17490.96
4037                       121070                           6567.43
4038                       126429                           5417.33
4039                       131751                           1981.64
4040                       101988                           2685.57
4041                        75800                           4778.40
4042                       112614                           1195.15
4043                        99453                           2080.93
4044                        94070                           2865.19
4045                        91601                           3123.16
4046                       100801                           1410.17
4047                        73642                           3800.07
4048                       105806                           2302.00
4049                        99760                            675.43
4050                       113432                           1045.00
4051                       162492                           4349.53
4052                        84566                           2272.44
4053                       107123                           4168.99
4054                        70548                           1390.46
4055                        85473                           1413.99
4056                        64630                           6743.15
4057                        16684                           1000.00
4058                        16375                           1410.00
4059                        10921                           2180.00
4060                        23949                           1325.00
4061                        11099                            604.44
4062                        10861                            415.00
4063                        10716                           1170.00
4064                        11172                            440.00
4065                        12436                           1445.00
4066                         9384                           1260.00
4067                        20373                            180.00
4068                        21913                              0.00
4069                        17311                              0.00
4070                        14930                              0.00
4071                        20256                              0.00
4072                        21540                              0.00
4073                        15575                              0.00
4074                         3275                              0.00
4075                         3705                              0.00
4076                        13415                              0.00
4077                        20976                              0.00
4078                         9716                             97.22
4079                        12991                              0.00
4080                         9476                              0.00
4081                        19524                              0.00
4082                        23751                              0.00
4083                         8683                            251.39
4084                        13377                           1273.33
4085                         9199                           2043.33
4086                        14360                           1420.00
4087                        15057                           1086.67
4088                        11397                           1465.12
4089                        27611                            125.70
4090                        18956                             25.41
4091                        32138                              0.00
4092                        26635                            106.94
4093                        16973                              2.52
4094                        30602                              7.54
4095                        18971                              0.00
4096                        13157                              0.00
4097                        15704                              2.52
4098                        31069                              0.00
4099                        15758                              0.00
4100                        24552                              0.00
4101                        11699                              0.00
4102                        16189                              0.00
4103                        37250                              0.00
4104                        14373                              0.00
4105                        23908                              0.00
4106                        13707                              0.00
4107                        20247                              0.00
4108                         9037                              0.00
4109                        19595                           5458.33
4110                        17160                           9730.00
4111                        11188                           3945.28
4112                        19438                           2865.00
4113                        12685                            396.11
4114                        12727                            240.00
4115                        15815                            683.06
4116                        17499                            534.72
4117                        16790                           9448.33
4118                        15594                           4025.00
4119                        16753                          11345.00
4120                        16720                          10775.00
4121                        14452                           7605.00
4122                        14214                          14835.00
4123                        16384                          10965.00
4124                         9139                           3805.00
4125                        12704                           9260.00
4126                        16042                           7560.00
4127                        12616                           9525.00
4128                        14285                           2375.00
4129                         9694                           8709.44
4130                        13784                            625.00
4131                        10508                          12835.00
4132                        13214                           2275.00
4133                        10060                          11414.72
4134                        15078                           6861.67
4135                         9281                           9010.00
4136                        16417                           4425.00
4137                         9380                          12312.22
4138                        15485                          12804.72
4139                        14413                           5295.00
4140                        13430                           4992.22
4141                        33790                              0.00
4142                        19611                              0.00
4143                        43470                              0.00
4144                        29557                              0.00
4145                        19211                              0.00
4146                        28883                              0.00
4147                        18911                              0.00
4148                        12284                              0.00
4149                        15241                              0.00
4150                        23873                              0.00
4151                        14912                              0.00
4152                        25835                              0.00
4153                        17676                              0.00
4154                        13162                              0.00
4155                        23873                              0.00
4156                        10153                              0.00
4157                        13004                              0.00
4158                         8819                              0.00
4159                        12063                              0.00
4160                         7775                              0.00
4161                        36655                           1207.92
4162                        39175                           1946.20
4163                       104392                           1506.23
4164                        33668                            453.64
4165                        32611                            298.94
4166                        35803                           1816.67
4167                        42984                              0.00
4168                        42458                              0.00
4169                        21485                           1225.00
4170                         5010                           1250.00
4171                        35806                            823.61
4172                        47381                            218.44
4173                        50152                            737.50
4174                        37137                            838.89
4175                        52277                            133.33
4176                        48240                            457.81
4177                        53778                           1048.64
4178                        57957                           2868.76
4179                        52653                           4033.04
4180                        31781                           1194.65
4181                        40992                           2876.06
4182                        19393                           2547.22
4183                        21057                           5442.94
4184                        50851                           6497.84
4185                        84323                           3688.92
4186                        62448                           5657.69
4187                        56320                           2758.35
4188                        55747                           3118.03
4189                        60442                           3803.68
4190                        63464                           1769.10
4191                        70667                            398.33
4192                        32848                            405.44
4193                        52451                           1730.03
4194                        59096                            419.44
4195                        79106                            134.71
4196                        62792                            811.11
4197                        74702                           1734.62
4198                        38411                           2316.75
4199                        42071                              0.00
4200                        51618                              0.00
4201                        40881                              0.00
4202                        43359                              0.00
4203                        42678                              0.00
4204                        42500                              0.00
4205                        43907                              0.00
4206                        66869                              0.00
4207                        42137                              0.00
4208                        41190                              2.17
4209                        71746                              0.00
4210                        44375                              0.00
4211                        56110                              0.00
4212                        37309                              8.83
4213                        53298                           1808.95
4214                        59783                           2222.01
4215                       132518                           2103.01
4216                        45128                           1299.63
4217                        40587                            955.83
4218                        43849                           1952.78
4219                        52344                             10.00
4220                        53808                            669.44
4221                        28142                           1276.39
4222                        12135                           2525.00
4223                        46085                            823.61
4224                        57528                            392.49
4225                        60123                           1099.26
4226                        49099                            926.67
4227                        66388                            218.89
4228                        67008                            513.46
4229                        62682                           3723.91
4230                        71527                          19159.67
4231                        97633                          19784.27
4232                        63918                          14985.41
4233                        58406                          21239.68
4234                        33487                          18600.09
4235                        36044                          53340.60
4236                        68637                          64692.73
4237                       107324                          58307.57
4238                        82816                          69794.85
4239                        78614                          31622.03
4240                        74864                          30476.12
4241                        80946                          30712.05
4242                        92633                          19724.42
4243                       117667                           9829.62
4244                        60110                          14141.13
4245                       103624                           2643.35
4246                        91516                            525.00
4247                       114354                            356.74
4248                        90193                           2621.85
4249                       108151                           2131.07
4250                        64700                           3150.31
4251                        66911                            135.85
4252                        80732                              0.00
4253                        60004                              0.00
4254                        61310                              0.00
4255                        58883                              7.01
4256                        62961                              0.00
4257                        77611                              0.00
4258                       107842                              1.74
4259                        73585                              3.48
4260                        63773                              1.74
4261                        94980                              5.22
4262                        67661                              0.00
4263                        85149                            103.33
4264                        52073                           1843.64
4265                            4                              0.00
4266                          397                             33.33
4267                          895                              0.00
4268                            0                              0.00
4269                            0                              0.00
4270                            0                              0.00
4271                            0                              0.00
4272                            0                              0.00
4273                            0                              0.00
4274                            0                              0.00
4275                            0                              0.00
4276                            0                              0.00
4277                            4                              0.00
4278                           12                              0.00
4279                          549                             80.56
4280                          538                             10.00
4281                            0                            440.00
4282                           22                           2030.00
4283                           30                           1435.00
4284                            0                           1755.00
4285                            0                            245.00
4286                            4                           1930.00
4287                            4                           4570.00
4288                            0                           7371.11
4289                            4                           7995.00
4290                            8                           9655.00
4291                            0                           4055.00
4292                            0                           2675.00
4293                            0                           2805.00
4294                            0                           2425.00
4295                            4                           2030.00
4296                            7                           3015.00
4297                            4                              0.00
4298                           15                              0.00
4299                            0                             59.72
4300                           56                              0.00
4301                           33                             65.28
4302                           15                              0.00
4303                            0                              0.00
4304                            0                              0.00
4305                            4                              0.00
4306                           15                              0.00
4307                           52                              0.00
4308                          556                              0.00
4309                         1944                              0.00
4310                         2536                              0.00
4311                         1828                              0.00
4312                         1152                              0.00
4313                          483                              0.00
4314                            0                              0.00
4315                            4                              0.00
4316                            0                              0.00
4317                        79805                            144.44
4318                        79120                             94.44
4319                        53442                            100.00
4320                       108539                              0.00
4321                        51218                              0.00
4322                        56066                              0.00
4323                        54378                              0.00
4324                        55431                              0.00
4325                        57104                            469.44
4326                        54609                            734.72
4327                        94068                              0.00
4328                        55622                              0.00
4329                        66632                            387.50
4330                        62515                           1140.28
4331                        68979                              0.00
4332                        55821                              0.00
4333                        66507                              0.00
4334                        21861                           1811.39
4335                        23781                           4930.00
4336                        54647                           4960.00
4337                        35584                          10262.78
4338                        33277                           9300.00
4339                        34307                          10420.00
4340                        31198                          12030.00
4341                        29184                          12305.00
4342                        50693                          19396.39
4343                        35166                          10490.00
4344                        52962                          11060.56
4345                        32645                           8876.67
4346                        58693                          10079.16
4347                        62354                           3788.34
4348                        40285                           8269.73
4349                       121151                           4991.11
4350                        77481                              0.00
4351                       152707                            368.06
4352                       130991                            691.67
4353                        61355                              0.00
4354                       129928                              0.00
4355                        65427                              0.00
4356                        56718                              0.00
4357                        58998                              0.00
4358                       122602                              0.00
4359                        51328                              0.00
4360                       118744                              0.00
4361                        57993                              0.00
4362                        50811                              0.00
4363                       155928                              0.00
4364                        59521                              0.00
4365                        56342                             11.40
4366                        20509                             14.20
4367                        52385                              0.00
4368                        28740                              0.00
4369                         5380                            333.30
4370                         6638                             82.22
4371                        19741                              0.00
4372                         5540                            182.50
4373                         5056                              0.00
4374                         4632                             79.17
4375                         5877                              0.00
4376                         7238                            231.94
4377                         3108                              0.00
4378                         1958                              0.00
4379                         6893                              0.00
4380                         7949                              0.00
4381                         7790                             82.09
4382                         5460                              0.00
4383                         9261                              0.00
4384                         9482                              0.00
4385                         9074                            452.53
4386                        10098                           1459.18
4387                        17278                           2042.25
4388                         9698                           1107.46
4389                         8526                           2836.15
4390                         3766                           1965.00
4391                         4319                           4968.06
4392                         9333                           8255.40
4393                        14058                           4218.50
4394                        10880                           6821.41
4395                         9866                           2496.35
4396                         8901                           2376.03
4397                        12724                           2735.00
4398                        14692                            250.83
4399                        21386                              0.00
4400                         8469                              0.00
4401                        15195                            431.94
4402                        12439                            105.56
4403                        15350                            115.28
4404                        13166                            272.22
4405                        15823                            140.28
4406                         8407                             70.83
4407                         9141                              0.00
4408                         9722                              0.00
4409                         7855                              0.00
4410                         9250                              0.00
4411                         9743                              3.09
4412                        10145                              0.00
4413                        10289                              0.00
4414                        12592                              0.00
4415                        10906                              0.00
4416                         9447                              0.00
4417                        13219                              0.00
4418                        10314                              0.00
4419                        11193                              0.00
4420                         7255                              0.00
4421                       165814                             73.61
4422                       148668                            444.44
4423                       152350                             51.39
4424                       115108                           1281.94
4425                       123303                            309.72
4426                       164014                             80.56
4427                       163055                              0.00
4428                       125874                              0.00
4429                       123200                             87.50
4430                       115801                              0.00
4431                       171740                            608.33
4432                       128733                            466.67
4433                       121767                            220.83
4434                       115508                            995.83
4435                       137427                              0.00
4436                       105452                              3.33
4437                       142076                              0.00
4438                       112887                              0.00
4439                       133222                            625.00
4440                       153948                              0.00
4441                       132129                            977.78
4442                       125777                            166.67
4443                       139837                            481.94
4444                       108637                             75.00
4445                       135677                            462.50
4446                       117119                            304.17
4447                       113195                             58.33
4448                       119122                             86.11
4449                       123010                              0.00
4450                       131927                             34.72
4451                       143895                           1081.94
4452                       131561                             48.61
4453                        99188                            690.28
4454                       109498                           2662.50
4455                        72201                             38.89
4456                        83420                           1450.00
4457                       108208                              0.00
4458                        75964                           1245.83
4459                        56080                             15.17
4460                        80965                              0.00
4461                        64370                              0.00
4462                        68717                              0.00
4463                        54046                              0.00
4464                        69634                              0.00
4465                        95801                              0.00
4466                        77921                              0.00
4467                        83550                              0.00
4468                        51983                              0.00
4469                        82131                              0.00
4470                        49194                              0.00
4471                        50704                              0.00
4472                        48700                              0.00
4473                         3885                              0.00
4474                         8301                              0.00
4475                         4529                              0.00
4476                         4345                            145.83
4477                         3915                              0.00
4478                         4732                              0.00
4479                         4658                              0.00
4480                         4944                              0.00
4481                         5199                             51.39
4482                         5482                              0.00
4483                         4838                              0.00
4484                         4395                              0.00
4485                         4552                              0.00
4486                         8643                              0.00
4487                         1435                              0.00
4488                         1920                              0.00
4489                          902                            219.17
4490                         2363                           1065.00
4491                         8896                            480.00
4492                         8460                           1255.00
4493                        10405                           3520.00
4494                        10802                            863.72
4495                        10655                           4387.78
4496                        10590                           6515.00
4497                        10065                           3610.00
4498                        11865                           4835.00
4499                        13454                           2075.00
4500                        12371                           1500.00
4501                        11099                           1775.00
4502                        15179                            320.00
4503                        16522                            396.67
4504                        19067                           1250.56
4505                        31691                             88.89
4506                        18304                              0.00
4507                        14253                              0.00
4508                        12026                              0.00
4509                        11619                              0.00
4510                        13808                              0.00
4511                        11920                              0.00
4512                        17238                              0.00
4513                        11110                              0.00
4514                         8651                              0.00
4515                         4900                              0.00
4516                         5396                              0.00
4517                         5349                              0.00
4518                        11499                              0.00
4519                         6666                              0.00
4520                         5763                              0.00
4521                         6882                              0.00
4522                        12422                              0.00
4523                        15712                             16.67
4524                         9621                            220.00
4525                        30653                           1659.21
4526                        30112                           5771.22
4527                        24589                           3956.96
4528                        43202                           8155.01
4529                        28167                           1855.32
4530                        20625                           3753.05
4531                        23575                           7683.60
4532                        26242                           4100.00
4533                        56090                           9159.41
4534                        42104                           6305.41
4535                        28257                           7168.66
4536                        30408                           7297.29
4537                        49039                           5556.51
4538                        39398                           6767.03
4539                        38375                           5772.22
4540                        25530                           4814.38
4541                        30741                          13858.27
4542                        31891                          12423.51
4543                        12247                          20408.60
4544                        16834                           7213.67
4545                        19901                          23239.48
4546                        17634                          34700.91
4547                        18858                          37547.10
4548                        30455                          34075.12
4549                        22163                          49882.07
4550                        34036                          52003.87
4551                        25087                          25293.09
4552                        41103                          12332.46
4553                        28877                          24938.14
4554                        28530                          24418.48
4555                        22584                           9826.67
4556                        43241                          10059.85
4557                        44850                           5903.34
4558                        74091                          11724.60
4559                        32053                            730.08
4560                        56591                           7701.08
4561                        52872                           8875.06
4562                        45354                          11293.99
4563                        46537                           1765.07
4564                        31033                           1872.48
4565                        50899                           1582.27
4566                        43787                           2395.56
4567                        31752                           2970.95
4568                        37148                           1948.33
4569                        37206                           1730.00
4570                        32440                           1376.25
4571                        62701                           1413.45
4572                        49336                           1369.72
4573                        47910                           2148.41
4574                        28187                           4914.77
4575                        59405                           3532.62
4576                        19418                           1307.57
4577                           44                            302.65
4578                          907                            164.80
4579                         1653                           1297.17
4580                         2558                            440.11
4581                          502                            158.67
4582                          501                            217.97
4583                          377                            599.21
4584                          665                            377.22
4585                         4076                            344.21
4586                         1376                            277.03
4587                         5212                            145.54
4588                        65756                            203.34
4589                       175642                            496.85
4590                       107461                             49.53
4591                        14941                            135.85
4592                          104                            242.25
4593                          312                            223.10
4594                          336                             78.15
4595                         1692                             80.15
4596                         1898                            299.15
4597                          831                             67.68
4598                         1778                            402.30
4599                         2006                            127.21
4600                          946                            190.72
4601                         1007                             98.84
4602                         1173                            194.18
4603                         1498                           1565.92
4604                         1626                            596.57
4605                         2380                             56.66
4606                         5117                            463.72
4607                         3484                            320.90
4608                         5624                            327.25
4609                        14195                           1197.22
4610                         3539                            588.05
4611                         2894                            359.68
4612                         3823                             51.94
4613                        12156                           1379.51
4614                          151                           1746.75
4615                         1405                            239.44
4616                         2382                            333.37
4617                         1435                            215.70
4618                         2895                            361.46
4619                          842                            332.87
4620                         2953                            228.48
4621                        26246                            218.90
4622                          392                            134.61
4623                         1358                            622.77
4624                         1781                           1452.49
4625                         3801                            206.39
4626                         6678                            152.50
4627                         4248                            543.52
4628                        11448                            970.54
4629                         2793                            161.11
4630                         2173                              0.00
4631                         1623                              0.00
4632                         3931                              0.00
4633                         1562                              0.00
4634                         1847                            293.06
4635                         1886                              0.00
4636                         1988                              0.00
4637                         1933                              0.00
4638                         1668                            305.56
4639                         3635                              0.00
4640                         3278                            568.06
4641                         3060                            936.11
4642                         2614                              0.00
4643                         4723                            127.78
4644                         4475                              5.00
4645                         1765                              0.00
4646                          434                           1201.39
4647                          299                              0.00
4648                         1447                              0.00
4649                         3510                            970.28
4650                         1259                           3052.78
4651                         3641                           4580.83
4652                          686                           9568.33
4653                         2108                          10935.00
4654                         1461                           9717.78
4655                          657                           1750.00
4656                          958                            870.00
4657                          408                           2211.11
4658                          800                           1225.83
4659                          835                            245.00
4660                          307                            675.00
4661                         1194                           1154.17
4662                         1554                           1177.78
4663                         1407                              2.47
4664                         1191                              0.00
4665                          734                              9.88
4666                         1689                              9.89
4667                          755                              0.00
4668                          613                              0.00
4669                          726                              0.00
4670                         1471                              0.00
4671                          626                              0.00
4672                         1647                              0.00
4673                          431                              0.00
4674                         2699                              0.00
4675                         5152                              2.46
4676                         4923                              0.00
4677                         1127                              0.00
4678                          601                              0.00
4679                         1479                              0.00
4680                          667                              0.00
4681                          746                              0.00
4682                         1171                              0.00
4683                          591                              0.00
4684                           40                              0.00
4685                           29                              0.00
4686                            0                              0.00
4687                            0                              0.00
4688                            0                              0.00
4689                           33                              3.33
4690                          497                              0.00
4691                         1057                              0.00
4692                          578                              0.00
4693                          901                              0.00
4694                            4                              0.00
4695                         2071                              0.00
4696                         3389                              0.00
4697                          114                            160.00
4698                          179                           1670.00
4699                           80                            275.00
4700                          108                             60.00
4701                         4302                           2205.00
4702                         2603                            755.00
4703                         6623                           4410.00
4704                          683                           9460.83
4705                         2122                           8115.00
4706                            0                           8035.00
4707                           27                           4890.00
4708                           83                           4745.00
4709                          158                           2970.00
4710                          784                           2420.83
4711                          747                           2555.00
4712                            6                           2450.00
4713                          152                             94.34
4714                         1725                             69.23
4715                            3                             56.50
4716                            3                              0.00
4717                            1                              0.00
4718                            0                             24.01
4719                            0                              0.00
4720                            5                             13.35
4721                            4                              0.00
4722                            9                              0.00
4723                           10                              0.00
4724                          233                              0.00
4725                         3027                              0.00
4726                         3508                              0.00
4727                         3770                              0.00
4728                         2637                              0.00
4729                          513                              0.00
4730                            0                              0.00
4731                            7                              0.00
4732                          265                              0.00
4733                          530                              0.00
4734                         1052                              0.00
4735                          787                              0.00
4736                          487                            122.77
4737                          287                              0.00
4738                          304                              0.00
4739                          240                              0.00
4740                          291                              0.00
4741                          754                              0.00
4742                         1607                              0.00
4743                         2449                              0.00
4744                         2854                              0.00
4745                         3085                              0.00
4746                          372                              0.00
4747                         4445                             10.00
4748                         6322                             25.00
4749                         2360                            335.00
4750                         2000                           1860.00
4751                         2760                            870.00
4752                         3331                            125.00
4753                         9020                            965.00
4754                         4397                            600.00
4755                         9663                           4115.00
4756                         1762                           5590.00
4757                         5154                           5763.33
4758                         1709                           5365.00
4759                            5                           3360.00
4760                           32                           3810.00
4761                          277                           3319.44
4762                          748                           1435.00
4763                         1205                           1239.44
4764                         1308                           1687.78
4765                         2074                            106.06
4766                         4374                              0.00
4767                         1987                              0.00
4768                         3146                              9.09
4769                         2273                              3.03
4770                         1835                             33.23
4771                         1252                              0.00
4772                         1198                              0.00
4773                           54                              0.00
4774                          336                              0.00
4775                         1362                              0.00
4776                         1149                              0.00
4777                         3273                              0.00
4778                         4086                              0.00
4779                         3517                              0.00
4780                         2324                              0.00
4781                          162                            370.00
4782                            0                             73.33
4783                           18                             70.00
4784                           31                           1133.33
4785                         2869                           2352.22
4786                         5207                           2240.00
4787                         5504                           1537.22
4788                          382                           1325.00
4789                          716                           2275.00
4790                          142                              5.00
4791                            6                              0.00
4792                            6                              0.00
4793                          436                            345.00
4794                         2029                           2710.00
4795                         1036                           1320.28
4796                          206                             10.90
4797                            0                           1231.67
4798                          705                           3763.89
4799                         1177                           2363.34
4800                            0                            600.00
4801                            3                            215.28
4802                            6                            130.56
4803                            9                            258.33
4804                            0                              0.00
4805                           13                              0.00
4806                           10                            390.28
4807                            0                              0.00
4808                            9                              0.00
4809                            9                            250.00
4810                            0                              0.00
4811                            0                            623.61
4812                            0                            975.00
4813                           13                            365.42
4814                           19                              0.00
4815                            4                             70.85
4816                            0                           2173.89
4817                            7                              8.77
4818                            6                           1222.66
4819                          107                            325.00
4820                            0                            280.56
4821                           61                            326.39
4822                           20                            322.22
4823                           38                              0.00
4824                            9                              0.00
4825                           26                              2.91
4826                            0                             20.31
4827                            6                              8.71
4828                            0                              0.00
4829                            6                              0.00
4830                           17                             43.67
4831                           55                             37.88
4832                            6                              2.91
4833                           32                              0.00
4834                            0                              2.90
4835                           12                              0.00
4836                            0                              0.00
4837                        22081                           1765.56
4838                        38952                           1110.28
4839                        53238                            421.67
4840                         6275                           1723.97
4841                        10626                            935.54
4842                        14193                            385.00
4843                        13258                            435.00
4844                         8804                            868.06
4845                         6337                             95.27
4846                        13110                           1924.11
4847                        16988                           2653.34
4848                        20262                            500.00
4849                        15812                            785.00
4850                        12821                           1071.94
4851                        11857                           1354.17
4852                        15188                             55.00
4853                        10942                            201.39
4854                        10855                            468.06
4855                        14380                             98.61
4856                        15842                              0.00
4857                        20237                              0.00
4858                        23324                             40.00
4859                        18132                            730.00
4860                        20475                            871.41
4861                        19130                           1261.67
4862                        20163                           2101.87
4863                        17484                            733.76
4864                        17443                           1116.39
4865                        19728                            355.00
4866                        39014                            250.00
4867                        31716                            980.28
4868                        30338                           1205.00
4869                        35092                              0.00
4870                       137623                            226.39
4871                       155615                            233.33
4872                        68644                              0.00
4873                        24495                              0.00
4874                        44338                              0.00
4875                        50311                              0.00
4876                        66078                              0.00
4877                        51305                              0.00
4878                        50048                              0.00
4879                        69940                              0.00
4880                        70805                              0.00
4881                        40780                              0.00
4882                        97328                              0.00
4883                        86518                              0.00
4884                        39190                              0.00
4885                        42191                              0.00
4886                        45611                              0.00
4887                       103723                              0.00
4888                        97480                              0.00
4889                         7460                            295.00
4890                        11824                            889.17
4891                        10579                            954.72
4892                         1144                           1304.72
4893                         1584                            655.00
4894                         1193                           3271.94
4895                          977                            290.28
4896                          103                            529.17
4897                          269                           1972.50
4898                         2967                           2084.17
4899                         3260                           1058.61
4900                         1055                             19.59
4901                         1167                           1148.06
4902                         1572                           1330.28
4903                         3098                           2035.56
4904                          692                            143.06
4905                          962                            451.39
4906                          990                           1311.11
4907                          857                           1576.39
4908                          900                           1162.50
4909                          869                            297.22
4910                          948                            687.50
4911                         1014                           1398.61
4912                          106                           1422.22
4913                          689                           1206.94
4914                          946                           1019.44
4915                         1044                           1105.56
4916                         1080                           1065.28
4917                         1022                            302.52
4918                          698                            413.95
4919                          677                           1202.75
4920                          945                            948.89
4921                         1042                            455.56
4922                          886                           1538.61
4923                          899                            413.89
4924                          884                            769.44
4925                          901                            618.06
4926                          894                           1435.26
4927                          843                             25.21
4928                          831                             15.76
4929                          820                             15.74
4930                          726                             53.41
4931                          797                            103.45
4932                          746                             15.64
4933                          664                             28.07
4934                          688                             28.00
4935                          619                             40.38
4936                          382                            139.54
4937                          166                             12.41
4938                          509                              6.21
4939                          601                              0.00
4940                          372                              0.00
4941                          156                            252.62
4942                          216                            278.60
4943                          416                           1619.17
4944                          192                            271.42
4945                          183                            205.65
4946                          648                            160.22
4947                          284                            825.64
4948                          242                            365.15
4949                          334                            454.81
4950                          320                           1071.19
4951                         7513                            120.97
4952                        31923                            429.29
4953                       287932                            492.01
4954                       115511                            575.04
4955                        46367                            593.80
4956                          135                             72.78
4957                          129                            238.84
4958                          141                            308.75
4959                          135                            223.53
4960                           89                            364.77
4961                          143                            454.62
4962                          242                             35.42
4963                          115                            159.88
4964                           78                             29.27
4965                          146                             53.77
4966                          225                            115.18
4967                          314                            608.55
4968                          306                            864.87
4969                          512                            314.47
4970                        13578                            706.80
4971                        14345                            167.89
4972                        85149                            388.09
4973                         1383                            449.35
4974                        19203                           1640.17
4975                        25901                            490.71
4976                          198                            965.31
4977                        11420                            655.99
4978                          150                           1566.84
4979                          107                            347.72
4980                           87                            333.31
4981                           61                            283.16
4982                          139                            353.02
4983                          516                            363.99
4984                          117                            300.05
4985                          391                            402.30
4986                          285                            193.18
4987                         1573                            821.92
4988                          174                            561.83
4989                         1683                             89.91
4990                         2394                             60.99
4991                          174                            355.73
4992                          420                            911.66
4993                        49563                              0.00
4994                        44095                              0.00
4995                        31340                              0.00
4996                        56729                             23.33
4997                        30153                             78.33
4998                        33444                            423.33
4999                        35957                             85.00
5000                        33718                              0.00
5001                        34173                              0.00
5002                        29823                              0.00
5003                        43424                              0.00
5004                        35548                              0.00
5005                        34973                            137.50
5006                        30142                              0.00
5007                        33919                              0.00
5008                        25095                             73.61
5009                        33339                              5.00
5010                        17067                              0.00
5011                        16333                              0.00
5012                        26894                              0.00
5013                        23895                             45.00
5014                        23134                            755.00
5015                        22357                           2431.11
5016                        24437                              5.00
5017                        22732                              5.00
5018                        38901                              0.00
5019                        17791                             96.67
5020                        31653                           1866.67
5021                        17293                           5791.67
5022                        37355                           5256.67
5023                        50673                           3310.00
5024                        40068                           3624.42
5025                        56332                            502.18
5026                        52833                             35.88
5027                        70399                              0.00
5028                        53782                              0.00
5029                        34296                              0.00
5030                        48983                              0.00
5031                        22540                              0.00
5032                        17903                              0.00
5033                        18691                              0.00
5034                        37605                              5.52
5035                        17962                              0.00
5036                        36114                              0.00
5037                        17127                              0.00
5038                        24498                              0.00
5039                        61341                             10.77
5040                        17007                              0.00
5041                        25315                              0.00
5042                        11091                              0.00
5043                        22176                              0.00
5044                         9075                              0.00
5045                       301809                          23261.07
5046                       383504                          33014.83
5047                       435549                          16546.02
5048                       344664                          11232.63
5049                       133945                           9042.64
5050                       173418                           2411.32
5051                       180469                           1488.18
5052                       191201                           1609.68
5053                       242673                          17632.80
5054                       140925                          27611.87
5055                       263848                          24459.21
5056                       222547                          15472.65
5057                       338402                          17316.42
5058                       409425                          21148.04
5059                       189482                          16386.27
5060                       173093                          11894.76
5061                       188923                          35796.61
5062                       142471                          45303.54
5063                       153644                          14191.33
5064                       157810                           6141.73
5065                       149412                          13434.76
5066                       169617                          13901.83
5067                       105003                          54249.87
5068                        87850                          16661.28
5069                        92636                          48251.04
5070                       124716                         107095.23
5071                       190503                          59687.99
5072                       167591                          38504.73
5073                       307837                          62341.23
5074                       325422                          61614.73
5075                       229576                          35104.69
5076                       348148                          54763.01
5077                       389114                           9479.10
5078                       315129                           9812.59
5079                       368205                          10983.61
5080                       346495                           7803.99
5081                       195845                           8861.55
5082                       183289                          12781.04
5083                       198722                           4424.15
5084                       288346                           7515.80
5085                       256004                           8942.99
5086                       144962                           6870.35
5087                       128135                           7417.69
5088                       104430                           6426.37
5089                       124052                           8424.37
5090                       147944                          21495.98
5091                       197395                          94756.02
5092                       133279                         105746.33
5093                       159610                          63474.77
5094                       136802                          11148.21
5095                       140938                           2424.94
5096                       109448                           3804.23
5097                       767156                           1811.94
5098                       766286                           2436.67
5099                       492522                           1915.56
5100                       957516                           1219.17
5101                       490243                            903.05
5102                       532646                           2071.67
5103                       535603                           1079.72
5104                       547444                           1074.72
5105                       545707                           2721.39
5106                       543597                           2391.94
5107                       790114                           1083.61
5108                       580236                           1616.39
5109                       602150                           1500.00
5110                       573139                           4728.06
5111                       617002                           3118.33
5112                       455459                           3286.94
5113                       574733                           4247.78
5114                       290856                           9696.95
5115                       276588                          27515.28
5116                       467642                          22264.17
5117                       328992                          45540.28
5118                       322569                          49256.67
5119                       314633                          57919.44
5120                       335919                          66386.94
5121                       322740                          60086.67
5122                       559976                          86048.34
5123                       280635                          53537.78
5124                       498429                          59126.67
5125                       295048                          77332.50
5126                       574578                          70704.16
5127                       696043                          44790.27
5128                       512210                          54343.36
5129                      1029088                          19136.03
5130                       795541                           2777.48
5131                      1318520                            487.50
5132                      1072748                           4993.67
5133                       622049                           1901.81
5134                      1017680                           2153.65
5135                       494161                              0.00
5136                       421736                             15.05
5137                       439188                              0.00
5138                       890581                              6.03
5139                       418325                              0.00
5140                       878956                              0.00
5141                       419044                              0.00
5142                       371949                              0.00
5143                      1106150                             60.43
5144                       418187                              0.00
5145                       552166                             15.09
5146                       242856                             51.31
5147                       530649                              0.00
5148                       232943                             12.04
5149                           13                             28.01
5150                          362                              7.63
5151                          425                            208.54
5152                            9                             15.24
5153                           13                              5.08
5154                            5                            124.15
5155                           81                            321.56
5156                            5                             35.41
5157                            0                            116.19
5158                           45                             65.28
5159                         1171                              4.99
5160                        10182                              0.00
5161                        43887                            310.90
5162                        10338                              0.00
5163                         3721                             12.20
5164                            0                              9.71
5165                           17                             26.56
5166                            0                              4.81
5167                            9                              7.18
5168                            0                              2.38
5169                            0                              9.48
5170                            0                              0.00
5171                            0                              0.00
5172                            0                              4.77
5173                           34                             57.54
5174                          350                             26.54
5175                            0                              2.43
5176                           56                             24.36
5177                         4447                              7.47
5178                         1384                              7.46
5179                          110                             14.89
5180                         8782                              7.42
5181                           32                             95.66
5182                         1553                             98.44
5183                            0                             44.17
5184                          631                             26.92
5185                           69                            151.07
5186                            0                            118.78
5187                          930                              9.64
5188                            0                             83.99
5189                            4                              9.57
5190                            0                             64.43
5191                           59                             16.68
5192                           30                             38.12
5193                           13                             31.01
5194                           53                             16.73
5195                           91                            181.90
5196                           77                             14.38
5197                           17                             38.42
5198                          133                              0.00
5199                           51                            148.98
5200                         1486                            138.07
5201                        16824                              0.00
5202                        18883                              0.00
5203                        14613                              0.00
5204                        30344                              0.00
5205                        19104                              0.00
5206                        14836                              0.00
5207                        16477                              0.00
5208                        19079                            219.44
5209                        25423                              0.00
5210                        24147                              0.00
5211                        14843                              0.00
5212                        16710                              0.00
5213                        32733                              0.00
5214                        25858                              0.00
5215                        26367                             76.39
5216                        13353                              0.00
5217                        17076                           5401.55
5218                        19095                           4579.85
5219                         6778                          10504.15
5220                        10454                           5511.34
5221                         9250                          12852.77
5222                         6537                          15079.49
5223                        11498                          11961.34
5224                        20179                           8831.82
5225                        13138                          12217.52
5226                        21421                          13113.27
5227                        14354                          14274.75
5228                        27584                           4778.36
5229                        19316                          18517.91
5230                        19377                          14881.15
5231                        13402                             31.32
5232                        28505                             46.86
5233                        30236                            413.16
5234                        54427                            142.09
5235                        19398                             30.55
5236                        32941                             37.03
5237                        34109                             69.60
5238                        28469                             21.71
5239                        31523                              2.17
5240                        20433                             36.88
5241                        36866                              4.34
5242                        31078                             99.98
5243                        23259                             43.51
5244                        26526                            220.03
5245                        26792                             21.82
5246                        18403                              0.00
5247                        41934                             43.78
5248                        38112                              8.77
5249                        34086                             13.17
5250                        15068                             46.16
5251                        23596                             28.62
5252                        11815                             22.04
5253                          967                              0.00
5254                          908                              6.67
5255                          923                              0.00
5256                          149                             97.22
5257                            0                              0.00
5258                            0                              0.00
5259                            0                              0.00
5260                            0                              0.00
5261                            2                              0.00
5262                            0                              0.00
5263                            0                              0.00
5264                            0                              0.00
5265                            0                              0.00
5266                           18                              0.00
5267                          256                              0.00
5268                          778                              0.00
5269                            7                            150.00
5270                            0                           1100.00
5271                            0                            955.00
5272                            0                            635.00
5273                            0                            695.00
5274                            0                            545.00
5275                            0                           2890.00
5276                            0                           1095.00
5277                            3                           2970.00
5278                            0                           2865.00
5279                            0                           1505.00
5280                            0                           1680.00
5281                            0                           1170.00
5282                            0                           1605.00
5283                            0                            310.00
5284                            0                           1125.00
5285                            0                              0.00
5286                            0                              0.00
5287                            0                              0.00
5288                            4                              0.00
5289                            0                              0.00
5290                            0                              0.00
5291                            0                              0.00
5292                            0                              0.00
5293                            0                              0.00
5294                            4                              0.00
5295                          100                              0.00
5296                          692                              0.00
5297                         1846                              0.00
5298                         1116                              0.00
5299                          709                              0.00
5300                          541                              0.00
5301                           93                              0.00
5302                            0                              0.00
5303                            0                              0.00
5304                            0                              0.00
5305                        95803                              0.00
5306                        99658                            136.11
5307                        56754                              0.00
5308                       122889                              0.00
5309                        59002                              0.00
5310                        61703                              0.00
5311                        66145                              0.00
5312                        61805                              0.00
5313                        61276                              0.00
5314                        62491                              0.00
5315                       100692                              0.00
5316                        67973                              0.00
5317                        62969                              0.00
5318                        63688                              0.00
5319                        71774                              3.33
5320                        55457                            768.06
5321                        68958                           1788.61
5322                        20240                           2583.61
5323                        27827                           5900.00
5324                        57508                           4890.00
5325                        35140                           9700.00
5326                        30100                           9890.00
5327                        29198                          12195.00
5328                        31340                          12239.44
5329                        26863                          10791.11
5330                        50308                          15976.67
5331                        31127                           9790.00
5332                        55518                          10900.00
5333                        29525                          10445.28
5334                        53634                           8416.67
5335                        57550                           5556.66
5336                        33377                           8936.67
5337                       106151                           4638.06
5338                        76960                              0.00
5339                       150133                              0.00
5340                       122379                           1005.56
5341                        60944                              0.00
5342                       123796                            123.61
5343                        63643                              0.00
5344                        55097                              0.00
5345                        56565                              0.00
5346                       118507                              0.00
5347                        52038                              0.00
5348                       118769                              0.00
5349                        51929                              0.00
5350                        36259                              0.00
5351                       148493                              0.00
5352                        74112                              0.00
5353                       116498                              2.74
5354                        45235                             27.52
5355                       110156                              0.00
5356                        33337                              0.00
5357                      2417145                          81101.22
5358                      2358444                          94011.78
5359                      2490495                          73342.82
5360                      2988505                          65350.63
5361                      1609867                          48623.28
5362                      1765674                          44709.40
5363                      1957164                          43104.31
5364                      1812174                          40918.74
5365                      1882751                          66283.51
5366                      2016513                          91798.83
5367                      2575096                          84553.37
5368                      2316378                          69278.75
5369                      2981276                          76030.52
5370                      2476401                          91688.30
5371                      2311263                          79996.50
5372                      2016485                          55304.06
5373                      2214419                          93326.07
5374                      1785022                         159271.47
5375                      1446381                         155008.66
5376                      1813211                         111938.56
5377                      1569550                         181048.76
5378                      1431745                         199967.39
5379                      1561209                         387400.22
5380                      1624816                         390478.73
5381                      1727669                         454343.65
5382                      1887772                         551693.65
5383                      1609569                         328589.09
5384                      1975351                         317018.94
5385                      1796514                         311439.99
5386                      2441023                         321033.23
5387                      2657599                         180120.85
5388                      2563224                         224991.99
5389                      3143280                         146047.01
5390                      3342781                         120650.09
5391                      3365582                          62734.87
5392                      2801103                          75010.64
5393                      2467002                         125169.40
5394                      2613293                          77737.02
5395                      2213379                          59188.81
5396                      2228008                          82386.14
5397                      2374054                          77638.79
5398                      2521124                          55589.00
5399                      1747904                         106815.12
5400                      2802239                          69494.92
5401                      2150749                          45654.02
5402                      2387456                          74421.62
5403                      3373078                         241661.48
5404                      1823890                         192999.80
5405                      2668368                         165014.74
5406                      2228421                          63337.40
5407                      2528089                          50874.09
5408                      2287450                         159083.80
5409                       731388                           1584.51
5410                       673464                           3263.94
5411                       778605                           7878.49
5412                       992336                           5841.80
5413                       565542                           3089.37
5414                       562176                           1290.39
5415                       742515                           2118.79
5416                       593226                           2710.98
5417                       545280                           2213.45
5418                       758232                           3763.84
5419                       970944                           2172.50
5420                       893083                           1402.06
5421                      1442472                           3094.42
5422                       987092                           4512.36
5423                       922978                           4066.32
5424                       867613                           2573.50
5425                      1012172                            940.95
5426                       928605                           2413.11
5427                       535022                           1896.45
5428                       706937                            862.27
5429                       571941                           4478.95
5430                       505626                           3292.00
5431                       664225                          16968.88
5432                       665248                          15892.89
5433                       762671                          20484.61
5434                       606174                          12752.17
5435                       687802                           7236.25
5436                       767884                           7538.50
5437                       787096                           6682.59
5438                       949755                           5092.25
5439                      1132669                           4652.04
5440                      1139277                           4829.67
5441                      1026238                           5790.26
5442                      1118634                           7359.49
5443                       706418                           6809.06
5444                       658731                           5833.32
5445                      1112775                           8816.17
5446                       780039                           6977.44
5447                       840392                            816.53
5448                       765593                           1043.96
5449                      1040866                            611.85
5450                       860619                           1066.09
5451                       556980                            882.83
5452                      1123473                            762.56
5453                      1062368                           1053.71
5454                      1064256                           3914.67
5455                      1187478                          14884.08
5456                       781447                          21068.82
5457                      1407886                           7823.85
5458                      1352291                           1475.01
5459                      1118954                           1516.44
5460                      1320164                           3875.64
5461                       167620                            140.00
5462                       180678                            413.33
5463                       219187                            273.33
5464                       162658                             75.56
5465                        98717                            118.06
5466                       100871                              0.00
5467                        92753                              0.00
5468                        82920                              0.00
5469                        93471                              0.00
5470                       115578                            918.06
5471                       121347                              0.00
5472                        73637                              0.00
5473                        69961                              0.00
5474                        70581                            175.00
5475                        74913                              0.00
5476                        81825                            100.00
5477                        79500                            320.00
5478                        76392                             70.00
5479                        81013                              0.00
5480                        85083                              0.00
5481                        67457                              0.00
5482                        65765                           2466.67
5483                        81989                          11080.00
5484                        68997                           3208.05
5485                        87776                          12958.05
5486                        91215                          14526.11
5487                        95171                           6849.44
5488                        94639                          16124.16
5489                        87749                          15293.33
5490                       121451                          10140.00
5491                       144258                           6011.11
5492                        93103                           8283.33
5493                        61553                           3870.00
5494                        83560                           4296.67
5495                        75381                           7056.67
5496                        96326                           2276.67
5497                       107004                            140.00
5498                        70757                              0.00
5499                        31311                              0.00
5500                        56449                              0.00
5501                        53585                              0.00
5502                        61700                              0.00
5503                        29005                              0.00
5504                        40795                             16.67
5505                        50490                           1496.67
5506                        56745                          13113.34
5507                        41472                          28192.23
5508                        16914                          38120.00
5509                        24812                          16234.44
5510                        28508                           7208.89
5511                        40944                           1333.33
5512                        32477                           2233.33
5513                        88882                           2639.39
5514                        66147                           4194.44
5515                        62336                           2991.22
5516                        67568                           3486.54
5517                        66640                           3058.00
5518                        55576                           3743.00
5519                        61447                           1784.00
5520                        75134                           3164.00
5521                        66802                           1723.73
5522                        66216                           1641.67
5523                        54265                              8.13
5524                        63067                             39.27
5525                        65198                            106.12
5526                        51197                              8.47
5527                        47954                             26.89
5528                        50426                            156.07
5529                        58868                           2475.18
5530                        54225                           3103.33
5531                        56680                           6505.16
5532                        62510                           1557.01
5533                        66092                           5570.00
5534                        60271                           7638.89
5535                        53475                           6014.61
5536                        45904                           6799.98
5537                        55795                           6175.62
5538                        69372                           7455.00
5539                        77103                          10685.68
5540                        95431                           7162.04
5541                        69713                          10390.00
5542                        78151                           7565.00
5543                       113271                           5675.00
5544                        57828                          10972.77
5545                        70754                           9218.50
5546                        69708                           9573.51
5547                       121007                           8024.25
5548                        75877                           8147.11
5549                        84101                           2547.96
5550                        80088                           5605.00
5551                        78979                           6795.00
5552                        52857                           3330.00
5553                        56386                           4975.00
5554                        72092                           3465.56
5555                        75894                           1336.39
5556                        77625                            705.00
5557                        50372                           2485.00
5558                        55460                           3468.06
5559                        56911                            536.11
5560                        97837                            118.06
5561                        79144                              0.00
5562                       121095                              0.00
5563                        75751                              0.00
5564                        71692                              0.00
5565                        92629                              0.00
5566                        12812                              0.00
5567                         7086                              0.00
5568                        10883                              0.00
5569                        22783                              0.00
5570                         4666                              0.00
5571                        31556                              0.00
5572                        43483                              0.00
5573                        10350                              0.00
5574                         6867                              0.00
5575                         1510                              3.33
5576                         4545                             44.44
5577                        12272                              3.33
5578                         7733                              0.00
5579                        13332                              0.00
5580                         3261                              0.00
5581                         1466                             73.33
5582                         3198                           4783.33
5583                          548                           2370.00
5584                          800                            713.33
5585                         1722                           9815.56
5586                         8885                           4168.89
5587                         1831                           3933.34
5588                         1284                           3714.44
5589                         1047                           3872.22
5590                          886                           7102.22
5591                         3725                           8778.06
5592                        14660                          13745.00
5593                         7352                           8481.11
5594                         2475                           9595.00
5595                         4299                           7420.83
5596                         2167                           2288.33
5597                         2459                           4373.61
5598                         2203                            263.05
5599                         2476                           1345.83
5600                         6801                            611.11
5601                         4607                            358.48
5602                        16073                            645.83
5603                        20215                            318.06
5604                         2511                            668.06
5605                         1724                           1553.33
5606                         1950                            550.00
5607                        18502                            655.56
5608                         2051                            379.72
5609                         1458                              0.00
5610                         4350                            469.44
5611                        10734                            598.61
5612                        19425                           2127.39
5613                         6286                           2654.19
5614                         2724                           3167.74
5615                         5694                            473.57
5616                         2152                              7.78
5617                         2282                            525.55
5618                         2542                              3.12
5619                         4677                             39.80
5620                         6639                             83.26
5621                         5849                             26.99
5622                         5945                             72.39
5623                         4261                             32.00
5624                         4914                             96.00
5625                         7421                            258.00
5626                         4811                             21.00
5627                         4360                             54.54
5628                         5729                             53.17
5629                         3437                             21.29
5630                         5695                             34.92
5631                         4987                            129.94
5632                         5243                             42.10
5633                         5756                             10.54
5634                         6771                             23.97
5635                         7242                            139.90
5636                         6319                             53.73
5637                         4336                             17.72
5638                         6495                             10.35
5639                         8222                              2.92
5640                         8381                             98.96
5641                         8947                              7.37
5642                         8360                             39.18
5643                         8708                             75.27
5644                          309                              4.92
5645                           24                             55.56
5646                           52                             76.52
5647                           27                             42.18
5648                           19                              8.07
5649                           11                             11.29
5650                           20                             11.49
5651                            9                              8.25
5652                         2293                              4.96
5653                         2055                              9.97
5654                            3                             13.29
5655                           85                             21.55
5656                           29                              3.30
5657                           16                              9.87
5658                          116                             22.95
5659                          518                             29.21
5660                          834                             38.51
5661                         1777                            126.14
5662                        14551                             18.82
5663                        18258                             44.99
5664                        11989                            133.17
5665                         1142                             23.75
5666                         3116                             46.95
5667                        17043                             25.33
5668                         5155                             38.08
5669                         4040                            225.99
5670                         8607                             20.76
5671                         2794                             27.20
5672                        16746                              0.00
5673                        13815                              0.00
5674                        14758                              0.00
5675                        21311                              0.00
5676                        21921                              0.00
5677                        40538                              0.00
5678                        43775                              0.00
5679                        10086                              0.00
5680                        16920                              0.00
5681                        13286                              0.00
5682                         3329                              0.00
5683                         6954                              0.00
5684                        34628                              0.00
5685                        27841                              0.00
5686                        33423                             23.33
5687                        36417                             80.00
5688                        18127                           1600.00
5689                        27044                           1890.00
5690                        36986                            740.00
5691                        44268                           3122.22
5692                        40848                           2893.34
5693                        35183                           1893.34
5694                        29391                           1030.00
5695                        35936                           2516.67
5696                        38373                           1971.11
5697                         4052                           2840.00
5698                         5364                           2825.00
5699                         5241                           2675.83
5700                         5416                           2794.17
5701                         5651                           2897.22
5702                         5367                            436.67
5703                         4927                            973.33
5704                         5155                             60.00
5705                         6281                            158.33
5706                        20451                           1193.06
5707                        11769                            631.94
5708                        20634                              0.00
5709                        17116                           1752.78
5710                        21205                              0.00
5711                        17431                              0.00
5712                        11462                            686.11
5713                        18048                              0.00
5714                        20014                            663.89
5715                          536                              0.00
5716                         3516                              0.00
5717                         8569                              0.00
5718                         5190                              0.00
5719                          542                              0.00
5720                         1373                              0.00
5721                         2277                              0.00
5722                          484                              0.00
5723                           93                              0.00
5724                          214                              0.00
5725                         9529                              0.00
5726                         4164                              0.00
5727                         4622                              0.00
5728                         4221                              0.00
5729                         3297                              0.00
5730                         5319                              0.00
5731                        10802                              0.00
5732                         7354                              0.00
5733                        31805                             46.67
5734                        40914                              0.00
5735                         4680                              0.00
5736                         5341                              0.00
5737                        20354                              0.00
5738                        13616                              0.00
5739                         7108                              0.00
5740                        12842                            356.67
5741                         6368                           2703.33
5742                         6699                           1408.89
5743                           19                            490.00
5744                          102                           2570.00
5745                          108                           1983.33
5746                           84                           1593.33
5747                          592                           1263.33
5748                          331                           1810.00
5749                           48                           2411.11
5750                          641                           5795.00
5751                         3168                           3475.00
5752                          946                           3350.00
5753                          700                           3352.50
5754                         1938                           4515.00
5755                         1657                           1953.33
5756                         1153                            963.33
5757                         2271                            418.05
5758                         1065                              0.00
5759                         1291                              0.00
5760                         2447                              0.00
5761                         2226                              0.00
5762                         5850                              0.00
5763                        51967                              0.00
5764                        25760                              0.00
5765                          821                              0.00
5766                         3121                              0.00
5767                        22055                              0.00
5768                           65                              0.00
5769                          206                              0.00
5770                         1733                              0.00
5771                         4320                              0.00
5772                           73                              0.00
5773                         1254                            505.56
5774                         2642                              0.00
5775                         1523                              0.00
5776                           85                              0.00
5777                          256                             18.06
5778                        20554                          56546.16
5779                        21328                          61667.46
5780                        21221                          59752.84
5781                        27354                          59588.87
5782                        30856                          53201.00
5783                        27254                          61354.00
5784                        47615                          58715.00
5785                        30662                          58284.00
5786                        20488                          55940.33
5787                        22762                          34390.82
5788                        21482                          34660.62
5789                        22734                          36862.63
5790                        25532                          33772.40
5791                        25612                          32739.56
5792                        24212                          32271.85
5793                        18473                          32148.41
5794                        19580                          37680.03
5795                        21358                          42096.79
5796                        19482                          42286.86
5797                        33842                          50872.74
5798                        32819                          52592.72
5799                        30453                          58369.11
5800                        28337                          55434.68
5801                        20424                          57950.82
5802                        22434                          55518.85
5803                         5215                          64946.25
5804                         4337                          64228.75
5805                         5203                          56923.82
5806                         5913                          71002.81
5807                         5599                          66679.22
5808                         4428                          53913.50
5809                         3224                          73193.24
5810                         3943                          67390.65
5811                         4799                          68667.52
5812                         3602                          81066.26
5813                         2533                          72163.82
5814                         6323                          69657.83
5815                         1756                          71725.09
5816                        13133                          62027.18
5817                        16199                          56470.26
5818                         1992                          66577.51
5819                         5147                          58261.10
5820                         7224                          67977.20
5821                         9179                          55073.37
5822                        42309                          41791.54
5823                       145455                          44065.49
5824                       101368                          54438.63
5825                         7839                          51205.38
5826                        48343                          49233.88
5827                        61563                          28878.04
5828                        99913                          25601.06
5829                       144376                          33515.09
5830                       151334                          27007.76
5831                         7370                              6.67
5832                         3442                              0.00
5833                         4581                              0.00
5834                         7808                              0.00
5835                         3895                              0.00
5836                         2619                              0.00
5837                         3115                              0.00
5838                         4539                              0.00
5839                         3829                              0.00
5840                         5687                              0.00
5841                         3296                              0.00
5842                         7173                              2.22
5843                         5372                              0.00
5844                         5247                              0.00
5845                         4531                              0.00
5846                         4503                              0.00
5847                         3375                            870.00
5848                         4699                           3413.33
5849                         5068                           1543.33
5850                         5397                           4011.11
5851                         6830                           3144.44
5852                         5683                           1523.34
5853                         4829                           1097.78
5854                         4233                           3030.00
5855                         4561                           3669.99
5856                         4767                           4490.00
5857                         5359                           4450.00
5858                         4877                           2795.00
5859                         3516                           5520.00
5860                         5812                           4940.00
5861                         6092                           1566.67
5862                         3626                              0.00
5863                         4869                              0.00
5864                         4995                              0.00
5865                         9964                              0.00
5866                         9497                              0.00
5867                         5472                              0.00
5868                         3448                              0.00
5869                         4485                              0.00
5870                         4259                            177.78
5871                         4593                              0.00
5872                         4642                              0.00
5873                         4114                              0.00
5874                         3883                              0.00
5875                         4484                              0.00
5876                         4224                             13.33
5877                         5142                            217.78
5878                        13628                            452.78
5879                         9630                            994.44
5880                        14067                              0.00
5881                        10327                              0.00
5882                         8627                              0.00
5883                        13711                             46.67
5884                         8410                             55.34
5885                        11311                             77.94
5886                        53446                             31.45
5887                       423186                              3.48
5888                        36440                             12.00
5889                         5532                             15.00
5890                         2775                              2.00
5891                         3280                             12.00
5892                         3407                             15.24
5893                         2648                              2.22
5894                         4442                             22.22
5895                         5165                              1.11
5896                         3699                             11.73
5897                         7213                             98.07
5898                         9520                             85.15
5899                         7393                             54.44
5900                         7822                           2131.11
5901                         7989                           3460.22
5902                         8187                           2183.34
5903                         9073                           4566.66
5904                         8347                           4473.38
5905                         8973                           4976.66
5906                         7716                           2443.40
5907                         7949                           4886.66
5908                         5910                           4014.44
5909                          658                           1952.22
5910                          327                           1462.12
5911                          764                           3078.75
5912                          528                           2471.91
5913                         1456                           4830.11
5914                         2441                           6144.10
5915                         1928                           5130.69
5916                         2740                           7323.22
5917                         2127                           4041.31
5918                         2304                           9510.72
5919                         2421                           5745.83
5920                         1912                           4307.21
5921                         2308                           5369.08
5922                         2626                           6644.53
5923                          935                           4207.37
5924                         1563                           3568.48
5925                          814                           2473.36
5926                         1347                           4560.47
5927                         1104                           4853.06
5928                         1403                           4489.84
5929                         1514                           5333.77
5930                         2104                           3801.39
5931                         1937                           8839.76
5932                         1691                           9667.48
5933                         1680                           6499.63
5934                         1595                           6465.07
5935                         1420                           8721.25
5936                         1078                           5089.37
5937                        10142                            248.99
5938                        14511                             32.61
5939                        26217                             91.87
5940                       101403                             55.20
5941                       142867                             73.00
5942                        82960                             14.00
5943                       132886                            203.00
5944                       182385                            190.00
5945                       173703                            182.45
5946                       119250                            176.14
5947                        85072                             43.04
5948                        94258                             51.32
5949                        92861                             39.19
5950                        93645                             98.33
5951                        86694                            206.87
5952                        84078                            263.58
5953                       101681                            292.94
5954                       104144                            433.00
5955                       138455                            627.86
5956                       172119                            679.94
5957                       140668                            576.87
5958                       119014                            585.80
5959                       109832                            695.03
5960                       109213                            442.76
5961                       104181                            584.92
5962                       116564                            611.53
5963                       193552                           1079.26
5964                       201501                            772.34
5965                       130292                            730.86
5966                       245216                           1256.01
5967                       208326                            178.88
5968                       180476                            148.67
5969                       150105                            114.85
5970                       191736                            110.81
5971                       363469                            142.32
5972                       109897                             42.66
5973                        99417                             35.06
5974                       138925                             15.70
5975                        99468                             89.49
5976                       175820                             46.99
5977                       111860                              1.54
5978                       155347                             58.36
5979                       174289                             46.09
5980                       166331                             39.11
5981                       140287                             56.64
5982                       182919                              4.50
5983                       153260                              7.48
5984                       188488                              7.42
5985                       172935                              0.00
5986                       198095                             16.53
5987                       187760                              3.02
5988                       118613                            562.95
5989                       163180                              1.52
5990                        12797                             84.50
5991                         5712                             43.98
5992                        10799                             75.43
5993                         7391                            146.56
5994                        15193                            101.00
5995                        10872                             59.00
5996                         6354                             69.00
5997                        12778                            191.00
5998                         5899                            216.05
5999                         4975                             82.24
6000                         5308                             29.93
6001                         6308                              1.30
6002                         6951                             23.34
6003                         7359                            150.73
6004                         5349                            181.35
6005                         7206                            166.84
6006                         7867                            311.85
6007                         6307                            393.59
6008                         6049                            593.37
6009                         7448                            492.80
6010                         8290                            519.51
6011                         7852                            628.47
6012                         8794                            416.67
6013                         5228                            521.11
6014                         7883                           1194.55
6015                        22634                            207.65
6016                        15486                            859.94
6017                        17016                            543.21
6018                        14772                            488.57
6019                         3179                           1062.70
6020                         5342                             59.23
6021                        21930                             70.37
6022                         8171                            198.49
6023                         7985                             57.91
6024                         8432                            147.96
6025                         7759                            103.88
6026                         2452                             24.58
6027                         2680                              6.18
6028                         2306                             24.48
6029                         2942                             15.20
6030                         2766                              0.00
6031                         1946                             39.63
6032                         3272                            108.71
6033                         5135                             12.90
6034                         2588                             15.59
6035                         2407                              0.00
6036                         4894                              1.41
6037                         3809                              2.78
6038                         8001                              4.22
6039                         3727                              1.41
6040                         9154                            108.33
6041                         3206                              0.00
6042                         3197                              0.00
6043                       161616                            174.97
6044                        82552                             75.81
6045                        59824                            105.07
6046                        67257                             66.45
6047                        81498                             67.00
6048                        80717                             49.00
6049                        88658                             57.00
6050                       148352                            121.00
6051                       187841                            264.92
6052                       125267                            209.10
6053                        70932                             77.27
6054                        79245                             93.96
6055                        84717                            280.38
6056                        81359                            108.98
6057                        77807                             82.92
6058                        75614                             59.78
6059                        79463                            136.25
6060                        76730                           1522.52
6061                        78352                           1067.23
6062                       153344                           1126.97
6063                       164728                           1423.49
6064                        90233                           1467.77
6065                        86836                             82.54
6066                        92258                           6125.56
6067                       140535                           1706.27
6068                         3089                           2942.04
6069                         2978                           1242.51
6070                         4154                            148.05
6071                         3444                             95.46
6072                         3338                             92.57
6073                         3347                            155.37
6074                         2841                             23.61
6075                         2828                             30.43
6076                         3656                             71.28
6077                         4074                             49.65
6078                         4155                            137.33
6079                         3843                            280.35
6080                         3860                            212.18
6081                         4079                            186.69
6082                         3931                            289.05
6083                         3864                             77.33
6084                         2866                            116.05
6085                         2338                             79.40
6086                         2051                             70.55
6087                        27130                             94.87
6088                        37019                             59.07
6089                        10489                            678.49
6090                        76780                            503.05
6091                        43743                             59.07
6092                         2962                             81.03
6093                         3521                            107.44
6094                         3248                             69.32
6095                         2153                            916.40
6096                       384554                              0.00
6097                       246332                              1.11
6098                       224310                              0.00
6099                       266397                              0.00
6100                       266779                              0.00
6101                       140775                              0.00
6102                       258959                              0.00
6103                       328570                              0.00
6104                       393106                              1.11
6105                       323624                              0.00
6106                       171993                              1.11
6107                       153064                              0.00
6108                       161966                              0.00
6109                       172460                              0.00
6110                       136895                              0.00
6111                       133331                              0.00
6112                       159841                              0.00
6113                       176544                           1823.33
6114                       281791                           2885.56
6115                       337803                              1.26
6116                       165515                           2208.89
6117                       163808                           2725.56
6118                       233748                              0.00
6119                       368136                              0.00
6120                       196568                            480.00
6121                       309208                           1989.76
6122                       313376                            259.72
6123                       352058                              0.00
6124                       358058                             35.34
6125                       330977                             20.17
6126                       286071                              0.00
6127                       338685                              0.00
6128                       292465                              0.00
6129                       158077                              0.00
6130                       110312                            133.33
6131                       195491                              0.00
6132                       329200                              0.00
6133                       343778                              5.00
6134                       262684                              0.00
6135                       192442                              0.00
6136                       156827                              0.00
6137                       206301                            136.11
6138                       224576                              0.00
6139                       167574                             16.67
6140                       176672                              0.00
6141                       223448                              0.00
6142                       200109                            322.22
6143                       253123                            198.61
6144                       169960                            224.06
6145                       149644                            134.68
6146                       174946                              0.00
6147                       162524                              0.00
6148                       161495                             97.22
6149                        41059                           2286.98
6150                        16351                           1041.50
6151                        20548                           7646.15
6152                        16978                           2334.71
6153                        73013                           1228.00
6154                        27604                             83.00
6155                        17533                            338.00
6156                        32216                            602.00
6157                        16602                            473.88
6158                        10729                            728.21
6159                        15915                            794.49
6160                        13124                           1694.58
6161                        10866                           7711.80
6162                         8544                           8306.47
6163                         4399                          10990.75
6164                         8906                          11422.21
6165                         9150                          11251.45
6166                         5329                          12294.13
6167                         5877                          11871.85
6168                         8147                          13125.26
6169                        10426                          13385.03
6170                         7331                          19519.62
6171                        12487                          12645.82
6172                         2545                          14033.98
6173                         4803                          23461.16
6174                        28983                          22217.02
6175                        16728                          20307.95
6176                        31938                           1548.32
6177                        22971                           3248.24
6178                         2790                           1491.29
6179                        12148                           4992.53
6180                        47266                          14157.78
6181                        16847                          15901.32
6182                        13583                          10459.52
6183                        12355                          26022.01
6184                        11327                          10400.92
6185                         4015                          10777.00
6186                         3614                          14839.33
6187                         3833                          10638.44
6188                         3178                           8581.19
6189                         3130                          15502.44
6190                         3248                          13604.37
6191                         5789                          12103.00
6192                         2917                          11061.69
6193                         3010                          31809.10
6194                         3390                          11950.39
6195                        14029                           1715.86
6196                         6375                             88.68
6197                         3783                            151.52
6198                         3811                            448.17
6199                        11326                              1.72
6200                         3415                              3.46
6201                         2054                             24.33
6202                         4053                          16852.55
6203                         4901                           6073.20
6204                         3918                          13013.84
6205                         5916                           3892.47
6206                        26632                           9831.00
6207                        10417                            180.00
6208                         7407                           2335.00
6209                         8517                           1957.00
6210                         7767                           2033.37
6211                         2846                           4784.90
6212                         2690                           5208.78
6213                         1682                           5244.45
6214                         2276                           5970.66
6215                         2715                           5960.56
6216                         3741                           7620.67
6217                         2911                           7397.71
6218                         3726                           7238.72
6219                         4063                           8925.59
6220                         3479                           8538.66
6221                         5002                           9910.99
6222                         3460                           9219.69
6223                         4281                          14317.57
6224                         5477                           8882.09
6225                         4229                           9776.25
6226                         4107                          15478.82
6227                         3404                          14910.99
6228                         4128                          16905.28
6229                         4631                           9570.82
6230                         2446                          23997.24
6231                         6311                          10663.36
6232                         7483                           7745.90
6233                         6301                           8503.67
6234                         6312                           9047.02
6235                         6716                           5413.64
6236                         6940                          12479.93
6237                         7109                           6097.93
6238                         6399                           8671.88
6239                         6580                          12794.87
6240                         6762                           6068.03
6241                         5315                           7948.51
6242                         6542                          11161.92
6243                         6156                           9585.09
6244                         7110                           9016.41
6245                        14185                           7206.72
6246                         4248                          18045.76
6247                         4266                          10309.53
6248                         6315                           3648.91
6249                         3911                            367.59
6250                         6878                            637.10
6251                         6021                           2790.79
6252                         5423                             50.86
6253                         6852                             22.80
6254                         3714                            103.51
6255                       231173                          43417.83
6256                       172058                          16842.78
6257                       248878                          43793.27
6258                       772668                          13711.20
6259                       579235                          27167.00
6260                       328481                            827.00
6261                       438664                           6697.00
6262                       585936                           5866.00
6263                       510855                           6179.77
6264                       319205                          12932.84
6265                       257992                          13387.12
6266                       272861                          15092.21
6267                       263131                          24520.43
6268                       269972                          26120.15
6269                       258960                          33595.17
6270                       252502                          35304.69
6271                       288380                          43365.32
6272                       287510                          53380.00
6273                       364885                          50302.01
6274                       410470                          57231.83
6275                       352853                          63204.59
6276                       340049                          83668.14
6277                       335734                          52842.18
6278                       296531                          64969.50
6279                       302795                          89281.91
6280                       476445                          79774.96
6281                       485376                          86197.03
6282                       563108                          43476.86
6283                       448086                          77989.16
6284                       619112                          44126.01
6285                       564982                          41719.66
6286                       523114                          47953.14
6287                       434988                          54223.94
6288                       681254                          34116.16
6289                       832297                          79124.05
6290                       407221                          37040.72
6291                       400843                          39818.95
6292                       394792                          56488.79
6293                       276698                          39122.28
6294                       380655                          35822.74
6295                       327862                          52732.39
6296                       377140                          46466.70
6297                       358275                          45378.98
6298                       364409                          39550.39
6299                       369885                          95590.06
6300                       401354                          48705.60
6301                       422558                          18882.26
6302                       449567                          13108.27
6303                       485162                          16073.54
6304                       455206                          16424.28
6305                       449341                          10071.96
6306                       367741                          13088.80
6307                       349033                           7559.14
6308                        12374                              0.00
6309                         4307                              0.00
6310                         5041                              0.00
6311                         5753                              0.00
6312                         7738                              0.00
6313                        16146                              0.00
6314                        28613                              0.00
6315                        16269                              0.00
6316                         2505                             26.67
6317                          283                              0.00
6318                         1532                              0.00
6319                        11650                              0.00
6320                         4794                              0.00
6321                         4030                              0.00
6322                         1319                              3.33
6323                          764                            166.67
6324                         1742                           4343.33
6325                          600                           2913.33
6326                          245                            730.00
6327                         3437                           4062.23
6328                         9002                           3326.67
6329                         2125                           3246.67
6330                          286                           1283.33
6331                         1087                           3226.67
6332                         3621                           4228.89
6333                         8988                           8135.00
6334                         5973                           6540.00
6335                         2108                           6175.00
6336                         2570                           4358.61
6337                         4122                           2916.94
6338                         1879                            256.11
6339                         4475                             30.56
6340                         1750                              0.00
6341                         1470                             56.94
6342                         5672                            229.17
6343                         2179                            166.67
6344                         7047                              0.00
6345                        12787                              0.00
6346                         3892                              0.00
6347                         1170                              0.00
6348                         1537                              0.00
6349                         6730                             84.72
6350                         3515                              0.00
6351                          841                              0.00
6352                         2332                             77.78
6353                         1916                              0.00
6354                         6589                            134.72
6355                         5108                            329.28
6356                         1419                            136.68
6357                         3242                            126.60
6358                         1794                              0.00
6359                         1733                              0.00
6360                         4282                              0.00
6361                         7447                              1.56
6362                         5163                             15.57
6363                         5134                              0.00
6364                        10673                              6.20
6365                        11166                              0.00
6366                        28155                              0.00
6367                        28942                              0.00
6368                         2253                              0.00
6369                        10883                              0.00
6370                         2608                              0.00
6371                         1674                              0.00
6372                         2127                              0.00
6373                          922                              0.00
6374                         1676                              0.00
6375                         1179                              0.00
6376                         2102                              6.67
6377                         2423                           1266.67
6378                          346                           1600.00
6379                          377                            443.33
6380                         3259                           1790.00
6381                        14193                           2469.21
6382                         2360                           1787.78
6383                         1315                            896.66
6384                         3071                           1500.00
6385                         1545                           1420.00
6386                         3381                           3240.00
6387                         8667                           3022.78
6388                          671                           2915.00
6389                           86                           2840.00
6390                            6                           3108.33
6391                            0                           1383.06
6392                           28                            356.67
6393                          245                            153.61
6394                         1112                            713.89
6395                          975                            284.72
6396                         2216                              0.00
6397                         5983                              0.00
6398                         5132                              0.00
6399                          868                              0.00
6400                          653                              0.00
6401                          862                            202.78
6402                         5852                              0.00
6403                          620                              0.00
6404                         1785                              0.00
6405                         3069                              0.00
6406                         4492                            243.06
6407                         2762                            619.94
6408                         3869                            982.07
6409                         1026                            680.49
6410                         1898                            854.74
6411                         1320                            374.16
6412                         1169                              0.00
6413                          919                            133.80
6414                        86180                              0.00
6415                        95743                              3.33
6416                        94469                              0.00
6417                        89252                              0.00
6418                        80533                              0.00
6419                        88252                              0.00
6420                        86254                              0.00
6421                        68334                             37.00
6422                       137878                           2270.00
6423                       188243                            400.00
6424                        87976                              0.00
6425                        91031                              0.00
6426                        81873                              0.00
6427                        83858                              0.00
6428                        69351                              0.00
6429                       100938                              3.33
6430                       104955                              0.00
6431                        79905                            217.78
6432                       108228                            536.67
6433                       189883                              0.00
6434                       298894                              0.00
6435                       138352                              0.00
6436                       127329                              0.00
6437                       121091                             70.00
6438                       131771                              0.00
6439                       387301                              0.00
6440                       267556                            302.78
6441                       305778                              3.33
6442                       550384                             13.89
6443                       205490                              0.00
6444                       219944                              0.00
6445                       225755                              0.00
6446                       268681                              0.00
6447                       320800                              0.00
6448                       470790                              0.00
6449                       629792                             19.44
6450                       527525                              0.00
6451                        58554                              0.00
6452                        76196                              0.00
6453                       159683                              6.67
6454                        19565                              0.00
6455                          998                              3.33
6456                         1062                              0.00
6457                         1458                              3.33
6458                        28925                              0.00
6459                       127089                             44.44
6460                       141600                             23.89
6461                        88070                             22.22
6462                       119674                             32.62
6463                        66255                              3.33
6464                        49139                              3.33
6465                        92421                              0.00
6466                       131306                              0.00
6467                         6576                             42.90
6468                         7840                             67.49
6469                         9311                             48.86
6470                        36373                             47.15
6471                        44956                             64.00
6472                        30900                             23.00
6473                        51103                            106.00
6474                        63702                            165.00
6475                        62594                             68.57
6476                        40362                            139.14
6477                        30577                             26.60
6478                        31344                             22.71
6479                        29349                             60.59
6480                        31112                            328.34
6481                        32031                             77.71
6482                        29746                            263.93
6483                        32306                           1164.92
6484                        34205                           1414.33
6485                        52220                           1737.05
6486                        46407                           1004.77
6487                        40114                           1947.11
6488                        41001                           2821.03
6489                        39458                           1630.72
6490                        37813                           1481.84
6491                        37719                           1392.65
6492                        59538                           2403.53
6493                        47716                           3198.38
6494                        64818                           1780.51
6495                        58995                            829.53
6496                        93478                            434.82
6497                        84464                            314.27
6498                        51742                             47.49
6499                        54005                            640.52
6500                       111177                             84.17
6501                        97497                            117.89
6502                        62335                            101.98
6503                        83872                             23.03
6504                        65172                             72.05
6505                        35859                             31.29
6506                        46455                             15.61
6507                        57404                             10.83
6508                        51729                             61.20
6509                        36352                             38.01
6510                        28640                            140.44
6511                        53252                              6.32
6512                        48242                              4.50
6513                        49248                              7.35
6514                        51551                              2.95
6515                        61567                              1.47
6516                        46670                              5.86
6517                        45283                              1.47
6518                        47759                              1.47
6519                        28119                              0.00
6520                        46858                            236.67
6521                        25598                            390.00
6522                        39016                            263.33
6523                        40252                            150.00
6524                        13951                            193.00
6525                        21030                            223.00
6526                        34900                            240.00
6527                        10329                            253.00
6528                        14982                            186.67
6529                        31443                            206.67
6530                        30389                              0.00
6531                        27352                              0.00
6532                        29420                              0.00
6533                        26359                              0.00
6534                        17289                              0.00
6535                        37220                             60.00
6536                        20015                           1513.33
6537                        28919                           1053.33
6538                        19474                           2860.00
6539                        27405                           1750.00
6540                        23086                           3696.67
6541                        29292                           2213.33
6542                        21985                           1313.33
6543                        29832                           2907.78
6544                        29400                           2971.11
6545                        16268                           3746.39
6546                        20129                           5035.83
6547                        28279                           2470.00
6548                        16705                           3300.00
6549                        25729                           2575.56
6550                        16731                            980.00
6551                        33246                            420.00
6552                        28152                            660.83
6553                        30179                            650.00
6554                        52242                            250.00
6555                        37215                            555.00
6556                        28671                             95.00
6557                        25718                            360.00
6558                        29968                            395.00
6559                        28239                            160.00
6560                        31041                            495.00
6561                        25501                            510.00
6562                        26579                            115.00
6563                        27887                             20.00
6564                        29517                            350.00
6565                        28138                            540.00
6566                        47170                             30.00
6567                        76521                            344.44
6568                        50879                            348.61
6569                        91120                              0.00
6570                        52643                              0.00
6571                        41412                              0.00
6572                        86106                              0.00
6573                        67480                            130.00
6574                        36710                            176.67
6575                        35185                            293.33
6576                        61292                            231.11
6577                        68396                            297.00
6578                        27009                            300.00
6579                        43420                            347.00
6580                        76180                             67.00
6581                        95611                            330.00
6582                        46968                            170.00
6583                        21024                              0.00
6584                        24021                              0.00
6585                        24561                              0.00
6586                        19751                              0.00
6587                        27617                              0.00
6588                        27434                              0.00
6589                        23218                            120.00
6590                        27650                            143.33
6591                        23140                            935.56
6592                        65960                            376.66
6593                       105694                            170.00
6594                        59193                            388.95
6595                        62902                            270.00
6596                        66328                             16.67
6597                        71540                              0.00
6598                       124311                              0.00
6599                       119721                              0.00
6600                       122523                              0.00
6601                       105920                              0.00
6602                        97010                            212.50
6603                       114357                            136.11
6604                       111236                              0.00
6605                       119888                              0.00
6606                       143342                            444.44
6607                       173851                              0.00
6608                       130578                              0.00
6609                       189154                            347.22
6610                       166713                              0.00
6611                        88839                            111.11
6612                        94730                              0.00
6613                        90715                              0.00
6614                       102245                              0.00
6615                        80847                              0.00
6616                       115253                              0.00
6617                       108893                              0.00
6618                        70254                              0.00
6619                       157110                              0.00
6620                       207844                              0.00
6621                        76001                              0.00
6622                       133739                             69.44
6623                       153402                              0.00
6624                       141383                              0.00
6625                       123145                              0.00
6626                        14343                          38298.83
6627                        15344                          37179.95
6628                        14767                          35119.57
6629                        16285                          36269.31
6630                        23854                          35296.00
6631                        16197                          36801.00
6632                        34871                          38457.00
6633                        23684                          39240.00
6634                        14912                          36715.26
6635                        16098                          29818.61
6636                        15615                          31253.98
6637                        15850                          33217.16
6638                        17349                          29920.35
6639                        17513                          29379.20
6640                        16259                          29293.55
6641                        13164                          29208.74
6642                        14395                          32809.38
6643                        15576                          36012.63
6644                        14651                          32740.83
6645                        22264                          37265.77
6646                        21557                          40698.76
6647                        20822                          46018.92
6648                        18680                          39637.48
6649                        12422                          45942.56
6650                        14421                          43441.46
6651                          789                          50712.53
6652                          412                          45971.18
6653                          697                          44003.86
6654                          964                          51722.11
6655                          468                          47983.17
6656                          559                          38125.61
6657                          301                          54580.81
6658                          402                          53144.21
6659                          674                          53182.15
6660                          488                          60153.52
6661                          686                          59023.76
6662                         3262                          56546.79
6663                          574                          61316.94
6664                        10163                          49907.28
6665                        11742                          46909.66
6666                         1178                          50016.63
6667                         2475                          47805.79
6668                         4495                          54023.57
6669                         6376                          48575.67
6670                        33292                          32007.24
6671                       130416                          34431.00
6672                        81240                          44743.45
6673                         3466                          41513.70
6674                        29994                          28981.57
6675                        39626                          25874.51
6676                        59206                          21168.43
6677                        72838                          24117.02
6678                        88932                          19799.28
6679                        19711                              4.25
6680                        21035                             12.84
6681                        15357                             28.61
6682                        30199                              4.32
6683                        44403                              1.00
6684                        18803                              0.00
6685                        30480                              0.00
6686                        42246                              0.00
6687                        32356                              2.88
6688                        41951                              0.00
6689                        20029                              0.00
6690                        19439                              0.00
6691                        19822                              0.00
6692                        19293                              0.00
6693                        19097                              0.00
6694                        20969                             20.00
6695                        25440                            366.67
6696                        26038                            355.56
6697                        26002                            491.11
6698                        25490                            453.33
6699                        24544                            833.33
6700                        24173                           1211.76
6701                        24102                           1130.00
6702                        26604                           1143.33
6703                        26375                           1189.99
6704                        53246                            726.08
6705                        38398                            338.25
6706                        47643                             52.22
6707                        29726                             78.29
6708                        45674                            419.72
6709                        53317                             41.64
6710                        44055                             16.81
6711                        35960                              3.37
6712                        26265                              0.00
6713                        52904                            182.46
6714                        23931                            145.78
6715                        31343                            211.31
6716                        31705                             15.62
6717                        26542                              0.00
6718                        33058                              0.00
6719                        32209                              3.39
6720                        10768                             15.01
6721                        26520                             14.89
6722                        36951                              0.00
6723                        28234                              6.49
6724                        36841                            136.82
6725                        55257                              0.00
6726                        29368                              1.60
6727                        40986                             13.33
6728                        38927                              0.00
6729                        25682                              0.00
6730                        42296                             15.56
6731                        35198                            146.67
6732                        79624                              0.00
6733                        32139                              0.00
6734                        72868                              0.00
6735                        75668                              0.00
6736                        56202                              0.00
6737                        46606                              0.00
6738                        75936                              0.00
6739                        50234                              0.00
6740                        35137                              0.00
6741                        76769                              0.00
6742                        57611                              0.00
6743                        26090                              0.00
6744                        28879                              0.00
6745                        42234                              0.00
6746                        42039                              0.00
6747                        61153                             40.00
6748                        23941                           3223.33
6749                        46519                           3403.33
6750                        51133                           8624.44
6751                        54596                           5564.44
6752                        73384                           9201.11
6753                        48349                           7854.45
6754                        55121                           6058.89
6755                        61378                           8000.00
6756                        41978                           9792.22
6757                        55317                          11659.17
6758                        72200                           9273.33
6759                        59392                          12748.89
6760                        62944                          12341.67
6761                        79489                           7610.00
6762                        64412                           2635.00
6763                        65217                              0.00
6764                        60138                              0.00
6765                        62634                              0.00
6766                       112931                              0.00
6767                       113902                              0.00
6768                        63378                              0.00
6769                        56062                              0.00
6770                        40165                             87.50
6771                        55951                              0.00
6772                        61500                            150.00
6773                        62487                            472.22
6774                        47913                              0.00
6775                        55693                              0.00
6776                        59448                              0.00
6777                        57722                              0.00
6778                       102268                            359.72
6779                       178369                           1144.44
6780                       108599                            670.83
6781                       181454                            106.94
6782                       128082                              0.00
6783                       105207                              6.94
6784                       193285                              0.00
6785                       163762                           1436.61
6786                       118291                           2922.87
6787                       106280                           2064.36
6788                       172927                           2031.71
6789                       188039                           2118.00
6790                       128990                           1607.00
6791                       186157                           1727.00
6792                       181873                           1942.00
6793                       159168                           1756.12
6794                       153145                            656.44
6795                        97559                            138.57
6796                       123337                             20.38
6797                       115358                             34.84
6798                       120199                            152.99
6799                        96709                            477.68
6800                        98413                           2401.72
6801                       110137                          23207.55
6802                       116289                          25211.69
6803                       124192                          16255.39
6804                       145663                          37267.19
6805                       148878                          28454.57
6806                       122564                          27722.10
6807                       126121                          18395.33
6808                       114929                          29602.08
6809                       122607                          34003.86
6810                       191302                          54568.45
6811                       187005                          53465.59
6812                       187611                          36475.32
6813                       107064                          38092.74
6814                       167944                          43945.63
6815                       187872                          19003.96
6816                       230581                           9160.33
6817                       193338                           4717.41
6818                       148639                           6625.97
6819                       237524                           5385.54
6820                       142459                           4604.35
6821                       136072                           5162.94
6822                       125319                           4200.17
6823                        93876                           4160.85
6824                       126225                           4170.08
6825                       135004                           3935.02
6826                        98620                           3848.93
6827                       123512                           3518.06
6828                       131525                           1086.95
6829                       123352                           2959.81
6830                       147588                           2798.14
6831                       190222                           4451.35
6832                       161723                           4922.79
6833                       153113                           4867.77
6834                       181562                           1577.05
6835                       125271                           1418.49
6836                       130291                           4166.40
6837                       151227                           4398.04
6838                        18477                            630.39
6839                        12232                           1377.78
6840                        12580                            918.89
6841                        13873                            870.00
6842                        18913                            949.00
6843                        10358                            856.00
6844                        10329                            820.00
6845                         9118                            936.00
6846                        11124                            784.57
6847                        13184                            368.02
6848                         9599                              5.12
6849                        10144                              3.33
6850                        10304                              0.00
6851                         7432                             58.57
6852                         7350                            113.09
6853                        10118                            257.26
6854                         7882                           1336.67
6855                        10274                            751.34
6856                        10803                           2207.31
6857                        17633                           1891.33
6858                        16067                           1494.67
6859                        12836                           1559.01
6860                        14828                           1107.58
6861                         9364                           2106.70
6862                        13092                           1551.12
6863                        22029                           2780.00
6864                        15456                           2595.53
6865                        18682                           1742.59
6866                        10906                           1768.97
6867                        10765                           2261.88
6868                        14782                           2430.00
6869                        37475                           2192.98
6870                        23799                           2109.40
6871                        18978                           1746.74
6872                        21424                           1770.00
6873                        20199                           1977.95
6874                         8397                           1805.00
6875                         5170                           1680.00
6876                         6780                           1560.00
6877                         7521                           1000.00
6878                         6938                           1270.00
6879                         5996                           1540.00
6880                         6435                           1240.00
6881                         6876                            110.00
6882                         8089                           1035.00
6883                         8147                            830.00
6884                        19120                           1514.72
6885                        20622                             90.00
6886                        14816                              0.00
6887                        24413                            478.33
6888                        15373                            300.00
6889                        12090                            985.00
6890                        20952                           1535.00
6891                        11334                           1143.33
6892                         8225                           1106.67
6893                        10322                            810.00
6894                        11514                            835.56
6895                         3609                            790.00
6896                         8817                            960.00
6897                         8597                            767.00
6898                         4411                            816.00
6899                         6089                           1403.33
6900                        11156                            751.11
6901                        10571                              0.00
6902                         8512                              0.00
6903                        13739                              0.00
6904                        12793                              0.00
6905                         9616                              0.00
6906                        10177                            113.33
6907                         5952                           4436.67
6908                         9260                           4757.77
6909                         5129                           4186.67
6910                        10099                           2386.66
6911                        10287                           4171.11
6912                        10735                           9220.00
6913                         9485                           8066.67
6914                        12527                           7046.67
6915                         9641                           8593.33
6916                         5261                           2156.67
6917                         4993                           2600.00
6918                         8092                           1865.00
6919                         4570                           2885.00
6920                         8993                           7925.00
6921                         5314                          13705.00
6922                        10461                          14115.00
6923                        10833                          11655.00
6924                        10375                          16675.00
6925                        17223                           5185.00
6926                        10989                           7895.00
6927                         8843                           9660.00
6928                         9889                           9590.00
6929                         8934                           9297.50
6930                         9845                           8155.00
6931                        10527                          10107.78
6932                         9850                           6275.00
6933                         9832                           6680.00
6934                         8536                           6180.00
6935                         8046                           8970.00
6936                         7834                           9320.00
6937                        13863                          11900.00
6938                        26379                           6680.00
6939                        15524                           5670.00
6940                        29497                           8105.00
6941                        16913                           6445.00
6942                        13645                           9115.00
6943                        24040                           7348.33
6944                        78507                              0.00
6945                        24894                              2.00
6946                        18174                             17.82
6947                        23131                             19.65
6948                        30177                              0.00
6949                        99837                              0.00
6950                       185014                             16.00
6951                        33312                              0.00
6952                        60984                             23.74
6953                        23367                             15.91
6954                        24012                              3.98
6955                        33027                              0.00
6956                        19057                              0.00
6957                        32584                              0.00
6958                        22488                              3.98
6959                        34824                              0.00
6960                        35548                           1055.56
6961                         9202                           5051.11
6962                        13594                          14570.00
6963                        20394                           3785.98
6964                        49543                           3296.55
6965                        24812                          10827.14
6966                        17642                           2816.87
6967                        21312                           7328.13
6968                        13580                          10976.66
6969                        42919                          18132.15
6970                       223987                          17180.56
6971                       126518                          16568.81
6972                       113735                          13592.48
6973                       233755                           6867.78
6974                        90033                          10398.61
6975                       178835                          18757.50
6976                        70437                            885.00
6977                        71418                          16981.94
6978                       305309                           9579.17
6979                        44523                           9777.78
6980                        41885                           6171.20
6981                        55760                           7991.67
6982                        51165                           3073.03
6983                        48527                            216.67
6984                        49533                           8756.94
6985                        40754                           6531.94
6986                        49776                           2540.28
6987                        33380                           3345.83
6988                        65872                           6408.57
6989                        41374                            527.20
6990                        63416                           6549.30
6991                        50136                           7645.18
6992                        51331                           4944.89
6993                        36338                           5404.53
6994                        38861                           1896.50
6995                        40822                            186.95
6996                        30685                            307.59
6997                       213975                              3.47
6998                       161277                             27.80
6999                       160592                             22.39
7000                       170987                             25.83
7001                       137354                              2.00
7002                       296888                              0.00
7003                       452228                             14.00
7004                       170377                              0.00
7005                       224224                             93.99
7006                       165041                             20.66
7007                        88679                              3.44
7008                       122214                              0.00
7009                       166422                              0.00
7010                       178100                              0.00
7011                       153032                             81.24
7012                       168244                           1596.67
7013                       130830                          23392.22
7014                       106630                          27871.11
7015                       130587                          20808.89
7016                       160576                          30863.23
7017                       194459                          29848.90
7018                       165243                          31358.91
7019                       119002                          14869.39
7020                       149980                          29704.50
7021                       138211                          35726.67
7022                       140036                          66061.70
7023                       355666                          54859.17
7024                       215092                          51936.29
7025                       209441                          44179.84
7026                       350203                          39445.00
7027                       179473                          20781.39
7028                       283132                          24761.39
7029                       160311                           2701.67
7030                       162343                          19552.78
7031                       640106                          12880.56
7032                       184172                          10713.28
7033                       250892                           6189.60
7034                       200044                           9744.44
7035                       242674                           3299.25
7036                       241471                            216.67
7037                       176429                          10183.33
7038                       192549                           6620.00
7039                       276860                           3204.17
7040                        56848                           3425.00
7041                       100143                           6700.79
7042                        75165                           1065.10
7043                       111229                           8366.36
7044                        84786                          11122.91
7045                        73049                           7642.60
7046                        68710                           8180.92
7047                        64998                           2418.13
7048                        58724                            193.59
7049                        49533                            478.61
7050                        27329                              0.00
7051                        62466                              0.00
7052                        60708                              0.00
7053                        55270                              0.00
7054                        21564                              0.00
7055                        35483                              0.00
7056                        54591                              0.00
7057                        54675                              0.00
7058                        29437                              0.00
7059                        22357                              0.00
7060                        22967                              0.00
7061                        22827                              0.00
7062                        33929                              0.00
7063                        38767                              0.00
7064                        37878                              0.00
7065                        30806                            106.67
7066                        36066                           2646.67
7067                        28133                           2366.67
7068                        41492                            950.00
7069                        46084                           3496.67
7070                        39174                           4643.33
7071                        55253                           2993.33
7072                        40432                           1726.67
7073                        49642                           3526.67
7074                        46561                           3012.23
7075                        36857                           5205.00
7076                        36241                           4725.00
7077                        33801                           3790.00
7078                        40114                           3660.00
7079                        37009                           3903.33
7080                        36385                           1111.67
7081                        32253                            813.33
7082                        32016                             90.00
7083                        44152                              0.00
7084                       154825                             38.89
7085                        58543                              0.00
7086                        92157                              0.00
7087                        43804                              0.00
7088                        29982                              2.22
7089                        71634                              0.00
7090                        60380                            537.50
7091                        58150                              0.00
7092                        86213                              0.00
7093                            0                              0.00
7094                            0                              0.00
7095                            4                              0.00
7096                            4                              0.00
7097                            0                              0.00
7098                            0                              0.00
7099                            3                              0.00
7100                            0                              0.00
7101                            0                              0.00
7102                            0                              0.00
7103                        51536                              0.00
7104                        30821                              0.00
7105                        44550                              0.00
7106                        59365                              0.00
7107                        30905                              3.00
7108                        23490                              0.00
7109                        45015                              3.00
7110                        20525                              0.00
7111                        27266                              0.00
7112                        30787                              0.00
7113                        34933                              0.00
7114                        30926                              0.00
7115                        22105                              0.00
7116                        23857                              3.33
7117                        29207                              3.33
7118                        44256                              3.33
7119                        22215                           3196.67
7120                        19778                           1986.67
7121                        27371                           5718.89
7122                        33853                           5850.00
7123                        47375                           8706.67
7124                        31827                           6258.89
7125                        29288                           4360.00
7126                        36664                           6142.22
7127                        36936                           6920.00
7128                        31960                          11175.28
7129                        45106                          10240.00
7130                        40834                           6095.00
7131                        34066                           7305.00
7132                        46131                           6210.00
7133                        48034                           1673.61
7134                        31992                             40.28
7135                        32650                            218.06
7136                        24508                              0.00
7137                        54086                              0.00
7138                        50040                              0.00
7139                        26468                              0.00
7140                        35584                              0.00
7141                        35589                              0.00
7142                        34620                            164.44
      type (TIPO) year (AÑO)     region (REGION)
1    conventional       2015             Atlanta
2    conventional       2015             Atlanta
3    conventional       2015             Atlanta
4    conventional       2015             Atlanta
5    conventional       2015             Atlanta
6    conventional       2015             Atlanta
7    conventional       2015             Atlanta
8    conventional       2015             Atlanta
9    conventional       2015             Atlanta
10   conventional       2015             Atlanta
11   conventional       2015             Atlanta
12   conventional       2015             Atlanta
13   conventional       2015             Atlanta
14   conventional       2015             Atlanta
15   conventional       2015             Atlanta
16   conventional       2015             Atlanta
17   conventional       2015             Atlanta
18   conventional       2015             Atlanta
19   conventional       2015             Atlanta
20   conventional       2015             Atlanta
21   conventional       2015             Atlanta
22   conventional       2015             Atlanta
23   conventional       2015             Atlanta
24   conventional       2015             Atlanta
25   conventional       2015             Atlanta
26   conventional       2015             Atlanta
27   conventional       2015             Atlanta
28   conventional       2015             Atlanta
29   conventional       2015             Atlanta
30   conventional       2015             Atlanta
31   conventional       2015             Atlanta
32   conventional       2015             Atlanta
33   conventional       2015             Atlanta
34   conventional       2015             Atlanta
35   conventional       2015             Atlanta
36   conventional       2015             Atlanta
37   conventional       2015             Atlanta
38   conventional       2015             Atlanta
39   conventional       2015             Atlanta
40   conventional       2015             Atlanta
41   conventional       2015             Atlanta
42   conventional       2015             Atlanta
43   conventional       2015             Atlanta
44   conventional       2015             Atlanta
45   conventional       2015             Atlanta
46   conventional       2015             Atlanta
47   conventional       2015             Atlanta
48   conventional       2015             Atlanta
49   conventional       2015             Atlanta
50   conventional       2015             Atlanta
51   conventional       2015             Atlanta
52   conventional       2015             Atlanta
53   conventional       2015 BaltimoreWashington
54   conventional       2015 BaltimoreWashington
55   conventional       2015 BaltimoreWashington
56   conventional       2015 BaltimoreWashington
57   conventional       2015 BaltimoreWashington
58   conventional       2015 BaltimoreWashington
59   conventional       2015 BaltimoreWashington
60   conventional       2015 BaltimoreWashington
61   conventional       2015 BaltimoreWashington
62   conventional       2015 BaltimoreWashington
63   conventional       2015 BaltimoreWashington
64   conventional       2015 BaltimoreWashington
65   conventional       2015 BaltimoreWashington
66   conventional       2015 BaltimoreWashington
67   conventional       2015 BaltimoreWashington
68   conventional       2015 BaltimoreWashington
69   conventional       2015 BaltimoreWashington
70   conventional       2015 BaltimoreWashington
71   conventional       2015 BaltimoreWashington
72   conventional       2015 BaltimoreWashington
73   conventional       2015 BaltimoreWashington
74   conventional       2015 BaltimoreWashington
75   conventional       2015 BaltimoreWashington
76   conventional       2015 BaltimoreWashington
77   conventional       2015 BaltimoreWashington
78   conventional       2015 BaltimoreWashington
79   conventional       2015 BaltimoreWashington
80   conventional       2015 BaltimoreWashington
81   conventional       2015 BaltimoreWashington
82   conventional       2015 BaltimoreWashington
83   conventional       2015 BaltimoreWashington
84   conventional       2015 BaltimoreWashington
85   conventional       2015 BaltimoreWashington
86   conventional       2015 BaltimoreWashington
87   conventional       2015 BaltimoreWashington
88   conventional       2015 BaltimoreWashington
89   conventional       2015 BaltimoreWashington
90   conventional       2015 BaltimoreWashington
91   conventional       2015 BaltimoreWashington
92   conventional       2015 BaltimoreWashington
93   conventional       2015 BaltimoreWashington
94   conventional       2015 BaltimoreWashington
95   conventional       2015 BaltimoreWashington
96   conventional       2015 BaltimoreWashington
97   conventional       2015 BaltimoreWashington
98   conventional       2015 BaltimoreWashington
99   conventional       2015 BaltimoreWashington
100  conventional       2015 BaltimoreWashington
101  conventional       2015 BaltimoreWashington
102  conventional       2015 BaltimoreWashington
103  conventional       2015 BaltimoreWashington
104  conventional       2015 BaltimoreWashington
105  conventional       2015               Boise
106  conventional       2015               Boise
107  conventional       2015               Boise
108  conventional       2015               Boise
109  conventional       2015               Boise
110  conventional       2015               Boise
111  conventional       2015               Boise
112  conventional       2015               Boise
113  conventional       2015               Boise
114  conventional       2015               Boise
115  conventional       2015               Boise
116  conventional       2015               Boise
117  conventional       2015               Boise
118  conventional       2015               Boise
119  conventional       2015               Boise
120  conventional       2015               Boise
121  conventional       2015               Boise
122  conventional       2015               Boise
123  conventional       2015               Boise
124  conventional       2015               Boise
125  conventional       2015               Boise
126  conventional       2015               Boise
127  conventional       2015               Boise
128  conventional       2015               Boise
129  conventional       2015               Boise
130  conventional       2015               Boise
131  conventional       2015               Boise
132  conventional       2015               Boise
133  conventional       2015               Boise
134  conventional       2015               Boise
135  conventional       2015               Boise
136  conventional       2015               Boise
137  conventional       2015               Boise
138  conventional       2015               Boise
139  conventional       2015               Boise
140  conventional       2015               Boise
141  conventional       2015               Boise
142  conventional       2015               Boise
143  conventional       2015               Boise
144  conventional       2015               Boise
145  conventional       2015               Boise
146  conventional       2015               Boise
147  conventional       2015               Boise
148  conventional       2015               Boise
149  conventional       2015               Boise
150  conventional       2015               Boise
151  conventional       2015               Boise
152  conventional       2015               Boise
153  conventional       2015               Boise
154  conventional       2015               Boise
155  conventional       2015               Boise
156  conventional       2015               Boise
157  conventional       2015              Boston
158  conventional       2015              Boston
159  conventional       2015              Boston
160  conventional       2015              Boston
161  conventional       2015              Boston
162  conventional       2015              Boston
163  conventional       2015              Boston
164  conventional       2015              Boston
165  conventional       2015              Boston
166  conventional       2015              Boston
167  conventional       2015              Boston
168  conventional       2015              Boston
169  conventional       2015              Boston
170  conventional       2015              Boston
171  conventional       2015              Boston
172  conventional       2015              Boston
173  conventional       2015              Boston
174  conventional       2015              Boston
175  conventional       2015              Boston
176  conventional       2015              Boston
177  conventional       2015              Boston
178  conventional       2015              Boston
179  conventional       2015              Boston
180  conventional       2015              Boston
181  conventional       2015              Boston
182  conventional       2015              Boston
183  conventional       2015              Boston
184  conventional       2015              Boston
185  conventional       2015              Boston
186  conventional       2015              Boston
187  conventional       2015              Boston
188  conventional       2015              Boston
189  conventional       2015              Boston
190  conventional       2015              Boston
191  conventional       2015              Boston
192  conventional       2015              Boston
193  conventional       2015              Boston
194  conventional       2015              Boston
195  conventional       2015              Boston
196  conventional       2015              Boston
197  conventional       2015              Boston
198  conventional       2015              Boston
199  conventional       2015              Boston
200  conventional       2015              Boston
201  conventional       2015              Boston
202  conventional       2015              Boston
203  conventional       2015              Boston
204  conventional       2015              Boston
205  conventional       2015              Boston
206  conventional       2015              Boston
207  conventional       2015              Boston
208  conventional       2015              Boston
209  conventional       2015    BuffaloRochester
210  conventional       2015    BuffaloRochester
211  conventional       2015    BuffaloRochester
212  conventional       2015    BuffaloRochester
213  conventional       2015    BuffaloRochester
214  conventional       2015    BuffaloRochester
215  conventional       2015    BuffaloRochester
216  conventional       2015    BuffaloRochester
217  conventional       2015    BuffaloRochester
218  conventional       2015    BuffaloRochester
219  conventional       2015    BuffaloRochester
220  conventional       2015    BuffaloRochester
221  conventional       2015    BuffaloRochester
222  conventional       2015    BuffaloRochester
223  conventional       2015    BuffaloRochester
224  conventional       2015    BuffaloRochester
225  conventional       2015    BuffaloRochester
226  conventional       2015    BuffaloRochester
227  conventional       2015    BuffaloRochester
228  conventional       2015    BuffaloRochester
229  conventional       2015    BuffaloRochester
230  conventional       2015    BuffaloRochester
231  conventional       2015    BuffaloRochester
232  conventional       2015    BuffaloRochester
233  conventional       2015    BuffaloRochester
234  conventional       2015    BuffaloRochester
235  conventional       2015    BuffaloRochester
236  conventional       2015    BuffaloRochester
237  conventional       2015    BuffaloRochester
238  conventional       2015    BuffaloRochester
239  conventional       2015    BuffaloRochester
240  conventional       2015    BuffaloRochester
241  conventional       2015    BuffaloRochester
242  conventional       2015    BuffaloRochester
243  conventional       2015    BuffaloRochester
244  conventional       2015    BuffaloRochester
245  conventional       2015    BuffaloRochester
246  conventional       2015    BuffaloRochester
247  conventional       2015    BuffaloRochester
248  conventional       2015    BuffaloRochester
249  conventional       2015    BuffaloRochester
250  conventional       2015    BuffaloRochester
251  conventional       2015    BuffaloRochester
252  conventional       2015    BuffaloRochester
253  conventional       2015    BuffaloRochester
254  conventional       2015    BuffaloRochester
255  conventional       2015    BuffaloRochester
256  conventional       2015    BuffaloRochester
257  conventional       2015    BuffaloRochester
258  conventional       2015    BuffaloRochester
259  conventional       2015    BuffaloRochester
260  conventional       2015    BuffaloRochester
261  conventional       2015          California
262  conventional       2015          California
263  conventional       2015          California
264  conventional       2015          California
265  conventional       2015          California
266  conventional       2015          California
267  conventional       2015          California
268  conventional       2015          California
269  conventional       2015          California
270  conventional       2015          California
271  conventional       2015          California
272  conventional       2015          California
273  conventional       2015          California
274  conventional       2015          California
275  conventional       2015          California
276  conventional       2015          California
277  conventional       2015          California
278  conventional       2015          California
279  conventional       2015          California
280  conventional       2015          California
281  conventional       2015          California
282  conventional       2015          California
283  conventional       2015          California
284  conventional       2015          California
285  conventional       2015          California
286  conventional       2015          California
287  conventional       2015          California
288  conventional       2015          California
289  conventional       2015          California
290  conventional       2015          California
291  conventional       2015          California
292  conventional       2015          California
293  conventional       2015          California
294  conventional       2015          California
295  conventional       2015          California
296  conventional       2015          California
297  conventional       2015          California
298  conventional       2015          California
299  conventional       2015          California
300  conventional       2015          California
301  conventional       2015          California
302  conventional       2015          California
303  conventional       2015          California
304  conventional       2015          California
305  conventional       2015          California
306  conventional       2015          California
307  conventional       2015          California
308  conventional       2015          California
309  conventional       2015          California
310  conventional       2015          California
311  conventional       2015          California
312  conventional       2015          California
313  conventional       2015           Charlotte
314  conventional       2015           Charlotte
315  conventional       2015           Charlotte
316  conventional       2015           Charlotte
317  conventional       2015           Charlotte
318  conventional       2015           Charlotte
319  conventional       2015           Charlotte
320  conventional       2015           Charlotte
321  conventional       2015           Charlotte
322  conventional       2015           Charlotte
323  conventional       2015           Charlotte
324  conventional       2015           Charlotte
325  conventional       2015           Charlotte
326  conventional       2015           Charlotte
327  conventional       2015           Charlotte
328  conventional       2015           Charlotte
329  conventional       2015           Charlotte
330  conventional       2015           Charlotte
331  conventional       2015           Charlotte
332  conventional       2015           Charlotte
333  conventional       2015           Charlotte
334  conventional       2015           Charlotte
335  conventional       2015           Charlotte
336  conventional       2015           Charlotte
337  conventional       2015           Charlotte
338  conventional       2015           Charlotte
339  conventional       2015           Charlotte
340  conventional       2015           Charlotte
341  conventional       2015           Charlotte
342  conventional       2015           Charlotte
343  conventional       2015           Charlotte
344  conventional       2015           Charlotte
345  conventional       2015           Charlotte
346  conventional       2015           Charlotte
347  conventional       2015           Charlotte
348  conventional       2015           Charlotte
349  conventional       2015           Charlotte
350  conventional       2015           Charlotte
351  conventional       2015           Charlotte
352  conventional       2015           Charlotte
353  conventional       2015           Charlotte
354  conventional       2015           Charlotte
355  conventional       2015           Charlotte
356  conventional       2015           Charlotte
357  conventional       2015           Charlotte
358  conventional       2015           Charlotte
359  conventional       2015           Charlotte
360  conventional       2015           Charlotte
361  conventional       2015           Charlotte
362  conventional       2015           Charlotte
363  conventional       2015           Charlotte
364  conventional       2015           Charlotte
365  conventional       2015             Chicago
366  conventional       2015             Chicago
367  conventional       2015             Chicago
368  conventional       2015             Chicago
369  conventional       2015             Chicago
370  conventional       2015             Chicago
371  conventional       2015             Chicago
372  conventional       2015             Chicago
373  conventional       2015             Chicago
374  conventional       2015             Chicago
375  conventional       2015             Chicago
376  conventional       2015             Chicago
377  conventional       2015             Chicago
378  conventional       2015             Chicago
379  conventional       2015             Chicago
380  conventional       2015             Chicago
381  conventional       2015             Chicago
382  conventional       2015             Chicago
383  conventional       2015             Chicago
384  conventional       2015             Chicago
385  conventional       2015             Chicago
386  conventional       2015             Chicago
387  conventional       2015             Chicago
388  conventional       2015             Chicago
389  conventional       2015             Chicago
390  conventional       2015             Chicago
391  conventional       2015             Chicago
392  conventional       2015             Chicago
393  conventional       2015             Chicago
394  conventional       2015             Chicago
395  conventional       2015             Chicago
396  conventional       2015             Chicago
397  conventional       2015             Chicago
398  conventional       2015             Chicago
399  conventional       2015             Chicago
400  conventional       2015             Chicago
401  conventional       2015             Chicago
402  conventional       2015             Chicago
403  conventional       2015             Chicago
404  conventional       2015             Chicago
405  conventional       2015             Chicago
406  conventional       2015             Chicago
407  conventional       2015             Chicago
408  conventional       2015             Chicago
409  conventional       2015             Chicago
410  conventional       2015             Chicago
411  conventional       2015             Chicago
412  conventional       2015             Chicago
413  conventional       2015             Chicago
414  conventional       2015             Chicago
415  conventional       2015             Chicago
416  conventional       2015             Chicago
417  conventional       2015    CincinnatiDayton
418  conventional       2015    CincinnatiDayton
419  conventional       2015    CincinnatiDayton
420  conventional       2015    CincinnatiDayton
421  conventional       2015    CincinnatiDayton
422  conventional       2015    CincinnatiDayton
423  conventional       2015    CincinnatiDayton
424  conventional       2015    CincinnatiDayton
425  conventional       2015    CincinnatiDayton
426  conventional       2015    CincinnatiDayton
427  conventional       2015    CincinnatiDayton
428  conventional       2015    CincinnatiDayton
429  conventional       2015    CincinnatiDayton
430  conventional       2015    CincinnatiDayton
431  conventional       2015    CincinnatiDayton
432  conventional       2015    CincinnatiDayton
433  conventional       2015    CincinnatiDayton
434  conventional       2015    CincinnatiDayton
435  conventional       2015    CincinnatiDayton
436  conventional       2015    CincinnatiDayton
437  conventional       2015    CincinnatiDayton
438  conventional       2015    CincinnatiDayton
439  conventional       2015    CincinnatiDayton
440  conventional       2015    CincinnatiDayton
441  conventional       2015    CincinnatiDayton
442  conventional       2015    CincinnatiDayton
443  conventional       2015    CincinnatiDayton
444  conventional       2015    CincinnatiDayton
445  conventional       2015    CincinnatiDayton
446  conventional       2015    CincinnatiDayton
447  conventional       2015    CincinnatiDayton
448  conventional       2015    CincinnatiDayton
449  conventional       2015    CincinnatiDayton
450  conventional       2015    CincinnatiDayton
451  conventional       2015    CincinnatiDayton
452  conventional       2015    CincinnatiDayton
453  conventional       2015    CincinnatiDayton
454  conventional       2015    CincinnatiDayton
455  conventional       2015    CincinnatiDayton
456  conventional       2015    CincinnatiDayton
457  conventional       2015    CincinnatiDayton
458  conventional       2015    CincinnatiDayton
459  conventional       2015    CincinnatiDayton
460  conventional       2015    CincinnatiDayton
461  conventional       2015    CincinnatiDayton
462  conventional       2015    CincinnatiDayton
463  conventional       2015    CincinnatiDayton
464  conventional       2015    CincinnatiDayton
465  conventional       2015    CincinnatiDayton
466  conventional       2015    CincinnatiDayton
467  conventional       2015    CincinnatiDayton
468  conventional       2015    CincinnatiDayton
469  conventional       2015            Columbus
470  conventional       2015            Columbus
471  conventional       2015            Columbus
472  conventional       2015            Columbus
473  conventional       2015            Columbus
474  conventional       2015            Columbus
475  conventional       2015            Columbus
476  conventional       2015            Columbus
477  conventional       2015            Columbus
478  conventional       2015            Columbus
479  conventional       2015            Columbus
480  conventional       2015            Columbus
481  conventional       2015            Columbus
482  conventional       2015            Columbus
483  conventional       2015            Columbus
484  conventional       2015            Columbus
485  conventional       2015            Columbus
486  conventional       2015            Columbus
487  conventional       2015            Columbus
488  conventional       2015            Columbus
489  conventional       2015            Columbus
490  conventional       2015            Columbus
491  conventional       2015            Columbus
492  conventional       2015            Columbus
493  conventional       2015            Columbus
494  conventional       2015            Columbus
495  conventional       2015            Columbus
496  conventional       2015            Columbus
497  conventional       2015            Columbus
498  conventional       2015            Columbus
499  conventional       2015            Columbus
500  conventional       2015            Columbus
501  conventional       2015            Columbus
502  conventional       2015            Columbus
503  conventional       2015            Columbus
504  conventional       2015            Columbus
505  conventional       2015            Columbus
506  conventional       2015            Columbus
507  conventional       2015            Columbus
508  conventional       2015            Columbus
509  conventional       2015            Columbus
510  conventional       2015            Columbus
511  conventional       2015            Columbus
512  conventional       2015            Columbus
513  conventional       2015            Columbus
514  conventional       2015            Columbus
515  conventional       2015            Columbus
516  conventional       2015            Columbus
517  conventional       2015            Columbus
518  conventional       2015            Columbus
519  conventional       2015            Columbus
520  conventional       2015            Columbus
521  conventional       2015       DallasFtWorth
522  conventional       2015       DallasFtWorth
523  conventional       2015       DallasFtWorth
524  conventional       2015       DallasFtWorth
525  conventional       2015       DallasFtWorth
526  conventional       2015       DallasFtWorth
527  conventional       2015       DallasFtWorth
528  conventional       2015       DallasFtWorth
529  conventional       2015       DallasFtWorth
530  conventional       2015       DallasFtWorth
531  conventional       2015       DallasFtWorth
532  conventional       2015       DallasFtWorth
533  conventional       2015       DallasFtWorth
534  conventional       2015       DallasFtWorth
535  conventional       2015       DallasFtWorth
536  conventional       2015       DallasFtWorth
537  conventional       2015       DallasFtWorth
538  conventional       2015       DallasFtWorth
539  conventional       2015       DallasFtWorth
540  conventional       2015       DallasFtWorth
541  conventional       2015       DallasFtWorth
542  conventional       2015       DallasFtWorth
543  conventional       2015       DallasFtWorth
544  conventional       2015       DallasFtWorth
545  conventional       2015       DallasFtWorth
546  conventional       2015       DallasFtWorth
547  conventional       2015       DallasFtWorth
548  conventional       2015       DallasFtWorth
549  conventional       2015       DallasFtWorth
550  conventional       2015       DallasFtWorth
551  conventional       2015       DallasFtWorth
552  conventional       2015       DallasFtWorth
553  conventional       2015       DallasFtWorth
554  conventional       2015       DallasFtWorth
555  conventional       2015       DallasFtWorth
556  conventional       2015       DallasFtWorth
557  conventional       2015       DallasFtWorth
558  conventional       2015       DallasFtWorth
559  conventional       2015       DallasFtWorth
560  conventional       2015       DallasFtWorth
561  conventional       2015       DallasFtWorth
562  conventional       2015       DallasFtWorth
563  conventional       2015       DallasFtWorth
564  conventional       2015       DallasFtWorth
565  conventional       2015       DallasFtWorth
566  conventional       2015       DallasFtWorth
567  conventional       2015       DallasFtWorth
568  conventional       2015       DallasFtWorth
569  conventional       2015       DallasFtWorth
570  conventional       2015       DallasFtWorth
571  conventional       2015       DallasFtWorth
572  conventional       2015       DallasFtWorth
573  conventional       2015              Denver
574  conventional       2015              Denver
575  conventional       2015              Denver
576  conventional       2015              Denver
577  conventional       2015              Denver
578  conventional       2015              Denver
579  conventional       2015              Denver
580  conventional       2015              Denver
581  conventional       2015              Denver
582  conventional       2015              Denver
583  conventional       2015              Denver
584  conventional       2015              Denver
585  conventional       2015              Denver
586  conventional       2015              Denver
587  conventional       2015              Denver
588  conventional       2015              Denver
589  conventional       2015              Denver
590  conventional       2015              Denver
591  conventional       2015              Denver
592  conventional       2015              Denver
593  conventional       2015              Denver
594  conventional       2015              Denver
595  conventional       2015              Denver
596  conventional       2015              Denver
597  conventional       2015              Denver
598  conventional       2015              Denver
599  conventional       2015              Denver
600  conventional       2015              Denver
601  conventional       2015              Denver
602  conventional       2015              Denver
603  conventional       2015              Denver
604  conventional       2015              Denver
605  conventional       2015              Denver
606  conventional       2015              Denver
607  conventional       2015              Denver
608  conventional       2015              Denver
609  conventional       2015              Denver
610  conventional       2015              Denver
611  conventional       2015              Denver
612  conventional       2015              Denver
613  conventional       2015              Denver
614  conventional       2015              Denver
615  conventional       2015              Denver
616  conventional       2015              Denver
617  conventional       2015              Denver
618  conventional       2015              Denver
619  conventional       2015              Denver
620  conventional       2015              Denver
621  conventional       2015              Denver
622  conventional       2015              Denver
623  conventional       2015              Denver
624  conventional       2015              Denver
625  conventional       2015             Detroit
626  conventional       2015             Detroit
627  conventional       2015             Detroit
628  conventional       2015             Detroit
629  conventional       2015             Detroit
630  conventional       2015             Detroit
631  conventional       2015             Detroit
632  conventional       2015             Detroit
633  conventional       2015             Detroit
634  conventional       2015             Detroit
635  conventional       2015             Detroit
636  conventional       2015             Detroit
637  conventional       2015             Detroit
638  conventional       2015             Detroit
639  conventional       2015             Detroit
640  conventional       2015             Detroit
641  conventional       2015             Detroit
642  conventional       2015             Detroit
643  conventional       2015             Detroit
644  conventional       2015             Detroit
645  conventional       2015             Detroit
646  conventional       2015             Detroit
647  conventional       2015             Detroit
648  conventional       2015             Detroit
649  conventional       2015             Detroit
650  conventional       2015             Detroit
651  conventional       2015             Detroit
652  conventional       2015             Detroit
653  conventional       2015             Detroit
654  conventional       2015             Detroit
655  conventional       2015             Detroit
656  conventional       2015             Detroit
657  conventional       2015             Detroit
658  conventional       2015             Detroit
659  conventional       2015             Detroit
660  conventional       2015             Detroit
661  conventional       2015             Detroit
662  conventional       2015             Detroit
663  conventional       2015             Detroit
664  conventional       2015             Detroit
665  conventional       2015             Detroit
666  conventional       2015             Detroit
667  conventional       2015             Detroit
668  conventional       2015             Detroit
669  conventional       2015             Detroit
670  conventional       2015             Detroit
671  conventional       2015             Detroit
672  conventional       2015             Detroit
673  conventional       2015             Detroit
674  conventional       2015             Detroit
675  conventional       2015             Detroit
676  conventional       2015             Detroit
677  conventional       2015         GrandRapids
678  conventional       2015         GrandRapids
679  conventional       2015         GrandRapids
680  conventional       2015         GrandRapids
681  conventional       2015         GrandRapids
682  conventional       2015         GrandRapids
683  conventional       2015         GrandRapids
684  conventional       2015         GrandRapids
685  conventional       2015         GrandRapids
686  conventional       2015         GrandRapids
687  conventional       2015         GrandRapids
688  conventional       2015         GrandRapids
689  conventional       2015         GrandRapids
690  conventional       2015         GrandRapids
691  conventional       2015         GrandRapids
692  conventional       2015         GrandRapids
693  conventional       2015         GrandRapids
694  conventional       2015         GrandRapids
695  conventional       2015         GrandRapids
696  conventional       2015         GrandRapids
697  conventional       2015         GrandRapids
698  conventional       2015         GrandRapids
699  conventional       2015         GrandRapids
700  conventional       2015         GrandRapids
701  conventional       2015         GrandRapids
702  conventional       2015         GrandRapids
703  conventional       2015         GrandRapids
704  conventional       2015         GrandRapids
705  conventional       2015         GrandRapids
706  conventional       2015         GrandRapids
707  conventional       2015         GrandRapids
708  conventional       2015         GrandRapids
709  conventional       2015         GrandRapids
710  conventional       2015         GrandRapids
711  conventional       2015         GrandRapids
712  conventional       2015         GrandRapids
713  conventional       2015         GrandRapids
714  conventional       2015         GrandRapids
715  conventional       2015         GrandRapids
716  conventional       2015         GrandRapids
717  conventional       2015         GrandRapids
718  conventional       2015         GrandRapids
719  conventional       2015         GrandRapids
720  conventional       2015         GrandRapids
721  conventional       2015         GrandRapids
722  conventional       2015         GrandRapids
723  conventional       2015         GrandRapids
724  conventional       2015         GrandRapids
725  conventional       2015         GrandRapids
726  conventional       2015         GrandRapids
727  conventional       2015         GrandRapids
728  conventional       2015         GrandRapids
729  conventional       2015          GreatLakes
730  conventional       2015          GreatLakes
731  conventional       2015          GreatLakes
732  conventional       2015          GreatLakes
733  conventional       2015          GreatLakes
734  conventional       2015          GreatLakes
735  conventional       2015          GreatLakes
736  conventional       2015          GreatLakes
737  conventional       2015          GreatLakes
738  conventional       2015          GreatLakes
739  conventional       2015          GreatLakes
740  conventional       2015          GreatLakes
741  conventional       2015          GreatLakes
742  conventional       2015          GreatLakes
743  conventional       2015          GreatLakes
744  conventional       2015          GreatLakes
745  conventional       2015          GreatLakes
746  conventional       2015          GreatLakes
747  conventional       2015          GreatLakes
748  conventional       2015          GreatLakes
749  conventional       2015          GreatLakes
750  conventional       2015          GreatLakes
751  conventional       2015          GreatLakes
752  conventional       2015          GreatLakes
753  conventional       2015          GreatLakes
754  conventional       2015          GreatLakes
755  conventional       2015          GreatLakes
756  conventional       2015          GreatLakes
757  conventional       2015          GreatLakes
758  conventional       2015          GreatLakes
759  conventional       2015          GreatLakes
760  conventional       2015          GreatLakes
761  conventional       2015          GreatLakes
762  conventional       2015          GreatLakes
763  conventional       2015          GreatLakes
764  conventional       2015          GreatLakes
765  conventional       2015          GreatLakes
766  conventional       2015          GreatLakes
767  conventional       2015          GreatLakes
768  conventional       2015          GreatLakes
769  conventional       2015          GreatLakes
770  conventional       2015          GreatLakes
771  conventional       2015          GreatLakes
772  conventional       2015          GreatLakes
773  conventional       2015          GreatLakes
774  conventional       2015          GreatLakes
775  conventional       2015          GreatLakes
776  conventional       2015          GreatLakes
777  conventional       2015          GreatLakes
778  conventional       2015          GreatLakes
779  conventional       2015          GreatLakes
780  conventional       2015          GreatLakes
781  conventional       2015  HarrisburgScranton
782  conventional       2015  HarrisburgScranton
783  conventional       2015  HarrisburgScranton
784  conventional       2015  HarrisburgScranton
785  conventional       2015  HarrisburgScranton
786  conventional       2015  HarrisburgScranton
787  conventional       2015  HarrisburgScranton
788  conventional       2015  HarrisburgScranton
789  conventional       2015  HarrisburgScranton
790  conventional       2015  HarrisburgScranton
791  conventional       2015  HarrisburgScranton
792  conventional       2015  HarrisburgScranton
793  conventional       2015  HarrisburgScranton
794  conventional       2015  HarrisburgScranton
795  conventional       2015  HarrisburgScranton
796  conventional       2015  HarrisburgScranton
797  conventional       2015  HarrisburgScranton
798  conventional       2015  HarrisburgScranton
799  conventional       2015  HarrisburgScranton
800  conventional       2015  HarrisburgScranton
801  conventional       2015  HarrisburgScranton
802  conventional       2015  HarrisburgScranton
803  conventional       2015  HarrisburgScranton
804  conventional       2015  HarrisburgScranton
805  conventional       2015  HarrisburgScranton
806  conventional       2015  HarrisburgScranton
807  conventional       2015  HarrisburgScranton
808  conventional       2015  HarrisburgScranton
809  conventional       2015  HarrisburgScranton
810  conventional       2015  HarrisburgScranton
811  conventional       2015  HarrisburgScranton
812  conventional       2015  HarrisburgScranton
813  conventional       2015  HarrisburgScranton
814  conventional       2015  HarrisburgScranton
815  conventional       2015  HarrisburgScranton
816  conventional       2015  HarrisburgScranton
817  conventional       2015  HarrisburgScranton
818  conventional       2015  HarrisburgScranton
819  conventional       2015  HarrisburgScranton
820  conventional       2015  HarrisburgScranton
821  conventional       2015  HarrisburgScranton
822  conventional       2015  HarrisburgScranton
823  conventional       2015  HarrisburgScranton
824  conventional       2015  HarrisburgScranton
825  conventional       2015  HarrisburgScranton
826  conventional       2015  HarrisburgScranton
827  conventional       2015  HarrisburgScranton
828  conventional       2015  HarrisburgScranton
829  conventional       2015  HarrisburgScranton
830  conventional       2015  HarrisburgScranton
831  conventional       2015  HarrisburgScranton
832  conventional       2015  HarrisburgScranton
833  conventional       2015 HartfordSpringfield
834  conventional       2015 HartfordSpringfield
835  conventional       2015 HartfordSpringfield
836  conventional       2015 HartfordSpringfield
837  conventional       2015 HartfordSpringfield
838  conventional       2015 HartfordSpringfield
839  conventional       2015 HartfordSpringfield
840  conventional       2015 HartfordSpringfield
841  conventional       2015 HartfordSpringfield
842  conventional       2015 HartfordSpringfield
843  conventional       2015 HartfordSpringfield
844  conventional       2015 HartfordSpringfield
845  conventional       2015 HartfordSpringfield
846  conventional       2015 HartfordSpringfield
847  conventional       2015 HartfordSpringfield
848  conventional       2015 HartfordSpringfield
849  conventional       2015 HartfordSpringfield
850  conventional       2015 HartfordSpringfield
851  conventional       2015 HartfordSpringfield
852  conventional       2015 HartfordSpringfield
853  conventional       2015 HartfordSpringfield
854  conventional       2015 HartfordSpringfield
855  conventional       2015 HartfordSpringfield
856  conventional       2015 HartfordSpringfield
857  conventional       2015 HartfordSpringfield
858  conventional       2015 HartfordSpringfield
859  conventional       2015 HartfordSpringfield
860  conventional       2015 HartfordSpringfield
861  conventional       2015 HartfordSpringfield
862  conventional       2015 HartfordSpringfield
863  conventional       2015 HartfordSpringfield
864  conventional       2015 HartfordSpringfield
865  conventional       2015 HartfordSpringfield
866  conventional       2015 HartfordSpringfield
867  conventional       2015 HartfordSpringfield
868  conventional       2015 HartfordSpringfield
869  conventional       2015 HartfordSpringfield
870  conventional       2015 HartfordSpringfield
871  conventional       2015 HartfordSpringfield
872  conventional       2015 HartfordSpringfield
873  conventional       2015 HartfordSpringfield
874  conventional       2015 HartfordSpringfield
875  conventional       2015 HartfordSpringfield
876  conventional       2015 HartfordSpringfield
877  conventional       2015 HartfordSpringfield
878  conventional       2015 HartfordSpringfield
879  conventional       2015 HartfordSpringfield
880  conventional       2015 HartfordSpringfield
881  conventional       2015 HartfordSpringfield
882  conventional       2015 HartfordSpringfield
883  conventional       2015 HartfordSpringfield
884  conventional       2015 HartfordSpringfield
885  conventional       2015             Houston
886  conventional       2015             Houston
887  conventional       2015             Houston
888  conventional       2015             Houston
889  conventional       2015             Houston
890  conventional       2015             Houston
891  conventional       2015             Houston
892  conventional       2015             Houston
893  conventional       2015             Houston
894  conventional       2015             Houston
895  conventional       2015             Houston
896  conventional       2015             Houston
897  conventional       2015             Houston
898  conventional       2015             Houston
899  conventional       2015             Houston
900  conventional       2015             Houston
901  conventional       2015             Houston
902  conventional       2015             Houston
903  conventional       2015             Houston
904  conventional       2015             Houston
905  conventional       2015             Houston
906  conventional       2015             Houston
907  conventional       2015             Houston
908  conventional       2015             Houston
909  conventional       2015             Houston
910  conventional       2015             Houston
911  conventional       2015             Houston
912  conventional       2015             Houston
913  conventional       2015             Houston
914  conventional       2015             Houston
915  conventional       2015             Houston
916  conventional       2015             Houston
917  conventional       2015             Houston
918  conventional       2015             Houston
919  conventional       2015             Houston
920  conventional       2015             Houston
921  conventional       2015             Houston
922  conventional       2015             Houston
923  conventional       2015             Houston
924  conventional       2015             Houston
925  conventional       2015             Houston
926  conventional       2015             Houston
927  conventional       2015             Houston
928  conventional       2015             Houston
929  conventional       2015             Houston
930  conventional       2015             Houston
931  conventional       2015             Houston
932  conventional       2015             Houston
933  conventional       2015             Houston
934  conventional       2015             Houston
935  conventional       2015             Houston
936  conventional       2015             Houston
937  conventional       2015        Indianapolis
938  conventional       2015        Indianapolis
939  conventional       2015        Indianapolis
940  conventional       2015        Indianapolis
941  conventional       2015        Indianapolis
942  conventional       2015        Indianapolis
943  conventional       2015        Indianapolis
944  conventional       2015        Indianapolis
945  conventional       2015        Indianapolis
946  conventional       2015        Indianapolis
947  conventional       2015        Indianapolis
948  conventional       2015        Indianapolis
949  conventional       2015        Indianapolis
950  conventional       2015        Indianapolis
951  conventional       2015        Indianapolis
952  conventional       2015        Indianapolis
953  conventional       2015        Indianapolis
954  conventional       2015        Indianapolis
955  conventional       2015        Indianapolis
956  conventional       2015        Indianapolis
957  conventional       2015        Indianapolis
958  conventional       2015        Indianapolis
959  conventional       2015        Indianapolis
960  conventional       2015        Indianapolis
961  conventional       2015        Indianapolis
962  conventional       2015        Indianapolis
963  conventional       2015        Indianapolis
964  conventional       2015        Indianapolis
965  conventional       2015        Indianapolis
966  conventional       2015        Indianapolis
967  conventional       2015        Indianapolis
968  conventional       2015        Indianapolis
969  conventional       2015        Indianapolis
970  conventional       2015        Indianapolis
971  conventional       2015        Indianapolis
972  conventional       2015        Indianapolis
973  conventional       2015        Indianapolis
974  conventional       2015        Indianapolis
975  conventional       2015        Indianapolis
976  conventional       2015        Indianapolis
977  conventional       2015        Indianapolis
978  conventional       2015        Indianapolis
979  conventional       2015        Indianapolis
980  conventional       2015        Indianapolis
981  conventional       2015        Indianapolis
982  conventional       2015        Indianapolis
983  conventional       2015        Indianapolis
984  conventional       2015        Indianapolis
985  conventional       2015        Indianapolis
986  conventional       2015        Indianapolis
987  conventional       2015        Indianapolis
988  conventional       2015        Indianapolis
989  conventional       2015        Jacksonville
990  conventional       2015        Jacksonville
991  conventional       2015        Jacksonville
992  conventional       2015        Jacksonville
993  conventional       2015        Jacksonville
994  conventional       2015        Jacksonville
995  conventional       2015        Jacksonville
996  conventional       2015        Jacksonville
997  conventional       2015        Jacksonville
998  conventional       2015        Jacksonville
999  conventional       2015        Jacksonville
1000 conventional       2015        Jacksonville
1001 conventional       2015        Jacksonville
1002 conventional       2015        Jacksonville
1003 conventional       2015        Jacksonville
1004 conventional       2015        Jacksonville
1005 conventional       2015        Jacksonville
1006 conventional       2015        Jacksonville
1007 conventional       2015        Jacksonville
1008 conventional       2015        Jacksonville
1009 conventional       2015        Jacksonville
1010 conventional       2015        Jacksonville
1011 conventional       2015        Jacksonville
1012 conventional       2015        Jacksonville
1013 conventional       2015        Jacksonville
1014 conventional       2015        Jacksonville
1015 conventional       2015        Jacksonville
1016 conventional       2015        Jacksonville
1017 conventional       2015        Jacksonville
1018 conventional       2015        Jacksonville
1019 conventional       2015        Jacksonville
1020 conventional       2015        Jacksonville
1021 conventional       2015        Jacksonville
1022 conventional       2015        Jacksonville
1023 conventional       2015        Jacksonville
1024 conventional       2015        Jacksonville
1025 conventional       2015        Jacksonville
1026 conventional       2015        Jacksonville
1027 conventional       2015        Jacksonville
1028 conventional       2015        Jacksonville
1029 conventional       2015        Jacksonville
1030 conventional       2015        Jacksonville
1031 conventional       2015        Jacksonville
1032 conventional       2015        Jacksonville
1033 conventional       2015        Jacksonville
1034 conventional       2015        Jacksonville
1035 conventional       2015        Jacksonville
1036 conventional       2015        Jacksonville
1037 conventional       2015        Jacksonville
1038 conventional       2015        Jacksonville
1039 conventional       2015        Jacksonville
1040 conventional       2015        Jacksonville
1041 conventional       2015            LasVegas
1042 conventional       2015            LasVegas
1043 conventional       2015            LasVegas
1044 conventional       2015            LasVegas
1045 conventional       2015            LasVegas
1046 conventional       2015            LasVegas
1047 conventional       2015            LasVegas
1048 conventional       2015            LasVegas
1049 conventional       2015            LasVegas
1050 conventional       2015            LasVegas
1051 conventional       2015            LasVegas
1052 conventional       2015            LasVegas
1053 conventional       2015            LasVegas
1054 conventional       2015            LasVegas
1055 conventional       2015            LasVegas
1056 conventional       2015            LasVegas
1057 conventional       2015            LasVegas
1058 conventional       2015            LasVegas
1059 conventional       2015            LasVegas
1060 conventional       2015            LasVegas
1061 conventional       2015            LasVegas
1062 conventional       2015            LasVegas
1063 conventional       2015            LasVegas
1064 conventional       2015            LasVegas
1065 conventional       2015            LasVegas
1066 conventional       2015            LasVegas
1067 conventional       2015            LasVegas
1068 conventional       2015            LasVegas
1069 conventional       2015            LasVegas
1070 conventional       2015            LasVegas
1071 conventional       2015            LasVegas
1072 conventional       2015            LasVegas
1073 conventional       2015            LasVegas
1074 conventional       2015            LasVegas
1075 conventional       2015            LasVegas
1076 conventional       2015            LasVegas
1077 conventional       2015            LasVegas
1078 conventional       2015            LasVegas
1079 conventional       2015            LasVegas
1080 conventional       2015            LasVegas
1081 conventional       2015            LasVegas
1082 conventional       2015            LasVegas
1083 conventional       2015            LasVegas
1084 conventional       2015            LasVegas
1085 conventional       2015            LasVegas
1086 conventional       2015            LasVegas
1087 conventional       2015            LasVegas
1088 conventional       2015            LasVegas
1089 conventional       2015            LasVegas
1090 conventional       2015            LasVegas
1091 conventional       2015            LasVegas
1092 conventional       2015            LasVegas
1093 conventional       2015          LosAngeles
1094 conventional       2015          LosAngeles
1095 conventional       2015          LosAngeles
1096 conventional       2015          LosAngeles
1097 conventional       2015          LosAngeles
1098 conventional       2015          LosAngeles
1099 conventional       2015          LosAngeles
1100 conventional       2015          LosAngeles
1101 conventional       2015          LosAngeles
1102 conventional       2015          LosAngeles
1103 conventional       2015          LosAngeles
1104 conventional       2015          LosAngeles
1105 conventional       2015          LosAngeles
1106 conventional       2015          LosAngeles
1107 conventional       2015          LosAngeles
1108 conventional       2015          LosAngeles
1109 conventional       2015          LosAngeles
1110 conventional       2015          LosAngeles
1111 conventional       2015          LosAngeles
1112 conventional       2015          LosAngeles
1113 conventional       2015          LosAngeles
1114 conventional       2015          LosAngeles
1115 conventional       2015          LosAngeles
1116 conventional       2015          LosAngeles
1117 conventional       2015          LosAngeles
1118 conventional       2015          LosAngeles
1119 conventional       2015          LosAngeles
1120 conventional       2015          LosAngeles
1121 conventional       2015          LosAngeles
1122 conventional       2015          LosAngeles
1123 conventional       2015          LosAngeles
1124 conventional       2015          LosAngeles
1125 conventional       2015          LosAngeles
1126 conventional       2015          LosAngeles
1127 conventional       2015          LosAngeles
1128 conventional       2015          LosAngeles
1129 conventional       2015          LosAngeles
1130 conventional       2015          LosAngeles
1131 conventional       2015          LosAngeles
1132 conventional       2015          LosAngeles
1133 conventional       2015          LosAngeles
1134 conventional       2015          LosAngeles
1135 conventional       2015          LosAngeles
1136 conventional       2015          LosAngeles
1137 conventional       2015          LosAngeles
1138 conventional       2015          LosAngeles
1139 conventional       2015          LosAngeles
1140 conventional       2015          LosAngeles
1141 conventional       2015          LosAngeles
1142 conventional       2015          LosAngeles
1143 conventional       2015          LosAngeles
1144 conventional       2015          LosAngeles
1145 conventional       2015          Louisville
1146 conventional       2015          Louisville
1147 conventional       2015          Louisville
1148 conventional       2015          Louisville
1149 conventional       2015          Louisville
1150 conventional       2015          Louisville
1151 conventional       2015          Louisville
1152 conventional       2015          Louisville
1153 conventional       2015          Louisville
1154 conventional       2015          Louisville
1155 conventional       2015          Louisville
1156 conventional       2015          Louisville
1157 conventional       2015          Louisville
1158 conventional       2015          Louisville
1159 conventional       2015          Louisville
1160 conventional       2015          Louisville
1161 conventional       2015          Louisville
1162 conventional       2015          Louisville
1163 conventional       2015          Louisville
1164 conventional       2015          Louisville
1165 conventional       2015          Louisville
1166 conventional       2015          Louisville
1167 conventional       2015          Louisville
1168 conventional       2015          Louisville
1169 conventional       2015          Louisville
1170 conventional       2015          Louisville
1171 conventional       2015          Louisville
1172 conventional       2015          Louisville
1173 conventional       2015          Louisville
1174 conventional       2015          Louisville
1175 conventional       2015          Louisville
1176 conventional       2015          Louisville
1177 conventional       2015          Louisville
1178 conventional       2015          Louisville
1179 conventional       2015          Louisville
1180 conventional       2015          Louisville
1181 conventional       2015          Louisville
1182 conventional       2015          Louisville
1183 conventional       2015          Louisville
1184 conventional       2015          Louisville
1185 conventional       2015          Louisville
1186 conventional       2015          Louisville
1187 conventional       2015          Louisville
1188 conventional       2015          Louisville
1189 conventional       2015          Louisville
1190 conventional       2015          Louisville
1191 conventional       2015          Louisville
1192 conventional       2015          Louisville
1193 conventional       2015          Louisville
1194 conventional       2015          Louisville
1195 conventional       2015          Louisville
1196 conventional       2015          Louisville
1197 conventional       2015   MiamiFtLauderdale
1198 conventional       2015   MiamiFtLauderdale
1199 conventional       2015   MiamiFtLauderdale
1200 conventional       2015   MiamiFtLauderdale
1201 conventional       2015   MiamiFtLauderdale
1202 conventional       2015   MiamiFtLauderdale
1203 conventional       2015   MiamiFtLauderdale
1204 conventional       2015   MiamiFtLauderdale
1205 conventional       2015   MiamiFtLauderdale
1206 conventional       2015   MiamiFtLauderdale
1207 conventional       2015   MiamiFtLauderdale
1208 conventional       2015   MiamiFtLauderdale
1209 conventional       2015   MiamiFtLauderdale
1210 conventional       2015   MiamiFtLauderdale
1211 conventional       2015   MiamiFtLauderdale
1212 conventional       2015   MiamiFtLauderdale
1213 conventional       2015   MiamiFtLauderdale
1214 conventional       2015   MiamiFtLauderdale
1215 conventional       2015   MiamiFtLauderdale
1216 conventional       2015   MiamiFtLauderdale
1217 conventional       2015   MiamiFtLauderdale
1218 conventional       2015   MiamiFtLauderdale
1219 conventional       2015   MiamiFtLauderdale
1220 conventional       2015   MiamiFtLauderdale
1221 conventional       2015   MiamiFtLauderdale
1222 conventional       2015   MiamiFtLauderdale
1223 conventional       2015   MiamiFtLauderdale
1224 conventional       2015   MiamiFtLauderdale
1225 conventional       2015   MiamiFtLauderdale
1226 conventional       2015   MiamiFtLauderdale
1227 conventional       2015   MiamiFtLauderdale
1228 conventional       2015   MiamiFtLauderdale
1229 conventional       2015   MiamiFtLauderdale
1230 conventional       2015   MiamiFtLauderdale
1231 conventional       2015   MiamiFtLauderdale
1232 conventional       2015   MiamiFtLauderdale
1233 conventional       2015   MiamiFtLauderdale
1234 conventional       2015   MiamiFtLauderdale
1235 conventional       2015   MiamiFtLauderdale
1236 conventional       2015   MiamiFtLauderdale
1237 conventional       2015   MiamiFtLauderdale
1238 conventional       2015   MiamiFtLauderdale
1239 conventional       2015   MiamiFtLauderdale
1240 conventional       2015   MiamiFtLauderdale
1241 conventional       2015   MiamiFtLauderdale
1242 conventional       2015   MiamiFtLauderdale
1243 conventional       2015   MiamiFtLauderdale
1244 conventional       2015   MiamiFtLauderdale
1245 conventional       2015   MiamiFtLauderdale
1246 conventional       2015   MiamiFtLauderdale
1247 conventional       2015   MiamiFtLauderdale
1248 conventional       2015   MiamiFtLauderdale
1249 conventional       2015            Midsouth
1250 conventional       2015            Midsouth
1251 conventional       2015            Midsouth
1252 conventional       2015            Midsouth
1253 conventional       2015            Midsouth
1254 conventional       2015            Midsouth
1255 conventional       2015            Midsouth
1256 conventional       2015            Midsouth
1257 conventional       2015            Midsouth
1258 conventional       2015            Midsouth
1259 conventional       2015            Midsouth
1260 conventional       2015            Midsouth
1261 conventional       2015            Midsouth
1262 conventional       2015            Midsouth
1263 conventional       2015            Midsouth
1264 conventional       2015            Midsouth
1265 conventional       2015            Midsouth
1266 conventional       2015            Midsouth
1267 conventional       2015            Midsouth
1268 conventional       2015            Midsouth
1269 conventional       2015            Midsouth
1270 conventional       2015            Midsouth
1271 conventional       2015            Midsouth
1272 conventional       2015            Midsouth
1273 conventional       2015            Midsouth
1274 conventional       2015            Midsouth
1275 conventional       2015            Midsouth
1276 conventional       2015            Midsouth
1277 conventional       2015            Midsouth
1278 conventional       2015            Midsouth
1279 conventional       2015            Midsouth
1280 conventional       2015            Midsouth
1281 conventional       2015            Midsouth
1282 conventional       2015            Midsouth
1283 conventional       2015            Midsouth
1284 conventional       2015            Midsouth
1285 conventional       2015            Midsouth
1286 conventional       2015            Midsouth
1287 conventional       2015            Midsouth
1288 conventional       2015            Midsouth
1289 conventional       2015            Midsouth
1290 conventional       2015            Midsouth
1291 conventional       2015            Midsouth
1292 conventional       2015            Midsouth
1293 conventional       2015            Midsouth
1294 conventional       2015            Midsouth
1295 conventional       2015            Midsouth
1296 conventional       2015            Midsouth
1297 conventional       2015            Midsouth
1298 conventional       2015            Midsouth
1299 conventional       2015            Midsouth
1300 conventional       2015            Midsouth
1301 conventional       2015           Nashville
1302 conventional       2015           Nashville
1303 conventional       2015           Nashville
1304 conventional       2015           Nashville
1305 conventional       2015           Nashville
1306 conventional       2015           Nashville
1307 conventional       2015           Nashville
1308 conventional       2015           Nashville
1309 conventional       2015           Nashville
1310 conventional       2015           Nashville
1311 conventional       2015           Nashville
1312 conventional       2015           Nashville
1313 conventional       2015           Nashville
1314 conventional       2015           Nashville
1315 conventional       2015           Nashville
1316 conventional       2015           Nashville
1317 conventional       2015           Nashville
1318 conventional       2015           Nashville
1319 conventional       2015           Nashville
1320 conventional       2015           Nashville
1321 conventional       2015           Nashville
1322 conventional       2015           Nashville
1323 conventional       2015           Nashville
1324 conventional       2015           Nashville
1325 conventional       2015           Nashville
1326 conventional       2015           Nashville
1327 conventional       2015           Nashville
1328 conventional       2015           Nashville
1329 conventional       2015           Nashville
1330 conventional       2015           Nashville
1331 conventional       2015           Nashville
1332 conventional       2015           Nashville
1333 conventional       2015           Nashville
1334 conventional       2015           Nashville
1335 conventional       2015           Nashville
1336 conventional       2015           Nashville
1337 conventional       2015           Nashville
1338 conventional       2015           Nashville
1339 conventional       2015           Nashville
1340 conventional       2015           Nashville
1341 conventional       2015           Nashville
1342 conventional       2015           Nashville
1343 conventional       2015           Nashville
1344 conventional       2015           Nashville
1345 conventional       2015           Nashville
1346 conventional       2015           Nashville
1347 conventional       2015           Nashville
1348 conventional       2015           Nashville
1349 conventional       2015           Nashville
1350 conventional       2015           Nashville
1351 conventional       2015           Nashville
1352 conventional       2015           Nashville
1353 conventional       2015    NewOrleansMobile
1354 conventional       2015    NewOrleansMobile
1355 conventional       2015    NewOrleansMobile
1356 conventional       2015    NewOrleansMobile
1357 conventional       2015    NewOrleansMobile
1358 conventional       2015    NewOrleansMobile
1359 conventional       2015    NewOrleansMobile
1360 conventional       2015    NewOrleansMobile
1361 conventional       2015    NewOrleansMobile
1362 conventional       2015    NewOrleansMobile
1363 conventional       2015    NewOrleansMobile
1364 conventional       2015    NewOrleansMobile
1365 conventional       2015    NewOrleansMobile
1366 conventional       2015    NewOrleansMobile
1367 conventional       2015    NewOrleansMobile
1368 conventional       2015    NewOrleansMobile
1369 conventional       2015    NewOrleansMobile
1370 conventional       2015    NewOrleansMobile
1371 conventional       2015    NewOrleansMobile
1372 conventional       2015    NewOrleansMobile
1373 conventional       2015    NewOrleansMobile
1374 conventional       2015    NewOrleansMobile
1375 conventional       2015    NewOrleansMobile
1376 conventional       2015    NewOrleansMobile
1377 conventional       2015    NewOrleansMobile
1378 conventional       2015    NewOrleansMobile
1379 conventional       2015    NewOrleansMobile
1380 conventional       2015    NewOrleansMobile
1381 conventional       2015    NewOrleansMobile
1382 conventional       2015    NewOrleansMobile
1383 conventional       2015    NewOrleansMobile
1384 conventional       2015    NewOrleansMobile
1385 conventional       2015    NewOrleansMobile
1386 conventional       2015    NewOrleansMobile
1387 conventional       2015    NewOrleansMobile
1388 conventional       2015    NewOrleansMobile
1389 conventional       2015    NewOrleansMobile
1390 conventional       2015    NewOrleansMobile
1391 conventional       2015    NewOrleansMobile
1392 conventional       2015    NewOrleansMobile
1393 conventional       2015    NewOrleansMobile
1394 conventional       2015    NewOrleansMobile
1395 conventional       2015    NewOrleansMobile
1396 conventional       2015    NewOrleansMobile
1397 conventional       2015    NewOrleansMobile
1398 conventional       2015    NewOrleansMobile
1399 conventional       2015    NewOrleansMobile
1400 conventional       2015    NewOrleansMobile
1401 conventional       2015    NewOrleansMobile
1402 conventional       2015    NewOrleansMobile
1403 conventional       2015    NewOrleansMobile
1404 conventional       2015    NewOrleansMobile
1405 conventional       2015             NewYork
1406 conventional       2015             NewYork
1407 conventional       2015             NewYork
1408 conventional       2015             NewYork
1409 conventional       2015             NewYork
1410 conventional       2015             NewYork
1411 conventional       2015             NewYork
1412 conventional       2015             NewYork
1413 conventional       2015             NewYork
1414 conventional       2015             NewYork
1415 conventional       2015             NewYork
1416 conventional       2015             NewYork
1417 conventional       2015             NewYork
1418 conventional       2015             NewYork
1419 conventional       2015             NewYork
1420 conventional       2015             NewYork
1421 conventional       2015             NewYork
1422 conventional       2015             NewYork
1423 conventional       2015             NewYork
1424 conventional       2015             NewYork
1425 conventional       2015             NewYork
1426 conventional       2015             NewYork
1427 conventional       2015             NewYork
1428 conventional       2015             NewYork
1429 conventional       2015             NewYork
1430 conventional       2015             NewYork
1431 conventional       2015             NewYork
1432 conventional       2015             NewYork
1433 conventional       2015             NewYork
1434 conventional       2015             NewYork
1435 conventional       2015             NewYork
1436 conventional       2015             NewYork
1437 conventional       2015             NewYork
1438 conventional       2015             NewYork
1439 conventional       2015             NewYork
1440 conventional       2015             NewYork
1441 conventional       2015             NewYork
1442 conventional       2015             NewYork
1443 conventional       2015             NewYork
1444 conventional       2015             NewYork
1445 conventional       2015             NewYork
1446 conventional       2015             NewYork
1447 conventional       2015             NewYork
1448 conventional       2015             NewYork
1449 conventional       2015             NewYork
1450 conventional       2015             NewYork
1451 conventional       2015             NewYork
1452 conventional       2015             NewYork
1453 conventional       2015             NewYork
1454 conventional       2015             NewYork
1455 conventional       2015             NewYork
1456 conventional       2015             NewYork
1457 conventional       2015           Northeast
1458 conventional       2015           Northeast
1459 conventional       2015           Northeast
1460 conventional       2015           Northeast
1461 conventional       2015           Northeast
1462 conventional       2015           Northeast
1463 conventional       2015           Northeast
1464 conventional       2015           Northeast
1465 conventional       2015           Northeast
1466 conventional       2015           Northeast
1467 conventional       2015           Northeast
1468 conventional       2015           Northeast
1469 conventional       2015           Northeast
1470 conventional       2015           Northeast
1471 conventional       2015           Northeast
1472 conventional       2015           Northeast
1473 conventional       2015           Northeast
1474 conventional       2015           Northeast
1475 conventional       2015           Northeast
1476 conventional       2015           Northeast
1477 conventional       2015           Northeast
1478 conventional       2015           Northeast
1479 conventional       2015           Northeast
1480 conventional       2015           Northeast
1481 conventional       2015           Northeast
1482 conventional       2015           Northeast
1483 conventional       2015           Northeast
1484 conventional       2015           Northeast
1485 conventional       2015           Northeast
1486 conventional       2015           Northeast
1487 conventional       2015           Northeast
1488 conventional       2015           Northeast
1489 conventional       2015           Northeast
1490 conventional       2015           Northeast
1491 conventional       2015           Northeast
1492 conventional       2015           Northeast
1493 conventional       2015           Northeast
1494 conventional       2015           Northeast
1495 conventional       2015           Northeast
1496 conventional       2015           Northeast
1497 conventional       2015           Northeast
1498 conventional       2015           Northeast
1499 conventional       2015           Northeast
1500 conventional       2015           Northeast
1501 conventional       2015           Northeast
1502 conventional       2015           Northeast
1503 conventional       2015           Northeast
1504 conventional       2015           Northeast
1505 conventional       2015           Northeast
1506 conventional       2015           Northeast
1507 conventional       2015           Northeast
1508 conventional       2015           Northeast
1509 conventional       2015  NorthernNewEngland
1510 conventional       2015  NorthernNewEngland
1511 conventional       2015  NorthernNewEngland
1512 conventional       2015  NorthernNewEngland
1513 conventional       2015  NorthernNewEngland
1514 conventional       2015  NorthernNewEngland
1515 conventional       2015  NorthernNewEngland
1516 conventional       2015  NorthernNewEngland
1517 conventional       2015  NorthernNewEngland
1518 conventional       2015  NorthernNewEngland
1519 conventional       2015  NorthernNewEngland
1520 conventional       2015  NorthernNewEngland
1521 conventional       2015  NorthernNewEngland
1522 conventional       2015  NorthernNewEngland
1523 conventional       2015  NorthernNewEngland
1524 conventional       2015  NorthernNewEngland
1525 conventional       2015  NorthernNewEngland
1526 conventional       2015  NorthernNewEngland
1527 conventional       2015  NorthernNewEngland
1528 conventional       2015  NorthernNewEngland
1529 conventional       2015  NorthernNewEngland
1530 conventional       2015  NorthernNewEngland
1531 conventional       2015  NorthernNewEngland
1532 conventional       2015  NorthernNewEngland
1533 conventional       2015  NorthernNewEngland
1534 conventional       2015  NorthernNewEngland
1535 conventional       2015  NorthernNewEngland
1536 conventional       2015  NorthernNewEngland
1537 conventional       2015  NorthernNewEngland
1538 conventional       2015  NorthernNewEngland
1539 conventional       2015  NorthernNewEngland
1540 conventional       2015  NorthernNewEngland
1541 conventional       2015  NorthernNewEngland
1542 conventional       2015  NorthernNewEngland
1543 conventional       2015  NorthernNewEngland
1544 conventional       2015  NorthernNewEngland
1545 conventional       2015  NorthernNewEngland
1546 conventional       2015  NorthernNewEngland
1547 conventional       2015  NorthernNewEngland
1548 conventional       2015  NorthernNewEngland
1549 conventional       2015  NorthernNewEngland
1550 conventional       2015  NorthernNewEngland
1551 conventional       2015  NorthernNewEngland
1552 conventional       2015  NorthernNewEngland
1553 conventional       2015  NorthernNewEngland
1554 conventional       2015  NorthernNewEngland
1555 conventional       2015  NorthernNewEngland
1556 conventional       2015  NorthernNewEngland
1557 conventional       2015  NorthernNewEngland
1558 conventional       2015  NorthernNewEngland
1559 conventional       2015  NorthernNewEngland
1560 conventional       2015  NorthernNewEngland
1561 conventional       2015             Orlando
1562 conventional       2015             Orlando
1563 conventional       2015             Orlando
1564 conventional       2015             Orlando
1565 conventional       2015             Orlando
1566 conventional       2015             Orlando
1567 conventional       2015             Orlando
1568 conventional       2015             Orlando
1569 conventional       2015             Orlando
1570 conventional       2015             Orlando
1571 conventional       2015             Orlando
1572 conventional       2015             Orlando
1573 conventional       2015             Orlando
1574 conventional       2015             Orlando
1575 conventional       2015             Orlando
1576 conventional       2015             Orlando
1577 conventional       2015             Orlando
1578 conventional       2015             Orlando
1579 conventional       2015             Orlando
1580 conventional       2015             Orlando
1581 conventional       2015             Orlando
1582 conventional       2015             Orlando
1583 conventional       2015             Orlando
1584 conventional       2015             Orlando
1585 conventional       2015             Orlando
1586 conventional       2015             Orlando
1587 conventional       2015             Orlando
1588 conventional       2015             Orlando
1589 conventional       2015             Orlando
1590 conventional       2015             Orlando
1591 conventional       2015             Orlando
1592 conventional       2015             Orlando
1593 conventional       2015             Orlando
1594 conventional       2015             Orlando
1595 conventional       2015             Orlando
1596 conventional       2015             Orlando
1597 conventional       2015             Orlando
1598 conventional       2015             Orlando
1599 conventional       2015             Orlando
1600 conventional       2015             Orlando
1601 conventional       2015             Orlando
1602 conventional       2015             Orlando
1603 conventional       2015             Orlando
1604 conventional       2015             Orlando
1605 conventional       2015             Orlando
1606 conventional       2015             Orlando
1607 conventional       2015             Orlando
1608 conventional       2015             Orlando
1609 conventional       2015             Orlando
1610 conventional       2015             Orlando
1611 conventional       2015             Orlando
1612 conventional       2015             Orlando
1613 conventional       2015        Philadelphia
1614 conventional       2015        Philadelphia
1615 conventional       2015        Philadelphia
1616 conventional       2015        Philadelphia
1617 conventional       2015        Philadelphia
1618 conventional       2015        Philadelphia
1619 conventional       2015        Philadelphia
1620 conventional       2015        Philadelphia
1621 conventional       2015        Philadelphia
1622 conventional       2015        Philadelphia
1623 conventional       2015        Philadelphia
1624 conventional       2015        Philadelphia
1625 conventional       2015        Philadelphia
1626 conventional       2015        Philadelphia
1627 conventional       2015        Philadelphia
1628 conventional       2015        Philadelphia
1629 conventional       2015        Philadelphia
1630 conventional       2015        Philadelphia
1631 conventional       2015        Philadelphia
1632 conventional       2015        Philadelphia
1633 conventional       2015        Philadelphia
1634 conventional       2015        Philadelphia
1635 conventional       2015        Philadelphia
1636 conventional       2015        Philadelphia
1637 conventional       2015        Philadelphia
1638 conventional       2015        Philadelphia
1639 conventional       2015        Philadelphia
1640 conventional       2015        Philadelphia
1641 conventional       2015        Philadelphia
1642 conventional       2015        Philadelphia
1643 conventional       2015        Philadelphia
1644 conventional       2015        Philadelphia
1645 conventional       2015        Philadelphia
1646 conventional       2015        Philadelphia
1647 conventional       2015        Philadelphia
1648 conventional       2015        Philadelphia
1649 conventional       2015        Philadelphia
1650 conventional       2015        Philadelphia
1651 conventional       2015        Philadelphia
1652 conventional       2015        Philadelphia
1653 conventional       2015        Philadelphia
1654 conventional       2015        Philadelphia
1655 conventional       2015        Philadelphia
1656 conventional       2015        Philadelphia
1657 conventional       2015        Philadelphia
1658 conventional       2015        Philadelphia
1659 conventional       2015        Philadelphia
1660 conventional       2015        Philadelphia
1661 conventional       2015        Philadelphia
1662 conventional       2015        Philadelphia
1663 conventional       2015        Philadelphia
1664 conventional       2015        Philadelphia
1665 conventional       2015       PhoenixTucson
1666 conventional       2015       PhoenixTucson
1667 conventional       2015       PhoenixTucson
1668 conventional       2015       PhoenixTucson
1669 conventional       2015       PhoenixTucson
1670 conventional       2015       PhoenixTucson
1671 conventional       2015       PhoenixTucson
1672 conventional       2015       PhoenixTucson
1673 conventional       2015       PhoenixTucson
1674 conventional       2015       PhoenixTucson
1675 conventional       2015       PhoenixTucson
1676 conventional       2015       PhoenixTucson
1677 conventional       2015       PhoenixTucson
1678 conventional       2015       PhoenixTucson
1679 conventional       2015       PhoenixTucson
1680 conventional       2015       PhoenixTucson
1681 conventional       2015       PhoenixTucson
1682 conventional       2015       PhoenixTucson
1683 conventional       2015       PhoenixTucson
1684 conventional       2015       PhoenixTucson
1685 conventional       2015       PhoenixTucson
1686 conventional       2015       PhoenixTucson
1687 conventional       2015       PhoenixTucson
1688 conventional       2015       PhoenixTucson
1689 conventional       2015       PhoenixTucson
1690 conventional       2015       PhoenixTucson
1691 conventional       2015       PhoenixTucson
1692 conventional       2015       PhoenixTucson
1693 conventional       2015       PhoenixTucson
1694 conventional       2015       PhoenixTucson
1695 conventional       2015       PhoenixTucson
1696 conventional       2015       PhoenixTucson
1697 conventional       2015       PhoenixTucson
1698 conventional       2015       PhoenixTucson
1699 conventional       2015       PhoenixTucson
1700 conventional       2015       PhoenixTucson
1701 conventional       2015       PhoenixTucson
1702 conventional       2015       PhoenixTucson
1703 conventional       2015       PhoenixTucson
1704 conventional       2015       PhoenixTucson
1705 conventional       2015       PhoenixTucson
1706 conventional       2015       PhoenixTucson
1707 conventional       2015       PhoenixTucson
1708 conventional       2015       PhoenixTucson
1709 conventional       2015       PhoenixTucson
1710 conventional       2015       PhoenixTucson
1711 conventional       2015       PhoenixTucson
1712 conventional       2015       PhoenixTucson
1713 conventional       2015       PhoenixTucson
1714 conventional       2015       PhoenixTucson
1715 conventional       2015       PhoenixTucson
1716 conventional       2015       PhoenixTucson
1717 conventional       2015          Pittsburgh
1718 conventional       2015          Pittsburgh
1719 conventional       2015          Pittsburgh
1720 conventional       2015          Pittsburgh
1721 conventional       2015          Pittsburgh
1722 conventional       2015          Pittsburgh
1723 conventional       2015          Pittsburgh
1724 conventional       2015          Pittsburgh
1725 conventional       2015          Pittsburgh
1726 conventional       2015          Pittsburgh
1727 conventional       2015          Pittsburgh
1728 conventional       2015          Pittsburgh
1729 conventional       2015          Pittsburgh
1730 conventional       2015          Pittsburgh
1731 conventional       2015          Pittsburgh
1732 conventional       2015          Pittsburgh
1733 conventional       2015          Pittsburgh
1734 conventional       2015          Pittsburgh
1735 conventional       2015          Pittsburgh
1736 conventional       2015          Pittsburgh
1737 conventional       2015          Pittsburgh
1738 conventional       2015          Pittsburgh
1739 conventional       2015          Pittsburgh
1740 conventional       2015          Pittsburgh
1741 conventional       2015          Pittsburgh
1742 conventional       2015          Pittsburgh
1743 conventional       2015          Pittsburgh
1744 conventional       2015          Pittsburgh
1745 conventional       2015          Pittsburgh
1746 conventional       2015          Pittsburgh
1747 conventional       2015          Pittsburgh
1748 conventional       2015          Pittsburgh
1749 conventional       2015          Pittsburgh
1750 conventional       2015          Pittsburgh
1751 conventional       2015          Pittsburgh
1752 conventional       2015          Pittsburgh
1753 conventional       2015          Pittsburgh
1754 conventional       2015          Pittsburgh
1755 conventional       2015          Pittsburgh
1756 conventional       2015          Pittsburgh
1757 conventional       2015          Pittsburgh
1758 conventional       2015          Pittsburgh
1759 conventional       2015          Pittsburgh
1760 conventional       2015          Pittsburgh
1761 conventional       2015          Pittsburgh
1762 conventional       2015          Pittsburgh
1763 conventional       2015          Pittsburgh
1764 conventional       2015          Pittsburgh
1765 conventional       2015          Pittsburgh
1766 conventional       2015          Pittsburgh
1767 conventional       2015          Pittsburgh
1768 conventional       2015          Pittsburgh
1769 conventional       2015              Plains
1770 conventional       2015              Plains
1771 conventional       2015              Plains
1772 conventional       2015              Plains
1773 conventional       2015              Plains
1774 conventional       2015              Plains
1775 conventional       2015              Plains
1776 conventional       2015              Plains
1777 conventional       2015              Plains
1778 conventional       2015              Plains
1779 conventional       2015              Plains
1780 conventional       2015              Plains
1781 conventional       2015              Plains
1782 conventional       2015              Plains
1783 conventional       2015              Plains
1784 conventional       2015              Plains
1785 conventional       2015              Plains
1786 conventional       2015              Plains
1787 conventional       2015              Plains
1788 conventional       2015              Plains
1789 conventional       2015              Plains
1790 conventional       2015              Plains
1791 conventional       2015              Plains
1792 conventional       2015              Plains
1793 conventional       2015              Plains
1794 conventional       2015              Plains
1795 conventional       2015              Plains
1796 conventional       2015              Plains
1797 conventional       2015              Plains
1798 conventional       2015              Plains
1799 conventional       2015              Plains
1800 conventional       2015              Plains
1801 conventional       2015              Plains
1802 conventional       2015              Plains
1803 conventional       2015              Plains
1804 conventional       2015              Plains
1805 conventional       2015              Plains
1806 conventional       2015              Plains
1807 conventional       2015              Plains
1808 conventional       2015              Plains
1809 conventional       2015              Plains
1810 conventional       2015              Plains
1811 conventional       2015              Plains
1812 conventional       2015              Plains
1813 conventional       2015              Plains
1814 conventional       2015              Plains
1815 conventional       2015              Plains
1816 conventional       2015              Plains
1817 conventional       2015              Plains
1818 conventional       2015              Plains
1819 conventional       2015              Plains
1820 conventional       2015              Plains
1821 conventional       2015            Portland
1822 conventional       2015            Portland
1823 conventional       2015            Portland
1824 conventional       2015            Portland
1825 conventional       2015            Portland
1826 conventional       2015            Portland
1827 conventional       2015            Portland
1828 conventional       2015            Portland
1829 conventional       2015            Portland
1830 conventional       2015            Portland
1831 conventional       2015            Portland
1832 conventional       2015            Portland
1833 conventional       2015            Portland
1834 conventional       2015            Portland
1835 conventional       2015            Portland
1836 conventional       2015            Portland
1837 conventional       2015            Portland
1838 conventional       2015            Portland
1839 conventional       2015            Portland
1840 conventional       2015            Portland
1841 conventional       2015            Portland
1842 conventional       2015            Portland
1843 conventional       2015            Portland
1844 conventional       2015            Portland
1845 conventional       2015            Portland
1846 conventional       2015            Portland
1847 conventional       2015            Portland
1848 conventional       2015            Portland
1849 conventional       2015            Portland
1850 conventional       2015            Portland
1851 conventional       2015            Portland
1852 conventional       2015            Portland
1853 conventional       2015            Portland
1854 conventional       2015            Portland
1855 conventional       2015            Portland
1856 conventional       2015            Portland
1857 conventional       2015            Portland
1858 conventional       2015            Portland
1859 conventional       2015            Portland
1860 conventional       2015            Portland
1861 conventional       2015            Portland
1862 conventional       2015            Portland
1863 conventional       2015            Portland
1864 conventional       2015            Portland
1865 conventional       2015            Portland
1866 conventional       2015            Portland
1867 conventional       2015            Portland
1868 conventional       2015            Portland
1869 conventional       2015            Portland
1870 conventional       2015            Portland
1871 conventional       2015            Portland
1872 conventional       2015            Portland
1873 conventional       2015   RaleighGreensboro
1874 conventional       2015   RaleighGreensboro
1875 conventional       2015   RaleighGreensboro
1876 conventional       2015   RaleighGreensboro
1877 conventional       2015   RaleighGreensboro
1878 conventional       2015   RaleighGreensboro
1879 conventional       2015   RaleighGreensboro
1880 conventional       2015   RaleighGreensboro
1881 conventional       2015   RaleighGreensboro
1882 conventional       2015   RaleighGreensboro
1883 conventional       2015   RaleighGreensboro
1884 conventional       2015   RaleighGreensboro
1885 conventional       2015   RaleighGreensboro
1886 conventional       2015   RaleighGreensboro
1887 conventional       2015   RaleighGreensboro
1888 conventional       2015   RaleighGreensboro
1889 conventional       2015   RaleighGreensboro
1890 conventional       2015   RaleighGreensboro
1891 conventional       2015   RaleighGreensboro
1892 conventional       2015   RaleighGreensboro
1893 conventional       2015   RaleighGreensboro
1894 conventional       2015   RaleighGreensboro
1895 conventional       2015   RaleighGreensboro
1896 conventional       2015   RaleighGreensboro
1897 conventional       2015   RaleighGreensboro
1898 conventional       2015   RaleighGreensboro
1899 conventional       2015   RaleighGreensboro
1900 conventional       2015   RaleighGreensboro
1901 conventional       2015   RaleighGreensboro
1902 conventional       2015   RaleighGreensboro
1903 conventional       2015   RaleighGreensboro
1904 conventional       2015   RaleighGreensboro
1905 conventional       2015   RaleighGreensboro
1906 conventional       2015   RaleighGreensboro
1907 conventional       2015   RaleighGreensboro
1908 conventional       2015   RaleighGreensboro
1909 conventional       2015   RaleighGreensboro
1910 conventional       2015   RaleighGreensboro
1911 conventional       2015   RaleighGreensboro
1912 conventional       2015   RaleighGreensboro
1913 conventional       2015   RaleighGreensboro
1914 conventional       2015   RaleighGreensboro
1915 conventional       2015   RaleighGreensboro
1916 conventional       2015   RaleighGreensboro
1917 conventional       2015   RaleighGreensboro
1918 conventional       2015   RaleighGreensboro
1919 conventional       2015   RaleighGreensboro
1920 conventional       2015   RaleighGreensboro
1921 conventional       2015   RaleighGreensboro
1922 conventional       2015   RaleighGreensboro
1923 conventional       2015   RaleighGreensboro
1924 conventional       2015   RaleighGreensboro
1925 conventional       2015     RichmondNorfolk
1926 conventional       2015     RichmondNorfolk
1927 conventional       2015     RichmondNorfolk
1928 conventional       2015     RichmondNorfolk
1929 conventional       2015     RichmondNorfolk
1930 conventional       2015     RichmondNorfolk
1931 conventional       2015     RichmondNorfolk
1932 conventional       2015     RichmondNorfolk
1933 conventional       2015     RichmondNorfolk
1934 conventional       2015     RichmondNorfolk
1935 conventional       2015     RichmondNorfolk
1936 conventional       2015     RichmondNorfolk
1937 conventional       2015     RichmondNorfolk
1938 conventional       2015     RichmondNorfolk
1939 conventional       2015     RichmondNorfolk
1940 conventional       2015     RichmondNorfolk
1941 conventional       2015     RichmondNorfolk
1942 conventional       2015     RichmondNorfolk
1943 conventional       2015     RichmondNorfolk
1944 conventional       2015     RichmondNorfolk
1945 conventional       2015     RichmondNorfolk
1946 conventional       2015     RichmondNorfolk
1947 conventional       2015     RichmondNorfolk
1948 conventional       2015     RichmondNorfolk
1949 conventional       2015     RichmondNorfolk
1950 conventional       2015     RichmondNorfolk
1951 conventional       2015     RichmondNorfolk
1952 conventional       2015     RichmondNorfolk
1953 conventional       2015     RichmondNorfolk
1954 conventional       2015     RichmondNorfolk
1955 conventional       2015     RichmondNorfolk
1956 conventional       2015     RichmondNorfolk
1957 conventional       2015     RichmondNorfolk
1958 conventional       2015     RichmondNorfolk
1959 conventional       2015     RichmondNorfolk
1960 conventional       2015     RichmondNorfolk
1961 conventional       2015     RichmondNorfolk
1962 conventional       2015     RichmondNorfolk
1963 conventional       2015     RichmondNorfolk
1964 conventional       2015     RichmondNorfolk
1965 conventional       2015     RichmondNorfolk
1966 conventional       2015     RichmondNorfolk
1967 conventional       2015     RichmondNorfolk
1968 conventional       2015     RichmondNorfolk
1969 conventional       2015     RichmondNorfolk
1970 conventional       2015     RichmondNorfolk
1971 conventional       2015     RichmondNorfolk
1972 conventional       2015     RichmondNorfolk
1973 conventional       2015     RichmondNorfolk
1974 conventional       2015     RichmondNorfolk
1975 conventional       2015     RichmondNorfolk
1976 conventional       2015     RichmondNorfolk
1977 conventional       2015             Roanoke
1978 conventional       2015             Roanoke
1979 conventional       2015             Roanoke
1980 conventional       2015             Roanoke
1981 conventional       2015             Roanoke
1982 conventional       2015             Roanoke
1983 conventional       2015             Roanoke
1984 conventional       2015             Roanoke
1985 conventional       2015             Roanoke
1986 conventional       2015             Roanoke
1987 conventional       2015             Roanoke
1988 conventional       2015             Roanoke
1989 conventional       2015             Roanoke
1990 conventional       2015             Roanoke
1991 conventional       2015             Roanoke
1992 conventional       2015             Roanoke
1993 conventional       2015             Roanoke
1994 conventional       2015             Roanoke
1995 conventional       2015             Roanoke
1996 conventional       2015             Roanoke
1997 conventional       2015             Roanoke
1998 conventional       2015             Roanoke
1999 conventional       2015             Roanoke
2000 conventional       2015             Roanoke
2001 conventional       2015             Roanoke
2002 conventional       2015             Roanoke
2003 conventional       2015             Roanoke
2004 conventional       2015             Roanoke
2005 conventional       2015             Roanoke
2006 conventional       2015             Roanoke
2007 conventional       2015             Roanoke
2008 conventional       2015             Roanoke
2009 conventional       2015             Roanoke
2010 conventional       2015             Roanoke
2011 conventional       2015             Roanoke
2012 conventional       2015             Roanoke
2013 conventional       2015             Roanoke
2014 conventional       2015             Roanoke
2015 conventional       2015             Roanoke
2016 conventional       2015             Roanoke
2017 conventional       2015             Roanoke
2018 conventional       2015             Roanoke
2019 conventional       2015             Roanoke
2020 conventional       2015             Roanoke
2021 conventional       2015             Roanoke
2022 conventional       2015             Roanoke
2023 conventional       2015             Roanoke
2024 conventional       2015             Roanoke
2025 conventional       2015             Roanoke
2026 conventional       2015             Roanoke
2027 conventional       2015             Roanoke
2028 conventional       2015             Roanoke
2029 conventional       2015          Sacramento
2030 conventional       2015          Sacramento
2031 conventional       2015          Sacramento
2032 conventional       2015          Sacramento
2033 conventional       2015          Sacramento
2034 conventional       2015          Sacramento
2035 conventional       2015          Sacramento
2036 conventional       2015          Sacramento
2037 conventional       2015          Sacramento
2038 conventional       2015          Sacramento
2039 conventional       2015          Sacramento
2040 conventional       2015          Sacramento
2041 conventional       2015          Sacramento
2042 conventional       2015          Sacramento
2043 conventional       2015          Sacramento
2044 conventional       2015          Sacramento
2045 conventional       2015          Sacramento
2046 conventional       2015          Sacramento
2047 conventional       2015          Sacramento
2048 conventional       2015          Sacramento
2049 conventional       2015          Sacramento
2050 conventional       2015          Sacramento
2051 conventional       2015          Sacramento
2052 conventional       2015          Sacramento
2053 conventional       2015          Sacramento
2054 conventional       2015          Sacramento
2055 conventional       2015          Sacramento
2056 conventional       2015          Sacramento
2057 conventional       2015          Sacramento
2058 conventional       2015          Sacramento
2059 conventional       2015          Sacramento
2060 conventional       2015          Sacramento
2061 conventional       2015          Sacramento
2062 conventional       2015          Sacramento
2063 conventional       2015          Sacramento
2064 conventional       2015          Sacramento
2065 conventional       2015          Sacramento
2066 conventional       2015          Sacramento
2067 conventional       2015          Sacramento
2068 conventional       2015          Sacramento
2069 conventional       2015          Sacramento
2070 conventional       2015          Sacramento
2071 conventional       2015          Sacramento
2072 conventional       2015          Sacramento
2073 conventional       2015          Sacramento
2074 conventional       2015          Sacramento
2075 conventional       2015          Sacramento
2076 conventional       2015          Sacramento
2077 conventional       2015          Sacramento
2078 conventional       2015          Sacramento
2079 conventional       2015          Sacramento
2080 conventional       2015          Sacramento
2081 conventional       2015            SanDiego
2082 conventional       2015            SanDiego
2083 conventional       2015            SanDiego
2084 conventional       2015            SanDiego
2085 conventional       2015            SanDiego
2086 conventional       2015            SanDiego
2087 conventional       2015            SanDiego
2088 conventional       2015            SanDiego
2089 conventional       2015            SanDiego
2090 conventional       2015            SanDiego
2091 conventional       2015            SanDiego
2092 conventional       2015            SanDiego
2093 conventional       2015            SanDiego
2094 conventional       2015            SanDiego
2095 conventional       2015            SanDiego
2096 conventional       2015            SanDiego
2097 conventional       2015            SanDiego
2098 conventional       2015            SanDiego
2099 conventional       2015            SanDiego
2100 conventional       2015            SanDiego
2101 conventional       2015            SanDiego
2102 conventional       2015            SanDiego
2103 conventional       2015            SanDiego
2104 conventional       2015            SanDiego
2105 conventional       2015            SanDiego
2106 conventional       2015            SanDiego
2107 conventional       2015            SanDiego
2108 conventional       2015            SanDiego
2109 conventional       2015            SanDiego
2110 conventional       2015            SanDiego
2111 conventional       2015            SanDiego
2112 conventional       2015            SanDiego
2113 conventional       2015            SanDiego
2114 conventional       2015            SanDiego
2115 conventional       2015            SanDiego
2116 conventional       2015            SanDiego
2117 conventional       2015            SanDiego
2118 conventional       2015            SanDiego
2119 conventional       2015            SanDiego
2120 conventional       2015            SanDiego
2121 conventional       2015            SanDiego
2122 conventional       2015            SanDiego
2123 conventional       2015            SanDiego
2124 conventional       2015            SanDiego
2125 conventional       2015            SanDiego
2126 conventional       2015            SanDiego
2127 conventional       2015            SanDiego
2128 conventional       2015            SanDiego
2129 conventional       2015            SanDiego
2130 conventional       2015            SanDiego
2131 conventional       2015            SanDiego
2132 conventional       2015            SanDiego
2133 conventional       2015        SanFrancisco
2134 conventional       2015        SanFrancisco
2135 conventional       2015        SanFrancisco
2136 conventional       2015        SanFrancisco
2137 conventional       2015        SanFrancisco
2138 conventional       2015        SanFrancisco
2139 conventional       2015        SanFrancisco
2140 conventional       2015        SanFrancisco
2141 conventional       2015        SanFrancisco
2142 conventional       2015        SanFrancisco
2143 conventional       2015        SanFrancisco
2144 conventional       2015        SanFrancisco
2145 conventional       2015        SanFrancisco
2146 conventional       2015        SanFrancisco
2147 conventional       2015        SanFrancisco
2148 conventional       2015        SanFrancisco
2149 conventional       2015        SanFrancisco
2150 conventional       2015        SanFrancisco
2151 conventional       2015        SanFrancisco
2152 conventional       2015        SanFrancisco
2153 conventional       2015        SanFrancisco
2154 conventional       2015        SanFrancisco
2155 conventional       2015        SanFrancisco
2156 conventional       2015        SanFrancisco
2157 conventional       2015        SanFrancisco
2158 conventional       2015        SanFrancisco
2159 conventional       2015        SanFrancisco
2160 conventional       2015        SanFrancisco
2161 conventional       2015        SanFrancisco
2162 conventional       2015        SanFrancisco
2163 conventional       2015        SanFrancisco
2164 conventional       2015        SanFrancisco
2165 conventional       2015        SanFrancisco
2166 conventional       2015        SanFrancisco
2167 conventional       2015        SanFrancisco
2168 conventional       2015        SanFrancisco
2169 conventional       2015        SanFrancisco
2170 conventional       2015        SanFrancisco
2171 conventional       2015        SanFrancisco
2172 conventional       2015        SanFrancisco
2173 conventional       2015        SanFrancisco
2174 conventional       2015        SanFrancisco
2175 conventional       2015        SanFrancisco
2176 conventional       2015        SanFrancisco
2177 conventional       2015        SanFrancisco
2178 conventional       2015        SanFrancisco
2179 conventional       2015        SanFrancisco
2180 conventional       2015        SanFrancisco
2181 conventional       2015        SanFrancisco
2182 conventional       2015        SanFrancisco
2183 conventional       2015        SanFrancisco
2184 conventional       2015        SanFrancisco
2185 conventional       2015             Seattle
2186 conventional       2015             Seattle
2187 conventional       2015             Seattle
2188 conventional       2015             Seattle
2189 conventional       2015             Seattle
2190 conventional       2015             Seattle
2191 conventional       2015             Seattle
2192 conventional       2015             Seattle
2193 conventional       2015             Seattle
2194 conventional       2015             Seattle
2195 conventional       2015             Seattle
2196 conventional       2015             Seattle
2197 conventional       2015             Seattle
2198 conventional       2015             Seattle
2199 conventional       2015             Seattle
2200 conventional       2015             Seattle
2201 conventional       2015             Seattle
2202 conventional       2015             Seattle
2203 conventional       2015             Seattle
2204 conventional       2015             Seattle
2205 conventional       2015             Seattle
2206 conventional       2015             Seattle
2207 conventional       2015             Seattle
2208 conventional       2015             Seattle
2209 conventional       2015             Seattle
2210 conventional       2015             Seattle
2211 conventional       2015             Seattle
2212 conventional       2015             Seattle
2213 conventional       2015             Seattle
2214 conventional       2015             Seattle
2215 conventional       2015             Seattle
2216 conventional       2015             Seattle
2217 conventional       2015             Seattle
2218 conventional       2015             Seattle
2219 conventional       2015             Seattle
2220 conventional       2015             Seattle
2221 conventional       2015             Seattle
2222 conventional       2015             Seattle
2223 conventional       2015             Seattle
2224 conventional       2015             Seattle
2225 conventional       2015             Seattle
2226 conventional       2015             Seattle
2227 conventional       2015             Seattle
2228 conventional       2015             Seattle
2229 conventional       2015             Seattle
2230 conventional       2015             Seattle
2231 conventional       2015             Seattle
2232 conventional       2015             Seattle
2233 conventional       2015             Seattle
2234 conventional       2015             Seattle
2235 conventional       2015             Seattle
2236 conventional       2015             Seattle
2237 conventional       2015       SouthCarolina
2238 conventional       2015       SouthCarolina
2239 conventional       2015       SouthCarolina
2240 conventional       2015       SouthCarolina
2241 conventional       2015       SouthCarolina
2242 conventional       2015       SouthCarolina
2243 conventional       2015       SouthCarolina
2244 conventional       2015       SouthCarolina
2245 conventional       2015       SouthCarolina
2246 conventional       2015       SouthCarolina
2247 conventional       2015       SouthCarolina
2248 conventional       2015       SouthCarolina
2249 conventional       2015       SouthCarolina
2250 conventional       2015       SouthCarolina
2251 conventional       2015       SouthCarolina
2252 conventional       2015       SouthCarolina
2253 conventional       2015       SouthCarolina
2254 conventional       2015       SouthCarolina
2255 conventional       2015       SouthCarolina
2256 conventional       2015       SouthCarolina
2257 conventional       2015       SouthCarolina
2258 conventional       2015       SouthCarolina
2259 conventional       2015       SouthCarolina
2260 conventional       2015       SouthCarolina
2261 conventional       2015       SouthCarolina
2262 conventional       2015       SouthCarolina
2263 conventional       2015       SouthCarolina
2264 conventional       2015       SouthCarolina
2265 conventional       2015       SouthCarolina
2266 conventional       2015       SouthCarolina
2267 conventional       2015       SouthCarolina
2268 conventional       2015       SouthCarolina
2269 conventional       2015       SouthCarolina
2270 conventional       2015       SouthCarolina
2271 conventional       2015       SouthCarolina
2272 conventional       2015       SouthCarolina
2273 conventional       2015       SouthCarolina
2274 conventional       2015       SouthCarolina
2275 conventional       2015       SouthCarolina
2276 conventional       2015       SouthCarolina
2277 conventional       2015       SouthCarolina
2278 conventional       2015       SouthCarolina
2279 conventional       2015       SouthCarolina
2280 conventional       2015       SouthCarolina
2281 conventional       2015       SouthCarolina
2282 conventional       2015       SouthCarolina
2283 conventional       2015       SouthCarolina
2284 conventional       2015       SouthCarolina
2285 conventional       2015       SouthCarolina
2286 conventional       2015       SouthCarolina
2287 conventional       2015       SouthCarolina
2288 conventional       2015       SouthCarolina
2289 conventional       2015        SouthCentral
2290 conventional       2015        SouthCentral
2291 conventional       2015        SouthCentral
2292 conventional       2015        SouthCentral
2293 conventional       2015        SouthCentral
2294 conventional       2015        SouthCentral
2295 conventional       2015        SouthCentral
2296 conventional       2015        SouthCentral
2297 conventional       2015        SouthCentral
2298 conventional       2015        SouthCentral
2299 conventional       2015        SouthCentral
2300 conventional       2015        SouthCentral
2301 conventional       2015        SouthCentral
2302 conventional       2015        SouthCentral
2303 conventional       2015        SouthCentral
2304 conventional       2015        SouthCentral
2305 conventional       2015        SouthCentral
2306 conventional       2015        SouthCentral
2307 conventional       2015        SouthCentral
2308 conventional       2015        SouthCentral
2309 conventional       2015        SouthCentral
2310 conventional       2015        SouthCentral
2311 conventional       2015        SouthCentral
2312 conventional       2015        SouthCentral
2313 conventional       2015        SouthCentral
2314 conventional       2015        SouthCentral
2315 conventional       2015        SouthCentral
2316 conventional       2015        SouthCentral
2317 conventional       2015        SouthCentral
2318 conventional       2015        SouthCentral
2319 conventional       2015        SouthCentral
2320 conventional       2015        SouthCentral
2321 conventional       2015        SouthCentral
2322 conventional       2015        SouthCentral
2323 conventional       2015        SouthCentral
2324 conventional       2015        SouthCentral
2325 conventional       2015        SouthCentral
2326 conventional       2015        SouthCentral
2327 conventional       2015        SouthCentral
2328 conventional       2015        SouthCentral
2329 conventional       2015        SouthCentral
2330 conventional       2015        SouthCentral
2331 conventional       2015        SouthCentral
2332 conventional       2015        SouthCentral
2333 conventional       2015        SouthCentral
2334 conventional       2015        SouthCentral
2335 conventional       2015        SouthCentral
2336 conventional       2015        SouthCentral
2337 conventional       2015        SouthCentral
2338 conventional       2015        SouthCentral
2339 conventional       2015        SouthCentral
2340 conventional       2015        SouthCentral
2341 conventional       2015           Southeast
2342 conventional       2015           Southeast
2343 conventional       2015           Southeast
2344 conventional       2015           Southeast
2345 conventional       2015           Southeast
2346 conventional       2015           Southeast
2347 conventional       2015           Southeast
2348 conventional       2015           Southeast
2349 conventional       2015           Southeast
2350 conventional       2015           Southeast
2351 conventional       2015           Southeast
2352 conventional       2015           Southeast
2353 conventional       2015           Southeast
2354 conventional       2015           Southeast
2355 conventional       2015           Southeast
2356 conventional       2015           Southeast
2357 conventional       2015           Southeast
2358 conventional       2015           Southeast
2359 conventional       2015           Southeast
2360 conventional       2015           Southeast
2361 conventional       2015           Southeast
2362 conventional       2015           Southeast
2363 conventional       2015           Southeast
2364 conventional       2015           Southeast
2365 conventional       2015           Southeast
2366 conventional       2015           Southeast
2367 conventional       2015           Southeast
2368 conventional       2015           Southeast
2369 conventional       2015           Southeast
2370 conventional       2015           Southeast
2371 conventional       2015           Southeast
2372 conventional       2015           Southeast
2373 conventional       2015           Southeast
2374 conventional       2015           Southeast
2375 conventional       2015           Southeast
2376 conventional       2015           Southeast
2377 conventional       2015           Southeast
2378 conventional       2015           Southeast
2379 conventional       2015           Southeast
2380 conventional       2015           Southeast
2381 conventional       2015           Southeast
2382 conventional       2015           Southeast
2383 conventional       2015           Southeast
2384 conventional       2015           Southeast
2385 conventional       2015           Southeast
2386 conventional       2015           Southeast
2387 conventional       2015           Southeast
2388 conventional       2015           Southeast
2389 conventional       2015           Southeast
2390 conventional       2015           Southeast
2391 conventional       2015           Southeast
2392 conventional       2015           Southeast
2393 conventional       2015             Spokane
2394 conventional       2015             Spokane
2395 conventional       2015             Spokane
2396 conventional       2015             Spokane
2397 conventional       2015             Spokane
2398 conventional       2015             Spokane
2399 conventional       2015             Spokane
2400 conventional       2015             Spokane
2401 conventional       2015             Spokane
2402 conventional       2015             Spokane
2403 conventional       2015             Spokane
2404 conventional       2015             Spokane
2405 conventional       2015             Spokane
2406 conventional       2015             Spokane
2407 conventional       2015             Spokane
2408 conventional       2015             Spokane
2409 conventional       2015             Spokane
2410 conventional       2015             Spokane
2411 conventional       2015             Spokane
2412 conventional       2015             Spokane
2413 conventional       2015             Spokane
2414 conventional       2015             Spokane
2415 conventional       2015             Spokane
2416 conventional       2015             Spokane
2417 conventional       2015             Spokane
2418 conventional       2015             Spokane
2419 conventional       2015             Spokane
2420 conventional       2015             Spokane
2421 conventional       2015             Spokane
2422 conventional       2015             Spokane
2423 conventional       2015             Spokane
2424 conventional       2015             Spokane
2425 conventional       2015             Spokane
2426 conventional       2015             Spokane
2427 conventional       2015             Spokane
2428 conventional       2015             Spokane
2429 conventional       2015             Spokane
2430 conventional       2015             Spokane
2431 conventional       2015             Spokane
2432 conventional       2015             Spokane
2433 conventional       2015             Spokane
2434 conventional       2015             Spokane
2435 conventional       2015             Spokane
2436 conventional       2015             Spokane
2437 conventional       2015             Spokane
2438 conventional       2015             Spokane
2439 conventional       2015             Spokane
2440 conventional       2015             Spokane
2441 conventional       2015             Spokane
2442 conventional       2015             Spokane
2443 conventional       2015             Spokane
2444 conventional       2015             Spokane
2445 conventional       2015             StLouis
2446 conventional       2015             StLouis
2447 conventional       2015             StLouis
2448 conventional       2015             StLouis
2449 conventional       2015             StLouis
2450 conventional       2015             StLouis
2451 conventional       2015             StLouis
2452 conventional       2015             StLouis
2453 conventional       2015             StLouis
2454 conventional       2015             StLouis
2455 conventional       2015             StLouis
2456 conventional       2015             StLouis
2457 conventional       2015             StLouis
2458 conventional       2015             StLouis
2459 conventional       2015             StLouis
2460 conventional       2015             StLouis
2461 conventional       2015             StLouis
2462 conventional       2015             StLouis
2463 conventional       2015             StLouis
2464 conventional       2015             StLouis
2465 conventional       2015             StLouis
2466 conventional       2015             StLouis
2467 conventional       2015             StLouis
2468 conventional       2015             StLouis
2469 conventional       2015             StLouis
2470 conventional       2015             StLouis
2471 conventional       2015             StLouis
2472 conventional       2015             StLouis
2473 conventional       2015             StLouis
2474 conventional       2015             StLouis
2475 conventional       2015             StLouis
2476 conventional       2015             StLouis
2477 conventional       2015             StLouis
2478 conventional       2015             StLouis
2479 conventional       2015             StLouis
2480 conventional       2015             StLouis
2481 conventional       2015             StLouis
2482 conventional       2015             StLouis
2483 conventional       2015             StLouis
2484 conventional       2015             StLouis
2485 conventional       2015             StLouis
2486 conventional       2015             StLouis
2487 conventional       2015             StLouis
2488 conventional       2015             StLouis
2489 conventional       2015             StLouis
2490 conventional       2015             StLouis
2491 conventional       2015             StLouis
2492 conventional       2015             StLouis
2493 conventional       2015             StLouis
2494 conventional       2015             StLouis
2495 conventional       2015             StLouis
2496 conventional       2015             StLouis
2497 conventional       2015            Syracuse
2498 conventional       2015            Syracuse
2499 conventional       2015            Syracuse
2500 conventional       2015            Syracuse
2501 conventional       2015            Syracuse
2502 conventional       2015            Syracuse
2503 conventional       2015            Syracuse
2504 conventional       2015            Syracuse
2505 conventional       2015            Syracuse
2506 conventional       2015            Syracuse
2507 conventional       2015            Syracuse
2508 conventional       2015            Syracuse
2509 conventional       2015            Syracuse
2510 conventional       2015            Syracuse
2511 conventional       2015            Syracuse
2512 conventional       2015            Syracuse
2513 conventional       2015            Syracuse
2514 conventional       2015            Syracuse
2515 conventional       2015            Syracuse
2516 conventional       2015            Syracuse
2517 conventional       2015            Syracuse
2518 conventional       2015            Syracuse
2519 conventional       2015            Syracuse
2520 conventional       2015            Syracuse
2521 conventional       2015            Syracuse
2522 conventional       2015            Syracuse
2523 conventional       2015            Syracuse
2524 conventional       2015            Syracuse
2525 conventional       2015            Syracuse
2526 conventional       2015            Syracuse
2527 conventional       2015            Syracuse
2528 conventional       2015            Syracuse
2529 conventional       2015            Syracuse
2530 conventional       2015            Syracuse
2531 conventional       2015            Syracuse
2532 conventional       2015            Syracuse
2533 conventional       2015            Syracuse
2534 conventional       2015            Syracuse
2535 conventional       2015            Syracuse
2536 conventional       2015            Syracuse
2537 conventional       2015            Syracuse
2538 conventional       2015            Syracuse
2539 conventional       2015            Syracuse
2540 conventional       2015            Syracuse
2541 conventional       2015            Syracuse
2542 conventional       2015            Syracuse
2543 conventional       2015            Syracuse
2544 conventional       2015            Syracuse
2545 conventional       2015            Syracuse
2546 conventional       2015            Syracuse
2547 conventional       2015            Syracuse
2548 conventional       2015            Syracuse
2549 conventional       2015               Tampa
2550 conventional       2015               Tampa
2551 conventional       2015               Tampa
2552 conventional       2015               Tampa
2553 conventional       2015               Tampa
2554 conventional       2015               Tampa
2555 conventional       2015               Tampa
2556 conventional       2015               Tampa
2557 conventional       2015               Tampa
2558 conventional       2015               Tampa
2559 conventional       2015               Tampa
2560 conventional       2015               Tampa
2561 conventional       2015               Tampa
2562 conventional       2015               Tampa
2563 conventional       2015               Tampa
2564 conventional       2015               Tampa
2565 conventional       2015               Tampa
2566 conventional       2015               Tampa
2567 conventional       2015               Tampa
2568 conventional       2015               Tampa
2569 conventional       2015               Tampa
2570 conventional       2015               Tampa
2571 conventional       2015               Tampa
2572 conventional       2015               Tampa
2573 conventional       2015               Tampa
2574 conventional       2015               Tampa
2575 conventional       2015               Tampa
2576 conventional       2015               Tampa
2577 conventional       2015               Tampa
2578 conventional       2015               Tampa
2579 conventional       2015               Tampa
2580 conventional       2015               Tampa
2581 conventional       2015               Tampa
2582 conventional       2015               Tampa
2583 conventional       2015               Tampa
2584 conventional       2015               Tampa
2585 conventional       2015               Tampa
2586 conventional       2015               Tampa
2587 conventional       2015               Tampa
2588 conventional       2015               Tampa
2589 conventional       2015               Tampa
2590 conventional       2015               Tampa
2591 conventional       2015               Tampa
2592 conventional       2015               Tampa
2593 conventional       2015               Tampa
2594 conventional       2015               Tampa
2595 conventional       2015               Tampa
2596 conventional       2015               Tampa
2597 conventional       2015               Tampa
2598 conventional       2015               Tampa
2599 conventional       2015               Tampa
2600 conventional       2015               Tampa
2601 conventional       2015             TotalUS
2602 conventional       2015             TotalUS
2603 conventional       2015             TotalUS
2604 conventional       2015             TotalUS
2605 conventional       2015             TotalUS
2606 conventional       2015             TotalUS
2607 conventional       2015             TotalUS
2608 conventional       2015             TotalUS
2609 conventional       2015             TotalUS
2610 conventional       2015             TotalUS
2611 conventional       2015             TotalUS
2612 conventional       2015             TotalUS
2613 conventional       2015             TotalUS
2614 conventional       2015             TotalUS
2615 conventional       2015             TotalUS
2616 conventional       2015             TotalUS
2617 conventional       2015             TotalUS
2618 conventional       2015             TotalUS
2619 conventional       2015             TotalUS
2620 conventional       2015             TotalUS
2621 conventional       2015             TotalUS
2622 conventional       2015             TotalUS
2623 conventional       2015             TotalUS
2624 conventional       2015             TotalUS
2625 conventional       2015             TotalUS
2626 conventional       2015             TotalUS
2627 conventional       2015             TotalUS
2628 conventional       2015             TotalUS
2629 conventional       2015             TotalUS
2630 conventional       2015             TotalUS
2631 conventional       2015             TotalUS
2632 conventional       2015             TotalUS
2633 conventional       2015             TotalUS
2634 conventional       2015             TotalUS
2635 conventional       2015             TotalUS
2636 conventional       2015             TotalUS
2637 conventional       2015             TotalUS
2638 conventional       2015             TotalUS
2639 conventional       2015             TotalUS
2640 conventional       2015             TotalUS
2641 conventional       2015             TotalUS
2642 conventional       2015             TotalUS
2643 conventional       2015             TotalUS
2644 conventional       2015             TotalUS
2645 conventional       2015             TotalUS
2646 conventional       2015             TotalUS
2647 conventional       2015             TotalUS
2648 conventional       2015             TotalUS
2649 conventional       2015             TotalUS
2650 conventional       2015             TotalUS
2651 conventional       2015             TotalUS
2652 conventional       2015             TotalUS
2653 conventional       2015                West
2654 conventional       2015                West
2655 conventional       2015                West
2656 conventional       2015                West
2657 conventional       2015                West
2658 conventional       2015                West
2659 conventional       2015                West
2660 conventional       2015                West
2661 conventional       2015                West
2662 conventional       2015                West
2663 conventional       2015                West
2664 conventional       2015                West
2665 conventional       2015                West
2666 conventional       2015                West
2667 conventional       2015                West
2668 conventional       2015                West
2669 conventional       2015                West
2670 conventional       2015                West
2671 conventional       2015                West
2672 conventional       2015                West
2673 conventional       2015                West
2674 conventional       2015                West
2675 conventional       2015                West
2676 conventional       2015                West
2677 conventional       2015                West
2678 conventional       2015                West
2679 conventional       2015                West
2680 conventional       2015                West
2681 conventional       2015                West
2682 conventional       2015                West
2683 conventional       2015                West
2684 conventional       2015                West
2685 conventional       2015                West
2686 conventional       2015                West
2687 conventional       2015                West
2688 conventional       2015                West
2689 conventional       2015                West
2690 conventional       2015                West
2691 conventional       2015                West
2692 conventional       2015                West
2693 conventional       2015                West
2694 conventional       2015                West
2695 conventional       2015                West
2696 conventional       2015                West
2697 conventional       2015                West
2698 conventional       2015                West
2699 conventional       2015                West
2700 conventional       2015                West
2701 conventional       2015                West
2702 conventional       2015                West
2703 conventional       2015                West
2704 conventional       2015                West
2705 conventional       2015    WestTexNewMexico
2706 conventional       2015    WestTexNewMexico
2707 conventional       2015    WestTexNewMexico
2708 conventional       2015    WestTexNewMexico
2709 conventional       2015    WestTexNewMexico
2710 conventional       2015    WestTexNewMexico
2711 conventional       2015    WestTexNewMexico
2712 conventional       2015    WestTexNewMexico
2713 conventional       2015    WestTexNewMexico
2714 conventional       2015    WestTexNewMexico
2715 conventional       2015    WestTexNewMexico
2716 conventional       2015    WestTexNewMexico
2717 conventional       2015    WestTexNewMexico
2718 conventional       2015    WestTexNewMexico
2719 conventional       2015    WestTexNewMexico
2720 conventional       2015    WestTexNewMexico
2721 conventional       2015    WestTexNewMexico
2722 conventional       2015    WestTexNewMexico
2723 conventional       2015    WestTexNewMexico
2724 conventional       2015    WestTexNewMexico
2725 conventional       2015    WestTexNewMexico
2726 conventional       2015    WestTexNewMexico
2727 conventional       2015    WestTexNewMexico
2728 conventional       2015    WestTexNewMexico
2729 conventional       2015    WestTexNewMexico
2730 conventional       2015    WestTexNewMexico
2731 conventional       2015    WestTexNewMexico
2732 conventional       2015    WestTexNewMexico
2733 conventional       2015    WestTexNewMexico
2734 conventional       2015    WestTexNewMexico
2735 conventional       2015    WestTexNewMexico
2736 conventional       2015    WestTexNewMexico
2737 conventional       2015    WestTexNewMexico
2738 conventional       2015    WestTexNewMexico
2739 conventional       2015    WestTexNewMexico
2740 conventional       2015    WestTexNewMexico
2741 conventional       2015    WestTexNewMexico
2742 conventional       2015    WestTexNewMexico
2743 conventional       2015    WestTexNewMexico
2744 conventional       2015    WestTexNewMexico
2745 conventional       2015    WestTexNewMexico
2746 conventional       2015    WestTexNewMexico
2747 conventional       2015    WestTexNewMexico
2748 conventional       2015    WestTexNewMexico
2749 conventional       2015    WestTexNewMexico
2750 conventional       2015    WestTexNewMexico
2751 conventional       2015    WestTexNewMexico
2752 conventional       2015    WestTexNewMexico
2753 conventional       2015    WestTexNewMexico
2754 conventional       2015    WestTexNewMexico
2755 conventional       2015    WestTexNewMexico
2756 conventional       2015    WestTexNewMexico
2757 conventional       2016             Atlanta
2758 conventional       2016             Atlanta
2759 conventional       2016             Atlanta
2760 conventional       2016             Atlanta
2761 conventional       2016             Atlanta
2762 conventional       2016             Atlanta
2763 conventional       2016             Atlanta
2764 conventional       2016             Atlanta
2765 conventional       2016             Atlanta
2766 conventional       2016             Atlanta
2767 conventional       2016             Atlanta
2768 conventional       2016             Atlanta
2769 conventional       2016             Atlanta
2770 conventional       2016             Atlanta
2771 conventional       2016             Atlanta
2772 conventional       2016             Atlanta
2773 conventional       2016             Atlanta
2774 conventional       2016             Atlanta
2775 conventional       2016             Atlanta
2776 conventional       2016             Atlanta
2777 conventional       2016             Atlanta
2778 conventional       2016             Atlanta
2779 conventional       2016             Atlanta
2780 conventional       2016             Atlanta
2781 conventional       2016             Atlanta
2782 conventional       2016             Atlanta
2783 conventional       2016             Atlanta
2784 conventional       2016             Atlanta
2785 conventional       2016             Atlanta
2786 conventional       2016             Atlanta
2787 conventional       2016             Atlanta
2788 conventional       2016             Atlanta
2789 conventional       2016             Atlanta
2790 conventional       2016             Atlanta
2791 conventional       2016             Atlanta
2792 conventional       2016             Atlanta
2793 conventional       2016             Atlanta
2794 conventional       2016             Atlanta
2795 conventional       2016             Atlanta
2796 conventional       2016             Atlanta
2797 conventional       2016             Atlanta
2798 conventional       2016             Atlanta
2799 conventional       2016             Atlanta
2800 conventional       2016             Atlanta
2801 conventional       2016             Atlanta
2802 conventional       2016             Atlanta
2803 conventional       2016             Atlanta
2804 conventional       2016             Atlanta
2805 conventional       2016             Atlanta
2806 conventional       2016             Atlanta
2807 conventional       2016             Atlanta
2808 conventional       2016             Atlanta
2809 conventional       2016 BaltimoreWashington
2810 conventional       2016 BaltimoreWashington
2811 conventional       2016 BaltimoreWashington
2812 conventional       2016 BaltimoreWashington
2813 conventional       2016 BaltimoreWashington
2814 conventional       2016 BaltimoreWashington
2815 conventional       2016 BaltimoreWashington
2816 conventional       2016 BaltimoreWashington
2817 conventional       2016 BaltimoreWashington
2818 conventional       2016 BaltimoreWashington
2819 conventional       2016 BaltimoreWashington
2820 conventional       2016 BaltimoreWashington
2821 conventional       2016 BaltimoreWashington
2822 conventional       2016 BaltimoreWashington
2823 conventional       2016 BaltimoreWashington
2824 conventional       2016 BaltimoreWashington
2825 conventional       2016 BaltimoreWashington
2826 conventional       2016 BaltimoreWashington
2827 conventional       2016 BaltimoreWashington
2828 conventional       2016 BaltimoreWashington
2829 conventional       2016 BaltimoreWashington
2830 conventional       2016 BaltimoreWashington
2831 conventional       2016 BaltimoreWashington
2832 conventional       2016 BaltimoreWashington
2833 conventional       2016 BaltimoreWashington
2834 conventional       2016 BaltimoreWashington
2835 conventional       2016 BaltimoreWashington
2836 conventional       2016 BaltimoreWashington
2837 conventional       2016 BaltimoreWashington
2838 conventional       2016 BaltimoreWashington
2839 conventional       2016 BaltimoreWashington
2840 conventional       2016 BaltimoreWashington
2841 conventional       2016 BaltimoreWashington
2842 conventional       2016 BaltimoreWashington
2843 conventional       2016 BaltimoreWashington
2844 conventional       2016 BaltimoreWashington
2845 conventional       2016 BaltimoreWashington
2846 conventional       2016 BaltimoreWashington
2847 conventional       2016 BaltimoreWashington
2848 conventional       2016 BaltimoreWashington
2849 conventional       2016 BaltimoreWashington
2850 conventional       2016 BaltimoreWashington
2851 conventional       2016 BaltimoreWashington
2852 conventional       2016 BaltimoreWashington
2853 conventional       2016 BaltimoreWashington
2854 conventional       2016 BaltimoreWashington
2855 conventional       2016 BaltimoreWashington
2856 conventional       2016 BaltimoreWashington
2857 conventional       2016 BaltimoreWashington
2858 conventional       2016 BaltimoreWashington
2859 conventional       2016 BaltimoreWashington
2860 conventional       2016 BaltimoreWashington
2861 conventional       2016               Boise
2862 conventional       2016               Boise
2863 conventional       2016               Boise
2864 conventional       2016               Boise
2865 conventional       2016               Boise
2866 conventional       2016               Boise
2867 conventional       2016               Boise
2868 conventional       2016               Boise
2869 conventional       2016               Boise
2870 conventional       2016               Boise
2871 conventional       2016               Boise
2872 conventional       2016               Boise
2873 conventional       2016               Boise
2874 conventional       2016               Boise
2875 conventional       2016               Boise
2876 conventional       2016               Boise
2877 conventional       2016               Boise
2878 conventional       2016               Boise
2879 conventional       2016               Boise
2880 conventional       2016               Boise
2881 conventional       2016               Boise
2882 conventional       2016               Boise
2883 conventional       2016               Boise
2884 conventional       2016               Boise
2885 conventional       2016               Boise
2886 conventional       2016               Boise
2887 conventional       2016               Boise
2888 conventional       2016               Boise
2889 conventional       2016               Boise
2890 conventional       2016               Boise
2891 conventional       2016               Boise
2892 conventional       2016               Boise
2893 conventional       2016               Boise
2894 conventional       2016               Boise
2895 conventional       2016               Boise
2896 conventional       2016               Boise
2897 conventional       2016               Boise
2898 conventional       2016               Boise
2899 conventional       2016               Boise
2900 conventional       2016               Boise
2901 conventional       2016               Boise
2902 conventional       2016               Boise
2903 conventional       2016               Boise
2904 conventional       2016               Boise
2905 conventional       2016               Boise
2906 conventional       2016               Boise
2907 conventional       2016               Boise
2908 conventional       2016               Boise
2909 conventional       2016               Boise
2910 conventional       2016               Boise
2911 conventional       2016               Boise
2912 conventional       2016               Boise
2913 conventional       2016              Boston
2914 conventional       2016              Boston
2915 conventional       2016              Boston
2916 conventional       2016              Boston
2917 conventional       2016              Boston
2918 conventional       2016              Boston
2919 conventional       2016              Boston
2920 conventional       2016              Boston
2921 conventional       2016              Boston
2922 conventional       2016              Boston
2923 conventional       2016              Boston
2924 conventional       2016              Boston
2925 conventional       2016              Boston
2926 conventional       2016              Boston
2927 conventional       2016              Boston
2928 conventional       2016              Boston
2929 conventional       2016              Boston
2930 conventional       2016              Boston
2931 conventional       2016              Boston
2932 conventional       2016              Boston
2933 conventional       2016              Boston
2934 conventional       2016              Boston
2935 conventional       2016              Boston
2936 conventional       2016              Boston
2937 conventional       2016              Boston
2938 conventional       2016              Boston
2939 conventional       2016              Boston
2940 conventional       2016              Boston
2941 conventional       2016              Boston
2942 conventional       2016              Boston
2943 conventional       2016              Boston
2944 conventional       2016              Boston
2945 conventional       2016              Boston
2946 conventional       2016              Boston
2947 conventional       2016              Boston
2948 conventional       2016              Boston
2949 conventional       2016              Boston
2950 conventional       2016              Boston
2951 conventional       2016              Boston
2952 conventional       2016              Boston
2953 conventional       2016              Boston
2954 conventional       2016              Boston
2955 conventional       2016              Boston
2956 conventional       2016              Boston
2957 conventional       2016              Boston
2958 conventional       2016              Boston
2959 conventional       2016              Boston
2960 conventional       2016              Boston
2961 conventional       2016              Boston
2962 conventional       2016              Boston
2963 conventional       2016              Boston
2964 conventional       2016              Boston
2965 conventional       2016    BuffaloRochester
2966 conventional       2016    BuffaloRochester
2967 conventional       2016    BuffaloRochester
2968 conventional       2016    BuffaloRochester
2969 conventional       2016    BuffaloRochester
2970 conventional       2016    BuffaloRochester
2971 conventional       2016    BuffaloRochester
2972 conventional       2016    BuffaloRochester
2973 conventional       2016    BuffaloRochester
2974 conventional       2016    BuffaloRochester
2975 conventional       2016    BuffaloRochester
2976 conventional       2016    BuffaloRochester
2977 conventional       2016    BuffaloRochester
2978 conventional       2016    BuffaloRochester
2979 conventional       2016    BuffaloRochester
2980 conventional       2016    BuffaloRochester
2981 conventional       2016    BuffaloRochester
2982 conventional       2016    BuffaloRochester
2983 conventional       2016    BuffaloRochester
2984 conventional       2016    BuffaloRochester
2985 conventional       2016    BuffaloRochester
2986 conventional       2016    BuffaloRochester
2987 conventional       2016    BuffaloRochester
2988 conventional       2016    BuffaloRochester
2989 conventional       2016    BuffaloRochester
2990 conventional       2016    BuffaloRochester
2991 conventional       2016    BuffaloRochester
2992 conventional       2016    BuffaloRochester
2993 conventional       2016    BuffaloRochester
2994 conventional       2016    BuffaloRochester
2995 conventional       2016    BuffaloRochester
2996 conventional       2016    BuffaloRochester
2997 conventional       2016    BuffaloRochester
2998 conventional       2016    BuffaloRochester
2999 conventional       2016    BuffaloRochester
3000 conventional       2016    BuffaloRochester
3001 conventional       2016    BuffaloRochester
3002 conventional       2016    BuffaloRochester
3003 conventional       2016    BuffaloRochester
3004 conventional       2016    BuffaloRochester
3005 conventional       2016    BuffaloRochester
3006 conventional       2016    BuffaloRochester
3007 conventional       2016    BuffaloRochester
3008 conventional       2016    BuffaloRochester
3009 conventional       2016    BuffaloRochester
3010 conventional       2016    BuffaloRochester
3011 conventional       2016    BuffaloRochester
3012 conventional       2016    BuffaloRochester
3013 conventional       2016    BuffaloRochester
3014 conventional       2016    BuffaloRochester
3015 conventional       2016    BuffaloRochester
3016 conventional       2016    BuffaloRochester
3017 conventional       2016          California
3018 conventional       2016          California
3019 conventional       2016          California
3020 conventional       2016          California
3021 conventional       2016          California
3022 conventional       2016          California
3023 conventional       2016          California
3024 conventional       2016          California
3025 conventional       2016          California
3026 conventional       2016          California
3027 conventional       2016          California
3028 conventional       2016          California
3029 conventional       2016          California
3030 conventional       2016          California
3031 conventional       2016          California
3032 conventional       2016          California
3033 conventional       2016          California
3034 conventional       2016          California
3035 conventional       2016          California
3036 conventional       2016          California
3037 conventional       2016          California
3038 conventional       2016          California
3039 conventional       2016          California
3040 conventional       2016          California
3041 conventional       2016          California
3042 conventional       2016          California
3043 conventional       2016          California
3044 conventional       2016          California
3045 conventional       2016          California
3046 conventional       2016          California
3047 conventional       2016          California
3048 conventional       2016          California
3049 conventional       2016          California
3050 conventional       2016          California
3051 conventional       2016          California
3052 conventional       2016          California
3053 conventional       2016          California
3054 conventional       2016          California
3055 conventional       2016          California
3056 conventional       2016          California
3057 conventional       2016          California
3058 conventional       2016          California
3059 conventional       2016          California
3060 conventional       2016          California
3061 conventional       2016          California
3062 conventional       2016          California
3063 conventional       2016          California
3064 conventional       2016          California
3065 conventional       2016          California
3066 conventional       2016          California
3067 conventional       2016          California
3068 conventional       2016          California
3069 conventional       2016           Charlotte
3070 conventional       2016           Charlotte
3071 conventional       2016           Charlotte
3072 conventional       2016           Charlotte
3073 conventional       2016           Charlotte
3074 conventional       2016           Charlotte
3075 conventional       2016           Charlotte
3076 conventional       2016           Charlotte
3077 conventional       2016           Charlotte
3078 conventional       2016           Charlotte
3079 conventional       2016           Charlotte
3080 conventional       2016           Charlotte
3081 conventional       2016           Charlotte
3082 conventional       2016           Charlotte
3083 conventional       2016           Charlotte
3084 conventional       2016           Charlotte
3085 conventional       2016           Charlotte
3086 conventional       2016           Charlotte
3087 conventional       2016           Charlotte
3088 conventional       2016           Charlotte
3089 conventional       2016           Charlotte
3090 conventional       2016           Charlotte
3091 conventional       2016           Charlotte
3092 conventional       2016           Charlotte
3093 conventional       2016           Charlotte
3094 conventional       2016           Charlotte
3095 conventional       2016           Charlotte
3096 conventional       2016           Charlotte
3097 conventional       2016           Charlotte
3098 conventional       2016           Charlotte
3099 conventional       2016           Charlotte
3100 conventional       2016           Charlotte
3101 conventional       2016           Charlotte
3102 conventional       2016           Charlotte
3103 conventional       2016           Charlotte
3104 conventional       2016           Charlotte
3105 conventional       2016           Charlotte
3106 conventional       2016           Charlotte
3107 conventional       2016           Charlotte
3108 conventional       2016           Charlotte
3109 conventional       2016           Charlotte
3110 conventional       2016           Charlotte
3111 conventional       2016           Charlotte
3112 conventional       2016           Charlotte
3113 conventional       2016           Charlotte
3114 conventional       2016           Charlotte
3115 conventional       2016           Charlotte
3116 conventional       2016           Charlotte
3117 conventional       2016           Charlotte
3118 conventional       2016           Charlotte
3119 conventional       2016           Charlotte
3120 conventional       2016           Charlotte
3121 conventional       2016             Chicago
3122 conventional       2016             Chicago
3123 conventional       2016             Chicago
3124 conventional       2016             Chicago
3125 conventional       2016             Chicago
3126 conventional       2016             Chicago
3127 conventional       2016             Chicago
3128 conventional       2016             Chicago
3129 conventional       2016             Chicago
3130 conventional       2016             Chicago
3131 conventional       2016             Chicago
3132 conventional       2016             Chicago
3133 conventional       2016             Chicago
3134 conventional       2016             Chicago
3135 conventional       2016             Chicago
3136 conventional       2016             Chicago
3137 conventional       2016             Chicago
3138 conventional       2016             Chicago
3139 conventional       2016             Chicago
3140 conventional       2016             Chicago
3141 conventional       2016             Chicago
3142 conventional       2016             Chicago
3143 conventional       2016             Chicago
3144 conventional       2016             Chicago
3145 conventional       2016             Chicago
3146 conventional       2016             Chicago
3147 conventional       2016             Chicago
3148 conventional       2016             Chicago
3149 conventional       2016             Chicago
3150 conventional       2016             Chicago
3151 conventional       2016             Chicago
3152 conventional       2016             Chicago
3153 conventional       2016             Chicago
3154 conventional       2016             Chicago
3155 conventional       2016             Chicago
3156 conventional       2016             Chicago
3157 conventional       2016             Chicago
3158 conventional       2016             Chicago
3159 conventional       2016             Chicago
3160 conventional       2016             Chicago
3161 conventional       2016             Chicago
3162 conventional       2016             Chicago
3163 conventional       2016             Chicago
3164 conventional       2016             Chicago
3165 conventional       2016             Chicago
3166 conventional       2016             Chicago
3167 conventional       2016             Chicago
3168 conventional       2016             Chicago
3169 conventional       2016             Chicago
3170 conventional       2016             Chicago
3171 conventional       2016             Chicago
3172 conventional       2016             Chicago
3173 conventional       2016    CincinnatiDayton
3174 conventional       2016    CincinnatiDayton
3175 conventional       2016    CincinnatiDayton
3176 conventional       2016    CincinnatiDayton
3177 conventional       2016    CincinnatiDayton
3178 conventional       2016    CincinnatiDayton
3179 conventional       2016    CincinnatiDayton
3180 conventional       2016    CincinnatiDayton
3181 conventional       2016    CincinnatiDayton
3182 conventional       2016    CincinnatiDayton
3183 conventional       2016    CincinnatiDayton
3184 conventional       2016    CincinnatiDayton
3185 conventional       2016    CincinnatiDayton
3186 conventional       2016    CincinnatiDayton
3187 conventional       2016    CincinnatiDayton
3188 conventional       2016    CincinnatiDayton
3189 conventional       2016    CincinnatiDayton
3190 conventional       2016    CincinnatiDayton
3191 conventional       2016    CincinnatiDayton
3192 conventional       2016    CincinnatiDayton
3193 conventional       2016    CincinnatiDayton
3194 conventional       2016    CincinnatiDayton
3195 conventional       2016    CincinnatiDayton
3196 conventional       2016    CincinnatiDayton
3197 conventional       2016    CincinnatiDayton
3198 conventional       2016    CincinnatiDayton
3199 conventional       2016    CincinnatiDayton
3200 conventional       2016    CincinnatiDayton
3201 conventional       2016    CincinnatiDayton
3202 conventional       2016    CincinnatiDayton
3203 conventional       2016    CincinnatiDayton
3204 conventional       2016    CincinnatiDayton
3205 conventional       2016    CincinnatiDayton
3206 conventional       2016    CincinnatiDayton
3207 conventional       2016    CincinnatiDayton
3208 conventional       2016    CincinnatiDayton
3209 conventional       2016    CincinnatiDayton
3210 conventional       2016    CincinnatiDayton
3211 conventional       2016    CincinnatiDayton
3212 conventional       2016    CincinnatiDayton
3213 conventional       2016    CincinnatiDayton
3214 conventional       2016    CincinnatiDayton
3215 conventional       2016    CincinnatiDayton
3216 conventional       2016    CincinnatiDayton
3217 conventional       2016    CincinnatiDayton
3218 conventional       2016    CincinnatiDayton
3219 conventional       2016    CincinnatiDayton
3220 conventional       2016    CincinnatiDayton
3221 conventional       2016    CincinnatiDayton
3222 conventional       2016    CincinnatiDayton
3223 conventional       2016    CincinnatiDayton
3224 conventional       2016    CincinnatiDayton
3225 conventional       2016            Columbus
3226 conventional       2016            Columbus
3227 conventional       2016            Columbus
3228 conventional       2016            Columbus
3229 conventional       2016            Columbus
3230 conventional       2016            Columbus
3231 conventional       2016            Columbus
3232 conventional       2016            Columbus
3233 conventional       2016            Columbus
3234 conventional       2016            Columbus
3235 conventional       2016            Columbus
3236 conventional       2016            Columbus
3237 conventional       2016            Columbus
3238 conventional       2016            Columbus
3239 conventional       2016            Columbus
3240 conventional       2016            Columbus
3241 conventional       2016            Columbus
3242 conventional       2016            Columbus
3243 conventional       2016            Columbus
3244 conventional       2016            Columbus
3245 conventional       2016            Columbus
3246 conventional       2016            Columbus
3247 conventional       2016            Columbus
3248 conventional       2016            Columbus
3249 conventional       2016            Columbus
3250 conventional       2016            Columbus
3251 conventional       2016            Columbus
3252 conventional       2016            Columbus
3253 conventional       2016            Columbus
3254 conventional       2016            Columbus
3255 conventional       2016            Columbus
3256 conventional       2016            Columbus
3257 conventional       2016            Columbus
3258 conventional       2016            Columbus
3259 conventional       2016            Columbus
3260 conventional       2016            Columbus
3261 conventional       2016            Columbus
3262 conventional       2016            Columbus
3263 conventional       2016            Columbus
3264 conventional       2016            Columbus
3265 conventional       2016            Columbus
3266 conventional       2016            Columbus
3267 conventional       2016            Columbus
3268 conventional       2016            Columbus
3269 conventional       2016            Columbus
3270 conventional       2016            Columbus
3271 conventional       2016            Columbus
3272 conventional       2016            Columbus
3273 conventional       2016            Columbus
3274 conventional       2016            Columbus
3275 conventional       2016            Columbus
3276 conventional       2016            Columbus
3277 conventional       2016       DallasFtWorth
3278 conventional       2016       DallasFtWorth
3279 conventional       2016       DallasFtWorth
3280 conventional       2016       DallasFtWorth
3281 conventional       2016       DallasFtWorth
3282 conventional       2016       DallasFtWorth
3283 conventional       2016       DallasFtWorth
3284 conventional       2016       DallasFtWorth
3285 conventional       2016       DallasFtWorth
3286 conventional       2016       DallasFtWorth
3287 conventional       2016       DallasFtWorth
3288 conventional       2016       DallasFtWorth
3289 conventional       2016       DallasFtWorth
3290 conventional       2016       DallasFtWorth
3291 conventional       2016       DallasFtWorth
3292 conventional       2016       DallasFtWorth
3293 conventional       2016       DallasFtWorth
3294 conventional       2016       DallasFtWorth
3295 conventional       2016       DallasFtWorth
3296 conventional       2016       DallasFtWorth
3297 conventional       2016       DallasFtWorth
3298 conventional       2016       DallasFtWorth
3299 conventional       2016       DallasFtWorth
3300 conventional       2016       DallasFtWorth
3301 conventional       2016       DallasFtWorth
3302 conventional       2016       DallasFtWorth
3303 conventional       2016       DallasFtWorth
3304 conventional       2016       DallasFtWorth
3305 conventional       2016       DallasFtWorth
3306 conventional       2016       DallasFtWorth
3307 conventional       2016       DallasFtWorth
3308 conventional       2016       DallasFtWorth
3309 conventional       2016       DallasFtWorth
3310 conventional       2016       DallasFtWorth
3311 conventional       2016       DallasFtWorth
3312 conventional       2016       DallasFtWorth
3313 conventional       2016       DallasFtWorth
3314 conventional       2016       DallasFtWorth
3315 conventional       2016       DallasFtWorth
3316 conventional       2016       DallasFtWorth
3317 conventional       2016       DallasFtWorth
3318 conventional       2016       DallasFtWorth
3319 conventional       2016       DallasFtWorth
3320 conventional       2016       DallasFtWorth
3321 conventional       2016       DallasFtWorth
3322 conventional       2016       DallasFtWorth
3323 conventional       2016       DallasFtWorth
3324 conventional       2016       DallasFtWorth
3325 conventional       2016       DallasFtWorth
3326 conventional       2016       DallasFtWorth
3327 conventional       2016       DallasFtWorth
3328 conventional       2016       DallasFtWorth
3329 conventional       2016              Denver
3330 conventional       2016              Denver
3331 conventional       2016              Denver
3332 conventional       2016              Denver
3333 conventional       2016              Denver
3334 conventional       2016              Denver
3335 conventional       2016              Denver
3336 conventional       2016              Denver
3337 conventional       2016              Denver
3338 conventional       2016              Denver
3339 conventional       2016              Denver
3340 conventional       2016              Denver
3341 conventional       2016              Denver
3342 conventional       2016              Denver
3343 conventional       2016              Denver
3344 conventional       2016              Denver
3345 conventional       2016              Denver
3346 conventional       2016              Denver
3347 conventional       2016              Denver
3348 conventional       2016              Denver
3349 conventional       2016              Denver
3350 conventional       2016              Denver
3351 conventional       2016              Denver
3352 conventional       2016              Denver
3353 conventional       2016              Denver
3354 conventional       2016              Denver
3355 conventional       2016              Denver
3356 conventional       2016              Denver
3357 conventional       2016              Denver
3358 conventional       2016              Denver
3359 conventional       2016              Denver
3360 conventional       2016              Denver
3361 conventional       2016              Denver
3362 conventional       2016              Denver
3363 conventional       2016              Denver
3364 conventional       2016              Denver
3365 conventional       2016              Denver
3366 conventional       2016              Denver
3367 conventional       2016              Denver
3368 conventional       2016              Denver
3369 conventional       2016              Denver
3370 conventional       2016              Denver
3371 conventional       2016              Denver
3372 conventional       2016              Denver
3373 conventional       2016              Denver
3374 conventional       2016              Denver
3375 conventional       2016              Denver
3376 conventional       2016              Denver
3377 conventional       2016              Denver
3378 conventional       2016              Denver
3379 conventional       2016              Denver
3380 conventional       2016              Denver
3381 conventional       2016             Detroit
3382 conventional       2016             Detroit
3383 conventional       2016             Detroit
3384 conventional       2016             Detroit
3385 conventional       2016             Detroit
3386 conventional       2016             Detroit
3387 conventional       2016             Detroit
3388 conventional       2016             Detroit
3389 conventional       2016             Detroit
3390 conventional       2016             Detroit
3391 conventional       2016             Detroit
3392 conventional       2016             Detroit
3393 conventional       2016             Detroit
3394 conventional       2016             Detroit
3395 conventional       2016             Detroit
3396 conventional       2016             Detroit
3397 conventional       2016             Detroit
3398 conventional       2016             Detroit
3399 conventional       2016             Detroit
3400 conventional       2016             Detroit
3401 conventional       2016             Detroit
3402 conventional       2016             Detroit
3403 conventional       2016             Detroit
3404 conventional       2016             Detroit
3405 conventional       2016             Detroit
3406 conventional       2016             Detroit
3407 conventional       2016             Detroit
3408 conventional       2016             Detroit
3409 conventional       2016             Detroit
3410 conventional       2016             Detroit
3411 conventional       2016             Detroit
3412 conventional       2016             Detroit
3413 conventional       2016             Detroit
3414 conventional       2016             Detroit
3415 conventional       2016             Detroit
3416 conventional       2016             Detroit
3417 conventional       2016             Detroit
3418 conventional       2016             Detroit
3419 conventional       2016             Detroit
3420 conventional       2016             Detroit
3421 conventional       2016             Detroit
3422 conventional       2016             Detroit
3423 conventional       2016             Detroit
3424 conventional       2016             Detroit
3425 conventional       2016             Detroit
3426 conventional       2016             Detroit
3427 conventional       2016             Detroit
3428 conventional       2016             Detroit
3429 conventional       2016             Detroit
3430 conventional       2016             Detroit
3431 conventional       2016             Detroit
3432 conventional       2016             Detroit
3433 conventional       2016         GrandRapids
3434 conventional       2016         GrandRapids
3435 conventional       2016         GrandRapids
3436 conventional       2016         GrandRapids
3437 conventional       2016         GrandRapids
3438 conventional       2016         GrandRapids
3439 conventional       2016         GrandRapids
3440 conventional       2016         GrandRapids
3441 conventional       2016         GrandRapids
3442 conventional       2016         GrandRapids
3443 conventional       2016         GrandRapids
3444 conventional       2016         GrandRapids
3445 conventional       2016         GrandRapids
3446 conventional       2016         GrandRapids
3447 conventional       2016         GrandRapids
3448 conventional       2016         GrandRapids
3449 conventional       2016         GrandRapids
3450 conventional       2016         GrandRapids
3451 conventional       2016         GrandRapids
3452 conventional       2016         GrandRapids
3453 conventional       2016         GrandRapids
3454 conventional       2016         GrandRapids
3455 conventional       2016         GrandRapids
3456 conventional       2016         GrandRapids
3457 conventional       2016         GrandRapids
3458 conventional       2016         GrandRapids
3459 conventional       2016         GrandRapids
3460 conventional       2016         GrandRapids
3461 conventional       2016         GrandRapids
3462 conventional       2016         GrandRapids
3463 conventional       2016         GrandRapids
3464 conventional       2016         GrandRapids
3465 conventional       2016         GrandRapids
3466 conventional       2016         GrandRapids
3467 conventional       2016         GrandRapids
3468 conventional       2016         GrandRapids
3469 conventional       2016         GrandRapids
3470 conventional       2016         GrandRapids
3471 conventional       2016         GrandRapids
3472 conventional       2016         GrandRapids
3473 conventional       2016         GrandRapids
3474 conventional       2016         GrandRapids
3475 conventional       2016         GrandRapids
3476 conventional       2016         GrandRapids
3477 conventional       2016         GrandRapids
3478 conventional       2016         GrandRapids
3479 conventional       2016         GrandRapids
3480 conventional       2016         GrandRapids
3481 conventional       2016         GrandRapids
3482 conventional       2016         GrandRapids
3483 conventional       2016         GrandRapids
3484 conventional       2016         GrandRapids
3485 conventional       2016          GreatLakes
3486 conventional       2016          GreatLakes
3487 conventional       2016          GreatLakes
3488 conventional       2016          GreatLakes
3489 conventional       2016          GreatLakes
3490 conventional       2016          GreatLakes
3491 conventional       2016          GreatLakes
3492 conventional       2016          GreatLakes
3493 conventional       2016          GreatLakes
3494 conventional       2016          GreatLakes
3495 conventional       2016          GreatLakes
3496 conventional       2016          GreatLakes
3497 conventional       2016          GreatLakes
3498 conventional       2016          GreatLakes
3499 conventional       2016          GreatLakes
3500 conventional       2016          GreatLakes
3501 conventional       2016          GreatLakes
3502 conventional       2016          GreatLakes
3503 conventional       2016          GreatLakes
3504 conventional       2016          GreatLakes
3505 conventional       2016          GreatLakes
3506 conventional       2016          GreatLakes
3507 conventional       2016          GreatLakes
3508 conventional       2016          GreatLakes
3509 conventional       2016          GreatLakes
3510 conventional       2016          GreatLakes
3511 conventional       2016          GreatLakes
3512 conventional       2016          GreatLakes
3513 conventional       2016          GreatLakes
3514 conventional       2016          GreatLakes
3515 conventional       2016          GreatLakes
3516 conventional       2016          GreatLakes
3517 conventional       2016          GreatLakes
3518 conventional       2016          GreatLakes
3519 conventional       2016          GreatLakes
3520 conventional       2016          GreatLakes
3521 conventional       2016          GreatLakes
3522 conventional       2016          GreatLakes
3523 conventional       2016          GreatLakes
3524 conventional       2016          GreatLakes
3525 conventional       2016          GreatLakes
3526 conventional       2016          GreatLakes
3527 conventional       2016          GreatLakes
3528 conventional       2016          GreatLakes
3529 conventional       2016          GreatLakes
3530 conventional       2016          GreatLakes
3531 conventional       2016          GreatLakes
3532 conventional       2016          GreatLakes
3533 conventional       2016          GreatLakes
3534 conventional       2016          GreatLakes
3535 conventional       2016          GreatLakes
3536 conventional       2016          GreatLakes
3537 conventional       2016  HarrisburgScranton
3538 conventional       2016  HarrisburgScranton
3539 conventional       2016  HarrisburgScranton
3540 conventional       2016  HarrisburgScranton
3541 conventional       2016  HarrisburgScranton
3542 conventional       2016  HarrisburgScranton
3543 conventional       2016  HarrisburgScranton
3544 conventional       2016  HarrisburgScranton
3545 conventional       2016  HarrisburgScranton
3546 conventional       2016  HarrisburgScranton
3547 conventional       2016  HarrisburgScranton
3548 conventional       2016  HarrisburgScranton
3549 conventional       2016  HarrisburgScranton
3550 conventional       2016  HarrisburgScranton
3551 conventional       2016  HarrisburgScranton
3552 conventional       2016  HarrisburgScranton
3553 conventional       2016  HarrisburgScranton
3554 conventional       2016  HarrisburgScranton
3555 conventional       2016  HarrisburgScranton
3556 conventional       2016  HarrisburgScranton
3557 conventional       2016  HarrisburgScranton
3558 conventional       2016  HarrisburgScranton
3559 conventional       2016  HarrisburgScranton
3560 conventional       2016  HarrisburgScranton
3561 conventional       2016  HarrisburgScranton
3562 conventional       2016  HarrisburgScranton
3563 conventional       2016  HarrisburgScranton
3564 conventional       2016  HarrisburgScranton
3565 conventional       2016  HarrisburgScranton
3566 conventional       2016  HarrisburgScranton
3567 conventional       2016  HarrisburgScranton
3568 conventional       2016  HarrisburgScranton
3569 conventional       2016  HarrisburgScranton
3570 conventional       2016  HarrisburgScranton
3571 conventional       2016  HarrisburgScranton
3572 conventional       2016  HarrisburgScranton
3573 conventional       2016  HarrisburgScranton
3574 conventional       2016  HarrisburgScranton
3575 conventional       2016  HarrisburgScranton
3576 conventional       2016  HarrisburgScranton
3577 conventional       2016  HarrisburgScranton
3578 conventional       2016  HarrisburgScranton
3579 conventional       2016  HarrisburgScranton
3580 conventional       2016  HarrisburgScranton
3581 conventional       2016  HarrisburgScranton
3582 conventional       2016  HarrisburgScranton
3583 conventional       2016  HarrisburgScranton
3584 conventional       2016  HarrisburgScranton
3585 conventional       2016  HarrisburgScranton
3586 conventional       2016  HarrisburgScranton
3587 conventional       2016  HarrisburgScranton
3588 conventional       2016  HarrisburgScranton
3589 conventional       2016 HartfordSpringfield
3590 conventional       2016 HartfordSpringfield
3591 conventional       2016 HartfordSpringfield
3592 conventional       2016 HartfordSpringfield
3593 conventional       2016 HartfordSpringfield
3594 conventional       2016 HartfordSpringfield
3595 conventional       2016 HartfordSpringfield
3596 conventional       2016 HartfordSpringfield
3597 conventional       2016 HartfordSpringfield
3598 conventional       2016 HartfordSpringfield
3599 conventional       2016 HartfordSpringfield
3600 conventional       2016 HartfordSpringfield
3601 conventional       2016 HartfordSpringfield
3602 conventional       2016 HartfordSpringfield
3603 conventional       2016 HartfordSpringfield
3604 conventional       2016 HartfordSpringfield
3605 conventional       2016 HartfordSpringfield
3606 conventional       2016 HartfordSpringfield
3607 conventional       2016 HartfordSpringfield
3608 conventional       2016 HartfordSpringfield
3609 conventional       2016 HartfordSpringfield
3610 conventional       2016 HartfordSpringfield
3611 conventional       2016 HartfordSpringfield
3612 conventional       2016 HartfordSpringfield
3613 conventional       2016 HartfordSpringfield
3614 conventional       2016 HartfordSpringfield
3615 conventional       2016 HartfordSpringfield
3616 conventional       2016 HartfordSpringfield
3617 conventional       2016 HartfordSpringfield
3618 conventional       2016 HartfordSpringfield
3619 conventional       2016 HartfordSpringfield
3620 conventional       2016 HartfordSpringfield
3621 conventional       2016 HartfordSpringfield
3622 conventional       2016 HartfordSpringfield
3623 conventional       2016 HartfordSpringfield
3624 conventional       2016 HartfordSpringfield
3625 conventional       2016 HartfordSpringfield
3626 conventional       2016 HartfordSpringfield
3627 conventional       2016 HartfordSpringfield
3628 conventional       2016 HartfordSpringfield
3629 conventional       2016 HartfordSpringfield
3630 conventional       2016 HartfordSpringfield
3631 conventional       2016 HartfordSpringfield
3632 conventional       2016 HartfordSpringfield
3633 conventional       2016 HartfordSpringfield
3634 conventional       2016 HartfordSpringfield
3635 conventional       2016 HartfordSpringfield
3636 conventional       2016 HartfordSpringfield
3637 conventional       2016 HartfordSpringfield
3638 conventional       2016 HartfordSpringfield
3639 conventional       2016 HartfordSpringfield
3640 conventional       2016 HartfordSpringfield
3641 conventional       2016             Houston
3642 conventional       2016             Houston
3643 conventional       2016             Houston
3644 conventional       2016             Houston
3645 conventional       2016             Houston
3646 conventional       2016             Houston
3647 conventional       2016             Houston
3648 conventional       2016             Houston
3649 conventional       2016             Houston
3650 conventional       2016             Houston
3651 conventional       2016             Houston
3652 conventional       2016             Houston
3653 conventional       2016             Houston
3654 conventional       2016             Houston
3655 conventional       2016             Houston
3656 conventional       2016             Houston
3657 conventional       2016             Houston
3658 conventional       2016             Houston
3659 conventional       2016             Houston
3660 conventional       2016             Houston
3661 conventional       2016             Houston
3662 conventional       2016             Houston
3663 conventional       2016             Houston
3664 conventional       2016             Houston
3665 conventional       2016             Houston
3666 conventional       2016             Houston
3667 conventional       2016             Houston
3668 conventional       2016             Houston
3669 conventional       2016             Houston
3670 conventional       2016             Houston
3671 conventional       2016             Houston
3672 conventional       2016             Houston
3673 conventional       2016             Houston
3674 conventional       2016             Houston
3675 conventional       2016             Houston
3676 conventional       2016             Houston
3677 conventional       2016             Houston
3678 conventional       2016             Houston
3679 conventional       2016             Houston
3680 conventional       2016             Houston
3681 conventional       2016             Houston
3682 conventional       2016             Houston
3683 conventional       2016             Houston
3684 conventional       2016             Houston
3685 conventional       2016             Houston
3686 conventional       2016             Houston
3687 conventional       2016             Houston
3688 conventional       2016             Houston
3689 conventional       2016             Houston
3690 conventional       2016             Houston
3691 conventional       2016             Houston
3692 conventional       2016             Houston
3693 conventional       2016        Indianapolis
3694 conventional       2016        Indianapolis
3695 conventional       2016        Indianapolis
3696 conventional       2016        Indianapolis
3697 conventional       2016        Indianapolis
3698 conventional       2016        Indianapolis
3699 conventional       2016        Indianapolis
3700 conventional       2016        Indianapolis
3701 conventional       2016        Indianapolis
3702 conventional       2016        Indianapolis
3703 conventional       2016        Indianapolis
3704 conventional       2016        Indianapolis
3705 conventional       2016        Indianapolis
3706 conventional       2016        Indianapolis
3707 conventional       2016        Indianapolis
3708 conventional       2016        Indianapolis
3709 conventional       2016        Indianapolis
3710 conventional       2016        Indianapolis
3711 conventional       2016        Indianapolis
3712 conventional       2016        Indianapolis
3713 conventional       2016        Indianapolis
3714 conventional       2016        Indianapolis
3715 conventional       2016        Indianapolis
3716 conventional       2016        Indianapolis
3717 conventional       2016        Indianapolis
3718 conventional       2016        Indianapolis
3719 conventional       2016        Indianapolis
3720 conventional       2016        Indianapolis
3721 conventional       2016        Indianapolis
3722 conventional       2016        Indianapolis
3723 conventional       2016        Indianapolis
3724 conventional       2016        Indianapolis
3725 conventional       2016        Indianapolis
3726 conventional       2016        Indianapolis
3727 conventional       2016        Indianapolis
3728 conventional       2016        Indianapolis
3729 conventional       2016        Indianapolis
3730 conventional       2016        Indianapolis
3731 conventional       2016        Indianapolis
3732 conventional       2016        Indianapolis
3733 conventional       2016        Indianapolis
3734 conventional       2016        Indianapolis
3735 conventional       2016        Indianapolis
3736 conventional       2016        Indianapolis
3737 conventional       2016        Indianapolis
3738 conventional       2016        Indianapolis
3739 conventional       2016        Indianapolis
3740 conventional       2016        Indianapolis
3741 conventional       2016        Indianapolis
3742 conventional       2016        Indianapolis
3743 conventional       2016        Indianapolis
3744 conventional       2016        Indianapolis
3745 conventional       2016        Jacksonville
3746 conventional       2016        Jacksonville
3747 conventional       2016        Jacksonville
3748 conventional       2016        Jacksonville
3749 conventional       2016        Jacksonville
3750 conventional       2016        Jacksonville
3751 conventional       2016        Jacksonville
3752 conventional       2016        Jacksonville
3753 conventional       2016        Jacksonville
3754 conventional       2016        Jacksonville
3755 conventional       2016        Jacksonville
3756 conventional       2016        Jacksonville
3757 conventional       2016        Jacksonville
3758 conventional       2016        Jacksonville
3759 conventional       2016        Jacksonville
3760 conventional       2016        Jacksonville
3761 conventional       2016        Jacksonville
3762 conventional       2016        Jacksonville
3763 conventional       2016        Jacksonville
3764 conventional       2016        Jacksonville
3765 conventional       2016        Jacksonville
3766 conventional       2016        Jacksonville
3767 conventional       2016        Jacksonville
3768 conventional       2016        Jacksonville
3769 conventional       2016        Jacksonville
3770 conventional       2016        Jacksonville
3771 conventional       2016        Jacksonville
3772 conventional       2016        Jacksonville
3773 conventional       2016        Jacksonville
3774 conventional       2016        Jacksonville
3775 conventional       2016        Jacksonville
3776 conventional       2016        Jacksonville
3777 conventional       2016        Jacksonville
3778 conventional       2016        Jacksonville
3779 conventional       2016        Jacksonville
3780 conventional       2016        Jacksonville
3781 conventional       2016        Jacksonville
3782 conventional       2016        Jacksonville
3783 conventional       2016        Jacksonville
3784 conventional       2016        Jacksonville
3785 conventional       2016        Jacksonville
3786 conventional       2016        Jacksonville
3787 conventional       2016        Jacksonville
3788 conventional       2016        Jacksonville
3789 conventional       2016        Jacksonville
3790 conventional       2016        Jacksonville
3791 conventional       2016        Jacksonville
3792 conventional       2016        Jacksonville
3793 conventional       2016        Jacksonville
3794 conventional       2016        Jacksonville
3795 conventional       2016        Jacksonville
3796 conventional       2016        Jacksonville
3797 conventional       2016            LasVegas
3798 conventional       2016            LasVegas
3799 conventional       2016            LasVegas
3800 conventional       2016            LasVegas
3801 conventional       2016            LasVegas
3802 conventional       2016            LasVegas
3803 conventional       2016            LasVegas
3804 conventional       2016            LasVegas
3805 conventional       2016            LasVegas
3806 conventional       2016            LasVegas
3807 conventional       2016            LasVegas
3808 conventional       2016            LasVegas
3809 conventional       2016            LasVegas
3810 conventional       2016            LasVegas
3811 conventional       2016            LasVegas
3812 conventional       2016            LasVegas
3813 conventional       2016            LasVegas
3814 conventional       2016            LasVegas
3815 conventional       2016            LasVegas
3816 conventional       2016            LasVegas
3817 conventional       2016            LasVegas
3818 conventional       2016            LasVegas
3819 conventional       2016            LasVegas
3820 conventional       2016            LasVegas
3821 conventional       2016            LasVegas
3822 conventional       2016            LasVegas
3823 conventional       2016            LasVegas
3824 conventional       2016            LasVegas
3825 conventional       2016            LasVegas
3826 conventional       2016            LasVegas
3827 conventional       2016            LasVegas
3828 conventional       2016            LasVegas
3829 conventional       2016            LasVegas
3830 conventional       2016            LasVegas
3831 conventional       2016            LasVegas
3832 conventional       2016            LasVegas
3833 conventional       2016            LasVegas
3834 conventional       2016            LasVegas
3835 conventional       2016            LasVegas
3836 conventional       2016            LasVegas
3837 conventional       2016            LasVegas
3838 conventional       2016            LasVegas
3839 conventional       2016            LasVegas
3840 conventional       2016            LasVegas
3841 conventional       2016            LasVegas
3842 conventional       2016            LasVegas
3843 conventional       2016            LasVegas
3844 conventional       2016            LasVegas
3845 conventional       2016            LasVegas
3846 conventional       2016            LasVegas
3847 conventional       2016            LasVegas
3848 conventional       2016            LasVegas
3849 conventional       2016          LosAngeles
3850 conventional       2016          LosAngeles
3851 conventional       2016          LosAngeles
3852 conventional       2016          LosAngeles
3853 conventional       2016          LosAngeles
3854 conventional       2016          LosAngeles
3855 conventional       2016          LosAngeles
3856 conventional       2016          LosAngeles
3857 conventional       2016          LosAngeles
3858 conventional       2016          LosAngeles
3859 conventional       2016          LosAngeles
3860 conventional       2016          LosAngeles
3861 conventional       2016          LosAngeles
3862 conventional       2016          LosAngeles
3863 conventional       2016          LosAngeles
3864 conventional       2016          LosAngeles
3865 conventional       2016          LosAngeles
3866 conventional       2016          LosAngeles
3867 conventional       2016          LosAngeles
3868 conventional       2016          LosAngeles
3869 conventional       2016          LosAngeles
3870 conventional       2016          LosAngeles
3871 conventional       2016          LosAngeles
3872 conventional       2016          LosAngeles
3873 conventional       2016          LosAngeles
3874 conventional       2016          LosAngeles
3875 conventional       2016          LosAngeles
3876 conventional       2016          LosAngeles
3877 conventional       2016          LosAngeles
3878 conventional       2016          LosAngeles
3879 conventional       2016          LosAngeles
3880 conventional       2016          LosAngeles
3881 conventional       2016          LosAngeles
3882 conventional       2016          LosAngeles
3883 conventional       2016          LosAngeles
3884 conventional       2016          LosAngeles
3885 conventional       2016          LosAngeles
3886 conventional       2016          LosAngeles
3887 conventional       2016          LosAngeles
3888 conventional       2016          LosAngeles
3889 conventional       2016          LosAngeles
3890 conventional       2016          LosAngeles
3891 conventional       2016          LosAngeles
3892 conventional       2016          LosAngeles
3893 conventional       2016          LosAngeles
3894 conventional       2016          LosAngeles
3895 conventional       2016          LosAngeles
3896 conventional       2016          LosAngeles
3897 conventional       2016          LosAngeles
3898 conventional       2016          LosAngeles
3899 conventional       2016          LosAngeles
3900 conventional       2016          LosAngeles
3901 conventional       2016          Louisville
3902 conventional       2016          Louisville
3903 conventional       2016          Louisville
3904 conventional       2016          Louisville
3905 conventional       2016          Louisville
3906 conventional       2016          Louisville
3907 conventional       2016          Louisville
3908 conventional       2016          Louisville
3909 conventional       2016          Louisville
3910 conventional       2016          Louisville
3911 conventional       2016          Louisville
3912 conventional       2016          Louisville
3913 conventional       2016          Louisville
3914 conventional       2016          Louisville
3915 conventional       2016          Louisville
3916 conventional       2016          Louisville
3917 conventional       2016          Louisville
3918 conventional       2016          Louisville
3919 conventional       2016          Louisville
3920 conventional       2016          Louisville
3921 conventional       2016          Louisville
3922 conventional       2016          Louisville
3923 conventional       2016          Louisville
3924 conventional       2016          Louisville
3925 conventional       2016          Louisville
3926 conventional       2016          Louisville
3927 conventional       2016          Louisville
3928 conventional       2016          Louisville
3929 conventional       2016          Louisville
3930 conventional       2016          Louisville
3931 conventional       2016          Louisville
3932 conventional       2016          Louisville
3933 conventional       2016          Louisville
3934 conventional       2016          Louisville
3935 conventional       2016          Louisville
3936 conventional       2016          Louisville
3937 conventional       2016          Louisville
3938 conventional       2016          Louisville
3939 conventional       2016          Louisville
3940 conventional       2016          Louisville
3941 conventional       2016          Louisville
3942 conventional       2016          Louisville
3943 conventional       2016          Louisville
3944 conventional       2016          Louisville
3945 conventional       2016          Louisville
3946 conventional       2016          Louisville
3947 conventional       2016          Louisville
3948 conventional       2016          Louisville
3949 conventional       2016          Louisville
3950 conventional       2016          Louisville
3951 conventional       2016          Louisville
3952 conventional       2016          Louisville
3953 conventional       2016   MiamiFtLauderdale
3954 conventional       2016   MiamiFtLauderdale
3955 conventional       2016   MiamiFtLauderdale
3956 conventional       2016   MiamiFtLauderdale
3957 conventional       2016   MiamiFtLauderdale
3958 conventional       2016   MiamiFtLauderdale
3959 conventional       2016   MiamiFtLauderdale
3960 conventional       2016   MiamiFtLauderdale
3961 conventional       2016   MiamiFtLauderdale
3962 conventional       2016   MiamiFtLauderdale
3963 conventional       2016   MiamiFtLauderdale
3964 conventional       2016   MiamiFtLauderdale
3965 conventional       2016   MiamiFtLauderdale
3966 conventional       2016   MiamiFtLauderdale
3967 conventional       2016   MiamiFtLauderdale
3968 conventional       2016   MiamiFtLauderdale
3969 conventional       2016   MiamiFtLauderdale
3970 conventional       2016   MiamiFtLauderdale
3971 conventional       2016   MiamiFtLauderdale
3972 conventional       2016   MiamiFtLauderdale
3973 conventional       2016   MiamiFtLauderdale
3974 conventional       2016   MiamiFtLauderdale
3975 conventional       2016   MiamiFtLauderdale
3976 conventional       2016   MiamiFtLauderdale
3977 conventional       2016   MiamiFtLauderdale
3978 conventional       2016   MiamiFtLauderdale
3979 conventional       2016   MiamiFtLauderdale
3980 conventional       2016   MiamiFtLauderdale
3981 conventional       2016   MiamiFtLauderdale
3982 conventional       2016   MiamiFtLauderdale
3983 conventional       2016   MiamiFtLauderdale
3984 conventional       2016   MiamiFtLauderdale
3985 conventional       2016   MiamiFtLauderdale
3986 conventional       2016   MiamiFtLauderdale
3987 conventional       2016   MiamiFtLauderdale
3988 conventional       2016   MiamiFtLauderdale
3989 conventional       2016   MiamiFtLauderdale
3990 conventional       2016   MiamiFtLauderdale
3991 conventional       2016   MiamiFtLauderdale
3992 conventional       2016   MiamiFtLauderdale
3993 conventional       2016   MiamiFtLauderdale
3994 conventional       2016   MiamiFtLauderdale
3995 conventional       2016   MiamiFtLauderdale
3996 conventional       2016   MiamiFtLauderdale
3997 conventional       2016   MiamiFtLauderdale
3998 conventional       2016   MiamiFtLauderdale
3999 conventional       2016   MiamiFtLauderdale
4000 conventional       2016   MiamiFtLauderdale
4001 conventional       2016   MiamiFtLauderdale
4002 conventional       2016   MiamiFtLauderdale
4003 conventional       2016   MiamiFtLauderdale
4004 conventional       2016   MiamiFtLauderdale
4005 conventional       2016            Midsouth
4006 conventional       2016            Midsouth
4007 conventional       2016            Midsouth
4008 conventional       2016            Midsouth
4009 conventional       2016            Midsouth
4010 conventional       2016            Midsouth
4011 conventional       2016            Midsouth
4012 conventional       2016            Midsouth
4013 conventional       2016            Midsouth
4014 conventional       2016            Midsouth
4015 conventional       2016            Midsouth
4016 conventional       2016            Midsouth
4017 conventional       2016            Midsouth
4018 conventional       2016            Midsouth
4019 conventional       2016            Midsouth
4020 conventional       2016            Midsouth
4021 conventional       2016            Midsouth
4022 conventional       2016            Midsouth
4023 conventional       2016            Midsouth
4024 conventional       2016            Midsouth
4025 conventional       2016            Midsouth
4026 conventional       2016            Midsouth
4027 conventional       2016            Midsouth
4028 conventional       2016            Midsouth
4029 conventional       2016            Midsouth
4030 conventional       2016            Midsouth
4031 conventional       2016            Midsouth
4032 conventional       2016            Midsouth
4033 conventional       2016            Midsouth
4034 conventional       2016            Midsouth
4035 conventional       2016            Midsouth
4036 conventional       2016            Midsouth
4037 conventional       2016            Midsouth
4038 conventional       2016            Midsouth
4039 conventional       2016            Midsouth
4040 conventional       2016            Midsouth
4041 conventional       2016            Midsouth
4042 conventional       2016            Midsouth
4043 conventional       2016            Midsouth
4044 conventional       2016            Midsouth
4045 conventional       2016            Midsouth
4046 conventional       2016            Midsouth
4047 conventional       2016            Midsouth
4048 conventional       2016            Midsouth
4049 conventional       2016            Midsouth
4050 conventional       2016            Midsouth
4051 conventional       2016            Midsouth
4052 conventional       2016            Midsouth
4053 conventional       2016            Midsouth
4054 conventional       2016            Midsouth
4055 conventional       2016            Midsouth
4056 conventional       2016            Midsouth
4057 conventional       2016           Nashville
4058 conventional       2016           Nashville
4059 conventional       2016           Nashville
4060 conventional       2016           Nashville
4061 conventional       2016           Nashville
4062 conventional       2016           Nashville
4063 conventional       2016           Nashville
4064 conventional       2016           Nashville
4065 conventional       2016           Nashville
4066 conventional       2016           Nashville
4067 conventional       2016           Nashville
4068 conventional       2016           Nashville
4069 conventional       2016           Nashville
4070 conventional       2016           Nashville
4071 conventional       2016           Nashville
4072 conventional       2016           Nashville
4073 conventional       2016           Nashville
4074 conventional       2016           Nashville
4075 conventional       2016           Nashville
4076 conventional       2016           Nashville
4077 conventional       2016           Nashville
4078 conventional       2016           Nashville
4079 conventional       2016           Nashville
4080 conventional       2016           Nashville
4081 conventional       2016           Nashville
4082 conventional       2016           Nashville
4083 conventional       2016           Nashville
4084 conventional       2016           Nashville
4085 conventional       2016           Nashville
4086 conventional       2016           Nashville
4087 conventional       2016           Nashville
4088 conventional       2016           Nashville
4089 conventional       2016           Nashville
4090 conventional       2016           Nashville
4091 conventional       2016           Nashville
4092 conventional       2016           Nashville
4093 conventional       2016           Nashville
4094 conventional       2016           Nashville
4095 conventional       2016           Nashville
4096 conventional       2016           Nashville
4097 conventional       2016           Nashville
4098 conventional       2016           Nashville
4099 conventional       2016           Nashville
4100 conventional       2016           Nashville
4101 conventional       2016           Nashville
4102 conventional       2016           Nashville
4103 conventional       2016           Nashville
4104 conventional       2016           Nashville
4105 conventional       2016           Nashville
4106 conventional       2016           Nashville
4107 conventional       2016           Nashville
4108 conventional       2016           Nashville
4109 conventional       2016    NewOrleansMobile
4110 conventional       2016    NewOrleansMobile
4111 conventional       2016    NewOrleansMobile
4112 conventional       2016    NewOrleansMobile
4113 conventional       2016    NewOrleansMobile
4114 conventional       2016    NewOrleansMobile
4115 conventional       2016    NewOrleansMobile
4116 conventional       2016    NewOrleansMobile
4117 conventional       2016    NewOrleansMobile
4118 conventional       2016    NewOrleansMobile
4119 conventional       2016    NewOrleansMobile
4120 conventional       2016    NewOrleansMobile
4121 conventional       2016    NewOrleansMobile
4122 conventional       2016    NewOrleansMobile
4123 conventional       2016    NewOrleansMobile
4124 conventional       2016    NewOrleansMobile
4125 conventional       2016    NewOrleansMobile
4126 conventional       2016    NewOrleansMobile
4127 conventional       2016    NewOrleansMobile
4128 conventional       2016    NewOrleansMobile
4129 conventional       2016    NewOrleansMobile
4130 conventional       2016    NewOrleansMobile
4131 conventional       2016    NewOrleansMobile
4132 conventional       2016    NewOrleansMobile
4133 conventional       2016    NewOrleansMobile
4134 conventional       2016    NewOrleansMobile
4135 conventional       2016    NewOrleansMobile
4136 conventional       2016    NewOrleansMobile
4137 conventional       2016    NewOrleansMobile
4138 conventional       2016    NewOrleansMobile
4139 conventional       2016    NewOrleansMobile
4140 conventional       2016    NewOrleansMobile
4141 conventional       2016    NewOrleansMobile
4142 conventional       2016    NewOrleansMobile
4143 conventional       2016    NewOrleansMobile
4144 conventional       2016    NewOrleansMobile
4145 conventional       2016    NewOrleansMobile
4146 conventional       2016    NewOrleansMobile
4147 conventional       2016    NewOrleansMobile
4148 conventional       2016    NewOrleansMobile
4149 conventional       2016    NewOrleansMobile
4150 conventional       2016    NewOrleansMobile
4151 conventional       2016    NewOrleansMobile
4152 conventional       2016    NewOrleansMobile
4153 conventional       2016    NewOrleansMobile
4154 conventional       2016    NewOrleansMobile
4155 conventional       2016    NewOrleansMobile
4156 conventional       2016    NewOrleansMobile
4157 conventional       2016    NewOrleansMobile
4158 conventional       2016    NewOrleansMobile
4159 conventional       2016    NewOrleansMobile
4160 conventional       2016    NewOrleansMobile
4161 conventional       2016             NewYork
4162 conventional       2016             NewYork
4163 conventional       2016             NewYork
4164 conventional       2016             NewYork
4165 conventional       2016             NewYork
4166 conventional       2016             NewYork
4167 conventional       2016             NewYork
4168 conventional       2016             NewYork
4169 conventional       2016             NewYork
4170 conventional       2016             NewYork
4171 conventional       2016             NewYork
4172 conventional       2016             NewYork
4173 conventional       2016             NewYork
4174 conventional       2016             NewYork
4175 conventional       2016             NewYork
4176 conventional       2016             NewYork
4177 conventional       2016             NewYork
4178 conventional       2016             NewYork
4179 conventional       2016             NewYork
4180 conventional       2016             NewYork
4181 conventional       2016             NewYork
4182 conventional       2016             NewYork
4183 conventional       2016             NewYork
4184 conventional       2016             NewYork
4185 conventional       2016             NewYork
4186 conventional       2016             NewYork
4187 conventional       2016             NewYork
4188 conventional       2016             NewYork
4189 conventional       2016             NewYork
4190 conventional       2016             NewYork
4191 conventional       2016             NewYork
4192 conventional       2016             NewYork
4193 conventional       2016             NewYork
4194 conventional       2016             NewYork
4195 conventional       2016             NewYork
4196 conventional       2016             NewYork
4197 conventional       2016             NewYork
4198 conventional       2016             NewYork
4199 conventional       2016             NewYork
4200 conventional       2016             NewYork
4201 conventional       2016             NewYork
4202 conventional       2016             NewYork
4203 conventional       2016             NewYork
4204 conventional       2016             NewYork
4205 conventional       2016             NewYork
4206 conventional       2016             NewYork
4207 conventional       2016             NewYork
4208 conventional       2016             NewYork
4209 conventional       2016             NewYork
4210 conventional       2016             NewYork
4211 conventional       2016             NewYork
4212 conventional       2016             NewYork
4213 conventional       2016           Northeast
4214 conventional       2016           Northeast
4215 conventional       2016           Northeast
4216 conventional       2016           Northeast
4217 conventional       2016           Northeast
4218 conventional       2016           Northeast
4219 conventional       2016           Northeast
4220 conventional       2016           Northeast
4221 conventional       2016           Northeast
4222 conventional       2016           Northeast
4223 conventional       2016           Northeast
4224 conventional       2016           Northeast
4225 conventional       2016           Northeast
4226 conventional       2016           Northeast
4227 conventional       2016           Northeast
4228 conventional       2016           Northeast
4229 conventional       2016           Northeast
4230 conventional       2016           Northeast
4231 conventional       2016           Northeast
4232 conventional       2016           Northeast
4233 conventional       2016           Northeast
4234 conventional       2016           Northeast
4235 conventional       2016           Northeast
4236 conventional       2016           Northeast
4237 conventional       2016           Northeast
4238 conventional       2016           Northeast
4239 conventional       2016           Northeast
4240 conventional       2016           Northeast
4241 conventional       2016           Northeast
4242 conventional       2016           Northeast
4243 conventional       2016           Northeast
4244 conventional       2016           Northeast
4245 conventional       2016           Northeast
4246 conventional       2016           Northeast
4247 conventional       2016           Northeast
4248 conventional       2016           Northeast
4249 conventional       2016           Northeast
4250 conventional       2016           Northeast
4251 conventional       2016           Northeast
4252 conventional       2016           Northeast
4253 conventional       2016           Northeast
4254 conventional       2016           Northeast
4255 conventional       2016           Northeast
4256 conventional       2016           Northeast
4257 conventional       2016           Northeast
4258 conventional       2016           Northeast
4259 conventional       2016           Northeast
4260 conventional       2016           Northeast
4261 conventional       2016           Northeast
4262 conventional       2016           Northeast
4263 conventional       2016           Northeast
4264 conventional       2016           Northeast
4265 conventional       2016  NorthernNewEngland
4266 conventional       2016  NorthernNewEngland
4267 conventional       2016  NorthernNewEngland
4268 conventional       2016  NorthernNewEngland
4269 conventional       2016  NorthernNewEngland
4270 conventional       2016  NorthernNewEngland
4271 conventional       2016  NorthernNewEngland
4272 conventional       2016  NorthernNewEngland
4273 conventional       2016  NorthernNewEngland
4274 conventional       2016  NorthernNewEngland
4275 conventional       2016  NorthernNewEngland
4276 conventional       2016  NorthernNewEngland
4277 conventional       2016  NorthernNewEngland
4278 conventional       2016  NorthernNewEngland
4279 conventional       2016  NorthernNewEngland
4280 conventional       2016  NorthernNewEngland
4281 conventional       2016  NorthernNewEngland
4282 conventional       2016  NorthernNewEngland
4283 conventional       2016  NorthernNewEngland
4284 conventional       2016  NorthernNewEngland
4285 conventional       2016  NorthernNewEngland
4286 conventional       2016  NorthernNewEngland
4287 conventional       2016  NorthernNewEngland
4288 conventional       2016  NorthernNewEngland
4289 conventional       2016  NorthernNewEngland
4290 conventional       2016  NorthernNewEngland
4291 conventional       2016  NorthernNewEngland
4292 conventional       2016  NorthernNewEngland
4293 conventional       2016  NorthernNewEngland
4294 conventional       2016  NorthernNewEngland
4295 conventional       2016  NorthernNewEngland
4296 conventional       2016  NorthernNewEngland
4297 conventional       2016  NorthernNewEngland
4298 conventional       2016  NorthernNewEngland
4299 conventional       2016  NorthernNewEngland
4300 conventional       2016  NorthernNewEngland
4301 conventional       2016  NorthernNewEngland
4302 conventional       2016  NorthernNewEngland
4303 conventional       2016  NorthernNewEngland
4304 conventional       2016  NorthernNewEngland
4305 conventional       2016  NorthernNewEngland
4306 conventional       2016  NorthernNewEngland
4307 conventional       2016  NorthernNewEngland
4308 conventional       2016  NorthernNewEngland
4309 conventional       2016  NorthernNewEngland
4310 conventional       2016  NorthernNewEngland
4311 conventional       2016  NorthernNewEngland
4312 conventional       2016  NorthernNewEngland
4313 conventional       2016  NorthernNewEngland
4314 conventional       2016  NorthernNewEngland
4315 conventional       2016  NorthernNewEngland
4316 conventional       2016  NorthernNewEngland
4317 conventional       2016             Orlando
4318 conventional       2016             Orlando
4319 conventional       2016             Orlando
4320 conventional       2016             Orlando
4321 conventional       2016             Orlando
4322 conventional       2016             Orlando
4323 conventional       2016             Orlando
4324 conventional       2016             Orlando
4325 conventional       2016             Orlando
4326 conventional       2016             Orlando
4327 conventional       2016             Orlando
4328 conventional       2016             Orlando
4329 conventional       2016             Orlando
4330 conventional       2016             Orlando
4331 conventional       2016             Orlando
4332 conventional       2016             Orlando
4333 conventional       2016             Orlando
4334 conventional       2016             Orlando
4335 conventional       2016             Orlando
4336 conventional       2016             Orlando
4337 conventional       2016             Orlando
4338 conventional       2016             Orlando
4339 conventional       2016             Orlando
4340 conventional       2016             Orlando
4341 conventional       2016             Orlando
4342 conventional       2016             Orlando
4343 conventional       2016             Orlando
4344 conventional       2016             Orlando
4345 conventional       2016             Orlando
4346 conventional       2016             Orlando
4347 conventional       2016             Orlando
4348 conventional       2016             Orlando
4349 conventional       2016             Orlando
4350 conventional       2016             Orlando
4351 conventional       2016             Orlando
4352 conventional       2016             Orlando
4353 conventional       2016             Orlando
4354 conventional       2016             Orlando
4355 conventional       2016             Orlando
4356 conventional       2016             Orlando
4357 conventional       2016             Orlando
4358 conventional       2016             Orlando
4359 conventional       2016             Orlando
4360 conventional       2016             Orlando
4361 conventional       2016             Orlando
4362 conventional       2016             Orlando
4363 conventional       2016             Orlando
4364 conventional       2016             Orlando
4365 conventional       2016             Orlando
4366 conventional       2016             Orlando
4367 conventional       2016             Orlando
4368 conventional       2016             Orlando
4369 conventional       2016        Philadelphia
4370 conventional       2016        Philadelphia
4371 conventional       2016        Philadelphia
4372 conventional       2016        Philadelphia
4373 conventional       2016        Philadelphia
4374 conventional       2016        Philadelphia
4375 conventional       2016        Philadelphia
4376 conventional       2016        Philadelphia
4377 conventional       2016        Philadelphia
4378 conventional       2016        Philadelphia
4379 conventional       2016        Philadelphia
4380 conventional       2016        Philadelphia
4381 conventional       2016        Philadelphia
4382 conventional       2016        Philadelphia
4383 conventional       2016        Philadelphia
4384 conventional       2016        Philadelphia
4385 conventional       2016        Philadelphia
4386 conventional       2016        Philadelphia
4387 conventional       2016        Philadelphia
4388 conventional       2016        Philadelphia
4389 conventional       2016        Philadelphia
4390 conventional       2016        Philadelphia
4391 conventional       2016        Philadelphia
4392 conventional       2016        Philadelphia
4393 conventional       2016        Philadelphia
4394 conventional       2016        Philadelphia
4395 conventional       2016        Philadelphia
4396 conventional       2016        Philadelphia
4397 conventional       2016        Philadelphia
4398 conventional       2016        Philadelphia
4399 conventional       2016        Philadelphia
4400 conventional       2016        Philadelphia
4401 conventional       2016        Philadelphia
4402 conventional       2016        Philadelphia
4403 conventional       2016        Philadelphia
4404 conventional       2016        Philadelphia
4405 conventional       2016        Philadelphia
4406 conventional       2016        Philadelphia
4407 conventional       2016        Philadelphia
4408 conventional       2016        Philadelphia
4409 conventional       2016        Philadelphia
4410 conventional       2016        Philadelphia
4411 conventional       2016        Philadelphia
4412 conventional       2016        Philadelphia
4413 conventional       2016        Philadelphia
4414 conventional       2016        Philadelphia
4415 conventional       2016        Philadelphia
4416 conventional       2016        Philadelphia
4417 conventional       2016        Philadelphia
4418 conventional       2016        Philadelphia
4419 conventional       2016        Philadelphia
4420 conventional       2016        Philadelphia
4421 conventional       2016       PhoenixTucson
4422 conventional       2016       PhoenixTucson
4423 conventional       2016       PhoenixTucson
4424 conventional       2016       PhoenixTucson
4425 conventional       2016       PhoenixTucson
4426 conventional       2016       PhoenixTucson
4427 conventional       2016       PhoenixTucson
4428 conventional       2016       PhoenixTucson
4429 conventional       2016       PhoenixTucson
4430 conventional       2016       PhoenixTucson
4431 conventional       2016       PhoenixTucson
4432 conventional       2016       PhoenixTucson
4433 conventional       2016       PhoenixTucson
4434 conventional       2016       PhoenixTucson
4435 conventional       2016       PhoenixTucson
4436 conventional       2016       PhoenixTucson
4437 conventional       2016       PhoenixTucson
4438 conventional       2016       PhoenixTucson
4439 conventional       2016       PhoenixTucson
4440 conventional       2016       PhoenixTucson
4441 conventional       2016       PhoenixTucson
4442 conventional       2016       PhoenixTucson
4443 conventional       2016       PhoenixTucson
4444 conventional       2016       PhoenixTucson
4445 conventional       2016       PhoenixTucson
4446 conventional       2016       PhoenixTucson
4447 conventional       2016       PhoenixTucson
4448 conventional       2016       PhoenixTucson
4449 conventional       2016       PhoenixTucson
4450 conventional       2016       PhoenixTucson
4451 conventional       2016       PhoenixTucson
4452 conventional       2016       PhoenixTucson
4453 conventional       2016       PhoenixTucson
4454 conventional       2016       PhoenixTucson
4455 conventional       2016       PhoenixTucson
4456 conventional       2016       PhoenixTucson
4457 conventional       2016       PhoenixTucson
4458 conventional       2016       PhoenixTucson
4459 conventional       2016       PhoenixTucson
4460 conventional       2016       PhoenixTucson
4461 conventional       2016       PhoenixTucson
4462 conventional       2016       PhoenixTucson
4463 conventional       2016       PhoenixTucson
4464 conventional       2016       PhoenixTucson
4465 conventional       2016       PhoenixTucson
4466 conventional       2016       PhoenixTucson
4467 conventional       2016       PhoenixTucson
4468 conventional       2016       PhoenixTucson
4469 conventional       2016       PhoenixTucson
4470 conventional       2016       PhoenixTucson
4471 conventional       2016       PhoenixTucson
4472 conventional       2016       PhoenixTucson
4473 conventional       2016          Pittsburgh
4474 conventional       2016          Pittsburgh
4475 conventional       2016          Pittsburgh
4476 conventional       2016          Pittsburgh
4477 conventional       2016          Pittsburgh
4478 conventional       2016          Pittsburgh
4479 conventional       2016          Pittsburgh
4480 conventional       2016          Pittsburgh
4481 conventional       2016          Pittsburgh
4482 conventional       2016          Pittsburgh
4483 conventional       2016          Pittsburgh
4484 conventional       2016          Pittsburgh
4485 conventional       2016          Pittsburgh
4486 conventional       2016          Pittsburgh
4487 conventional       2016          Pittsburgh
4488 conventional       2016          Pittsburgh
4489 conventional       2016          Pittsburgh
4490 conventional       2016          Pittsburgh
4491 conventional       2016          Pittsburgh
4492 conventional       2016          Pittsburgh
4493 conventional       2016          Pittsburgh
4494 conventional       2016          Pittsburgh
4495 conventional       2016          Pittsburgh
4496 conventional       2016          Pittsburgh
4497 conventional       2016          Pittsburgh
4498 conventional       2016          Pittsburgh
4499 conventional       2016          Pittsburgh
4500 conventional       2016          Pittsburgh
4501 conventional       2016          Pittsburgh
4502 conventional       2016          Pittsburgh
4503 conventional       2016          Pittsburgh
4504 conventional       2016          Pittsburgh
4505 conventional       2016          Pittsburgh
4506 conventional       2016          Pittsburgh
4507 conventional       2016          Pittsburgh
4508 conventional       2016          Pittsburgh
4509 conventional       2016          Pittsburgh
4510 conventional       2016          Pittsburgh
4511 conventional       2016          Pittsburgh
4512 conventional       2016          Pittsburgh
4513 conventional       2016          Pittsburgh
4514 conventional       2016          Pittsburgh
4515 conventional       2016          Pittsburgh
4516 conventional       2016          Pittsburgh
4517 conventional       2016          Pittsburgh
4518 conventional       2016          Pittsburgh
4519 conventional       2016          Pittsburgh
4520 conventional       2016          Pittsburgh
4521 conventional       2016          Pittsburgh
4522 conventional       2016          Pittsburgh
4523 conventional       2016          Pittsburgh
4524 conventional       2016          Pittsburgh
4525 conventional       2016              Plains
4526 conventional       2016              Plains
4527 conventional       2016              Plains
4528 conventional       2016              Plains
4529 conventional       2016              Plains
4530 conventional       2016              Plains
4531 conventional       2016              Plains
4532 conventional       2016              Plains
4533 conventional       2016              Plains
4534 conventional       2016              Plains
4535 conventional       2016              Plains
4536 conventional       2016              Plains
4537 conventional       2016              Plains
4538 conventional       2016              Plains
4539 conventional       2016              Plains
4540 conventional       2016              Plains
4541 conventional       2016              Plains
4542 conventional       2016              Plains
4543 conventional       2016              Plains
4544 conventional       2016              Plains
4545 conventional       2016              Plains
4546 conventional       2016              Plains
4547 conventional       2016              Plains
4548 conventional       2016              Plains
4549 conventional       2016              Plains
4550 conventional       2016              Plains
4551 conventional       2016              Plains
4552 conventional       2016              Plains
4553 conventional       2016              Plains
4554 conventional       2016              Plains
4555 conventional       2016              Plains
4556 conventional       2016              Plains
4557 conventional       2016              Plains
4558 conventional       2016              Plains
4559 conventional       2016              Plains
4560 conventional       2016              Plains
4561 conventional       2016              Plains
4562 conventional       2016              Plains
4563 conventional       2016              Plains
4564 conventional       2016              Plains
4565 conventional       2016              Plains
4566 conventional       2016              Plains
4567 conventional       2016              Plains
4568 conventional       2016              Plains
4569 conventional       2016              Plains
4570 conventional       2016              Plains
4571 conventional       2016              Plains
4572 conventional       2016              Plains
4573 conventional       2016              Plains
4574 conventional       2016              Plains
4575 conventional       2016              Plains
4576 conventional       2016              Plains
4577 conventional       2016            Portland
4578 conventional       2016            Portland
4579 conventional       2016            Portland
4580 conventional       2016            Portland
4581 conventional       2016            Portland
4582 conventional       2016            Portland
4583 conventional       2016            Portland
4584 conventional       2016            Portland
4585 conventional       2016            Portland
4586 conventional       2016            Portland
4587 conventional       2016            Portland
4588 conventional       2016            Portland
4589 conventional       2016            Portland
4590 conventional       2016            Portland
4591 conventional       2016            Portland
4592 conventional       2016            Portland
4593 conventional       2016            Portland
4594 conventional       2016            Portland
4595 conventional       2016            Portland
4596 conventional       2016            Portland
4597 conventional       2016            Portland
4598 conventional       2016            Portland
4599 conventional       2016            Portland
4600 conventional       2016            Portland
4601 conventional       2016            Portland
4602 conventional       2016            Portland
4603 conventional       2016            Portland
4604 conventional       2016            Portland
4605 conventional       2016            Portland
4606 conventional       2016            Portland
4607 conventional       2016            Portland
4608 conventional       2016            Portland
4609 conventional       2016            Portland
4610 conventional       2016            Portland
4611 conventional       2016            Portland
4612 conventional       2016            Portland
4613 conventional       2016            Portland
4614 conventional       2016            Portland
4615 conventional       2016            Portland
4616 conventional       2016            Portland
4617 conventional       2016            Portland
4618 conventional       2016            Portland
4619 conventional       2016            Portland
4620 conventional       2016            Portland
4621 conventional       2016            Portland
4622 conventional       2016            Portland
4623 conventional       2016            Portland
4624 conventional       2016            Portland
4625 conventional       2016            Portland
4626 conventional       2016            Portland
4627 conventional       2016            Portland
4628 conventional       2016            Portland
4629 conventional       2016   RaleighGreensboro
4630 conventional       2016   RaleighGreensboro
4631 conventional       2016   RaleighGreensboro
4632 conventional       2016   RaleighGreensboro
4633 conventional       2016   RaleighGreensboro
4634 conventional       2016   RaleighGreensboro
4635 conventional       2016   RaleighGreensboro
4636 conventional       2016   RaleighGreensboro
4637 conventional       2016   RaleighGreensboro
4638 conventional       2016   RaleighGreensboro
4639 conventional       2016   RaleighGreensboro
4640 conventional       2016   RaleighGreensboro
4641 conventional       2016   RaleighGreensboro
4642 conventional       2016   RaleighGreensboro
4643 conventional       2016   RaleighGreensboro
4644 conventional       2016   RaleighGreensboro
4645 conventional       2016   RaleighGreensboro
4646 conventional       2016   RaleighGreensboro
4647 conventional       2016   RaleighGreensboro
4648 conventional       2016   RaleighGreensboro
4649 conventional       2016   RaleighGreensboro
4650 conventional       2016   RaleighGreensboro
4651 conventional       2016   RaleighGreensboro
4652 conventional       2016   RaleighGreensboro
4653 conventional       2016   RaleighGreensboro
4654 conventional       2016   RaleighGreensboro
4655 conventional       2016   RaleighGreensboro
4656 conventional       2016   RaleighGreensboro
4657 conventional       2016   RaleighGreensboro
4658 conventional       2016   RaleighGreensboro
4659 conventional       2016   RaleighGreensboro
4660 conventional       2016   RaleighGreensboro
4661 conventional       2016   RaleighGreensboro
4662 conventional       2016   RaleighGreensboro
4663 conventional       2016   RaleighGreensboro
4664 conventional       2016   RaleighGreensboro
4665 conventional       2016   RaleighGreensboro
4666 conventional       2016   RaleighGreensboro
4667 conventional       2016   RaleighGreensboro
4668 conventional       2016   RaleighGreensboro
4669 conventional       2016   RaleighGreensboro
4670 conventional       2016   RaleighGreensboro
4671 conventional       2016   RaleighGreensboro
4672 conventional       2016   RaleighGreensboro
4673 conventional       2016   RaleighGreensboro
4674 conventional       2016   RaleighGreensboro
4675 conventional       2016   RaleighGreensboro
4676 conventional       2016   RaleighGreensboro
4677 conventional       2016   RaleighGreensboro
4678 conventional       2016   RaleighGreensboro
4679 conventional       2016   RaleighGreensboro
4680 conventional       2016   RaleighGreensboro
4681 conventional       2016     RichmondNorfolk
4682 conventional       2016     RichmondNorfolk
4683 conventional       2016     RichmondNorfolk
4684 conventional       2016     RichmondNorfolk
4685 conventional       2016     RichmondNorfolk
4686 conventional       2016     RichmondNorfolk
4687 conventional       2016     RichmondNorfolk
4688 conventional       2016     RichmondNorfolk
4689 conventional       2016     RichmondNorfolk
4690 conventional       2016     RichmondNorfolk
4691 conventional       2016     RichmondNorfolk
4692 conventional       2016     RichmondNorfolk
4693 conventional       2016     RichmondNorfolk
4694 conventional       2016     RichmondNorfolk
4695 conventional       2016     RichmondNorfolk
4696 conventional       2016     RichmondNorfolk
4697 conventional       2016     RichmondNorfolk
4698 conventional       2016     RichmondNorfolk
4699 conventional       2016     RichmondNorfolk
4700 conventional       2016     RichmondNorfolk
4701 conventional       2016     RichmondNorfolk
4702 conventional       2016     RichmondNorfolk
4703 conventional       2016     RichmondNorfolk
4704 conventional       2016     RichmondNorfolk
4705 conventional       2016     RichmondNorfolk
4706 conventional       2016     RichmondNorfolk
4707 conventional       2016     RichmondNorfolk
4708 conventional       2016     RichmondNorfolk
4709 conventional       2016     RichmondNorfolk
4710 conventional       2016     RichmondNorfolk
4711 conventional       2016     RichmondNorfolk
4712 conventional       2016     RichmondNorfolk
4713 conventional       2016     RichmondNorfolk
4714 conventional       2016     RichmondNorfolk
4715 conventional       2016     RichmondNorfolk
4716 conventional       2016     RichmondNorfolk
4717 conventional       2016     RichmondNorfolk
4718 conventional       2016     RichmondNorfolk
4719 conventional       2016     RichmondNorfolk
4720 conventional       2016     RichmondNorfolk
4721 conventional       2016     RichmondNorfolk
4722 conventional       2016     RichmondNorfolk
4723 conventional       2016     RichmondNorfolk
4724 conventional       2016     RichmondNorfolk
4725 conventional       2016     RichmondNorfolk
4726 conventional       2016     RichmondNorfolk
4727 conventional       2016     RichmondNorfolk
4728 conventional       2016     RichmondNorfolk
4729 conventional       2016     RichmondNorfolk
4730 conventional       2016     RichmondNorfolk
4731 conventional       2016     RichmondNorfolk
4732 conventional       2016     RichmondNorfolk
4733 conventional       2016             Roanoke
4734 conventional       2016             Roanoke
4735 conventional       2016             Roanoke
4736 conventional       2016             Roanoke
4737 conventional       2016             Roanoke
4738 conventional       2016             Roanoke
4739 conventional       2016             Roanoke
4740 conventional       2016             Roanoke
4741 conventional       2016             Roanoke
4742 conventional       2016             Roanoke
4743 conventional       2016             Roanoke
4744 conventional       2016             Roanoke
4745 conventional       2016             Roanoke
4746 conventional       2016             Roanoke
4747 conventional       2016             Roanoke
4748 conventional       2016             Roanoke
4749 conventional       2016             Roanoke
4750 conventional       2016             Roanoke
4751 conventional       2016             Roanoke
4752 conventional       2016             Roanoke
4753 conventional       2016             Roanoke
4754 conventional       2016             Roanoke
4755 conventional       2016             Roanoke
4756 conventional       2016             Roanoke
4757 conventional       2016             Roanoke
4758 conventional       2016             Roanoke
4759 conventional       2016             Roanoke
4760 conventional       2016             Roanoke
4761 conventional       2016             Roanoke
4762 conventional       2016             Roanoke
4763 conventional       2016             Roanoke
4764 conventional       2016             Roanoke
4765 conventional       2016             Roanoke
4766 conventional       2016             Roanoke
4767 conventional       2016             Roanoke
4768 conventional       2016             Roanoke
4769 conventional       2016             Roanoke
4770 conventional       2016             Roanoke
4771 conventional       2016             Roanoke
4772 conventional       2016             Roanoke
4773 conventional       2016             Roanoke
4774 conventional       2016             Roanoke
4775 conventional       2016             Roanoke
4776 conventional       2016             Roanoke
4777 conventional       2016             Roanoke
4778 conventional       2016             Roanoke
4779 conventional       2016             Roanoke
4780 conventional       2016             Roanoke
4781 conventional       2016             Roanoke
4782 conventional       2016             Roanoke
4783 conventional       2016             Roanoke
4784 conventional       2016             Roanoke
4785 conventional       2016          Sacramento
4786 conventional       2016          Sacramento
4787 conventional       2016          Sacramento
4788 conventional       2016          Sacramento
4789 conventional       2016          Sacramento
4790 conventional       2016          Sacramento
4791 conventional       2016          Sacramento
4792 conventional       2016          Sacramento
4793 conventional       2016          Sacramento
4794 conventional       2016          Sacramento
4795 conventional       2016          Sacramento
4796 conventional       2016          Sacramento
4797 conventional       2016          Sacramento
4798 conventional       2016          Sacramento
4799 conventional       2016          Sacramento
4800 conventional       2016          Sacramento
4801 conventional       2016          Sacramento
4802 conventional       2016          Sacramento
4803 conventional       2016          Sacramento
4804 conventional       2016          Sacramento
4805 conventional       2016          Sacramento
4806 conventional       2016          Sacramento
4807 conventional       2016          Sacramento
4808 conventional       2016          Sacramento
4809 conventional       2016          Sacramento
4810 conventional       2016          Sacramento
4811 conventional       2016          Sacramento
4812 conventional       2016          Sacramento
4813 conventional       2016          Sacramento
4814 conventional       2016          Sacramento
4815 conventional       2016          Sacramento
4816 conventional       2016          Sacramento
4817 conventional       2016          Sacramento
4818 conventional       2016          Sacramento
4819 conventional       2016          Sacramento
4820 conventional       2016          Sacramento
4821 conventional       2016          Sacramento
4822 conventional       2016          Sacramento
4823 conventional       2016          Sacramento
4824 conventional       2016          Sacramento
4825 conventional       2016          Sacramento
4826 conventional       2016          Sacramento
4827 conventional       2016          Sacramento
4828 conventional       2016          Sacramento
4829 conventional       2016          Sacramento
4830 conventional       2016          Sacramento
4831 conventional       2016          Sacramento
4832 conventional       2016          Sacramento
4833 conventional       2016          Sacramento
4834 conventional       2016          Sacramento
4835 conventional       2016          Sacramento
4836 conventional       2016          Sacramento
4837 conventional       2016            SanDiego
4838 conventional       2016            SanDiego
4839 conventional       2016            SanDiego
4840 conventional       2016            SanDiego
4841 conventional       2016            SanDiego
4842 conventional       2016            SanDiego
4843 conventional       2016            SanDiego
4844 conventional       2016            SanDiego
4845 conventional       2016            SanDiego
4846 conventional       2016            SanDiego
4847 conventional       2016            SanDiego
4848 conventional       2016            SanDiego
4849 conventional       2016            SanDiego
4850 conventional       2016            SanDiego
4851 conventional       2016            SanDiego
4852 conventional       2016            SanDiego
4853 conventional       2016            SanDiego
4854 conventional       2016            SanDiego
4855 conventional       2016            SanDiego
4856 conventional       2016            SanDiego
4857 conventional       2016            SanDiego
4858 conventional       2016            SanDiego
4859 conventional       2016            SanDiego
4860 conventional       2016            SanDiego
4861 conventional       2016            SanDiego
4862 conventional       2016            SanDiego
4863 conventional       2016            SanDiego
4864 conventional       2016            SanDiego
4865 conventional       2016            SanDiego
4866 conventional       2016            SanDiego
4867 conventional       2016            SanDiego
4868 conventional       2016            SanDiego
4869 conventional       2016            SanDiego
4870 conventional       2016            SanDiego
4871 conventional       2016            SanDiego
4872 conventional       2016            SanDiego
4873 conventional       2016            SanDiego
4874 conventional       2016            SanDiego
4875 conventional       2016            SanDiego
4876 conventional       2016            SanDiego
4877 conventional       2016            SanDiego
4878 conventional       2016            SanDiego
4879 conventional       2016            SanDiego
4880 conventional       2016            SanDiego
4881 conventional       2016            SanDiego
4882 conventional       2016            SanDiego
4883 conventional       2016            SanDiego
4884 conventional       2016            SanDiego
4885 conventional       2016            SanDiego
4886 conventional       2016            SanDiego
4887 conventional       2016            SanDiego
4888 conventional       2016            SanDiego
4889 conventional       2016        SanFrancisco
4890 conventional       2016        SanFrancisco
4891 conventional       2016        SanFrancisco
4892 conventional       2016        SanFrancisco
4893 conventional       2016        SanFrancisco
4894 conventional       2016        SanFrancisco
4895 conventional       2016        SanFrancisco
4896 conventional       2016        SanFrancisco
4897 conventional       2016        SanFrancisco
4898 conventional       2016        SanFrancisco
4899 conventional       2016        SanFrancisco
4900 conventional       2016        SanFrancisco
4901 conventional       2016        SanFrancisco
4902 conventional       2016        SanFrancisco
4903 conventional       2016        SanFrancisco
4904 conventional       2016        SanFrancisco
4905 conventional       2016        SanFrancisco
4906 conventional       2016        SanFrancisco
4907 conventional       2016        SanFrancisco
4908 conventional       2016        SanFrancisco
4909 conventional       2016        SanFrancisco
4910 conventional       2016        SanFrancisco
4911 conventional       2016        SanFrancisco
4912 conventional       2016        SanFrancisco
4913 conventional       2016        SanFrancisco
4914 conventional       2016        SanFrancisco
4915 conventional       2016        SanFrancisco
4916 conventional       2016        SanFrancisco
4917 conventional       2016        SanFrancisco
4918 conventional       2016        SanFrancisco
4919 conventional       2016        SanFrancisco
4920 conventional       2016        SanFrancisco
4921 conventional       2016        SanFrancisco
4922 conventional       2016        SanFrancisco
4923 conventional       2016        SanFrancisco
4924 conventional       2016        SanFrancisco
4925 conventional       2016        SanFrancisco
4926 conventional       2016        SanFrancisco
4927 conventional       2016        SanFrancisco
4928 conventional       2016        SanFrancisco
4929 conventional       2016        SanFrancisco
4930 conventional       2016        SanFrancisco
4931 conventional       2016        SanFrancisco
4932 conventional       2016        SanFrancisco
4933 conventional       2016        SanFrancisco
4934 conventional       2016        SanFrancisco
4935 conventional       2016        SanFrancisco
4936 conventional       2016        SanFrancisco
4937 conventional       2016        SanFrancisco
4938 conventional       2016        SanFrancisco
4939 conventional       2016        SanFrancisco
4940 conventional       2016        SanFrancisco
4941 conventional       2016             Seattle
4942 conventional       2016             Seattle
4943 conventional       2016             Seattle
4944 conventional       2016             Seattle
4945 conventional       2016             Seattle
4946 conventional       2016             Seattle
4947 conventional       2016             Seattle
4948 conventional       2016             Seattle
4949 conventional       2016             Seattle
4950 conventional       2016             Seattle
4951 conventional       2016             Seattle
4952 conventional       2016             Seattle
4953 conventional       2016             Seattle
4954 conventional       2016             Seattle
4955 conventional       2016             Seattle
4956 conventional       2016             Seattle
4957 conventional       2016             Seattle
4958 conventional       2016             Seattle
4959 conventional       2016             Seattle
4960 conventional       2016             Seattle
4961 conventional       2016             Seattle
4962 conventional       2016             Seattle
4963 conventional       2016             Seattle
4964 conventional       2016             Seattle
4965 conventional       2016             Seattle
4966 conventional       2016             Seattle
4967 conventional       2016             Seattle
4968 conventional       2016             Seattle
4969 conventional       2016             Seattle
4970 conventional       2016             Seattle
4971 conventional       2016             Seattle
4972 conventional       2016             Seattle
4973 conventional       2016             Seattle
4974 conventional       2016             Seattle
4975 conventional       2016             Seattle
4976 conventional       2016             Seattle
4977 conventional       2016             Seattle
4978 conventional       2016             Seattle
4979 conventional       2016             Seattle
4980 conventional       2016             Seattle
4981 conventional       2016             Seattle
4982 conventional       2016             Seattle
4983 conventional       2016             Seattle
4984 conventional       2016             Seattle
4985 conventional       2016             Seattle
4986 conventional       2016             Seattle
4987 conventional       2016             Seattle
4988 conventional       2016             Seattle
4989 conventional       2016             Seattle
4990 conventional       2016             Seattle
4991 conventional       2016             Seattle
4992 conventional       2016             Seattle
4993 conventional       2016       SouthCarolina
4994 conventional       2016       SouthCarolina
4995 conventional       2016       SouthCarolina
4996 conventional       2016       SouthCarolina
4997 conventional       2016       SouthCarolina
4998 conventional       2016       SouthCarolina
4999 conventional       2016       SouthCarolina
5000 conventional       2016       SouthCarolina
5001 conventional       2016       SouthCarolina
5002 conventional       2016       SouthCarolina
5003 conventional       2016       SouthCarolina
5004 conventional       2016       SouthCarolina
5005 conventional       2016       SouthCarolina
5006 conventional       2016       SouthCarolina
5007 conventional       2016       SouthCarolina
5008 conventional       2016       SouthCarolina
5009 conventional       2016       SouthCarolina
5010 conventional       2016       SouthCarolina
5011 conventional       2016       SouthCarolina
5012 conventional       2016       SouthCarolina
5013 conventional       2016       SouthCarolina
5014 conventional       2016       SouthCarolina
5015 conventional       2016       SouthCarolina
5016 conventional       2016       SouthCarolina
5017 conventional       2016       SouthCarolina
5018 conventional       2016       SouthCarolina
5019 conventional       2016       SouthCarolina
5020 conventional       2016       SouthCarolina
5021 conventional       2016       SouthCarolina
5022 conventional       2016       SouthCarolina
5023 conventional       2016       SouthCarolina
5024 conventional       2016       SouthCarolina
5025 conventional       2016       SouthCarolina
5026 conventional       2016       SouthCarolina
5027 conventional       2016       SouthCarolina
5028 conventional       2016       SouthCarolina
5029 conventional       2016       SouthCarolina
5030 conventional       2016       SouthCarolina
5031 conventional       2016       SouthCarolina
5032 conventional       2016       SouthCarolina
5033 conventional       2016       SouthCarolina
5034 conventional       2016       SouthCarolina
5035 conventional       2016       SouthCarolina
5036 conventional       2016       SouthCarolina
5037 conventional       2016       SouthCarolina
5038 conventional       2016       SouthCarolina
5039 conventional       2016       SouthCarolina
5040 conventional       2016       SouthCarolina
5041 conventional       2016       SouthCarolina
5042 conventional       2016       SouthCarolina
5043 conventional       2016       SouthCarolina
5044 conventional       2016       SouthCarolina
5045 conventional       2016        SouthCentral
5046 conventional       2016        SouthCentral
5047 conventional       2016        SouthCentral
5048 conventional       2016        SouthCentral
5049 conventional       2016        SouthCentral
5050 conventional       2016        SouthCentral
5051 conventional       2016        SouthCentral
5052 conventional       2016        SouthCentral
5053 conventional       2016        SouthCentral
5054 conventional       2016        SouthCentral
5055 conventional       2016        SouthCentral
5056 conventional       2016        SouthCentral
5057 conventional       2016        SouthCentral
5058 conventional       2016        SouthCentral
5059 conventional       2016        SouthCentral
5060 conventional       2016        SouthCentral
5061 conventional       2016        SouthCentral
5062 conventional       2016        SouthCentral
5063 conventional       2016        SouthCentral
5064 conventional       2016        SouthCentral
5065 conventional       2016        SouthCentral
5066 conventional       2016        SouthCentral
5067 conventional       2016        SouthCentral
5068 conventional       2016        SouthCentral
5069 conventional       2016        SouthCentral
5070 conventional       2016        SouthCentral
5071 conventional       2016        SouthCentral
5072 conventional       2016        SouthCentral
5073 conventional       2016        SouthCentral
5074 conventional       2016        SouthCentral
5075 conventional       2016        SouthCentral
5076 conventional       2016        SouthCentral
5077 conventional       2016        SouthCentral
5078 conventional       2016        SouthCentral
5079 conventional       2016        SouthCentral
5080 conventional       2016        SouthCentral
5081 conventional       2016        SouthCentral
5082 conventional       2016        SouthCentral
5083 conventional       2016        SouthCentral
5084 conventional       2016        SouthCentral
5085 conventional       2016        SouthCentral
5086 conventional       2016        SouthCentral
5087 conventional       2016        SouthCentral
5088 conventional       2016        SouthCentral
5089 conventional       2016        SouthCentral
5090 conventional       2016        SouthCentral
5091 conventional       2016        SouthCentral
5092 conventional       2016        SouthCentral
5093 conventional       2016        SouthCentral
5094 conventional       2016        SouthCentral
5095 conventional       2016        SouthCentral
5096 conventional       2016        SouthCentral
5097 conventional       2016           Southeast
5098 conventional       2016           Southeast
5099 conventional       2016           Southeast
5100 conventional       2016           Southeast
5101 conventional       2016           Southeast
5102 conventional       2016           Southeast
5103 conventional       2016           Southeast
5104 conventional       2016           Southeast
5105 conventional       2016           Southeast
5106 conventional       2016           Southeast
5107 conventional       2016           Southeast
5108 conventional       2016           Southeast
5109 conventional       2016           Southeast
5110 conventional       2016           Southeast
5111 conventional       2016           Southeast
5112 conventional       2016           Southeast
5113 conventional       2016           Southeast
5114 conventional       2016           Southeast
5115 conventional       2016           Southeast
5116 conventional       2016           Southeast
5117 conventional       2016           Southeast
5118 conventional       2016           Southeast
5119 conventional       2016           Southeast
5120 conventional       2016           Southeast
5121 conventional       2016           Southeast
5122 conventional       2016           Southeast
5123 conventional       2016           Southeast
5124 conventional       2016           Southeast
5125 conventional       2016           Southeast
5126 conventional       2016           Southeast
5127 conventional       2016           Southeast
5128 conventional       2016           Southeast
5129 conventional       2016           Southeast
5130 conventional       2016           Southeast
5131 conventional       2016           Southeast
5132 conventional       2016           Southeast
5133 conventional       2016           Southeast
5134 conventional       2016           Southeast
5135 conventional       2016           Southeast
5136 conventional       2016           Southeast
5137 conventional       2016           Southeast
5138 conventional       2016           Southeast
5139 conventional       2016           Southeast
5140 conventional       2016           Southeast
5141 conventional       2016           Southeast
5142 conventional       2016           Southeast
5143 conventional       2016           Southeast
5144 conventional       2016           Southeast
5145 conventional       2016           Southeast
5146 conventional       2016           Southeast
5147 conventional       2016           Southeast
5148 conventional       2016           Southeast
5149 conventional       2016             Spokane
5150 conventional       2016             Spokane
5151 conventional       2016             Spokane
5152 conventional       2016             Spokane
5153 conventional       2016             Spokane
5154 conventional       2016             Spokane
5155 conventional       2016             Spokane
5156 conventional       2016             Spokane
5157 conventional       2016             Spokane
5158 conventional       2016             Spokane
5159 conventional       2016             Spokane
5160 conventional       2016             Spokane
5161 conventional       2016             Spokane
5162 conventional       2016             Spokane
5163 conventional       2016             Spokane
5164 conventional       2016             Spokane
5165 conventional       2016             Spokane
5166 conventional       2016             Spokane
5167 conventional       2016             Spokane
5168 conventional       2016             Spokane
5169 conventional       2016             Spokane
5170 conventional       2016             Spokane
5171 conventional       2016             Spokane
5172 conventional       2016             Spokane
5173 conventional       2016             Spokane
5174 conventional       2016             Spokane
5175 conventional       2016             Spokane
5176 conventional       2016             Spokane
5177 conventional       2016             Spokane
5178 conventional       2016             Spokane
5179 conventional       2016             Spokane
5180 conventional       2016             Spokane
5181 conventional       2016             Spokane
5182 conventional       2016             Spokane
5183 conventional       2016             Spokane
5184 conventional       2016             Spokane
5185 conventional       2016             Spokane
5186 conventional       2016             Spokane
5187 conventional       2016             Spokane
5188 conventional       2016             Spokane
5189 conventional       2016             Spokane
5190 conventional       2016             Spokane
5191 conventional       2016             Spokane
5192 conventional       2016             Spokane
5193 conventional       2016             Spokane
5194 conventional       2016             Spokane
5195 conventional       2016             Spokane
5196 conventional       2016             Spokane
5197 conventional       2016             Spokane
5198 conventional       2016             Spokane
5199 conventional       2016             Spokane
5200 conventional       2016             Spokane
5201 conventional       2016             StLouis
5202 conventional       2016             StLouis
5203 conventional       2016             StLouis
5204 conventional       2016             StLouis
5205 conventional       2016             StLouis
5206 conventional       2016             StLouis
5207 conventional       2016             StLouis
5208 conventional       2016             StLouis
5209 conventional       2016             StLouis
5210 conventional       2016             StLouis
5211 conventional       2016             StLouis
5212 conventional       2016             StLouis
5213 conventional       2016             StLouis
5214 conventional       2016             StLouis
5215 conventional       2016             StLouis
5216 conventional       2016             StLouis
5217 conventional       2016             StLouis
5218 conventional       2016             StLouis
5219 conventional       2016             StLouis
5220 conventional       2016             StLouis
5221 conventional       2016             StLouis
5222 conventional       2016             StLouis
5223 conventional       2016             StLouis
5224 conventional       2016             StLouis
5225 conventional       2016             StLouis
5226 conventional       2016             StLouis
5227 conventional       2016             StLouis
5228 conventional       2016             StLouis
5229 conventional       2016             StLouis
5230 conventional       2016             StLouis
5231 conventional       2016             StLouis
5232 conventional       2016             StLouis
5233 conventional       2016             StLouis
5234 conventional       2016             StLouis
5235 conventional       2016             StLouis
5236 conventional       2016             StLouis
5237 conventional       2016             StLouis
5238 conventional       2016             StLouis
5239 conventional       2016             StLouis
5240 conventional       2016             StLouis
5241 conventional       2016             StLouis
5242 conventional       2016             StLouis
5243 conventional       2016             StLouis
5244 conventional       2016             StLouis
5245 conventional       2016             StLouis
5246 conventional       2016             StLouis
5247 conventional       2016             StLouis
5248 conventional       2016             StLouis
5249 conventional       2016             StLouis
5250 conventional       2016             StLouis
5251 conventional       2016             StLouis
5252 conventional       2016             StLouis
5253 conventional       2016            Syracuse
5254 conventional       2016            Syracuse
5255 conventional       2016            Syracuse
5256 conventional       2016            Syracuse
5257 conventional       2016            Syracuse
5258 conventional       2016            Syracuse
5259 conventional       2016            Syracuse
5260 conventional       2016            Syracuse
5261 conventional       2016            Syracuse
5262 conventional       2016            Syracuse
5263 conventional       2016            Syracuse
5264 conventional       2016            Syracuse
5265 conventional       2016            Syracuse
5266 conventional       2016            Syracuse
5267 conventional       2016            Syracuse
5268 conventional       2016            Syracuse
5269 conventional       2016            Syracuse
5270 conventional       2016            Syracuse
5271 conventional       2016            Syracuse
5272 conventional       2016            Syracuse
5273 conventional       2016            Syracuse
5274 conventional       2016            Syracuse
5275 conventional       2016            Syracuse
5276 conventional       2016            Syracuse
5277 conventional       2016            Syracuse
5278 conventional       2016            Syracuse
5279 conventional       2016            Syracuse
5280 conventional       2016            Syracuse
5281 conventional       2016            Syracuse
5282 conventional       2016            Syracuse
5283 conventional       2016            Syracuse
5284 conventional       2016            Syracuse
5285 conventional       2016            Syracuse
5286 conventional       2016            Syracuse
5287 conventional       2016            Syracuse
5288 conventional       2016            Syracuse
5289 conventional       2016            Syracuse
5290 conventional       2016            Syracuse
5291 conventional       2016            Syracuse
5292 conventional       2016            Syracuse
5293 conventional       2016            Syracuse
5294 conventional       2016            Syracuse
5295 conventional       2016            Syracuse
5296 conventional       2016            Syracuse
5297 conventional       2016            Syracuse
5298 conventional       2016            Syracuse
5299 conventional       2016            Syracuse
5300 conventional       2016            Syracuse
5301 conventional       2016            Syracuse
5302 conventional       2016            Syracuse
5303 conventional       2016            Syracuse
5304 conventional       2016            Syracuse
5305 conventional       2016               Tampa
5306 conventional       2016               Tampa
5307 conventional       2016               Tampa
5308 conventional       2016               Tampa
5309 conventional       2016               Tampa
5310 conventional       2016               Tampa
5311 conventional       2016               Tampa
5312 conventional       2016               Tampa
5313 conventional       2016               Tampa
5314 conventional       2016               Tampa
5315 conventional       2016               Tampa
5316 conventional       2016               Tampa
5317 conventional       2016               Tampa
5318 conventional       2016               Tampa
5319 conventional       2016               Tampa
5320 conventional       2016               Tampa
5321 conventional       2016               Tampa
5322 conventional       2016               Tampa
5323 conventional       2016               Tampa
5324 conventional       2016               Tampa
5325 conventional       2016               Tampa
5326 conventional       2016               Tampa
5327 conventional       2016               Tampa
5328 conventional       2016               Tampa
5329 conventional       2016               Tampa
5330 conventional       2016               Tampa
5331 conventional       2016               Tampa
5332 conventional       2016               Tampa
5333 conventional       2016               Tampa
5334 conventional       2016               Tampa
5335 conventional       2016               Tampa
5336 conventional       2016               Tampa
5337 conventional       2016               Tampa
5338 conventional       2016               Tampa
5339 conventional       2016               Tampa
5340 conventional       2016               Tampa
5341 conventional       2016               Tampa
5342 conventional       2016               Tampa
5343 conventional       2016               Tampa
5344 conventional       2016               Tampa
5345 conventional       2016               Tampa
5346 conventional       2016               Tampa
5347 conventional       2016               Tampa
5348 conventional       2016               Tampa
5349 conventional       2016               Tampa
5350 conventional       2016               Tampa
5351 conventional       2016               Tampa
5352 conventional       2016               Tampa
5353 conventional       2016               Tampa
5354 conventional       2016               Tampa
5355 conventional       2016               Tampa
5356 conventional       2016               Tampa
5357 conventional       2016             TotalUS
5358 conventional       2016             TotalUS
5359 conventional       2016             TotalUS
5360 conventional       2016             TotalUS
5361 conventional       2016             TotalUS
5362 conventional       2016             TotalUS
5363 conventional       2016             TotalUS
5364 conventional       2016             TotalUS
5365 conventional       2016             TotalUS
5366 conventional       2016             TotalUS
5367 conventional       2016             TotalUS
5368 conventional       2016             TotalUS
5369 conventional       2016             TotalUS
5370 conventional       2016             TotalUS
5371 conventional       2016             TotalUS
5372 conventional       2016             TotalUS
5373 conventional       2016             TotalUS
5374 conventional       2016             TotalUS
5375 conventional       2016             TotalUS
5376 conventional       2016             TotalUS
5377 conventional       2016             TotalUS
5378 conventional       2016             TotalUS
5379 conventional       2016             TotalUS
5380 conventional       2016             TotalUS
5381 conventional       2016             TotalUS
5382 conventional       2016             TotalUS
5383 conventional       2016             TotalUS
5384 conventional       2016             TotalUS
5385 conventional       2016             TotalUS
5386 conventional       2016             TotalUS
5387 conventional       2016             TotalUS
5388 conventional       2016             TotalUS
5389 conventional       2016             TotalUS
5390 conventional       2016             TotalUS
5391 conventional       2016             TotalUS
5392 conventional       2016             TotalUS
5393 conventional       2016             TotalUS
5394 conventional       2016             TotalUS
5395 conventional       2016             TotalUS
5396 conventional       2016             TotalUS
5397 conventional       2016             TotalUS
5398 conventional       2016             TotalUS
5399 conventional       2016             TotalUS
5400 conventional       2016             TotalUS
5401 conventional       2016             TotalUS
5402 conventional       2016             TotalUS
5403 conventional       2016             TotalUS
5404 conventional       2016             TotalUS
5405 conventional       2016             TotalUS
5406 conventional       2016             TotalUS
5407 conventional       2016             TotalUS
5408 conventional       2016             TotalUS
5409 conventional       2016                West
5410 conventional       2016                West
5411 conventional       2016                West
5412 conventional       2016                West
5413 conventional       2016                West
5414 conventional       2016                West
5415 conventional       2016                West
5416 conventional       2016                West
5417 conventional       2016                West
5418 conventional       2016                West
5419 conventional       2016                West
5420 conventional       2016                West
5421 conventional       2016                West
5422 conventional       2016                West
5423 conventional       2016                West
5424 conventional       2016                West
5425 conventional       2016                West
5426 conventional       2016                West
5427 conventional       2016                West
5428 conventional       2016                West
5429 conventional       2016                West
5430 conventional       2016                West
5431 conventional       2016                West
5432 conventional       2016                West
5433 conventional       2016                West
5434 conventional       2016                West
5435 conventional       2016                West
5436 conventional       2016                West
5437 conventional       2016                West
5438 conventional       2016                West
5439 conventional       2016                West
5440 conventional       2016                West
5441 conventional       2016                West
5442 conventional       2016                West
5443 conventional       2016                West
5444 conventional       2016                West
5445 conventional       2016                West
5446 conventional       2016                West
5447 conventional       2016                West
5448 conventional       2016                West
5449 conventional       2016                West
5450 conventional       2016                West
5451 conventional       2016                West
5452 conventional       2016                West
5453 conventional       2016                West
5454 conventional       2016                West
5455 conventional       2016                West
5456 conventional       2016                West
5457 conventional       2016                West
5458 conventional       2016                West
5459 conventional       2016                West
5460 conventional       2016                West
5461 conventional       2016    WestTexNewMexico
5462 conventional       2016    WestTexNewMexico
5463 conventional       2016    WestTexNewMexico
5464 conventional       2016    WestTexNewMexico
5465 conventional       2016    WestTexNewMexico
5466 conventional       2016    WestTexNewMexico
5467 conventional       2016    WestTexNewMexico
5468 conventional       2016    WestTexNewMexico
5469 conventional       2016    WestTexNewMexico
5470 conventional       2016    WestTexNewMexico
5471 conventional       2016    WestTexNewMexico
5472 conventional       2016    WestTexNewMexico
5473 conventional       2016    WestTexNewMexico
5474 conventional       2016    WestTexNewMexico
5475 conventional       2016    WestTexNewMexico
5476 conventional       2016    WestTexNewMexico
5477 conventional       2016    WestTexNewMexico
5478 conventional       2016    WestTexNewMexico
5479 conventional       2016    WestTexNewMexico
5480 conventional       2016    WestTexNewMexico
5481 conventional       2016    WestTexNewMexico
5482 conventional       2016    WestTexNewMexico
5483 conventional       2016    WestTexNewMexico
5484 conventional       2016    WestTexNewMexico
5485 conventional       2016    WestTexNewMexico
5486 conventional       2016    WestTexNewMexico
5487 conventional       2016    WestTexNewMexico
5488 conventional       2016    WestTexNewMexico
5489 conventional       2016    WestTexNewMexico
5490 conventional       2016    WestTexNewMexico
5491 conventional       2016    WestTexNewMexico
5492 conventional       2016    WestTexNewMexico
5493 conventional       2016    WestTexNewMexico
5494 conventional       2016    WestTexNewMexico
5495 conventional       2016    WestTexNewMexico
5496 conventional       2016    WestTexNewMexico
5497 conventional       2016    WestTexNewMexico
5498 conventional       2016    WestTexNewMexico
5499 conventional       2016    WestTexNewMexico
5500 conventional       2016    WestTexNewMexico
5501 conventional       2016    WestTexNewMexico
5502 conventional       2016    WestTexNewMexico
5503 conventional       2016    WestTexNewMexico
5504 conventional       2016    WestTexNewMexico
5505 conventional       2016    WestTexNewMexico
5506 conventional       2016    WestTexNewMexico
5507 conventional       2016    WestTexNewMexico
5508 conventional       2016    WestTexNewMexico
5509 conventional       2016    WestTexNewMexico
5510 conventional       2016    WestTexNewMexico
5511 conventional       2016    WestTexNewMexico
5512 conventional       2016    WestTexNewMexico
5513 conventional       2017             Atlanta
5514 conventional       2017             Atlanta
5515 conventional       2017             Atlanta
5516 conventional       2017             Atlanta
5517 conventional       2017             Atlanta
5518 conventional       2017             Atlanta
5519 conventional       2017             Atlanta
5520 conventional       2017             Atlanta
5521 conventional       2017             Atlanta
5522 conventional       2017             Atlanta
5523 conventional       2017             Atlanta
5524 conventional       2017             Atlanta
5525 conventional       2017             Atlanta
5526 conventional       2017             Atlanta
5527 conventional       2017             Atlanta
5528 conventional       2017             Atlanta
5529 conventional       2017             Atlanta
5530 conventional       2017             Atlanta
5531 conventional       2017             Atlanta
5532 conventional       2017             Atlanta
5533 conventional       2017             Atlanta
5534 conventional       2017             Atlanta
5535 conventional       2017             Atlanta
5536 conventional       2017             Atlanta
5537 conventional       2017             Atlanta
5538 conventional       2017             Atlanta
5539 conventional       2017             Atlanta
5540 conventional       2017             Atlanta
5541 conventional       2017             Atlanta
5542 conventional       2017             Atlanta
5543 conventional       2017             Atlanta
5544 conventional       2017             Atlanta
5545 conventional       2017             Atlanta
5546 conventional       2017             Atlanta
5547 conventional       2017             Atlanta
5548 conventional       2017             Atlanta
5549 conventional       2017             Atlanta
5550 conventional       2017             Atlanta
5551 conventional       2017             Atlanta
5552 conventional       2017             Atlanta
5553 conventional       2017             Atlanta
5554 conventional       2017             Atlanta
5555 conventional       2017             Atlanta
5556 conventional       2017             Atlanta
5557 conventional       2017             Atlanta
5558 conventional       2017             Atlanta
5559 conventional       2017             Atlanta
5560 conventional       2017             Atlanta
5561 conventional       2017             Atlanta
5562 conventional       2017             Atlanta
5563 conventional       2017             Atlanta
5564 conventional       2017             Atlanta
5565 conventional       2017             Atlanta
5566 conventional       2017 BaltimoreWashington
5567 conventional       2017 BaltimoreWashington
5568 conventional       2017 BaltimoreWashington
5569 conventional       2017 BaltimoreWashington
5570 conventional       2017 BaltimoreWashington
5571 conventional       2017 BaltimoreWashington
5572 conventional       2017 BaltimoreWashington
5573 conventional       2017 BaltimoreWashington
5574 conventional       2017 BaltimoreWashington
5575 conventional       2017 BaltimoreWashington
5576 conventional       2017 BaltimoreWashington
5577 conventional       2017 BaltimoreWashington
5578 conventional       2017 BaltimoreWashington
5579 conventional       2017 BaltimoreWashington
5580 conventional       2017 BaltimoreWashington
5581 conventional       2017 BaltimoreWashington
5582 conventional       2017 BaltimoreWashington
5583 conventional       2017 BaltimoreWashington
5584 conventional       2017 BaltimoreWashington
5585 conventional       2017 BaltimoreWashington
5586 conventional       2017 BaltimoreWashington
5587 conventional       2017 BaltimoreWashington
5588 conventional       2017 BaltimoreWashington
5589 conventional       2017 BaltimoreWashington
5590 conventional       2017 BaltimoreWashington
5591 conventional       2017 BaltimoreWashington
5592 conventional       2017 BaltimoreWashington
5593 conventional       2017 BaltimoreWashington
5594 conventional       2017 BaltimoreWashington
5595 conventional       2017 BaltimoreWashington
5596 conventional       2017 BaltimoreWashington
5597 conventional       2017 BaltimoreWashington
5598 conventional       2017 BaltimoreWashington
5599 conventional       2017 BaltimoreWashington
5600 conventional       2017 BaltimoreWashington
5601 conventional       2017 BaltimoreWashington
5602 conventional       2017 BaltimoreWashington
5603 conventional       2017 BaltimoreWashington
5604 conventional       2017 BaltimoreWashington
5605 conventional       2017 BaltimoreWashington
5606 conventional       2017 BaltimoreWashington
5607 conventional       2017 BaltimoreWashington
5608 conventional       2017 BaltimoreWashington
5609 conventional       2017 BaltimoreWashington
5610 conventional       2017 BaltimoreWashington
5611 conventional       2017 BaltimoreWashington
5612 conventional       2017 BaltimoreWashington
5613 conventional       2017 BaltimoreWashington
5614 conventional       2017 BaltimoreWashington
5615 conventional       2017 BaltimoreWashington
5616 conventional       2017 BaltimoreWashington
5617 conventional       2017 BaltimoreWashington
5618 conventional       2017 BaltimoreWashington
5619 conventional       2017               Boise
5620 conventional       2017               Boise
5621 conventional       2017               Boise
5622 conventional       2017               Boise
5623 conventional       2017               Boise
5624 conventional       2017               Boise
5625 conventional       2017               Boise
5626 conventional       2017               Boise
5627 conventional       2017               Boise
5628 conventional       2017               Boise
5629 conventional       2017               Boise
5630 conventional       2017               Boise
5631 conventional       2017               Boise
5632 conventional       2017               Boise
5633 conventional       2017               Boise
5634 conventional       2017               Boise
5635 conventional       2017               Boise
5636 conventional       2017               Boise
5637 conventional       2017               Boise
5638 conventional       2017               Boise
5639 conventional       2017               Boise
5640 conventional       2017               Boise
5641 conventional       2017               Boise
5642 conventional       2017               Boise
5643 conventional       2017               Boise
5644 conventional       2017               Boise
5645 conventional       2017               Boise
5646 conventional       2017               Boise
5647 conventional       2017               Boise
5648 conventional       2017               Boise
5649 conventional       2017               Boise
5650 conventional       2017               Boise
5651 conventional       2017               Boise
5652 conventional       2017               Boise
5653 conventional       2017               Boise
5654 conventional       2017               Boise
5655 conventional       2017               Boise
5656 conventional       2017               Boise
5657 conventional       2017               Boise
5658 conventional       2017               Boise
5659 conventional       2017               Boise
5660 conventional       2017               Boise
5661 conventional       2017               Boise
5662 conventional       2017               Boise
5663 conventional       2017               Boise
5664 conventional       2017               Boise
5665 conventional       2017               Boise
5666 conventional       2017               Boise
5667 conventional       2017               Boise
5668 conventional       2017               Boise
5669 conventional       2017               Boise
5670 conventional       2017               Boise
5671 conventional       2017               Boise
5672 conventional       2017              Boston
5673 conventional       2017              Boston
5674 conventional       2017              Boston
5675 conventional       2017              Boston
5676 conventional       2017              Boston
5677 conventional       2017              Boston
5678 conventional       2017              Boston
5679 conventional       2017              Boston
5680 conventional       2017              Boston
5681 conventional       2017              Boston
5682 conventional       2017              Boston
5683 conventional       2017              Boston
5684 conventional       2017              Boston
5685 conventional       2017              Boston
5686 conventional       2017              Boston
5687 conventional       2017              Boston
5688 conventional       2017              Boston
5689 conventional       2017              Boston
5690 conventional       2017              Boston
5691 conventional       2017              Boston
5692 conventional       2017              Boston
5693 conventional       2017              Boston
5694 conventional       2017              Boston
5695 conventional       2017              Boston
5696 conventional       2017              Boston
5697 conventional       2017              Boston
5698 conventional       2017              Boston
5699 conventional       2017              Boston
5700 conventional       2017              Boston
5701 conventional       2017              Boston
5702 conventional       2017              Boston
5703 conventional       2017              Boston
5704 conventional       2017              Boston
5705 conventional       2017              Boston
5706 conventional       2017              Boston
5707 conventional       2017              Boston
5708 conventional       2017              Boston
5709 conventional       2017              Boston
5710 conventional       2017              Boston
5711 conventional       2017              Boston
5712 conventional       2017              Boston
5713 conventional       2017              Boston
5714 conventional       2017              Boston
5715 conventional       2017              Boston
5716 conventional       2017              Boston
5717 conventional       2017              Boston
5718 conventional       2017              Boston
5719 conventional       2017              Boston
5720 conventional       2017              Boston
5721 conventional       2017              Boston
5722 conventional       2017              Boston
5723 conventional       2017              Boston
5724 conventional       2017              Boston
5725 conventional       2017    BuffaloRochester
5726 conventional       2017    BuffaloRochester
5727 conventional       2017    BuffaloRochester
5728 conventional       2017    BuffaloRochester
5729 conventional       2017    BuffaloRochester
5730 conventional       2017    BuffaloRochester
5731 conventional       2017    BuffaloRochester
5732 conventional       2017    BuffaloRochester
5733 conventional       2017    BuffaloRochester
5734 conventional       2017    BuffaloRochester
5735 conventional       2017    BuffaloRochester
5736 conventional       2017    BuffaloRochester
5737 conventional       2017    BuffaloRochester
5738 conventional       2017    BuffaloRochester
5739 conventional       2017    BuffaloRochester
5740 conventional       2017    BuffaloRochester
5741 conventional       2017    BuffaloRochester
5742 conventional       2017    BuffaloRochester
5743 conventional       2017    BuffaloRochester
5744 conventional       2017    BuffaloRochester
5745 conventional       2017    BuffaloRochester
5746 conventional       2017    BuffaloRochester
5747 conventional       2017    BuffaloRochester
5748 conventional       2017    BuffaloRochester
5749 conventional       2017    BuffaloRochester
5750 conventional       2017    BuffaloRochester
5751 conventional       2017    BuffaloRochester
5752 conventional       2017    BuffaloRochester
5753 conventional       2017    BuffaloRochester
5754 conventional       2017    BuffaloRochester
5755 conventional       2017    BuffaloRochester
5756 conventional       2017    BuffaloRochester
5757 conventional       2017    BuffaloRochester
5758 conventional       2017    BuffaloRochester
5759 conventional       2017    BuffaloRochester
5760 conventional       2017    BuffaloRochester
5761 conventional       2017    BuffaloRochester
5762 conventional       2017    BuffaloRochester
5763 conventional       2017    BuffaloRochester
5764 conventional       2017    BuffaloRochester
5765 conventional       2017    BuffaloRochester
5766 conventional       2017    BuffaloRochester
5767 conventional       2017    BuffaloRochester
5768 conventional       2017    BuffaloRochester
5769 conventional       2017    BuffaloRochester
5770 conventional       2017    BuffaloRochester
5771 conventional       2017    BuffaloRochester
5772 conventional       2017    BuffaloRochester
5773 conventional       2017    BuffaloRochester
5774 conventional       2017    BuffaloRochester
5775 conventional       2017    BuffaloRochester
5776 conventional       2017    BuffaloRochester
5777 conventional       2017    BuffaloRochester
5778 conventional       2017          California
5779 conventional       2017          California
5780 conventional       2017          California
5781 conventional       2017          California
5782 conventional       2017          California
5783 conventional       2017          California
5784 conventional       2017          California
5785 conventional       2017          California
5786 conventional       2017          California
5787 conventional       2017          California
5788 conventional       2017          California
5789 conventional       2017          California
5790 conventional       2017          California
5791 conventional       2017          California
5792 conventional       2017          California
5793 conventional       2017          California
5794 conventional       2017          California
5795 conventional       2017          California
5796 conventional       2017          California
5797 conventional       2017          California
5798 conventional       2017          California
5799 conventional       2017          California
5800 conventional       2017          California
5801 conventional       2017          California
5802 conventional       2017          California
5803 conventional       2017          California
5804 conventional       2017          California
5805 conventional       2017          California
5806 conventional       2017          California
5807 conventional       2017          California
5808 conventional       2017          California
5809 conventional       2017          California
5810 conventional       2017          California
5811 conventional       2017          California
5812 conventional       2017          California
5813 conventional       2017          California
5814 conventional       2017          California
5815 conventional       2017          California
5816 conventional       2017          California
5817 conventional       2017          California
5818 conventional       2017          California
5819 conventional       2017          California
5820 conventional       2017          California
5821 conventional       2017          California
5822 conventional       2017          California
5823 conventional       2017          California
5824 conventional       2017          California
5825 conventional       2017          California
5826 conventional       2017          California
5827 conventional       2017          California
5828 conventional       2017          California
5829 conventional       2017          California
5830 conventional       2017          California
5831 conventional       2017           Charlotte
5832 conventional       2017           Charlotte
5833 conventional       2017           Charlotte
5834 conventional       2017           Charlotte
5835 conventional       2017           Charlotte
5836 conventional       2017           Charlotte
5837 conventional       2017           Charlotte
5838 conventional       2017           Charlotte
5839 conventional       2017           Charlotte
5840 conventional       2017           Charlotte
5841 conventional       2017           Charlotte
5842 conventional       2017           Charlotte
5843 conventional       2017           Charlotte
5844 conventional       2017           Charlotte
5845 conventional       2017           Charlotte
5846 conventional       2017           Charlotte
5847 conventional       2017           Charlotte
5848 conventional       2017           Charlotte
5849 conventional       2017           Charlotte
5850 conventional       2017           Charlotte
5851 conventional       2017           Charlotte
5852 conventional       2017           Charlotte
5853 conventional       2017           Charlotte
5854 conventional       2017           Charlotte
5855 conventional       2017           Charlotte
5856 conventional       2017           Charlotte
5857 conventional       2017           Charlotte
5858 conventional       2017           Charlotte
5859 conventional       2017           Charlotte
5860 conventional       2017           Charlotte
5861 conventional       2017           Charlotte
5862 conventional       2017           Charlotte
5863 conventional       2017           Charlotte
5864 conventional       2017           Charlotte
5865 conventional       2017           Charlotte
5866 conventional       2017           Charlotte
5867 conventional       2017           Charlotte
5868 conventional       2017           Charlotte
5869 conventional       2017           Charlotte
5870 conventional       2017           Charlotte
5871 conventional       2017           Charlotte
5872 conventional       2017           Charlotte
5873 conventional       2017           Charlotte
5874 conventional       2017           Charlotte
5875 conventional       2017           Charlotte
5876 conventional       2017           Charlotte
5877 conventional       2017           Charlotte
5878 conventional       2017           Charlotte
5879 conventional       2017           Charlotte
5880 conventional       2017           Charlotte
5881 conventional       2017           Charlotte
5882 conventional       2017           Charlotte
5883 conventional       2017           Charlotte
5884 conventional       2017             Chicago
5885 conventional       2017             Chicago
5886 conventional       2017             Chicago
5887 conventional       2017             Chicago
5888 conventional       2017             Chicago
5889 conventional       2017             Chicago
5890 conventional       2017             Chicago
5891 conventional       2017             Chicago
5892 conventional       2017             Chicago
5893 conventional       2017             Chicago
5894 conventional       2017             Chicago
5895 conventional       2017             Chicago
5896 conventional       2017             Chicago
5897 conventional       2017             Chicago
5898 conventional       2017             Chicago
5899 conventional       2017             Chicago
5900 conventional       2017             Chicago
5901 conventional       2017             Chicago
5902 conventional       2017             Chicago
5903 conventional       2017             Chicago
5904 conventional       2017             Chicago
5905 conventional       2017             Chicago
5906 conventional       2017             Chicago
5907 conventional       2017             Chicago
5908 conventional       2017             Chicago
5909 conventional       2017             Chicago
5910 conventional       2017             Chicago
5911 conventional       2017             Chicago
5912 conventional       2017             Chicago
5913 conventional       2017             Chicago
5914 conventional       2017             Chicago
5915 conventional       2017             Chicago
5916 conventional       2017             Chicago
5917 conventional       2017             Chicago
5918 conventional       2017             Chicago
5919 conventional       2017             Chicago
5920 conventional       2017             Chicago
5921 conventional       2017             Chicago
5922 conventional       2017             Chicago
5923 conventional       2017             Chicago
5924 conventional       2017             Chicago
5925 conventional       2017             Chicago
5926 conventional       2017             Chicago
5927 conventional       2017             Chicago
5928 conventional       2017             Chicago
5929 conventional       2017             Chicago
5930 conventional       2017             Chicago
5931 conventional       2017             Chicago
5932 conventional       2017             Chicago
5933 conventional       2017             Chicago
5934 conventional       2017             Chicago
5935 conventional       2017             Chicago
5936 conventional       2017             Chicago
5937 conventional       2017    CincinnatiDayton
5938 conventional       2017    CincinnatiDayton
5939 conventional       2017    CincinnatiDayton
5940 conventional       2017    CincinnatiDayton
5941 conventional       2017    CincinnatiDayton
5942 conventional       2017    CincinnatiDayton
5943 conventional       2017    CincinnatiDayton
5944 conventional       2017    CincinnatiDayton
5945 conventional       2017    CincinnatiDayton
5946 conventional       2017    CincinnatiDayton
5947 conventional       2017    CincinnatiDayton
5948 conventional       2017    CincinnatiDayton
5949 conventional       2017    CincinnatiDayton
5950 conventional       2017    CincinnatiDayton
5951 conventional       2017    CincinnatiDayton
5952 conventional       2017    CincinnatiDayton
5953 conventional       2017    CincinnatiDayton
5954 conventional       2017    CincinnatiDayton
5955 conventional       2017    CincinnatiDayton
5956 conventional       2017    CincinnatiDayton
5957 conventional       2017    CincinnatiDayton
5958 conventional       2017    CincinnatiDayton
5959 conventional       2017    CincinnatiDayton
5960 conventional       2017    CincinnatiDayton
5961 conventional       2017    CincinnatiDayton
5962 conventional       2017    CincinnatiDayton
5963 conventional       2017    CincinnatiDayton
5964 conventional       2017    CincinnatiDayton
5965 conventional       2017    CincinnatiDayton
5966 conventional       2017    CincinnatiDayton
5967 conventional       2017    CincinnatiDayton
5968 conventional       2017    CincinnatiDayton
5969 conventional       2017    CincinnatiDayton
5970 conventional       2017    CincinnatiDayton
5971 conventional       2017    CincinnatiDayton
5972 conventional       2017    CincinnatiDayton
5973 conventional       2017    CincinnatiDayton
5974 conventional       2017    CincinnatiDayton
5975 conventional       2017    CincinnatiDayton
5976 conventional       2017    CincinnatiDayton
5977 conventional       2017    CincinnatiDayton
5978 conventional       2017    CincinnatiDayton
5979 conventional       2017    CincinnatiDayton
5980 conventional       2017    CincinnatiDayton
5981 conventional       2017    CincinnatiDayton
5982 conventional       2017    CincinnatiDayton
5983 conventional       2017    CincinnatiDayton
5984 conventional       2017    CincinnatiDayton
5985 conventional       2017    CincinnatiDayton
5986 conventional       2017    CincinnatiDayton
5987 conventional       2017    CincinnatiDayton
5988 conventional       2017    CincinnatiDayton
5989 conventional       2017    CincinnatiDayton
5990 conventional       2017            Columbus
5991 conventional       2017            Columbus
5992 conventional       2017            Columbus
5993 conventional       2017            Columbus
5994 conventional       2017            Columbus
5995 conventional       2017            Columbus
5996 conventional       2017            Columbus
5997 conventional       2017            Columbus
5998 conventional       2017            Columbus
5999 conventional       2017            Columbus
6000 conventional       2017            Columbus
6001 conventional       2017            Columbus
6002 conventional       2017            Columbus
6003 conventional       2017            Columbus
6004 conventional       2017            Columbus
6005 conventional       2017            Columbus
6006 conventional       2017            Columbus
6007 conventional       2017            Columbus
6008 conventional       2017            Columbus
6009 conventional       2017            Columbus
6010 conventional       2017            Columbus
6011 conventional       2017            Columbus
6012 conventional       2017            Columbus
6013 conventional       2017            Columbus
6014 conventional       2017            Columbus
6015 conventional       2017            Columbus
6016 conventional       2017            Columbus
6017 conventional       2017            Columbus
6018 conventional       2017            Columbus
6019 conventional       2017            Columbus
6020 conventional       2017            Columbus
6021 conventional       2017            Columbus
6022 conventional       2017            Columbus
6023 conventional       2017            Columbus
6024 conventional       2017            Columbus
6025 conventional       2017            Columbus
6026 conventional       2017            Columbus
6027 conventional       2017            Columbus
6028 conventional       2017            Columbus
6029 conventional       2017            Columbus
6030 conventional       2017            Columbus
6031 conventional       2017            Columbus
6032 conventional       2017            Columbus
6033 conventional       2017            Columbus
6034 conventional       2017            Columbus
6035 conventional       2017            Columbus
6036 conventional       2017            Columbus
6037 conventional       2017            Columbus
6038 conventional       2017            Columbus
6039 conventional       2017            Columbus
6040 conventional       2017            Columbus
6041 conventional       2017            Columbus
6042 conventional       2017            Columbus
6043 conventional       2017       DallasFtWorth
6044 conventional       2017       DallasFtWorth
6045 conventional       2017       DallasFtWorth
6046 conventional       2017       DallasFtWorth
6047 conventional       2017       DallasFtWorth
6048 conventional       2017       DallasFtWorth
6049 conventional       2017       DallasFtWorth
6050 conventional       2017       DallasFtWorth
6051 conventional       2017       DallasFtWorth
6052 conventional       2017       DallasFtWorth
6053 conventional       2017       DallasFtWorth
6054 conventional       2017       DallasFtWorth
6055 conventional       2017       DallasFtWorth
6056 conventional       2017       DallasFtWorth
6057 conventional       2017       DallasFtWorth
6058 conventional       2017       DallasFtWorth
6059 conventional       2017       DallasFtWorth
6060 conventional       2017       DallasFtWorth
6061 conventional       2017       DallasFtWorth
6062 conventional       2017       DallasFtWorth
6063 conventional       2017       DallasFtWorth
6064 conventional       2017       DallasFtWorth
6065 conventional       2017       DallasFtWorth
6066 conventional       2017       DallasFtWorth
6067 conventional       2017       DallasFtWorth
6068 conventional       2017       DallasFtWorth
6069 conventional       2017       DallasFtWorth
6070 conventional       2017       DallasFtWorth
6071 conventional       2017       DallasFtWorth
6072 conventional       2017       DallasFtWorth
6073 conventional       2017       DallasFtWorth
6074 conventional       2017       DallasFtWorth
6075 conventional       2017       DallasFtWorth
6076 conventional       2017       DallasFtWorth
6077 conventional       2017       DallasFtWorth
6078 conventional       2017       DallasFtWorth
6079 conventional       2017       DallasFtWorth
6080 conventional       2017       DallasFtWorth
6081 conventional       2017       DallasFtWorth
6082 conventional       2017       DallasFtWorth
6083 conventional       2017       DallasFtWorth
6084 conventional       2017       DallasFtWorth
6085 conventional       2017       DallasFtWorth
6086 conventional       2017       DallasFtWorth
6087 conventional       2017       DallasFtWorth
6088 conventional       2017       DallasFtWorth
6089 conventional       2017       DallasFtWorth
6090 conventional       2017       DallasFtWorth
6091 conventional       2017       DallasFtWorth
6092 conventional       2017       DallasFtWorth
6093 conventional       2017       DallasFtWorth
6094 conventional       2017       DallasFtWorth
6095 conventional       2017       DallasFtWorth
6096 conventional       2017              Denver
6097 conventional       2017              Denver
6098 conventional       2017              Denver
6099 conventional       2017              Denver
6100 conventional       2017              Denver
6101 conventional       2017              Denver
6102 conventional       2017              Denver
6103 conventional       2017              Denver
6104 conventional       2017              Denver
6105 conventional       2017              Denver
6106 conventional       2017              Denver
6107 conventional       2017              Denver
6108 conventional       2017              Denver
6109 conventional       2017              Denver
6110 conventional       2017              Denver
6111 conventional       2017              Denver
6112 conventional       2017              Denver
6113 conventional       2017              Denver
6114 conventional       2017              Denver
6115 conventional       2017              Denver
6116 conventional       2017              Denver
6117 conventional       2017              Denver
6118 conventional       2017              Denver
6119 conventional       2017              Denver
6120 conventional       2017              Denver
6121 conventional       2017              Denver
6122 conventional       2017              Denver
6123 conventional       2017              Denver
6124 conventional       2017              Denver
6125 conventional       2017              Denver
6126 conventional       2017              Denver
6127 conventional       2017              Denver
6128 conventional       2017              Denver
6129 conventional       2017              Denver
6130 conventional       2017              Denver
6131 conventional       2017              Denver
6132 conventional       2017              Denver
6133 conventional       2017              Denver
6134 conventional       2017              Denver
6135 conventional       2017              Denver
6136 conventional       2017              Denver
6137 conventional       2017              Denver
6138 conventional       2017              Denver
6139 conventional       2017              Denver
6140 conventional       2017              Denver
6141 conventional       2017              Denver
6142 conventional       2017              Denver
6143 conventional       2017              Denver
6144 conventional       2017              Denver
6145 conventional       2017              Denver
6146 conventional       2017              Denver
6147 conventional       2017              Denver
6148 conventional       2017              Denver
6149 conventional       2017             Detroit
6150 conventional       2017             Detroit
6151 conventional       2017             Detroit
6152 conventional       2017             Detroit
6153 conventional       2017             Detroit
6154 conventional       2017             Detroit
6155 conventional       2017             Detroit
6156 conventional       2017             Detroit
6157 conventional       2017             Detroit
6158 conventional       2017             Detroit
6159 conventional       2017             Detroit
6160 conventional       2017             Detroit
6161 conventional       2017             Detroit
6162 conventional       2017             Detroit
6163 conventional       2017             Detroit
6164 conventional       2017             Detroit
6165 conventional       2017             Detroit
6166 conventional       2017             Detroit
6167 conventional       2017             Detroit
6168 conventional       2017             Detroit
6169 conventional       2017             Detroit
6170 conventional       2017             Detroit
6171 conventional       2017             Detroit
6172 conventional       2017             Detroit
6173 conventional       2017             Detroit
6174 conventional       2017             Detroit
6175 conventional       2017             Detroit
6176 conventional       2017             Detroit
6177 conventional       2017             Detroit
6178 conventional       2017             Detroit
6179 conventional       2017             Detroit
6180 conventional       2017             Detroit
6181 conventional       2017             Detroit
6182 conventional       2017             Detroit
6183 conventional       2017             Detroit
6184 conventional       2017             Detroit
6185 conventional       2017             Detroit
6186 conventional       2017             Detroit
6187 conventional       2017             Detroit
6188 conventional       2017             Detroit
6189 conventional       2017             Detroit
6190 conventional       2017             Detroit
6191 conventional       2017             Detroit
6192 conventional       2017             Detroit
6193 conventional       2017             Detroit
6194 conventional       2017             Detroit
6195 conventional       2017             Detroit
6196 conventional       2017             Detroit
6197 conventional       2017             Detroit
6198 conventional       2017             Detroit
6199 conventional       2017             Detroit
6200 conventional       2017             Detroit
6201 conventional       2017             Detroit
6202 conventional       2017         GrandRapids
6203 conventional       2017         GrandRapids
6204 conventional       2017         GrandRapids
6205 conventional       2017         GrandRapids
6206 conventional       2017         GrandRapids
6207 conventional       2017         GrandRapids
6208 conventional       2017         GrandRapids
6209 conventional       2017         GrandRapids
6210 conventional       2017         GrandRapids
6211 conventional       2017         GrandRapids
6212 conventional       2017         GrandRapids
6213 conventional       2017         GrandRapids
6214 conventional       2017         GrandRapids
6215 conventional       2017         GrandRapids
6216 conventional       2017         GrandRapids
6217 conventional       2017         GrandRapids
6218 conventional       2017         GrandRapids
6219 conventional       2017         GrandRapids
6220 conventional       2017         GrandRapids
6221 conventional       2017         GrandRapids
6222 conventional       2017         GrandRapids
6223 conventional       2017         GrandRapids
6224 conventional       2017         GrandRapids
6225 conventional       2017         GrandRapids
6226 conventional       2017         GrandRapids
6227 conventional       2017         GrandRapids
6228 conventional       2017         GrandRapids
6229 conventional       2017         GrandRapids
6230 conventional       2017         GrandRapids
6231 conventional       2017         GrandRapids
6232 conventional       2017         GrandRapids
6233 conventional       2017         GrandRapids
6234 conventional       2017         GrandRapids
6235 conventional       2017         GrandRapids
6236 conventional       2017         GrandRapids
6237 conventional       2017         GrandRapids
6238 conventional       2017         GrandRapids
6239 conventional       2017         GrandRapids
6240 conventional       2017         GrandRapids
6241 conventional       2017         GrandRapids
6242 conventional       2017         GrandRapids
6243 conventional       2017         GrandRapids
6244 conventional       2017         GrandRapids
6245 conventional       2017         GrandRapids
6246 conventional       2017         GrandRapids
6247 conventional       2017         GrandRapids
6248 conventional       2017         GrandRapids
6249 conventional       2017         GrandRapids
6250 conventional       2017         GrandRapids
6251 conventional       2017         GrandRapids
6252 conventional       2017         GrandRapids
6253 conventional       2017         GrandRapids
6254 conventional       2017         GrandRapids
6255 conventional       2017          GreatLakes
6256 conventional       2017          GreatLakes
6257 conventional       2017          GreatLakes
6258 conventional       2017          GreatLakes
6259 conventional       2017          GreatLakes
6260 conventional       2017          GreatLakes
6261 conventional       2017          GreatLakes
6262 conventional       2017          GreatLakes
6263 conventional       2017          GreatLakes
6264 conventional       2017          GreatLakes
6265 conventional       2017          GreatLakes
6266 conventional       2017          GreatLakes
6267 conventional       2017          GreatLakes
6268 conventional       2017          GreatLakes
6269 conventional       2017          GreatLakes
6270 conventional       2017          GreatLakes
6271 conventional       2017          GreatLakes
6272 conventional       2017          GreatLakes
6273 conventional       2017          GreatLakes
6274 conventional       2017          GreatLakes
6275 conventional       2017          GreatLakes
6276 conventional       2017          GreatLakes
6277 conventional       2017          GreatLakes
6278 conventional       2017          GreatLakes
6279 conventional       2017          GreatLakes
6280 conventional       2017          GreatLakes
6281 conventional       2017          GreatLakes
6282 conventional       2017          GreatLakes
6283 conventional       2017          GreatLakes
6284 conventional       2017          GreatLakes
6285 conventional       2017          GreatLakes
6286 conventional       2017          GreatLakes
6287 conventional       2017          GreatLakes
6288 conventional       2017          GreatLakes
6289 conventional       2017          GreatLakes
6290 conventional       2017          GreatLakes
6291 conventional       2017          GreatLakes
6292 conventional       2017          GreatLakes
6293 conventional       2017          GreatLakes
6294 conventional       2017          GreatLakes
6295 conventional       2017          GreatLakes
6296 conventional       2017          GreatLakes
6297 conventional       2017          GreatLakes
6298 conventional       2017          GreatLakes
6299 conventional       2017          GreatLakes
6300 conventional       2017          GreatLakes
6301 conventional       2017          GreatLakes
6302 conventional       2017          GreatLakes
6303 conventional       2017          GreatLakes
6304 conventional       2017          GreatLakes
6305 conventional       2017          GreatLakes
6306 conventional       2017          GreatLakes
6307 conventional       2017          GreatLakes
6308 conventional       2017  HarrisburgScranton
6309 conventional       2017  HarrisburgScranton
6310 conventional       2017  HarrisburgScranton
6311 conventional       2017  HarrisburgScranton
6312 conventional       2017  HarrisburgScranton
6313 conventional       2017  HarrisburgScranton
6314 conventional       2017  HarrisburgScranton
6315 conventional       2017  HarrisburgScranton
6316 conventional       2017  HarrisburgScranton
6317 conventional       2017  HarrisburgScranton
6318 conventional       2017  HarrisburgScranton
6319 conventional       2017  HarrisburgScranton
6320 conventional       2017  HarrisburgScranton
6321 conventional       2017  HarrisburgScranton
6322 conventional       2017  HarrisburgScranton
6323 conventional       2017  HarrisburgScranton
6324 conventional       2017  HarrisburgScranton
6325 conventional       2017  HarrisburgScranton
6326 conventional       2017  HarrisburgScranton
6327 conventional       2017  HarrisburgScranton
6328 conventional       2017  HarrisburgScranton
6329 conventional       2017  HarrisburgScranton
6330 conventional       2017  HarrisburgScranton
6331 conventional       2017  HarrisburgScranton
6332 conventional       2017  HarrisburgScranton
6333 conventional       2017  HarrisburgScranton
6334 conventional       2017  HarrisburgScranton
6335 conventional       2017  HarrisburgScranton
6336 conventional       2017  HarrisburgScranton
6337 conventional       2017  HarrisburgScranton
6338 conventional       2017  HarrisburgScranton
6339 conventional       2017  HarrisburgScranton
6340 conventional       2017  HarrisburgScranton
6341 conventional       2017  HarrisburgScranton
6342 conventional       2017  HarrisburgScranton
6343 conventional       2017  HarrisburgScranton
6344 conventional       2017  HarrisburgScranton
6345 conventional       2017  HarrisburgScranton
6346 conventional       2017  HarrisburgScranton
6347 conventional       2017  HarrisburgScranton
6348 conventional       2017  HarrisburgScranton
6349 conventional       2017  HarrisburgScranton
6350 conventional       2017  HarrisburgScranton
6351 conventional       2017  HarrisburgScranton
6352 conventional       2017  HarrisburgScranton
6353 conventional       2017  HarrisburgScranton
6354 conventional       2017  HarrisburgScranton
6355 conventional       2017  HarrisburgScranton
6356 conventional       2017  HarrisburgScranton
6357 conventional       2017  HarrisburgScranton
6358 conventional       2017  HarrisburgScranton
6359 conventional       2017  HarrisburgScranton
6360 conventional       2017  HarrisburgScranton
6361 conventional       2017 HartfordSpringfield
6362 conventional       2017 HartfordSpringfield
6363 conventional       2017 HartfordSpringfield
6364 conventional       2017 HartfordSpringfield
6365 conventional       2017 HartfordSpringfield
6366 conventional       2017 HartfordSpringfield
6367 conventional       2017 HartfordSpringfield
6368 conventional       2017 HartfordSpringfield
6369 conventional       2017 HartfordSpringfield
6370 conventional       2017 HartfordSpringfield
6371 conventional       2017 HartfordSpringfield
6372 conventional       2017 HartfordSpringfield
6373 conventional       2017 HartfordSpringfield
6374 conventional       2017 HartfordSpringfield
6375 conventional       2017 HartfordSpringfield
6376 conventional       2017 HartfordSpringfield
6377 conventional       2017 HartfordSpringfield
6378 conventional       2017 HartfordSpringfield
6379 conventional       2017 HartfordSpringfield
6380 conventional       2017 HartfordSpringfield
6381 conventional       2017 HartfordSpringfield
6382 conventional       2017 HartfordSpringfield
6383 conventional       2017 HartfordSpringfield
6384 conventional       2017 HartfordSpringfield
6385 conventional       2017 HartfordSpringfield
6386 conventional       2017 HartfordSpringfield
6387 conventional       2017 HartfordSpringfield
6388 conventional       2017 HartfordSpringfield
6389 conventional       2017 HartfordSpringfield
6390 conventional       2017 HartfordSpringfield
6391 conventional       2017 HartfordSpringfield
6392 conventional       2017 HartfordSpringfield
6393 conventional       2017 HartfordSpringfield
6394 conventional       2017 HartfordSpringfield
6395 conventional       2017 HartfordSpringfield
6396 conventional       2017 HartfordSpringfield
6397 conventional       2017 HartfordSpringfield
6398 conventional       2017 HartfordSpringfield
6399 conventional       2017 HartfordSpringfield
6400 conventional       2017 HartfordSpringfield
6401 conventional       2017 HartfordSpringfield
6402 conventional       2017 HartfordSpringfield
6403 conventional       2017 HartfordSpringfield
6404 conventional       2017 HartfordSpringfield
6405 conventional       2017 HartfordSpringfield
6406 conventional       2017 HartfordSpringfield
6407 conventional       2017 HartfordSpringfield
6408 conventional       2017 HartfordSpringfield
6409 conventional       2017 HartfordSpringfield
6410 conventional       2017 HartfordSpringfield
6411 conventional       2017 HartfordSpringfield
6412 conventional       2017 HartfordSpringfield
6413 conventional       2017 HartfordSpringfield
6414 conventional       2017             Houston
6415 conventional       2017             Houston
6416 conventional       2017             Houston
6417 conventional       2017             Houston
6418 conventional       2017             Houston
6419 conventional       2017             Houston
6420 conventional       2017             Houston
6421 conventional       2017             Houston
6422 conventional       2017             Houston
6423 conventional       2017             Houston
6424 conventional       2017             Houston
6425 conventional       2017             Houston
6426 conventional       2017             Houston
6427 conventional       2017             Houston
6428 conventional       2017             Houston
6429 conventional       2017             Houston
6430 conventional       2017             Houston
6431 conventional       2017             Houston
6432 conventional       2017             Houston
6433 conventional       2017             Houston
6434 conventional       2017             Houston
6435 conventional       2017             Houston
6436 conventional       2017             Houston
6437 conventional       2017             Houston
6438 conventional       2017             Houston
6439 conventional       2017             Houston
6440 conventional       2017             Houston
6441 conventional       2017             Houston
6442 conventional       2017             Houston
6443 conventional       2017             Houston
6444 conventional       2017             Houston
6445 conventional       2017             Houston
6446 conventional       2017             Houston
6447 conventional       2017             Houston
6448 conventional       2017             Houston
6449 conventional       2017             Houston
6450 conventional       2017             Houston
6451 conventional       2017             Houston
6452 conventional       2017             Houston
6453 conventional       2017             Houston
6454 conventional       2017             Houston
6455 conventional       2017             Houston
6456 conventional       2017             Houston
6457 conventional       2017             Houston
6458 conventional       2017             Houston
6459 conventional       2017             Houston
6460 conventional       2017             Houston
6461 conventional       2017             Houston
6462 conventional       2017             Houston
6463 conventional       2017             Houston
6464 conventional       2017             Houston
6465 conventional       2017             Houston
6466 conventional       2017             Houston
6467 conventional       2017        Indianapolis
6468 conventional       2017        Indianapolis
6469 conventional       2017        Indianapolis
6470 conventional       2017        Indianapolis
6471 conventional       2017        Indianapolis
6472 conventional       2017        Indianapolis
6473 conventional       2017        Indianapolis
6474 conventional       2017        Indianapolis
6475 conventional       2017        Indianapolis
6476 conventional       2017        Indianapolis
6477 conventional       2017        Indianapolis
6478 conventional       2017        Indianapolis
6479 conventional       2017        Indianapolis
6480 conventional       2017        Indianapolis
6481 conventional       2017        Indianapolis
6482 conventional       2017        Indianapolis
6483 conventional       2017        Indianapolis
6484 conventional       2017        Indianapolis
6485 conventional       2017        Indianapolis
6486 conventional       2017        Indianapolis
6487 conventional       2017        Indianapolis
6488 conventional       2017        Indianapolis
6489 conventional       2017        Indianapolis
6490 conventional       2017        Indianapolis
6491 conventional       2017        Indianapolis
6492 conventional       2017        Indianapolis
6493 conventional       2017        Indianapolis
6494 conventional       2017        Indianapolis
6495 conventional       2017        Indianapolis
6496 conventional       2017        Indianapolis
6497 conventional       2017        Indianapolis
6498 conventional       2017        Indianapolis
6499 conventional       2017        Indianapolis
6500 conventional       2017        Indianapolis
6501 conventional       2017        Indianapolis
6502 conventional       2017        Indianapolis
6503 conventional       2017        Indianapolis
6504 conventional       2017        Indianapolis
6505 conventional       2017        Indianapolis
6506 conventional       2017        Indianapolis
6507 conventional       2017        Indianapolis
6508 conventional       2017        Indianapolis
6509 conventional       2017        Indianapolis
6510 conventional       2017        Indianapolis
6511 conventional       2017        Indianapolis
6512 conventional       2017        Indianapolis
6513 conventional       2017        Indianapolis
6514 conventional       2017        Indianapolis
6515 conventional       2017        Indianapolis
6516 conventional       2017        Indianapolis
6517 conventional       2017        Indianapolis
6518 conventional       2017        Indianapolis
6519 conventional       2017        Indianapolis
6520 conventional       2017        Jacksonville
6521 conventional       2017        Jacksonville
6522 conventional       2017        Jacksonville
6523 conventional       2017        Jacksonville
6524 conventional       2017        Jacksonville
6525 conventional       2017        Jacksonville
6526 conventional       2017        Jacksonville
6527 conventional       2017        Jacksonville
6528 conventional       2017        Jacksonville
6529 conventional       2017        Jacksonville
6530 conventional       2017        Jacksonville
6531 conventional       2017        Jacksonville
6532 conventional       2017        Jacksonville
6533 conventional       2017        Jacksonville
6534 conventional       2017        Jacksonville
6535 conventional       2017        Jacksonville
6536 conventional       2017        Jacksonville
6537 conventional       2017        Jacksonville
6538 conventional       2017        Jacksonville
6539 conventional       2017        Jacksonville
6540 conventional       2017        Jacksonville
6541 conventional       2017        Jacksonville
6542 conventional       2017        Jacksonville
6543 conventional       2017        Jacksonville
6544 conventional       2017        Jacksonville
6545 conventional       2017        Jacksonville
6546 conventional       2017        Jacksonville
6547 conventional       2017        Jacksonville
6548 conventional       2017        Jacksonville
6549 conventional       2017        Jacksonville
6550 conventional       2017        Jacksonville
6551 conventional       2017        Jacksonville
6552 conventional       2017        Jacksonville
6553 conventional       2017        Jacksonville
6554 conventional       2017        Jacksonville
6555 conventional       2017        Jacksonville
6556 conventional       2017        Jacksonville
6557 conventional       2017        Jacksonville
6558 conventional       2017        Jacksonville
6559 conventional       2017        Jacksonville
6560 conventional       2017        Jacksonville
6561 conventional       2017        Jacksonville
6562 conventional       2017        Jacksonville
6563 conventional       2017        Jacksonville
6564 conventional       2017        Jacksonville
6565 conventional       2017        Jacksonville
6566 conventional       2017        Jacksonville
6567 conventional       2017        Jacksonville
6568 conventional       2017        Jacksonville
6569 conventional       2017        Jacksonville
6570 conventional       2017        Jacksonville
6571 conventional       2017        Jacksonville
6572 conventional       2017        Jacksonville
6573 conventional       2017            LasVegas
6574 conventional       2017            LasVegas
6575 conventional       2017            LasVegas
6576 conventional       2017            LasVegas
6577 conventional       2017            LasVegas
6578 conventional       2017            LasVegas
6579 conventional       2017            LasVegas
6580 conventional       2017            LasVegas
6581 conventional       2017            LasVegas
6582 conventional       2017            LasVegas
6583 conventional       2017            LasVegas
6584 conventional       2017            LasVegas
6585 conventional       2017            LasVegas
6586 conventional       2017            LasVegas
6587 conventional       2017            LasVegas
6588 conventional       2017            LasVegas
6589 conventional       2017            LasVegas
6590 conventional       2017            LasVegas
6591 conventional       2017            LasVegas
6592 conventional       2017            LasVegas
6593 conventional       2017            LasVegas
6594 conventional       2017            LasVegas
6595 conventional       2017            LasVegas
6596 conventional       2017            LasVegas
6597 conventional       2017            LasVegas
6598 conventional       2017            LasVegas
6599 conventional       2017            LasVegas
6600 conventional       2017            LasVegas
6601 conventional       2017            LasVegas
6602 conventional       2017            LasVegas
6603 conventional       2017            LasVegas
6604 conventional       2017            LasVegas
6605 conventional       2017            LasVegas
6606 conventional       2017            LasVegas
6607 conventional       2017            LasVegas
6608 conventional       2017            LasVegas
6609 conventional       2017            LasVegas
6610 conventional       2017            LasVegas
6611 conventional       2017            LasVegas
6612 conventional       2017            LasVegas
6613 conventional       2017            LasVegas
6614 conventional       2017            LasVegas
6615 conventional       2017            LasVegas
6616 conventional       2017            LasVegas
6617 conventional       2017            LasVegas
6618 conventional       2017            LasVegas
6619 conventional       2017            LasVegas
6620 conventional       2017            LasVegas
6621 conventional       2017            LasVegas
6622 conventional       2017            LasVegas
6623 conventional       2017            LasVegas
6624 conventional       2017            LasVegas
6625 conventional       2017            LasVegas
6626 conventional       2017          LosAngeles
6627 conventional       2017          LosAngeles
6628 conventional       2017          LosAngeles
6629 conventional       2017          LosAngeles
6630 conventional       2017          LosAngeles
6631 conventional       2017          LosAngeles
6632 conventional       2017          LosAngeles
6633 conventional       2017          LosAngeles
6634 conventional       2017          LosAngeles
6635 conventional       2017          LosAngeles
6636 conventional       2017          LosAngeles
6637 conventional       2017          LosAngeles
6638 conventional       2017          LosAngeles
6639 conventional       2017          LosAngeles
6640 conventional       2017          LosAngeles
6641 conventional       2017          LosAngeles
6642 conventional       2017          LosAngeles
6643 conventional       2017          LosAngeles
6644 conventional       2017          LosAngeles
6645 conventional       2017          LosAngeles
6646 conventional       2017          LosAngeles
6647 conventional       2017          LosAngeles
6648 conventional       2017          LosAngeles
6649 conventional       2017          LosAngeles
6650 conventional       2017          LosAngeles
6651 conventional       2017          LosAngeles
6652 conventional       2017          LosAngeles
6653 conventional       2017          LosAngeles
6654 conventional       2017          LosAngeles
6655 conventional       2017          LosAngeles
6656 conventional       2017          LosAngeles
6657 conventional       2017          LosAngeles
6658 conventional       2017          LosAngeles
6659 conventional       2017          LosAngeles
6660 conventional       2017          LosAngeles
6661 conventional       2017          LosAngeles
6662 conventional       2017          LosAngeles
6663 conventional       2017          LosAngeles
6664 conventional       2017          LosAngeles
6665 conventional       2017          LosAngeles
6666 conventional       2017          LosAngeles
6667 conventional       2017          LosAngeles
6668 conventional       2017          LosAngeles
6669 conventional       2017          LosAngeles
6670 conventional       2017          LosAngeles
6671 conventional       2017          LosAngeles
6672 conventional       2017          LosAngeles
6673 conventional       2017          LosAngeles
6674 conventional       2017          LosAngeles
6675 conventional       2017          LosAngeles
6676 conventional       2017          LosAngeles
6677 conventional       2017          LosAngeles
6678 conventional       2017          LosAngeles
6679 conventional       2017          Louisville
6680 conventional       2017          Louisville
6681 conventional       2017          Louisville
6682 conventional       2017          Louisville
6683 conventional       2017          Louisville
6684 conventional       2017          Louisville
6685 conventional       2017          Louisville
6686 conventional       2017          Louisville
6687 conventional       2017          Louisville
6688 conventional       2017          Louisville
6689 conventional       2017          Louisville
6690 conventional       2017          Louisville
6691 conventional       2017          Louisville
6692 conventional       2017          Louisville
6693 conventional       2017          Louisville
6694 conventional       2017          Louisville
6695 conventional       2017          Louisville
6696 conventional       2017          Louisville
6697 conventional       2017          Louisville
6698 conventional       2017          Louisville
6699 conventional       2017          Louisville
6700 conventional       2017          Louisville
6701 conventional       2017          Louisville
6702 conventional       2017          Louisville
6703 conventional       2017          Louisville
6704 conventional       2017          Louisville
6705 conventional       2017          Louisville
6706 conventional       2017          Louisville
6707 conventional       2017          Louisville
6708 conventional       2017          Louisville
6709 conventional       2017          Louisville
6710 conventional       2017          Louisville
6711 conventional       2017          Louisville
6712 conventional       2017          Louisville
6713 conventional       2017          Louisville
6714 conventional       2017          Louisville
6715 conventional       2017          Louisville
6716 conventional       2017          Louisville
6717 conventional       2017          Louisville
6718 conventional       2017          Louisville
6719 conventional       2017          Louisville
6720 conventional       2017          Louisville
6721 conventional       2017          Louisville
6722 conventional       2017          Louisville
6723 conventional       2017          Louisville
6724 conventional       2017          Louisville
6725 conventional       2017          Louisville
6726 conventional       2017          Louisville
6727 conventional       2017          Louisville
6728 conventional       2017          Louisville
6729 conventional       2017          Louisville
6730 conventional       2017          Louisville
6731 conventional       2017          Louisville
6732 conventional       2017   MiamiFtLauderdale
6733 conventional       2017   MiamiFtLauderdale
6734 conventional       2017   MiamiFtLauderdale
6735 conventional       2017   MiamiFtLauderdale
6736 conventional       2017   MiamiFtLauderdale
6737 conventional       2017   MiamiFtLauderdale
6738 conventional       2017   MiamiFtLauderdale
6739 conventional       2017   MiamiFtLauderdale
6740 conventional       2017   MiamiFtLauderdale
6741 conventional       2017   MiamiFtLauderdale
6742 conventional       2017   MiamiFtLauderdale
6743 conventional       2017   MiamiFtLauderdale
6744 conventional       2017   MiamiFtLauderdale
6745 conventional       2017   MiamiFtLauderdale
6746 conventional       2017   MiamiFtLauderdale
6747 conventional       2017   MiamiFtLauderdale
6748 conventional       2017   MiamiFtLauderdale
6749 conventional       2017   MiamiFtLauderdale
6750 conventional       2017   MiamiFtLauderdale
6751 conventional       2017   MiamiFtLauderdale
6752 conventional       2017   MiamiFtLauderdale
6753 conventional       2017   MiamiFtLauderdale
6754 conventional       2017   MiamiFtLauderdale
6755 conventional       2017   MiamiFtLauderdale
6756 conventional       2017   MiamiFtLauderdale
6757 conventional       2017   MiamiFtLauderdale
6758 conventional       2017   MiamiFtLauderdale
6759 conventional       2017   MiamiFtLauderdale
6760 conventional       2017   MiamiFtLauderdale
6761 conventional       2017   MiamiFtLauderdale
6762 conventional       2017   MiamiFtLauderdale
6763 conventional       2017   MiamiFtLauderdale
6764 conventional       2017   MiamiFtLauderdale
6765 conventional       2017   MiamiFtLauderdale
6766 conventional       2017   MiamiFtLauderdale
6767 conventional       2017   MiamiFtLauderdale
6768 conventional       2017   MiamiFtLauderdale
6769 conventional       2017   MiamiFtLauderdale
6770 conventional       2017   MiamiFtLauderdale
6771 conventional       2017   MiamiFtLauderdale
6772 conventional       2017   MiamiFtLauderdale
6773 conventional       2017   MiamiFtLauderdale
6774 conventional       2017   MiamiFtLauderdale
6775 conventional       2017   MiamiFtLauderdale
6776 conventional       2017   MiamiFtLauderdale
6777 conventional       2017   MiamiFtLauderdale
6778 conventional       2017   MiamiFtLauderdale
6779 conventional       2017   MiamiFtLauderdale
6780 conventional       2017   MiamiFtLauderdale
6781 conventional       2017   MiamiFtLauderdale
6782 conventional       2017   MiamiFtLauderdale
6783 conventional       2017   MiamiFtLauderdale
6784 conventional       2017   MiamiFtLauderdale
6785 conventional       2017            Midsouth
6786 conventional       2017            Midsouth
6787 conventional       2017            Midsouth
6788 conventional       2017            Midsouth
6789 conventional       2017            Midsouth
6790 conventional       2017            Midsouth
6791 conventional       2017            Midsouth
6792 conventional       2017            Midsouth
6793 conventional       2017            Midsouth
6794 conventional       2017            Midsouth
6795 conventional       2017            Midsouth
6796 conventional       2017            Midsouth
6797 conventional       2017            Midsouth
6798 conventional       2017            Midsouth
6799 conventional       2017            Midsouth
6800 conventional       2017            Midsouth
6801 conventional       2017            Midsouth
6802 conventional       2017            Midsouth
6803 conventional       2017            Midsouth
6804 conventional       2017            Midsouth
6805 conventional       2017            Midsouth
6806 conventional       2017            Midsouth
6807 conventional       2017            Midsouth
6808 conventional       2017            Midsouth
6809 conventional       2017            Midsouth
6810 conventional       2017            Midsouth
6811 conventional       2017            Midsouth
6812 conventional       2017            Midsouth
6813 conventional       2017            Midsouth
6814 conventional       2017            Midsouth
6815 conventional       2017            Midsouth
6816 conventional       2017            Midsouth
6817 conventional       2017            Midsouth
6818 conventional       2017            Midsouth
6819 conventional       2017            Midsouth
6820 conventional       2017            Midsouth
6821 conventional       2017            Midsouth
6822 conventional       2017            Midsouth
6823 conventional       2017            Midsouth
6824 conventional       2017            Midsouth
6825 conventional       2017            Midsouth
6826 conventional       2017            Midsouth
6827 conventional       2017            Midsouth
6828 conventional       2017            Midsouth
6829 conventional       2017            Midsouth
6830 conventional       2017            Midsouth
6831 conventional       2017            Midsouth
6832 conventional       2017            Midsouth
6833 conventional       2017            Midsouth
6834 conventional       2017            Midsouth
6835 conventional       2017            Midsouth
6836 conventional       2017            Midsouth
6837 conventional       2017            Midsouth
6838 conventional       2017           Nashville
6839 conventional       2017           Nashville
6840 conventional       2017           Nashville
6841 conventional       2017           Nashville
6842 conventional       2017           Nashville
6843 conventional       2017           Nashville
6844 conventional       2017           Nashville
6845 conventional       2017           Nashville
6846 conventional       2017           Nashville
6847 conventional       2017           Nashville
6848 conventional       2017           Nashville
6849 conventional       2017           Nashville
6850 conventional       2017           Nashville
6851 conventional       2017           Nashville
6852 conventional       2017           Nashville
6853 conventional       2017           Nashville
6854 conventional       2017           Nashville
6855 conventional       2017           Nashville
6856 conventional       2017           Nashville
6857 conventional       2017           Nashville
6858 conventional       2017           Nashville
6859 conventional       2017           Nashville
6860 conventional       2017           Nashville
6861 conventional       2017           Nashville
6862 conventional       2017           Nashville
6863 conventional       2017           Nashville
6864 conventional       2017           Nashville
6865 conventional       2017           Nashville
6866 conventional       2017           Nashville
6867 conventional       2017           Nashville
6868 conventional       2017           Nashville
6869 conventional       2017           Nashville
6870 conventional       2017           Nashville
6871 conventional       2017           Nashville
6872 conventional       2017           Nashville
6873 conventional       2017           Nashville
6874 conventional       2017           Nashville
6875 conventional       2017           Nashville
6876 conventional       2017           Nashville
6877 conventional       2017           Nashville
6878 conventional       2017           Nashville
6879 conventional       2017           Nashville
6880 conventional       2017           Nashville
6881 conventional       2017           Nashville
6882 conventional       2017           Nashville
6883 conventional       2017           Nashville
6884 conventional       2017           Nashville
6885 conventional       2017           Nashville
6886 conventional       2017           Nashville
6887 conventional       2017           Nashville
6888 conventional       2017           Nashville
6889 conventional       2017           Nashville
6890 conventional       2017           Nashville
6891 conventional       2017    NewOrleansMobile
6892 conventional       2017    NewOrleansMobile
6893 conventional       2017    NewOrleansMobile
6894 conventional       2017    NewOrleansMobile
6895 conventional       2017    NewOrleansMobile
6896 conventional       2017    NewOrleansMobile
6897 conventional       2017    NewOrleansMobile
6898 conventional       2017    NewOrleansMobile
6899 conventional       2017    NewOrleansMobile
6900 conventional       2017    NewOrleansMobile
6901 conventional       2017    NewOrleansMobile
6902 conventional       2017    NewOrleansMobile
6903 conventional       2017    NewOrleansMobile
6904 conventional       2017    NewOrleansMobile
6905 conventional       2017    NewOrleansMobile
6906 conventional       2017    NewOrleansMobile
6907 conventional       2017    NewOrleansMobile
6908 conventional       2017    NewOrleansMobile
6909 conventional       2017    NewOrleansMobile
6910 conventional       2017    NewOrleansMobile
6911 conventional       2017    NewOrleansMobile
6912 conventional       2017    NewOrleansMobile
6913 conventional       2017    NewOrleansMobile
6914 conventional       2017    NewOrleansMobile
6915 conventional       2017    NewOrleansMobile
6916 conventional       2017    NewOrleansMobile
6917 conventional       2017    NewOrleansMobile
6918 conventional       2017    NewOrleansMobile
6919 conventional       2017    NewOrleansMobile
6920 conventional       2017    NewOrleansMobile
6921 conventional       2017    NewOrleansMobile
6922 conventional       2017    NewOrleansMobile
6923 conventional       2017    NewOrleansMobile
6924 conventional       2017    NewOrleansMobile
6925 conventional       2017    NewOrleansMobile
6926 conventional       2017    NewOrleansMobile
6927 conventional       2017    NewOrleansMobile
6928 conventional       2017    NewOrleansMobile
6929 conventional       2017    NewOrleansMobile
6930 conventional       2017    NewOrleansMobile
6931 conventional       2017    NewOrleansMobile
6932 conventional       2017    NewOrleansMobile
6933 conventional       2017    NewOrleansMobile
6934 conventional       2017    NewOrleansMobile
6935 conventional       2017    NewOrleansMobile
6936 conventional       2017    NewOrleansMobile
6937 conventional       2017    NewOrleansMobile
6938 conventional       2017    NewOrleansMobile
6939 conventional       2017    NewOrleansMobile
6940 conventional       2017    NewOrleansMobile
6941 conventional       2017    NewOrleansMobile
6942 conventional       2017    NewOrleansMobile
6943 conventional       2017    NewOrleansMobile
6944 conventional       2017             NewYork
6945 conventional       2017             NewYork
6946 conventional       2017             NewYork
6947 conventional       2017             NewYork
6948 conventional       2017             NewYork
6949 conventional       2017             NewYork
6950 conventional       2017             NewYork
6951 conventional       2017             NewYork
6952 conventional       2017             NewYork
6953 conventional       2017             NewYork
6954 conventional       2017             NewYork
6955 conventional       2017             NewYork
6956 conventional       2017             NewYork
6957 conventional       2017             NewYork
6958 conventional       2017             NewYork
6959 conventional       2017             NewYork
6960 conventional       2017             NewYork
6961 conventional       2017             NewYork
6962 conventional       2017             NewYork
6963 conventional       2017             NewYork
6964 conventional       2017             NewYork
6965 conventional       2017             NewYork
6966 conventional       2017             NewYork
6967 conventional       2017             NewYork
6968 conventional       2017             NewYork
6969 conventional       2017             NewYork
6970 conventional       2017             NewYork
6971 conventional       2017             NewYork
6972 conventional       2017             NewYork
6973 conventional       2017             NewYork
6974 conventional       2017             NewYork
6975 conventional       2017             NewYork
6976 conventional       2017             NewYork
6977 conventional       2017             NewYork
6978 conventional       2017             NewYork
6979 conventional       2017             NewYork
6980 conventional       2017             NewYork
6981 conventional       2017             NewYork
6982 conventional       2017             NewYork
6983 conventional       2017             NewYork
6984 conventional       2017             NewYork
6985 conventional       2017             NewYork
6986 conventional       2017             NewYork
6987 conventional       2017             NewYork
6988 conventional       2017             NewYork
6989 conventional       2017             NewYork
6990 conventional       2017             NewYork
6991 conventional       2017             NewYork
6992 conventional       2017             NewYork
6993 conventional       2017             NewYork
6994 conventional       2017             NewYork
6995 conventional       2017             NewYork
6996 conventional       2017             NewYork
6997 conventional       2017           Northeast
6998 conventional       2017           Northeast
6999 conventional       2017           Northeast
7000 conventional       2017           Northeast
7001 conventional       2017           Northeast
7002 conventional       2017           Northeast
7003 conventional       2017           Northeast
7004 conventional       2017           Northeast
7005 conventional       2017           Northeast
7006 conventional       2017           Northeast
7007 conventional       2017           Northeast
7008 conventional       2017           Northeast
7009 conventional       2017           Northeast
7010 conventional       2017           Northeast
7011 conventional       2017           Northeast
7012 conventional       2017           Northeast
7013 conventional       2017           Northeast
7014 conventional       2017           Northeast
7015 conventional       2017           Northeast
7016 conventional       2017           Northeast
7017 conventional       2017           Northeast
7018 conventional       2017           Northeast
7019 conventional       2017           Northeast
7020 conventional       2017           Northeast
7021 conventional       2017           Northeast
7022 conventional       2017           Northeast
7023 conventional       2017           Northeast
7024 conventional       2017           Northeast
7025 conventional       2017           Northeast
7026 conventional       2017           Northeast
7027 conventional       2017           Northeast
7028 conventional       2017           Northeast
7029 conventional       2017           Northeast
7030 conventional       2017           Northeast
7031 conventional       2017           Northeast
7032 conventional       2017           Northeast
7033 conventional       2017           Northeast
7034 conventional       2017           Northeast
7035 conventional       2017           Northeast
7036 conventional       2017           Northeast
7037 conventional       2017           Northeast
7038 conventional       2017           Northeast
7039 conventional       2017           Northeast
7040 conventional       2017           Northeast
7041 conventional       2017           Northeast
7042 conventional       2017           Northeast
7043 conventional       2017           Northeast
7044 conventional       2017           Northeast
7045 conventional       2017           Northeast
7046 conventional       2017           Northeast
7047 conventional       2017           Northeast
7048 conventional       2017           Northeast
7049 conventional       2017           Northeast
7050 conventional       2017  NorthernNewEngland
7051 conventional       2017  NorthernNewEngland
7052 conventional       2017  NorthernNewEngland
7053 conventional       2017  NorthernNewEngland
7054 conventional       2017  NorthernNewEngland
7055 conventional       2017  NorthernNewEngland
7056 conventional       2017  NorthernNewEngland
7057 conventional       2017  NorthernNewEngland
7058 conventional       2017  NorthernNewEngland
7059 conventional       2017  NorthernNewEngland
7060 conventional       2017  NorthernNewEngland
7061 conventional       2017  NorthernNewEngland
7062 conventional       2017  NorthernNewEngland
7063 conventional       2017  NorthernNewEngland
7064 conventional       2017  NorthernNewEngland
7065 conventional       2017  NorthernNewEngland
7066 conventional       2017  NorthernNewEngland
7067 conventional       2017  NorthernNewEngland
7068 conventional       2017  NorthernNewEngland
7069 conventional       2017  NorthernNewEngland
7070 conventional       2017  NorthernNewEngland
7071 conventional       2017  NorthernNewEngland
7072 conventional       2017  NorthernNewEngland
7073 conventional       2017  NorthernNewEngland
7074 conventional       2017  NorthernNewEngland
7075 conventional       2017  NorthernNewEngland
7076 conventional       2017  NorthernNewEngland
7077 conventional       2017  NorthernNewEngland
7078 conventional       2017  NorthernNewEngland
7079 conventional       2017  NorthernNewEngland
7080 conventional       2017  NorthernNewEngland
7081 conventional       2017  NorthernNewEngland
7082 conventional       2017  NorthernNewEngland
7083 conventional       2017  NorthernNewEngland
7084 conventional       2017  NorthernNewEngland
7085 conventional       2017  NorthernNewEngland
7086 conventional       2017  NorthernNewEngland
7087 conventional       2017  NorthernNewEngland
7088 conventional       2017  NorthernNewEngland
7089 conventional       2017  NorthernNewEngland
7090 conventional       2017  NorthernNewEngland
7091 conventional       2017  NorthernNewEngland
7092 conventional       2017  NorthernNewEngland
7093 conventional       2017  NorthernNewEngland
7094 conventional       2017  NorthernNewEngland
7095 conventional       2017  NorthernNewEngland
7096 conventional       2017  NorthernNewEngland
7097 conventional       2017  NorthernNewEngland
7098 conventional       2017  NorthernNewEngland
7099 conventional       2017  NorthernNewEngland
7100 conventional       2017  NorthernNewEngland
7101 conventional       2017  NorthernNewEngland
7102 conventional       2017  NorthernNewEngland
7103 conventional       2017             Orlando
7104 conventional       2017             Orlando
7105 conventional       2017             Orlando
7106 conventional       2017             Orlando
7107 conventional       2017             Orlando
7108 conventional       2017             Orlando
7109 conventional       2017             Orlando
7110 conventional       2017             Orlando
7111 conventional       2017             Orlando
7112 conventional       2017             Orlando
7113 conventional       2017             Orlando
7114 conventional       2017             Orlando
7115 conventional       2017             Orlando
7116 conventional       2017             Orlando
7117 conventional       2017             Orlando
7118 conventional       2017             Orlando
7119 conventional       2017             Orlando
7120 conventional       2017             Orlando
7121 conventional       2017             Orlando
7122 conventional       2017             Orlando
7123 conventional       2017             Orlando
7124 conventional       2017             Orlando
7125 conventional       2017             Orlando
7126 conventional       2017             Orlando
7127 conventional       2017             Orlando
7128 conventional       2017             Orlando
7129 conventional       2017             Orlando
7130 conventional       2017             Orlando
7131 conventional       2017             Orlando
7132 conventional       2017             Orlando
7133 conventional       2017             Orlando
7134 conventional       2017             Orlando
7135 conventional       2017             Orlando
7136 conventional       2017             Orlando
7137 conventional       2017             Orlando
7138 conventional       2017             Orlando
7139 conventional       2017             Orlando
7140 conventional       2017             Orlando
7141 conventional       2017             Orlando
7142 conventional       2017             Orlando
 [ reached 'max' / getOption("max.print") -- omitted 10769 rows ]

🥑FILTRAR PARA LOS PROMEDIOS MAYORES QUE 2

    MAYOR2_frame <-as.data.frame(Caso_Aguacate_xls[Caso_Aguacate_xls$`AveragePrice       (PRECIO PROMEDIO)`>2 ,])
    MAYOR2_frame
     INDICE Date           (FECHA DE OBSERVACION)
1         7                            2016-11-06
2         8                            2016-10-30
3         7                            2016-11-06
4         8                            2016-10-30
5        10                            2017-10-22
6        11                            2017-10-15
7        12                            2017-10-08
8        13                            2017-10-01
9        14                            2017-09-24
10       15                            2017-09-17
11       16                            2017-09-10
12       11                            2017-10-15
13       12                            2017-10-08
14       13                            2017-10-01
15       13                            2017-10-01
16       18                            2017-08-27
17       19                            2017-08-20
18       12                            2017-10-08
19       13                            2017-10-01
20       16                            2017-09-10
21       22                            2015-07-26
22       23                            2015-07-19
23       24                            2015-07-12
24       25                            2015-07-05
25       26                            2015-06-28
26       27                            2015-06-21
27       28                            2015-06-14
28       34                            2015-05-03
29       13                            2015-09-27
30       14                            2015-09-20
31       20                            2015-08-09
32       34                            2015-05-03
33       35                            2015-04-26
34       10                            2015-10-18
35       13                            2015-09-27
36       15                            2015-09-13
37       16                            2015-09-06
38       18                            2015-08-23
39       21                            2015-08-02
40       22                            2015-07-26
41       24                            2015-07-12
42       25                            2015-07-05
43       28                            2015-06-14
44       29                            2015-06-07
45       14                            2015-09-20
46       17                            2015-08-30
47       19                            2015-08-16
48       20                            2015-08-09
49       21                            2015-08-02
50       22                            2015-07-26
51       23                            2015-07-19
52       24                            2015-07-12
53       25                            2015-07-05
54       26                            2015-06-28
55       27                            2015-06-21
56       28                            2015-06-14
57       33                            2015-05-10
58       48                            2015-01-25
59       24                            2015-07-12
60       10                            2015-10-18
61       11                            2015-10-11
62       20                            2015-08-09
63       12                            2015-10-04
64       13                            2015-09-27
65       15                            2015-09-13
66       16                            2015-09-06
67       17                            2015-08-30
68       18                            2015-08-23
69       19                            2015-08-16
70       21                            2015-08-02
71       22                            2015-07-26
72       23                            2015-07-19
73       24                            2015-07-12
74       25                            2015-07-05
75       26                            2015-06-28
76       27                            2015-06-21
77       28                            2015-06-14
78       29                            2015-06-07
79       30                            2015-05-31
80       31                            2015-05-24
81       33                            2015-05-10
82       35                            2015-04-26
83       36                            2015-04-19
84       37                            2015-04-12
85       38                            2015-04-05
86       48                            2015-01-25
87       49                            2015-01-18
88       50                            2015-01-11
89       51                            2015-01-04
90       19                            2015-08-16
91       40                            2015-03-22
92       48                            2015-01-25
93        1                            2015-12-20
94        8                            2015-11-01
95       12                            2015-10-04
96       13                            2015-09-27
97       22                            2015-07-26
98       25                            2015-07-05
99       40                            2015-03-22
100       0                            2015-12-27
101       1                            2015-12-20
102       2                            2015-12-13
103       3                            2015-12-06
104       4                            2015-11-29
105       5                            2015-11-22
106       6                            2015-11-15
107       7                            2015-11-08
108      10                            2015-10-18
109      11                            2015-10-11
110      12                            2015-10-04
111      13                            2015-09-27
112      14                            2015-09-20
113      15                            2015-09-13
114      16                            2015-09-06
115      17                            2015-08-30
116      18                            2015-08-23
117      19                            2015-08-16
118      20                            2015-08-09
119      21                            2015-08-02
120      22                            2015-07-26
121      23                            2015-07-19
122      24                            2015-07-12
123      25                            2015-07-05
124      26                            2015-06-28
125      27                            2015-06-21
126      28                            2015-06-14
127      29                            2015-06-07
128      30                            2015-05-31
129      31                            2015-05-24
130      32                            2015-05-17
131      33                            2015-05-10
132      35                            2015-04-26
133      36                            2015-04-19
134      37                            2015-04-12
135      38                            2015-04-05
136      39                            2015-03-29
137      40                            2015-03-22
138      41                            2015-03-15
139      42                            2015-03-08
140      43                            2015-03-01
141      44                            2015-02-22
142      45                            2015-02-15
143      46                            2015-02-08
144      48                            2015-01-25
145      49                            2015-01-18
146      50                            2015-01-11
147      51                            2015-01-04
148      10                            2015-10-18
149      11                            2015-10-11
150      12                            2015-10-04
151      13                            2015-09-27
152      14                            2015-09-20
153      15                            2015-09-13
154      16                            2015-09-06
155      20                            2015-08-09
156      21                            2015-08-02
157       4                            2015-11-29
158       5                            2015-11-22
159       6                            2015-11-15
160       9                            2015-10-25
161      10                            2015-10-18
162      11                            2015-10-11
163      12                            2015-10-04
164      14                            2015-09-20
165      15                            2015-09-13
166      16                            2015-09-06
167      24                            2015-07-12
168       8                            2015-11-01
169      10                            2015-10-18
170      11                            2015-10-11
171      12                            2015-10-04
172      13                            2015-09-27
173      14                            2015-09-20
174      15                            2015-09-13
175      16                            2015-09-06
176      17                            2015-08-30
177      18                            2015-08-23
178      19                            2015-08-16
179      21                            2015-08-02
180      23                            2015-07-19
181      24                            2015-07-12
182      25                            2015-07-05
183      27                            2015-06-21
184      29                            2015-06-07
185      31                            2015-05-24
186      32                            2015-05-17
187      34                            2015-05-03
188      35                            2015-04-26
189      36                            2015-04-19
190      38                            2015-04-05
191      39                            2015-03-29
192      40                            2015-03-22
193      44                            2015-02-22
194      48                            2015-01-25
195      49                            2015-01-18
196      50                            2015-01-11
197      13                            2015-09-27
198      17                            2015-08-30
199      19                            2015-08-16
200      21                            2015-08-02
201      23                            2015-07-19
202      24                            2015-07-12
203      25                            2015-07-05
204      27                            2015-06-21
205      29                            2015-06-07
206      10                            2015-10-18
207      11                            2015-10-11
208      12                            2015-10-04
209      13                            2015-09-27
210      14                            2015-09-20
211      15                            2015-09-13
212      17                            2015-08-30
213       8                            2015-11-01
214      12                            2015-10-04
215      13                            2015-09-27
216      19                            2015-08-16
217      25                            2015-07-05
218      27                            2015-06-21
219      15                            2015-09-13
220      16                            2015-09-06
221      18                            2015-08-23
222      20                            2015-08-09
223      48                            2015-01-25
224      51                            2015-01-04
225       4                            2015-11-29
226      10                            2015-10-18
227      11                            2015-10-11
228      12                            2015-10-04
229      15                            2015-09-13
230      16                            2015-09-06
231      17                            2015-08-30
232      19                            2015-08-16
233      20                            2015-08-09
234      21                            2015-08-02
235      22                            2015-07-26
236       4                            2015-11-29
237       5                            2015-11-22
238       6                            2015-11-15
239       8                            2015-11-01
240      10                            2015-10-18
241      11                            2015-10-11
242      12                            2015-10-04
243      13                            2015-09-27
244      14                            2015-09-20
245      15                            2015-09-13
246      16                            2015-09-06
247      17                            2015-08-30
248      18                            2015-08-23
249      19                            2015-08-16
250      20                            2015-08-09
251      21                            2015-08-02
252      22                            2015-07-26
253      23                            2015-07-19
254      24                            2015-07-12
255       3                            2015-12-06
256       4                            2015-11-29
257      15                            2015-09-13
258      21                            2015-08-02
259      22                            2015-07-26
260      24                            2015-07-12
261      28                            2015-06-14
262      29                            2015-06-07
263      13                            2015-09-27
264      27                            2015-06-21
265      30                            2015-05-31
266      35                            2015-04-26
267      48                            2015-01-25
268      50                            2015-01-11
269      13                            2015-09-27
270       3                            2015-12-06
271      14                            2015-09-20
272      15                            2015-09-13
273      16                            2015-09-06
274      18                            2015-08-23
275      20                            2015-08-09
276      21                            2015-08-02
277      22                            2015-07-26
278      24                            2015-07-12
279       3                            2015-12-06
280      19                            2015-08-16
281      30                            2015-05-31
282      31                            2015-05-24
283      32                            2015-05-17
284      35                            2015-04-26
285      36                            2015-04-19
286      37                            2015-04-12
287      38                            2015-04-05
288      39                            2015-03-29
289      23                            2015-07-19
290      24                            2015-07-12
291       3                            2015-11-29
292       9                            2015-10-18
293      10                            2015-10-11
294      11                            2015-10-04
295      13                            2015-09-20
296       8                            2016-10-30
297      12                            2016-10-02
298      13                            2016-09-25
299       3                            2016-12-04
300       4                            2016-11-27
301       5                            2016-11-20
302       6                            2016-11-13
303       7                            2016-11-06
304      12                            2016-10-02
305      13                            2016-09-25
306      14                            2016-09-18
307      15                            2016-09-11
308      16                            2016-09-04
309      17                            2016-08-28
310      21                            2016-07-31
311      22                            2016-07-24
312      17                            2016-08-28
313      25                            2016-07-03
314      42                            2016-03-06
315      46                            2016-02-07
316       4                            2016-11-27
317       5                            2016-11-20
318       6                            2016-11-13
319       7                            2016-11-06
320       8                            2016-10-30
321       9                            2016-10-23
322      10                            2016-10-16
323       4                            2016-11-27
324       4                            2016-11-27
325       5                            2016-11-20
326       6                            2016-11-13
327       7                            2016-11-06
328       8                            2016-10-30
329       9                            2016-10-23
330      10                            2016-10-16
331      11                            2016-10-09
332      12                            2016-10-02
333      13                            2016-09-25
334      14                            2016-09-18
335      15                            2016-09-11
336      16                            2016-09-04
337      17                            2016-08-28
338      18                            2016-08-21
339      19                            2016-08-14
340      20                            2016-08-07
341      21                            2016-07-31
342      24                            2016-07-10
343       0                            2016-12-25
344       1                            2016-12-18
345       4                            2016-11-27
346       5                            2016-11-20
347       6                            2016-11-13
348       7                            2016-11-06
349       8                            2016-10-30
350       9                            2016-10-23
351      10                            2016-10-16
352      12                            2016-10-02
353      13                            2016-09-25
354      20                            2016-08-07
355       3                            2016-12-04
356       4                            2016-11-27
357      14                            2016-09-18
358      15                            2016-09-11
359      23                            2016-07-17
360      45                            2016-02-14
361       0                            2016-12-25
362       1                            2016-12-18
363       2                            2016-12-11
364       3                            2016-12-04
365       4                            2016-11-27
366       5                            2016-11-20
367       6                            2016-11-13
368       7                            2016-11-06
369       8                            2016-10-30
370      10                            2016-10-16
371      11                            2016-10-09
372      12                            2016-10-02
373      13                            2016-09-25
374      14                            2016-09-18
375      15                            2016-09-11
376      16                            2016-09-04
377      17                            2016-08-28
378      18                            2016-08-21
379      19                            2016-08-14
380      20                            2016-08-07
381      21                            2016-07-31
382      22                            2016-07-24
383      23                            2016-07-17
384      24                            2016-07-10
385      25                            2016-07-03
386      26                            2016-06-26
387      27                            2016-06-19
388      28                            2016-06-12
389      29                            2016-06-05
390      30                            2016-05-29
391      31                            2016-05-22
392      32                            2016-05-15
393      33                            2016-05-08
394      34                            2016-05-01
395      35                            2016-04-24
396      36                            2016-04-17
397      37                            2016-04-10
398      38                            2016-04-03
399      39                            2016-03-27
400      40                            2016-03-20
401      41                            2016-03-13
402      42                            2016-03-06
403      43                            2016-02-28
404      44                            2016-02-21
405      45                            2016-02-14
406      46                            2016-02-07
407      47                            2016-01-31
408      48                            2016-01-24
409      49                            2016-01-17
410      50                            2016-01-10
411       8                            2016-10-30
412      12                            2016-10-02
413      19                            2016-08-14
414      20                            2016-08-07
415      22                            2016-07-24
416      23                            2016-07-17
417       3                            2016-12-04
418       8                            2016-10-30
419       9                            2016-10-23
420      10                            2016-10-16
421      11                            2016-10-09
422      12                            2016-10-02
423      13                            2016-09-25
424      14                            2016-09-18
425      15                            2016-09-11
426      16                            2016-09-04
427      17                            2016-08-28
428      19                            2016-08-14
429      20                            2016-08-07
430      21                            2016-07-31
431      22                            2016-07-24
432      23                            2016-07-17
433       8                            2016-10-30
434       9                            2016-10-23
435       0                            2016-12-25
436       2                            2016-12-11
437       3                            2016-12-04
438       4                            2016-11-27
439       5                            2016-11-20
440       6                            2016-11-13
441       7                            2016-11-06
442       8                            2016-10-30
443       9                            2016-10-23
444      10                            2016-10-16
445      11                            2016-10-09
446      12                            2016-10-02
447      13                            2016-09-25
448      14                            2016-09-18
449      15                            2016-09-11
450      16                            2016-09-04
451      17                            2016-08-28
452      18                            2016-08-21
453      19                            2016-08-14
454      20                            2016-08-07
455      21                            2016-07-31
456      22                            2016-07-24
457      23                            2016-07-17
458      24                            2016-07-10
459      25                            2016-07-03
460      26                            2016-06-26
461      27                            2016-06-19
462      29                            2016-06-05
463      30                            2016-05-29
464      31                            2016-05-22
465      32                            2016-05-15
466      34                            2016-05-01
467      35                            2016-04-24
468      37                            2016-04-10
469      38                            2016-04-03
470      39                            2016-03-27
471      45                            2016-02-14
472      48                            2016-01-24
473       2                            2016-12-11
474       4                            2016-11-27
475       6                            2016-11-13
476       7                            2016-11-06
477      14                            2016-09-18
478      23                            2016-07-17
479      12                            2016-10-02
480      13                            2016-09-25
481       2                            2016-12-11
482       3                            2016-12-04
483       4                            2016-11-27
484       6                            2016-11-13
485       7                            2016-11-06
486       8                            2016-10-30
487       9                            2016-10-23
488      10                            2016-10-16
489      11                            2016-10-09
490      12                            2016-10-02
491      13                            2016-09-25
492      14                            2016-09-18
493      15                            2016-09-11
494      16                            2016-09-04
495      17                            2016-08-28
496      19                            2016-08-14
497      20                            2016-08-07
498      21                            2016-07-31
499      22                            2016-07-24
500      23                            2016-07-17
501      24                            2016-07-10
502      25                            2016-07-03
503      26                            2016-06-26
504      27                            2016-06-19
505      30                            2016-05-29
506      45                            2016-02-14
507       4                            2016-11-27
508       5                            2016-11-20
509       7                            2016-11-06
510       8                            2016-10-30
511       9                            2016-10-23
512      10                            2016-10-16
513      11                            2016-10-09
514      12                            2016-10-02
515      13                            2016-09-25
516      14                            2016-09-18
517      15                            2016-09-11
518      16                            2016-09-04
519      17                            2016-08-28
520      18                            2016-08-21
521      19                            2016-08-14
522      20                            2016-08-07
523      21                            2016-07-31
524      22                            2016-07-24
525       6                            2016-11-13
526       8                            2016-10-30
527       9                            2016-10-23
528      17                            2016-08-28
529      22                            2016-07-24
530       3                            2016-12-04
531       4                            2016-11-27
532       0                            2016-12-25
533       1                            2016-12-18
534       2                            2016-12-11
535       3                            2016-12-04
536       4                            2016-11-27
537       5                            2016-11-20
538       6                            2016-11-13
539       7                            2016-11-06
540       8                            2016-10-30
541       9                            2016-10-23
542      10                            2016-10-16
543      11                            2016-10-09
544      12                            2016-10-02
545      13                            2016-09-25
546      14                            2016-09-18
547      15                            2016-09-11
548      16                            2016-09-04
549      17                            2016-08-28
550      18                            2016-08-21
551      20                            2016-08-07
552      21                            2016-07-31
553      22                            2016-07-24
554      23                            2016-07-17
555      24                            2016-07-10
556      25                            2016-07-03
557      27                            2016-06-19
558      28                            2016-06-12
559      29                            2016-06-05
560      31                            2016-05-22
561      35                            2016-04-24
562      37                            2016-04-10
563      38                            2016-04-03
564      39                            2016-03-27
565      41                            2016-03-13
566      43                            2016-02-28
567      44                            2016-02-21
568       3                            2016-12-04
569       4                            2016-11-27
570       5                            2016-11-20
571       6                            2016-11-13
572       7                            2016-11-06
573       8                            2016-10-30
574       9                            2016-10-23
575      10                            2016-10-16
576      11                            2016-10-09
577      13                            2016-09-25
578      14                            2016-09-18
579       0                            2016-12-25
580       1                            2016-12-18
581       2                            2016-12-11
582       3                            2016-12-04
583       4                            2016-11-27
584       5                            2016-11-20
585       6                            2016-11-13
586       7                            2016-11-06
587       8                            2016-10-30
588       9                            2016-10-23
589      10                            2016-10-16
590      11                            2016-10-09
591      12                            2016-10-02
592      13                            2016-09-25
593      14                            2016-09-18
594      15                            2016-09-11
595      16                            2016-09-04
596      17                            2016-08-28
597      18                            2016-08-21
598      19                            2016-08-14
599      20                            2016-08-07
600      21                            2016-07-31
601      22                            2016-07-24
602      23                            2016-07-17
603      24                            2016-07-10
604      25                            2016-07-03
605      26                            2016-06-26
606      27                            2016-06-19
607      28                            2016-06-12
608      29                            2016-06-05
609      30                            2016-05-29
610      31                            2016-05-22
611      32                            2016-05-15
612      35                            2016-04-24
613      36                            2016-04-17
614      37                            2016-04-10
615      38                            2016-04-03
616      39                            2016-03-27
617      40                            2016-03-20
618      41                            2016-03-13
619      42                            2016-03-06
620      43                            2016-02-28
621      44                            2016-02-21
622      45                            2016-02-14
623      47                            2016-01-31
624       6                            2016-11-13
625       8                            2016-10-30
626       9                            2016-10-23
627      16                            2016-09-04
628      17                            2016-08-28
629      19                            2016-08-14
630      23                            2016-07-17
631      12                            2016-10-02
632       6                            2016-11-13
633       7                            2016-11-06
634       8                            2016-10-30
635       9                            2016-10-23
636      11                            2016-10-09
637      13                            2016-09-25
638      17                            2016-08-28
639      19                            2016-08-14
640      22                            2016-07-24
641      23                            2016-07-17
642      24                            2016-07-10
643      30                            2016-05-29
644      31                            2016-05-22
645      42                            2016-03-06
646      46                            2016-02-07
647      12                            2016-10-02
648       8                            2016-10-30
649       7                            2016-11-06
650       8                            2016-10-30
651       9                            2016-10-23
652      10                            2016-10-16
653      11                            2016-10-09
654      12                            2016-10-02
655      13                            2016-09-25
656      26                            2017-07-02
657      27                            2017-06-25
658      28                            2017-06-18
659      29                            2017-06-11
660      40                            2017-03-26
661       9                            2017-10-29
662      10                            2017-10-22
663      11                            2017-10-15
664      12                            2017-10-08
665      13                            2017-10-01
666      14                            2017-09-24
667      15                            2017-09-17
668      16                            2017-09-10
669      17                            2017-09-03
670      18                            2017-08-27
671      19                            2017-08-20
672      20                            2017-08-13
673      25                            2017-07-09
674      26                            2017-07-02
675      27                            2017-06-25
676      28                            2017-06-18
677      29                            2017-06-11
678      30                            2017-06-04
679      31                            2017-05-28
680      32                            2017-05-21
681      33                            2017-05-14
682      34                            2017-05-07
683      35                            2017-04-30
684      36                            2017-04-23
685      41                            2017-03-19
686      42                            2017-03-12
687       8                            2017-11-05
688       9                            2017-10-29
689      10                            2017-10-22
690      11                            2017-10-15
691      12                            2017-10-08
692      13                            2017-10-01
693      14                            2017-09-24
694      15                            2017-09-17
695      16                            2017-09-10
696      17                            2017-09-03
697      18                            2017-08-27
698      19                            2017-08-20
699      20                            2017-08-13
700      21                            2017-08-06
701      22                            2017-07-30
702      23                            2017-07-23
703      24                            2017-07-16
704      27                            2017-06-25
705      25                            2017-07-09
706      26                            2017-07-02
707      27                            2017-06-25
708      28                            2017-06-18
709      29                            2017-06-11
710      30                            2017-06-04
711      31                            2017-05-28
712      35                            2017-04-30
713      40                            2017-03-26
714      41                            2017-03-19
715      42                            2017-03-12
716      44                            2017-02-26
717      45                            2017-02-19
718      52                            2017-01-01
719      25                            2017-07-09
720      26                            2017-07-02
721      27                            2017-06-25
722      28                            2017-06-18
723      29                            2017-06-11
724      30                            2017-06-04
725      31                            2017-05-28
726      32                            2017-05-21
727      33                            2017-05-14
728      34                            2017-05-07
729      35                            2017-04-30
730      36                            2017-04-23
731      37                            2017-04-16
732      38                            2017-04-09
733      39                            2017-04-02
734      40                            2017-03-26
735      41                            2017-03-19
736      42                            2017-03-12
737       9                            2017-10-29
738      11                            2017-10-15
739      12                            2017-10-08
740      13                            2017-10-01
741      14                            2017-09-24
742      15                            2017-09-17
743      16                            2017-09-10
744      17                            2017-09-03
745      18                            2017-08-27
746      19                            2017-08-20
747      20                            2017-08-13
748      21                            2017-08-06
749      22                            2017-07-30
750      23                            2017-07-23
751      24                            2017-07-16
752       5                            2017-11-26
753       6                            2017-11-19
754       7                            2017-11-12
755       8                            2017-11-05
756       9                            2017-10-29
757      10                            2017-10-22
758      11                            2017-10-15
759      12                            2017-10-08
760      13                            2017-10-01
761      14                            2017-09-24
762      15                            2017-09-17
763      16                            2017-09-10
764      17                            2017-09-03
765      18                            2017-08-27
766      19                            2017-08-20
767      20                            2017-08-13
768      21                            2017-08-06
769      22                            2017-07-30
770      25                            2017-07-09
771      26                            2017-07-02
772      28                            2017-06-18
773      29                            2017-06-11
774      30                            2017-06-04
775      31                            2017-05-28
776      32                            2017-05-21
777      33                            2017-05-14
778      34                            2017-05-07
779      35                            2017-04-30
780      36                            2017-04-23
781      37                            2017-04-16
782      38                            2017-04-09
783      40                            2017-03-26
784       7                            2017-11-12
785       9                            2017-10-29
786      10                            2017-10-22
787      15                            2017-09-17
788      17                            2017-09-03
789      18                            2017-08-27
790      13                            2017-10-01
791      14                            2017-09-24
792      15                            2017-09-17
793      16                            2017-09-10
794      17                            2017-09-03
795      21                            2017-08-06
796      14                            2017-09-24
797      15                            2017-09-17
798      16                            2017-09-10
799      17                            2017-09-03
800       5                            2017-11-26
801       6                            2017-11-19
802       8                            2017-11-05
803       9                            2017-10-29
804      15                            2017-09-17
805      16                            2017-09-10
806      17                            2017-09-03
807      18                            2017-08-27
808      19                            2017-08-20
809      20                            2017-08-13
810      14                            2017-09-24
811      25                            2017-07-09
812      27                            2017-06-25
813      28                            2017-06-18
814      29                            2017-06-11
815      30                            2017-06-04
816      31                            2017-05-28
817      32                            2017-05-21
818      33                            2017-05-14
819      34                            2017-05-07
820      35                            2017-04-30
821      36                            2017-04-23
822      37                            2017-04-16
823      39                            2017-04-02
824      40                            2017-03-26
825      41                            2017-03-19
826      25                            2017-07-09
827      26                            2017-07-02
828      27                            2017-06-25
829      28                            2017-06-18
830      29                            2017-06-11
831      30                            2017-06-04
832      31                            2017-05-28
833      32                            2017-05-21
834      33                            2017-05-14
835      34                            2017-05-07
836      35                            2017-04-30
837      36                            2017-04-23
838      38                            2017-04-09
839      42                            2017-03-12
840       6                            2017-11-19
841       7                            2017-11-12
842       8                            2017-11-05
843      13                            2017-10-01
844      16                            2017-09-10
845      17                            2017-09-03
846      18                            2017-08-27
847      19                            2017-08-20
848      20                            2017-08-13
849      21                            2017-08-06
850      22                            2017-07-30
851      25                            2017-07-09
852      26                            2017-07-02
853      27                            2017-06-25
854      28                            2017-06-18
855      29                            2017-06-11
856      30                            2017-06-04
857      31                            2017-05-28
858      32                            2017-05-21
859      33                            2017-05-14
860      34                            2017-05-07
861      35                            2017-04-30
862      36                            2017-04-23
863      38                            2017-04-09
864      39                            2017-04-02
865      40                            2017-03-26
866      41                            2017-03-19
867      42                            2017-03-12
868      43                            2017-03-05
869      44                            2017-02-26
870      46                            2017-02-12
871      48                            2017-01-29
872      49                            2017-01-22
873      50                            2017-01-15
874      51                            2017-01-08
875      52                            2017-01-01
876       8                            2017-11-05
877       9                            2017-10-29
878      10                            2017-10-22
879      11                            2017-10-15
880      12                            2017-10-08
881      13                            2017-10-01
882      14                            2017-09-24
883      15                            2017-09-17
884      16                            2017-09-10
885      17                            2017-09-03
886      18                            2017-08-27
887      19                            2017-08-20
888      21                            2017-08-06
889      23                            2017-07-23
890      24                            2017-07-16
891      25                            2017-07-09
892      26                            2017-07-02
893      27                            2017-06-25
894      28                            2017-06-18
895      29                            2017-06-11
896      30                            2017-06-04
897      31                            2017-05-28
898      32                            2017-05-21
899      33                            2017-05-14
900      35                            2017-04-30
901      37                            2017-04-16
902      38                            2017-04-09
903      12                            2017-10-08
904      13                            2017-10-01
905      14                            2017-09-24
906      15                            2017-09-17
907      16                            2017-09-10
908      17                            2017-09-03
909      18                            2017-08-27
910      19                            2017-08-20
911      20                            2017-08-13
912      34                            2017-05-07
913       5                            2017-11-26
914      11                            2017-10-15
915      12                            2017-10-08
916      13                            2017-10-01
917      14                            2017-09-24
918      15                            2017-09-17
919      16                            2017-09-10
920      17                            2017-09-03
921      18                            2017-08-27
922      19                            2017-08-20
923      20                            2017-08-13
924      21                            2017-08-06
925      22                            2017-07-30
926      23                            2017-07-23
927      24                            2017-07-16
928      12                            2017-10-08
929      13                            2017-10-01
930      14                            2017-09-24
931      15                            2017-09-17
932      10                            2017-10-22
933      11                            2017-10-15
934      13                            2017-10-01
935      27                            2017-06-25
936      34                            2017-05-07
937      35                            2017-04-30
938      36                            2017-04-23
939      37                            2017-04-16
940      38                            2017-04-09
941      39                            2017-04-02
942      41                            2017-03-19
943      42                            2017-03-12
944      43                            2017-03-05
945      44                            2017-02-26
946      16                            2017-09-10
947      17                            2017-09-03
948      18                            2017-08-27
949      19                            2017-08-20
950      36                            2017-04-23
951      12                            2017-10-08
952      13                            2017-10-01
953      14                            2017-09-24
954      15                            2017-09-17
955      16                            2017-09-10
956      17                            2017-09-03
957      28                            2017-06-18
958      29                            2017-06-11
959      30                            2017-06-04
960      32                            2017-05-21
961       5                            2017-11-26
962       6                            2017-11-19
963       7                            2017-11-12
964       8                            2017-11-05
965       9                            2017-10-29
966      10                            2017-10-22
967      11                            2017-10-15
968      12                            2017-10-08
969      13                            2017-10-01
970      14                            2017-09-24
971      15                            2017-09-17
972      16                            2017-09-10
973      17                            2017-09-03
974      18                            2017-08-27
975      20                            2017-08-13
976      25                            2017-07-09
977      26                            2017-07-02
978      27                            2017-06-25
979      29                            2017-06-11
980      30                            2017-06-04
981      31                            2017-05-28
982      32                            2017-05-21
983      33                            2017-05-14
984      34                            2017-05-07
985      36                            2017-04-23
986      38                            2017-04-09
987      40                            2017-03-26
988      42                            2017-03-12
989      47                            2017-02-05
990      48                            2017-01-29
991      49                            2017-01-22
992      50                            2017-01-15
993      51                            2017-01-08
994      52                            2017-01-01
995      25                            2017-07-09
996      26                            2017-07-02
997      27                            2017-06-25
998      29                            2017-06-11
999      31                            2017-05-28
1000     32                            2017-05-21
1001     33                            2017-05-14
1002     34                            2017-05-07
1003     36                            2017-04-23
1004     38                            2017-04-09
1005     40                            2017-03-26
1006     42                            2017-03-12
1007      8                            2017-11-05
1008      9                            2017-10-29
1009     10                            2017-10-22
1010     11                            2017-10-15
1011     12                            2017-10-08
1012     13                            2017-10-01
1013     14                            2017-09-24
1014     15                            2017-09-17
1015     16                            2017-09-10
1016     17                            2017-09-03
1017     18                            2017-08-27
1018     19                            2017-08-20
1019     20                            2017-08-13
1020     26                            2017-07-02
1021     27                            2017-06-25
1022     28                            2017-06-18
1023     30                            2017-06-04
1024     33                            2017-05-14
1025     35                            2017-04-30
1026     37                            2017-04-16
1027     38                            2017-04-09
1028     41                            2017-03-19
1029     42                            2017-03-12
1030     43                            2017-03-05
1031     44                            2017-02-26
1032     25                            2017-07-09
1033     26                            2017-07-02
1034     27                            2017-06-25
1035     29                            2017-06-11
1036     30                            2017-06-04
1037     31                            2017-05-28
1038     32                            2017-05-21
1039     33                            2017-05-14
1040     34                            2017-05-07
1041     36                            2017-04-23
1042     38                            2017-04-09
1043     40                            2017-03-26
1044     42                            2017-03-12
1045     51                            2017-01-08
1046     19                            2017-08-20
1047     20                            2017-08-13
1048     23                            2017-07-23
1049     24                            2017-07-16
1050     26                            2017-07-02
1051     32                            2017-05-21
1052     11                            2017-10-15
1053     12                            2017-10-08
1054     13                            2017-10-01
1055     14                            2017-09-24
1056     15                            2017-09-17
1057     16                            2017-09-10
1058     17                            2017-09-03
1059     18                            2017-08-27
1060      8                            2017-11-05
1061      9                            2017-10-29
1062     10                            2017-10-22
1063     11                            2017-10-15
1064     12                            2017-10-08
1065     13                            2017-10-01
1066     14                            2017-09-24
1067     15                            2017-09-17
1068     16                            2017-09-10
1069     17                            2017-09-03
1070     18                            2017-08-27
1071     19                            2017-08-20
1072     20                            2017-08-13
1073     21                            2017-08-06
1074     22                            2017-07-30
1075     23                            2017-07-23
1076     24                            2017-07-16
1077     27                            2017-06-25
1078      0                            2017-12-31
1079      1                            2017-12-24
1080      2                            2017-12-17
1081      3                            2017-12-10
1082      4                            2017-12-03
1083      5                            2017-11-26
1084      6                            2017-11-19
1085      7                            2017-11-12
1086      8                            2017-11-05
1087     10                            2017-10-22
1088     11                            2017-10-15
1089     12                            2017-10-08
1090     13                            2017-10-01
1091     14                            2017-09-24
1092     15                            2017-09-17
1093     16                            2017-09-10
1094     17                            2017-09-03
1095     18                            2017-08-27
1096     19                            2017-08-20
1097     20                            2017-08-13
1098     21                            2017-08-06
1099     22                            2017-07-30
1100     26                            2017-07-02
1101     29                            2017-06-11
1102     30                            2017-06-04
1103     31                            2017-05-28
1104     32                            2017-05-21
1105     33                            2017-05-14
1106     34                            2017-05-07
1107     35                            2017-04-30
1108     36                            2017-04-23
1109     37                            2017-04-16
1110     38                            2017-04-09
1111     39                            2017-04-02
1112     17                            2017-09-03
1113     14                            2017-09-24
1114     16                            2017-09-10
1115     17                            2017-09-03
1116     18                            2017-08-27
1117     19                            2017-08-20
1118     17                            2017-09-03
1119     18                            2017-08-27
1120     19                            2017-08-20
1121     20                            2017-08-13
1122     24                            2017-07-16
1123     25                            2017-07-09
1124     26                            2017-07-02
1125     27                            2017-06-25
1126     28                            2017-06-18
1127     29                            2017-06-11
1128     30                            2017-06-04
1129     31                            2017-05-28
1130     32                            2017-05-21
1131     33                            2017-05-14
1132     34                            2017-05-07
1133     35                            2017-04-30
1134     36                            2017-04-23
1135     37                            2017-04-16
1136     38                            2017-04-09
1137     39                            2017-04-02
1138     40                            2017-03-26
1139     41                            2017-03-19
1140     42                            2017-03-12
1141     43                            2017-03-05
1142     44                            2017-02-26
1143     45                            2017-02-19
1144     46                            2017-02-12
1145     48                            2017-01-29
1146     50                            2017-01-15
1147     51                            2017-01-08
1148     52                            2017-01-01
1149      3                            2017-12-10
1150      5                            2017-11-26
1151      6                            2017-11-19
1152      7                            2017-11-12
1153      9                            2017-10-29
1154     10                            2017-10-22
1155     11                            2017-10-15
1156     12                            2017-10-08
1157     13                            2017-10-01
1158     14                            2017-09-24
1159     15                            2017-09-17
1160     16                            2017-09-10
1161     17                            2017-09-03
1162     18                            2017-08-27
1163     19                            2017-08-20
1164     20                            2017-08-13
1165     21                            2017-08-06
1166     22                            2017-07-30
1167     23                            2017-07-23
1168     24                            2017-07-16
1169     29                            2017-06-11
1170     32                            2017-05-21
1171     33                            2017-05-14
1172     37                            2017-04-16
1173     40                            2017-03-26
1174      1                            2017-12-24
1175      2                            2017-12-17
1176      3                            2017-12-10
1177      4                            2017-12-03
1178      5                            2017-11-26
1179      6                            2017-11-19
1180      7                            2017-11-12
1181      8                            2017-11-05
1182      9                            2017-10-29
1183     10                            2017-10-22
1184     11                            2017-10-15
1185     12                            2017-10-08
1186     13                            2017-10-01
1187     14                            2017-09-24
1188     15                            2017-09-17
1189     16                            2017-09-10
1190     17                            2017-09-03
1191     18                            2017-08-27
1192     19                            2017-08-20
1193     20                            2017-08-13
1194     21                            2017-08-06
1195     22                            2017-07-30
1196     23                            2017-07-23
1197     24                            2017-07-16
1198     25                            2017-07-09
1199     26                            2017-07-02
1200     27                            2017-06-25
1201     28                            2017-06-18
1202     29                            2017-06-11
1203     30                            2017-06-04
1204     31                            2017-05-28
1205     32                            2017-05-21
1206     33                            2017-05-14
1207     34                            2017-05-07
1208     35                            2017-04-30
1209     36                            2017-04-23
1210     37                            2017-04-16
1211     38                            2017-04-09
1212     39                            2017-04-02
1213     40                            2017-03-26
1214     41                            2017-03-19
1215     42                            2017-03-12
1216     43                            2017-03-05
1217     44                            2017-02-26
1218     45                            2017-02-19
1219     46                            2017-02-12
1220     48                            2017-01-29
1221     49                            2017-01-22
1222     50                            2017-01-15
1223     51                            2017-01-08
1224     52                            2017-01-01
1225      6                            2017-11-19
1226      7                            2017-11-12
1227      8                            2017-11-05
1228      9                            2017-10-29
1229     10                            2017-10-22
1230     11                            2017-10-15
1231     12                            2017-10-08
1232     13                            2017-10-01
1233     14                            2017-09-24
1234     15                            2017-09-17
1235     16                            2017-09-10
1236     17                            2017-09-03
1237     18                            2017-08-27
1238     19                            2017-08-20
1239     20                            2017-08-13
1240     21                            2017-08-06
1241     22                            2017-07-30
1242     23                            2017-07-23
1243     24                            2017-07-16
1244     25                            2017-07-09
1245     26                            2017-07-02
1246     27                            2017-06-25
1247     45                            2017-02-19
1248     12                            2017-10-08
1249     13                            2017-10-01
1250     14                            2017-09-24
1251     15                            2017-09-17
1252     16                            2017-09-10
1253     17                            2017-09-03
1254     18                            2017-08-27
1255     12                            2017-10-08
1256     13                            2017-10-01
1257     14                            2017-09-24
1258     15                            2017-09-17
1259     16                            2017-09-10
1260     17                            2017-09-03
1261     18                            2017-08-27
1262      2                            2017-12-17
1263      3                            2017-12-10
1264      5                            2017-11-26
1265      6                            2017-11-19
1266      7                            2017-11-12
1267      8                            2017-11-05
1268      9                            2017-10-29
1269     10                            2017-10-22
1270     11                            2017-10-15
1271     12                            2017-10-08
1272     13                            2017-10-01
1273     14                            2017-09-24
1274     15                            2017-09-17
1275     16                            2017-09-10
1276     17                            2017-09-03
1277     18                            2017-08-27
1278     19                            2017-08-20
1279     20                            2017-08-13
1280     21                            2017-08-06
1281     22                            2017-07-30
1282     23                            2017-07-23
1283     24                            2017-07-16
1284     25                            2017-07-09
1285     26                            2017-07-02
1286     27                            2017-06-25
1287     45                            2017-02-19
1288     10                            2017-10-22
1289     11                            2017-10-15
1290     12                            2017-10-08
1291     13                            2017-10-01
1292     14                            2017-09-24
1293     15                            2017-09-17
1294     16                            2017-09-10
1295     17                            2017-09-03
1296     18                            2017-08-27
1297     19                            2017-08-20
1298     20                            2017-08-13
1299     21                            2017-08-06
1300     22                            2017-07-30
1301     23                            2017-07-23
1302     24                            2017-07-16
1303     29                            2017-06-11
1304     35                            2017-04-30
1305     37                            2017-04-16
1306     25                            2017-07-09
1307     26                            2017-07-02
1308     27                            2017-06-25
1309     28                            2017-06-18
1310     29                            2017-06-11
1311     30                            2017-06-04
1312     31                            2017-05-28
1313     32                            2017-05-21
1314     34                            2017-05-07
1315     36                            2017-04-23
1316     37                            2017-04-16
1317     38                            2017-04-09
1318     40                            2017-03-26
1319     41                            2017-03-19
1320     42                            2017-03-12
1321     10                            2017-10-22
1322     11                            2017-10-15
1323     13                            2017-10-01
1324     26                            2017-07-02
1325     27                            2017-06-25
1326     28                            2017-06-18
1327     35                            2017-04-30
1328     37                            2017-04-16
1329     38                            2017-04-09
1330     42                            2017-03-12
1331     43                            2017-03-05
1332     44                            2017-02-26
1333     16                            2017-09-10
1334     17                            2017-09-03
1335     18                            2017-08-27
1336      8                            2017-11-05
1337      9                            2017-10-29
1338     11                            2017-10-15
1339     12                            2017-10-08
1340     13                            2017-10-01
1341     14                            2017-09-24
1342     15                            2017-09-17
1343     16                            2017-09-10
1344     17                            2017-09-03
1345     18                            2017-08-27
1346     19                            2017-08-20
1347     20                            2017-08-13
1348     21                            2017-08-06
1349     22                            2017-07-30
1350     23                            2017-07-23
1351     24                            2017-07-16
1352     11                            2017-10-15
1353     12                            2017-10-08
1354     13                            2017-10-01
1355     14                            2017-09-24
1356     15                            2017-09-17
1357     16                            2017-09-10
1358     17                            2017-09-03
1359     18                            2017-08-27
1360     19                            2017-08-20
1361     20                            2017-08-13
1362      0                            2018-03-25
1363      2                            2018-03-11
1364      4                            2018-02-25
1365      6                            2018-02-11
1366      9                            2018-01-21
1367     10                            2018-01-14
1368     11                            2018-01-07
1369      8                            2018-01-28
1370      0                            2018-03-25
1371      2                            2018-03-11
1372      6                            2018-02-11
1373      7                            2018-02-04
1374     11                            2018-01-07
1375      5                            2018-02-18
1376     11                            2018-01-07
1377      2                            2018-03-11
1378      3                            2018-03-04
1379      4                            2018-02-25
1380      5                            2018-02-18
1381      6                            2018-02-11
1382      8                            2018-01-28
1383     11                            2018-01-07
1384      9                            2018-01-21
1385     10                            2018-01-14
     AveragePrice       (PRECIO PROMEDIO)
1                                    2.07
2                                    2.07
3                                    2.07
4                                    2.20
5                                    2.06
6                                    2.11
7                                    2.22
8                                    2.14
9                                    2.07
10                                   2.15
11                                   2.02
12                                   2.07
13                                   2.19
14                                   2.09
15                                   2.04
16                                   2.09
17                                   2.07
18                                   2.02
19                                   2.01
20                                   2.07
21                                   2.01
22                                   2.08
23                                   2.01
24                                   2.04
25                                   2.02
26                                   2.09
27                                   2.03
28                                   2.03
29                                   2.01
30                                   2.04
31                                   2.01
32                                   2.03
33                                   2.01
34                                   2.05
35                                   2.02
36                                   2.28
37                                   2.35
38                                   2.29
39                                   2.15
40                                   2.08
41                                   2.05
42                                   2.18
43                                   2.18
44                                   2.24
45                                   2.01
46                                   2.03
47                                   2.09
48                                   2.02
49                                   2.12
50                                   2.02
51                                   2.05
52                                   2.19
53                                   2.13
54                                   2.03
55                                   2.06
56                                   2.03
57                                   2.02
58                                   2.01
59                                   2.02
60                                   2.01
61                                   2.07
62                                   2.03
63                                   2.06
64                                   2.16
65                                   2.02
66                                   2.01
67                                   2.01
68                                   2.06
69                                   2.04
70                                   2.11
71                                   2.08
72                                   2.05
73                                   2.13
74                                   2.16
75                                   2.15
76                                   2.19
77                                   2.06
78                                   2.02
79                                   2.14
80                                   2.07
81                                   2.05
82                                   2.18
83                                   2.06
84                                   2.12
85                                   2.08
86                                   2.29
87                                   2.15
88                                   2.29
89                                   2.13
90                                   2.08
91                                   2.01
92                                   2.01
93                                   2.09
94                                   2.02
95                                   2.02
96                                   2.24
97                                   2.06
98                                   2.01
99                                   2.09
100                                  2.32
101                                  2.24
102                                  2.34
103                                  2.16
104                                  2.33
105                                  2.31
106                                  2.23
107                                  2.14
108                                  2.18
109                                  2.27
110                                  2.30
111                                  2.41
112                                  2.31
113                                  2.36
114                                  2.37
115                                  2.33
116                                  2.31
117                                  2.39
118                                  2.31
119                                  2.42
120                                  2.39
121                                  2.45
122                                  2.38
123                                  2.40
124                                  2.31
125                                  2.40
126                                  2.25
127                                  2.34
128                                  2.24
129                                  2.36
130                                  2.30
131                                  2.31
132                                  2.24
133                                  2.27
134                                  2.16
135                                  2.18
136                                  2.27
137                                  2.18
138                                  2.26
139                                  2.18
140                                  2.17
141                                  2.38
142                                  2.13
143                                  2.37
144                                  2.21
145                                  2.35
146                                  2.28
147                                  2.32
148                                  2.26
149                                  2.11
150                                  2.14
151                                  2.31
152                                  2.11
153                                  2.18
154                                  2.07
155                                  2.19
156                                  2.21
157                                  2.17
158                                  2.03
159                                  2.05
160                                  2.16
161                                  2.21
162                                  2.22
163                                  2.31
164                                  2.40
165                                  2.34
166                                  2.14
167                                  2.09
168                                  2.09
169                                  2.07
170                                  2.09
171                                  2.25
172                                  2.22
173                                  2.01
174                                  2.18
175                                  2.01
176                                  2.24
177                                  2.28
178                                  2.30
179                                  2.12
180                                  2.20
181                                  2.02
182                                  2.24
183                                  2.34
184                                  2.31
185                                  2.17
186                                  2.06
187                                  2.14
188                                  2.21
189                                  2.04
190                                  2.14
191                                  2.08
192                                  2.02
193                                  2.21
194                                  2.02
195                                  2.08
196                                  2.03
197                                  2.12
198                                  2.01
199                                  2.11
200                                  2.02
201                                  2.07
202                                  2.01
203                                  2.09
204                                  2.12
205                                  2.02
206                                  2.18
207                                  2.05
208                                  2.11
209                                  2.24
210                                  2.08
211                                  2.11
212                                  2.11
213                                  2.06
214                                  2.15
215                                  2.21
216                                  2.06
217                                  2.03
218                                  2.05
219                                  2.07
220                                  2.16
221                                  2.21
222                                  2.02
223                                  2.02
224                                  2.01
225                                  2.04
226                                  2.14
227                                  2.10
228                                  2.01
229                                  2.02
230                                  2.15
231                                  2.10
232                                  2.09
233                                  2.17
234                                  2.10
235                                  2.12
236                                  2.58
237                                  2.04
238                                  2.02
239                                  2.01
240                                  2.79
241                                  2.66
242                                  2.59
243                                  2.74
244                                  2.79
245                                  2.73
246                                  2.73
247                                  2.77
248                                  2.71
249                                  2.73
250                                  2.72
251                                  2.76
252                                  2.75
253                                  2.36
254                                  2.09
255                                  2.06
256                                  2.06
257                                  2.11
258                                  2.04
259                                  2.20
260                                  2.23
261                                  2.03
262                                  2.01
263                                  2.06
264                                  2.07
265                                  2.02
266                                  2.02
267                                  2.01
268                                  2.06
269                                  2.01
270                                  2.09
271                                  2.13
272                                  2.06
273                                  2.12
274                                  2.11
275                                  2.07
276                                  2.11
277                                  2.07
278                                  2.07
279                                  2.12
280                                  2.07
281                                  2.06
282                                  2.04
283                                  2.01
284                                  2.03
285                                  2.09
286                                  2.05
287                                  2.13
288                                  2.09
289                                  2.07
290                                  2.05
291                                  2.08
292                                  2.02
293                                  2.05
294                                  2.01
295                                  2.19
296                                  2.25
297                                  2.29
298                                  2.02
299                                  2.15
300                                  2.17
301                                  2.03
302                                  2.20
303                                  2.28
304                                  2.15
305                                  2.06
306                                  2.06
307                                  2.14
308                                  2.03
309                                  2.05
310                                  2.02
311                                  2.08
312                                  2.24
313                                  2.02
314                                  2.13
315                                  2.11
316                                  2.04
317                                  2.10
318                                  2.13
319                                  2.37
320                                  2.49
321                                  2.58
322                                  2.02
323                                  2.03
324                                  2.30
325                                  2.30
326                                  2.25
327                                  2.24
328                                  2.23
329                                  2.20
330                                  2.11
331                                  2.04
332                                  2.05
333                                  2.05
334                                  2.06
335                                  2.07
336                                  2.08
337                                  2.09
338                                  2.08
339                                  2.09
340                                  2.13
341                                  2.11
342                                  2.01
343                                  2.04
344                                  2.11
345                                  2.08
346                                  2.26
347                                  2.28
348                                  2.17
349                                  2.11
350                                  2.17
351                                  2.07
352                                  2.10
353                                  2.16
354                                  2.03
355                                  2.01
356                                  2.07
357                                  2.06
358                                  2.03
359                                  2.04
360                                  2.22
361                                  2.41
362                                  2.36
363                                  2.54
364                                  2.42
365                                  2.67
366                                  2.30
367                                  2.68
368                                  2.57
369                                  2.34
370                                  2.33
371                                  2.34
372                                  2.33
373                                  2.34
374                                  2.36
375                                  2.27
376                                  2.34
377                                  2.23
378                                  2.09
379                                  2.19
380                                  2.36
381                                  2.19
382                                  2.30
383                                  2.39
384                                  2.33
385                                  2.33
386                                  2.32
387                                  2.31
388                                  2.31
389                                  2.27
390                                  2.36
391                                  2.36
392                                  2.34
393                                  2.16
394                                  2.40
395                                  2.24
396                                  2.20
397                                  2.31
398                                  2.33
399                                  2.18
400                                  2.30
401                                  2.18
402                                  2.18
403                                  2.28
404                                  2.24
405                                  2.31
406                                  2.32
407                                  2.27
408                                  2.28
409                                  2.21
410                                  2.08
411                                  2.10
412                                  2.24
413                                  2.10
414                                  2.01
415                                  2.17
416                                  2.11
417                                  2.17
418                                  2.76
419                                  2.30
420                                  2.85
421                                  2.09
422                                  3.03
423                                  2.91
424                                  2.04
425                                  2.20
426                                  2.02
427                                  2.02
428                                  2.14
429                                  2.16
430                                  2.27
431                                  2.30
432                                  2.25
433                                  2.10
434                                  2.44
435                                  2.17
436                                  2.22
437                                  2.04
438                                  2.38
439                                  2.04
440                                  2.65
441                                  2.46
442                                  2.25
443                                  2.10
444                                  2.33
445                                  2.30
446                                  2.41
447                                  2.34
448                                  2.36
449                                  2.06
450                                  2.15
451                                  2.32
452                                  2.16
453                                  2.27
454                                  2.37
455                                  2.41
456                                  2.32
457                                  2.40
458                                  2.33
459                                  2.28
460                                  2.23
461                                  2.26
462                                  2.15
463                                  2.15
464                                  2.01
465                                  2.02
466                                  2.16
467                                  2.11
468                                  2.20
469                                  2.08
470                                  2.12
471                                  2.11
472                                  2.09
473                                  2.01
474                                  2.13
475                                  2.13
476                                  2.07
477                                  2.04
478                                  2.07
479                                  2.30
480                                  2.03
481                                  2.04
482                                  2.01
483                                  2.18
484                                  2.45
485                                  2.32
486                                  2.39
487                                  2.06
488                                  2.26
489                                  2.17
490                                  2.23
491                                  2.24
492                                  2.18
493                                  2.08
494                                  2.04
495                                  2.06
496                                  2.06
497                                  2.04
498                                  2.20
499                                  2.07
500                                  2.16
501                                  2.15
502                                  2.16
503                                  2.16
504                                  2.19
505                                  2.07
506                                  2.07
507                                  2.01
508                                  2.01
509                                  2.35
510                                  2.62
511                                  2.22
512                                  2.04
513                                  2.40
514                                  2.62
515                                  2.47
516                                  2.13
517                                  2.16
518                                  2.15
519                                  2.18
520                                  2.08
521                                  2.13
522                                  2.13
523                                  2.19
524                                  2.08
525                                  2.16
526                                  2.55
527                                  2.10
528                                  2.06
529                                  2.25
530                                  2.01
531                                  2.01
532                                  2.41
533                                  2.36
534                                  2.46
535                                  2.52
536                                  2.61
537                                  2.54
538                                  2.65
539                                  2.82
540                                  2.44
541                                  2.23
542                                  2.13
543                                  2.39
544                                  2.33
545                                  2.18
546                                  2.17
547                                  2.19
548                                  2.19
549                                  2.23
550                                  2.19
551                                  2.20
552                                  2.19
553                                  2.15
554                                  2.14
555                                  2.13
556                                  2.13
557                                  2.13
558                                  2.11
559                                  2.08
560                                  2.01
561                                  2.01
562                                  2.05
563                                  2.03
564                                  2.07
565                                  2.04
566                                  2.01
567                                  2.04
568                                  2.06
569                                  2.12
570                                  2.22
571                                  2.10
572                                  2.51
573                                  2.74
574                                  2.73
575                                  2.28
576                                  2.22
577                                  2.35
578                                  2.15
579                                  2.56
580                                  2.57
581                                  2.67
582                                  2.67
583                                  2.88
584                                  2.94
585                                  2.99
586                                  3.12
587                                  3.25
588                                  2.93
589                                  2.34
590                                  2.72
591                                  2.64
592                                  2.35
593                                  2.39
594                                  2.37
595                                  2.38
596                                  2.38
597                                  2.37
598                                  2.02
599                                  2.33
600                                  2.29
601                                  2.37
602                                  2.30
603                                  2.32
604                                  2.31
605                                  2.21
606                                  2.31
607                                  2.25
608                                  2.30
609                                  2.34
610                                  2.34
611                                  2.27
612                                  2.21
613                                  2.33
614                                  2.33
615                                  2.30
616                                  2.23
617                                  2.33
618                                  2.27
619                                  2.31
620                                  2.29
621                                  2.38
622                                  2.37
623                                  2.30
624                                  2.28
625                                  2.73
626                                  2.24
627                                  2.09
628                                  2.24
629                                  2.19
630                                  2.11
631                                  2.13
632                                  2.35
633                                  2.02
634                                  2.89
635                                  2.23
636                                  2.26
637                                  2.27
638                                  2.51
639                                  2.25
640                                  2.16
641                                  2.32
642                                  2.23
643                                  2.20
644                                  2.03
645                                  2.09
646                                  2.06
647                                  2.29
648                                  2.16
649                                  2.01
650                                  2.57
651                                  2.27
652                                  2.93
653                                  2.35
654                                  2.79
655                                  2.83
656                                  2.03
657                                  2.13
658                                  2.03
659                                  2.04
660                                  2.02
661                                  2.04
662                                  2.06
663                                  2.23
664                                  2.55
665                                  2.75
666                                  2.56
667                                  2.54
668                                  2.59
669                                  2.59
670                                  2.59
671                                  2.18
672                                  2.14
673                                  2.26
674                                  2.20
675                                  2.21
676                                  2.20
677                                  2.17
678                                  2.15
679                                  2.18
680                                  2.20
681                                  2.11
682                                  2.13
683                                  2.15
684                                  2.14
685                                  2.06
686                                  2.12
687                                  2.33
688                                  2.34
689                                  2.41
690                                  2.62
691                                  2.78
692                                  2.79
693                                  2.64
694                                  2.65
695                                  2.63
696                                  2.71
697                                  2.75
698                                  2.62
699                                  2.32
700                                  2.21
701                                  2.21
702                                  2.23
703                                  2.26
704                                  2.09
705                                  2.17
706                                  2.13
707                                  2.13
708                                  2.12
709                                  2.07
710                                  2.04
711                                  2.04
712                                  2.02
713                                  2.02
714                                  2.06
715                                  2.09
716                                  2.01
717                                  2.06
718                                  2.06
719                                  2.55
720                                  2.57
721                                  2.57
722                                  2.54
723                                  2.46
724                                  2.51
725                                  2.19
726                                  2.16
727                                  2.16
728                                  2.19
729                                  2.16
730                                  2.14
731                                  2.14
732                                  2.17
733                                  2.09
734                                  2.16
735                                  2.05
736                                  2.05
737                                  2.01
738                                  2.10
739                                  2.17
740                                  2.08
741                                  2.05
742                                  2.18
743                                  2.20
744                                  2.09
745                                  2.54
746                                  2.37
747                                  2.21
748                                  2.18
749                                  2.14
750                                  2.17
751                                  2.14
752                                  2.11
753                                  2.13
754                                  2.15
755                                  2.22
756                                  2.02
757                                  2.08
758                                  2.38
759                                  2.67
760                                  2.82
761                                  2.55
762                                  2.77
763                                  2.80
764                                  2.82
765                                  2.83
766                                  2.48
767                                  2.35
768                                  2.36
769                                  2.07
770                                  2.06
771                                  2.09
772                                  2.03
773                                  2.15
774                                  2.47
775                                  2.50
776                                  2.48
777                                  2.21
778                                  2.31
779                                  2.53
780                                  2.58
781                                  2.05
782                                  2.02
783                                  2.01
784                                  2.06
785                                  2.06
786                                  2.10
787                                  2.13
788                                  2.05
789                                  2.11
790                                  2.01
791                                  2.20
792                                  2.14
793                                  2.15
794                                  2.17
795                                  2.06
796                                  2.22
797                                  2.03
798                                  2.13
799                                  2.10
800                                  2.01
801                                  2.01
802                                  2.05
803                                  2.01
804                                  2.02
805                                  2.06
806                                  2.02
807                                  2.16
808                                  2.11
809                                  2.08
810                                  2.08
811                                  2.19
812                                  2.73
813                                  2.62
814                                  2.39
815                                  2.33
816                                  2.44
817                                  2.34
818                                  2.11
819                                  2.32
820                                  2.21
821                                  2.13
822                                  2.19
823                                  2.07
824                                  2.05
825                                  2.05
826                                  2.23
827                                  2.15
828                                  2.15
829                                  2.09
830                                  2.27
831                                  2.04
832                                  2.19
833                                  2.18
834                                  2.13
835                                  2.08
836                                  2.01
837                                  2.01
838                                  2.06
839                                  2.21
840                                  2.09
841                                  2.09
842                                  2.17
843                                  2.06
844                                  2.08
845                                  2.21
846                                  2.40
847                                  2.19
848                                  2.26
849                                  2.11
850                                  2.10
851                                  2.67
852                                  2.67
853                                  2.61
854                                  2.14
855                                  2.62
856                                  2.50
857                                  2.67
858                                  2.62
859                                  2.58
860                                  2.51
861                                  2.25
862                                  2.49
863                                  2.60
864                                  2.42
865                                  2.48
866                                  2.04
867                                  2.57
868                                  2.17
869                                  2.18
870                                  2.35
871                                  2.43
872                                  2.44
873                                  2.43
874                                  2.43
875                                  2.44
876                                  2.04
877                                  2.16
878                                  2.02
879                                  2.55
880                                  2.31
881                                  2.99
882                                  2.57
883                                  2.58
884                                  2.35
885                                  2.42
886                                  2.45
887                                  2.48
888                                  2.09
889                                  2.04
890                                  2.11
891                                  2.06
892                                  2.25
893                                  2.25
894                                  2.23
895                                  2.12
896                                  2.20
897                                  2.09
898                                  2.07
899                                  2.22
900                                  2.07
901                                  2.07
902                                  2.07
903                                  2.25
904                                  2.24
905                                  2.25
906                                  2.39
907                                  2.59
908                                  2.64
909                                  2.47
910                                  2.43
911                                  2.05
912                                  2.03
913                                  2.01
914                                  2.12
915                                  2.28
916                                  2.10
917                                  2.03
918                                  2.32
919                                  2.32
920                                  2.11
921                                  2.37
922                                  2.16
923                                  2.04
924                                  2.10
925                                  2.10
926                                  2.07
927                                  2.02
928                                  2.15
929                                  2.29
930                                  2.21
931                                  2.12
932                                  2.19
933                                  2.62
934                                  2.09
935                                  2.02
936                                  2.08
937                                  2.40
938                                  2.36
939                                  2.81
940                                  2.32
941                                  2.03
942                                  2.59
943                                  3.05
944                                  2.47
945                                  2.43
946                                  2.03
947                                  2.13
948                                  2.17
949                                  2.02
950                                  2.03
951                                  2.17
952                                  2.22
953                                  2.24
954                                  2.19
955                                  2.15
956                                  2.04
957                                  2.32
958                                  2.19
959                                  2.12
960                                  2.10
961                                  2.02
962                                  2.07
963                                  2.05
964                                  2.05
965                                  2.11
966                                  2.08
967                                  2.09
968                                  2.06
969                                  2.04
970                                  2.06
971                                  2.08
972                                  2.07
973                                  2.14
974                                  2.13
975                                  2.07
976                                  2.48
977                                  2.44
978                                  2.36
979                                  2.39
980                                  2.06
981                                  2.38
982                                  2.39
983                                  2.41
984                                  2.34
985                                  2.23
986                                  2.22
987                                  2.18
988                                  2.26
989                                  2.03
990                                  2.08
991                                  2.05
992                                  2.09
993                                  2.15
994                                  2.06
995                                  2.31
996                                  2.29
997                                  2.26
998                                  2.26
999                                  2.18
1000                                 2.15
1001                                 2.09
1002                                 2.16
1003                                 2.09
1004                                 2.12
1005                                 2.10
1006                                 2.18
1007                                 2.01
1008                                 2.01
1009                                 2.29
1010                                 2.87
1011                                 2.27
1012                                 2.35
1013                                 2.31
1014                                 2.65
1015                                 2.12
1016                                 2.45
1017                                 2.30
1018                                 2.21
1019                                 2.12
1020                                 2.17
1021                                 2.18
1022                                 2.15
1023                                 2.10
1024                                 2.06
1025                                 2.38
1026                                 2.83
1027                                 2.31
1028                                 2.06
1029                                 2.20
1030                                 2.28
1031                                 2.08
1032                                 2.36
1033                                 2.33
1034                                 2.22
1035                                 2.24
1036                                 2.01
1037                                 2.22
1038                                 2.25
1039                                 2.29
1040                                 2.25
1041                                 2.17
1042                                 2.23
1043                                 2.18
1044                                 2.33
1045                                 2.04
1046                                 2.19
1047                                 2.01
1048                                 2.04
1049                                 2.06
1050                                 2.02
1051                                 2.06
1052                                 2.07
1053                                 2.02
1054                                 2.09
1055                                 2.13
1056                                 2.12
1057                                 2.09
1058                                 2.12
1059                                 2.01
1060                                 2.45
1061                                 2.49
1062                                 2.48
1063                                 2.71
1064                                 2.85
1065                                 2.86
1066                                 2.81
1067                                 2.83
1068                                 2.84
1069                                 2.84
1070                                 2.85
1071                                 2.57
1072                                 2.33
1073                                 2.14
1074                                 2.29
1075                                 2.35
1076                                 2.33
1077                                 2.34
1078                                 2.06
1079                                 2.12
1080                                 2.03
1081                                 2.12
1082                                 2.11
1083                                 2.18
1084                                 2.32
1085                                 2.32
1086                                 2.29
1087                                 2.20
1088                                 2.53
1089                                 2.85
1090                                 3.00
1091                                 2.38
1092                                 2.92
1093                                 2.89
1094                                 2.97
1095                                 3.04
1096                                 2.65
1097                                 2.29
1098                                 2.51
1099                                 2.11
1100                                 2.05
1101                                 2.03
1102                                 2.38
1103                                 2.55
1104                                 2.63
1105                                 2.44
1106                                 2.61
1107                                 2.76
1108                                 2.73
1109                                 2.24
1110                                 2.07
1111                                 2.21
1112                                 2.05
1113                                 2.08
1114                                 2.19
1115                                 2.27
1116                                 2.17
1117                                 2.08
1118                                 2.15
1119                                 2.49
1120                                 2.33
1121                                 2.09
1122                                 2.19
1123                                 2.36
1124                                 2.32
1125                                 2.37
1126                                 2.48
1127                                 2.50
1128                                 2.43
1129                                 2.46
1130                                 2.40
1131                                 2.43
1132                                 2.52
1133                                 2.39
1134                                 2.29
1135                                 2.35
1136                                 2.37
1137                                 2.31
1138                                 2.44
1139                                 2.46
1140                                 2.36
1141                                 2.50
1142                                 2.06
1143                                 2.32
1144                                 2.25
1145                                 2.02
1146                                 2.31
1147                                 2.15
1148                                 2.24
1149                                 2.05
1150                                 2.17
1151                                 2.17
1152                                 2.13
1153                                 2.13
1154                                 2.15
1155                                 2.25
1156                                 2.33
1157                                 2.27
1158                                 2.23
1159                                 2.39
1160                                 2.37
1161                                 2.01
1162                                 2.57
1163                                 2.42
1164                                 2.32
1165                                 2.37
1166                                 2.37
1167                                 2.31
1168                                 2.30
1169                                 2.06
1170                                 2.05
1171                                 2.22
1172                                 2.08
1173                                 2.06
1174                                 2.01
1175                                 2.10
1176                                 2.27
1177                                 2.07
1178                                 2.06
1179                                 2.06
1180                                 2.07
1181                                 2.05
1182                                 2.09
1183                                 2.08
1184                                 2.09
1185                                 2.07
1186                                 2.04
1187                                 2.06
1188                                 2.04
1189                                 2.05
1190                                 2.08
1191                                 3.00
1192                                 2.93
1193                                 2.57
1194                                 2.33
1195                                 2.14
1196                                 2.44
1197                                 2.40
1198                                 2.45
1199                                 2.59
1200                                 2.66
1201                                 2.76
1202                                 2.77
1203                                 2.72
1204                                 2.73
1205                                 2.65
1206                                 2.64
1207                                 2.54
1208                                 2.58
1209                                 2.56
1210                                 2.59
1211                                 2.54
1212                                 2.59
1213                                 2.83
1214                                 2.88
1215                                 2.90
1216                                 2.92
1217                                 2.52
1218                                 2.58
1219                                 2.59
1220                                 2.70
1221                                 2.03
1222                                 2.70
1223                                 2.58
1224                                 2.54
1225                                 2.03
1226                                 2.06
1227                                 2.34
1228                                 2.43
1229                                 2.30
1230                                 2.69
1231                                 2.80
1232                                 2.86
1233                                 2.83
1234                                 2.86
1235                                 2.87
1236                                 2.89
1237                                 2.96
1238                                 2.87
1239                                 2.65
1240                                 2.58
1241                                 2.60
1242                                 2.61
1243                                 2.61
1244                                 2.12
1245                                 2.35
1246                                 2.65
1247                                 2.26
1248                                 2.04
1249                                 2.15
1250                                 2.10
1251                                 2.21
1252                                 2.02
1253                                 2.11
1254                                 2.03
1255                                 2.13
1256                                 2.29
1257                                 2.25
1258                                 2.33
1259                                 2.17
1260                                 2.26
1261                                 2.16
1262                                 2.14
1263                                 2.06
1264                                 2.04
1265                                 2.20
1266                                 2.17
1267                                 2.54
1268                                 2.48
1269                                 2.11
1270                                 2.55
1271                                 2.74
1272                                 2.88
1273                                 2.95
1274                                 2.94
1275                                 2.86
1276                                 2.93
1277                                 2.84
1278                                 2.76
1279                                 2.55
1280                                 2.45
1281                                 2.38
1282                                 2.66
1283                                 2.55
1284                                 2.20
1285                                 2.56
1286                                 2.50
1287                                 2.34
1288                                 2.02
1289                                 2.14
1290                                 2.27
1291                                 2.36
1292                                 2.49
1293                                 2.71
1294                                 2.69
1295                                 2.81
1296                                 2.84
1297                                 2.64
1298                                 2.28
1299                                 2.15
1300                                 2.11
1301                                 2.22
1302                                 2.22
1303                                 2.05
1304                                 2.25
1305                                 2.03
1306                                 2.40
1307                                 2.44
1308                                 2.43
1309                                 2.42
1310                                 2.37
1311                                 2.23
1312                                 2.09
1313                                 2.07
1314                                 2.11
1315                                 2.08
1316                                 2.05
1317                                 2.09
1318                                 2.12
1319                                 2.04
1320                                 2.05
1321                                 2.18
1322                                 2.70
1323                                 2.14
1324                                 2.08
1325                                 2.09
1326                                 2.07
1327                                 2.18
1328                                 3.17
1329                                 2.27
1330                                 2.56
1331                                 2.61
1332                                 2.14
1333                                 2.03
1334                                 2.06
1335                                 2.09
1336                                 2.13
1337                                 2.16
1338                                 2.08
1339                                 2.37
1340                                 2.45
1341                                 2.40
1342                                 2.40
1343                                 2.46
1344                                 2.52
1345                                 2.51
1346                                 2.46
1347                                 2.24
1348                                 2.10
1349                                 2.10
1350                                 2.16
1351                                 2.22
1352                                 2.07
1353                                 2.39
1354                                 2.37
1355                                 2.26
1356                                 2.36
1357                                 2.38
1358                                 2.39
1359                                 2.50
1360                                 2.43
1361                                 2.01
1362                                 2.09
1363                                 2.15
1364                                 2.05
1365                                 2.10
1366                                 2.12
1367                                 2.02
1368                                 2.03
1369                                 2.01
1370                                 2.02
1371                                 2.02
1372                                 2.04
1373                                 2.25
1374                                 2.18
1375                                 2.05
1376                                 2.06
1377                                 2.16
1378                                 2.07
1379                                 2.11
1380                                 2.25
1381                                 2.22
1382                                 2.27
1383                                 2.30
1384                                 2.02
1385                                 2.03
     Total Volume      (NUMERO TOTAL DE AGUACATES VENDIDOS)
1                                                    376477
2                                                    375214
3                                                    492505
4                                                    477938
5                                                    519814
6                                                    546056
7                                                    516321
8                                                    537709
9                                                    551896
10                                                   553215
11                                                   590590
12                                                    94072
13                                                    86754
14                                                    97412
15                                                   399837
16                                                   600153
17                                                   561542
18                                                   358446
19                                                   363942
20                                                   388099
21                                                     1449
22                                                     1076
23                                                     1175
24                                                     1573
25                                                     1201
26                                                     1054
27                                                     1542
28                                                     1799
29                                                     5393
30                                                     5705
31                                                     5579
32                                                     3976
33                                                     4447
34                                                     1169
35                                                     1137
36                                                      997
37                                                      909
38                                                      938
39                                                     1197
40                                                     1556
41                                                     1454
42                                                     1594
43                                                     1402
44                                                     1382
45                                                     2623
46                                                     2634
47                                                     2695
48                                                     2955
49                                                     3357
50                                                     3367
51                                                     3388
52                                                     2764
53                                                     3136
54                                                     3045
55                                                     2663
56                                                     2943
57                                                     3429
58                                                     1948
59                                                      614
60                                                    73799
61                                                    70004
62                                                    86211
63                                                     3480
64                                                     2966
65                                                     3992
66                                                     4260
67                                                     4203
68                                                     4602
69                                                     4280
70                                                     3978
71                                                     3207
72                                                     3885
73                                                     3962
74                                                     3670
75                                                     3824
76                                                     3426
77                                                     4041
78                                                     4369
79                                                     4092
80                                                     4775
81                                                     4246
82                                                     3471
83                                                     4164
84                                                     3871
85                                                     3643
86                                                     2694
87                                                     2698
88                                                     2390
89                                                     2966
90                                                     3554
91                                                      684
92                                                      712
93                                                     2788
94                                                      972
95                                                     1189
96                                                     1141
97                                                     1397
98                                                     1842
99                                                     1170
100                                                    5527
101                                                    3999
102                                                    6924
103                                                    2739
104                                                    1633
105                                                    2318
106                                                    2429
107                                                    2879
108                                                    2420
109                                                    2819
110                                                    2855
111                                                    4559
112                                                    2701
113                                                    2868
114                                                    4059
115                                                    2641
116                                                    2928
117                                                    3753
118                                                    5078
119                                                    2676
120                                                    2606
121                                                    2961
122                                                    2844
123                                                    4296
124                                                    2790
125                                                    3776
126                                                    3552
127                                                    3478
128                                                    3193
129                                                    3550
130                                                    3485
131                                                    4485
132                                                    2844
133                                                    3253
134                                                    3828
135                                                    2789
136                                                    2221
137                                                    2848
138                                                    2727
139                                                    3286
140                                                    3050
141                                                    4834
142                                                    2754
143                                                    5223
144                                                    1920
145                                                    2552
146                                                    3464
147                                                    4801
148                                                    2167
149                                                    2606
150                                                    1808
151                                                    1593
152                                                    1558
153                                                    1722
154                                                    2016
155                                                    2058
156                                                    1980
157                                                    3996
158                                                    4732
159                                                    4981
160                                                    4223
161                                                    4420
162                                                    4355
163                                                    4655
164                                                    3414
165                                                    3783
166                                                    6724
167                                                    5000
168                                                   12423
169                                                   12936
170                                                   12517
171                                                   15455
172                                                   17054
173                                                   17916
174                                                   14668
175                                                   19296
176                                                   16542
177                                                   15343
178                                                   16293
179                                                   13852
180                                                   13745
181                                                   10799
182                                                    9520
183                                                   15733
184                                                   15734
185                                                   18746
186                                                   21815
187                                                   18576
188                                                   16170
189                                                   24266
190                                                   14908
191                                                   16567
192                                                   15439
193                                                   16621
194                                                   14337
195                                                    9205
196                                                   14818
197                                                   41883
198                                                   50308
199                                                   47300
200                                                   51880
201                                                   47878
202                                                   40245
203                                                   45881
204                                                   48785
205                                                   57645
206                                                    2805
207                                                    3286
208                                                    2991
209                                                    2490
210                                                    3253
211                                                    2895
212                                                    3081
213                                                    2371
214                                                    2709
215                                                    3003
216                                                    3886
217                                                    3075
218                                                    3782
219                                                   17959
220                                                   18433
221                                                   17148
222                                                   18149
223                                                    3360
224                                                    3397
225                                                    4644
226                                                    5470
227                                                    5232
228                                                    6006
229                                                    6406
230                                                    5975
231                                                    6390
232                                                    7358
233                                                    7260
234                                                    6834
235                                                    8183
236                                                   13218
237                                                   14355
238                                                   17079
239                                                   17583
240                                                   12642
241                                                   14032
242                                                   15347
243                                                   11799
244                                                   15197
245                                                   14803
246                                                   15511
247                                                   15201
248                                                   15111
249                                                   15290
250                                                   15565
251                                                   13936
252                                                   15953
253                                                   19559
254                                                   23142
255                                                   16606
256                                                   17766
257                                                   22913
258                                                   26757
259                                                   27737
260                                                   25101
261                                                   31902
262                                                   33405
263                                                    2725
264                                                    3192
265                                                    3406
266                                                    3546
267                                                    2866
268                                                    2304
269                                                   22417
270                                                    1153
271                                                    1534
272                                                    1844
273                                                    1816
274                                                    1554
275                                                    2291
276                                                    2184
277                                                    2588
278                                                    2786
279                                                    2340
280                                                    3523
281                                                    3762
282                                                    4106
283                                                    3450
284                                                    3031
285                                                    3325
286                                                    3217
287                                                    3420
288                                                    3137
289                                                     482
290                                                     420
291                                                    4638
292                                                    7664
293                                                    7346
294                                                    8060
295                                                    5023
296                                                    7568
297                                                    7057
298                                                    7915
299                                                   13989
300                                                   12676
301                                                   13148
302                                                   11635
303                                                   14538
304                                                   18289
305                                                   21534
306                                                   22736
307                                                   20396
308                                                   19198
309                                                   14071
310                                                   14789
311                                                   17267
312                                                    1836
313                                                    5104
314                                                    3752
315                                                    5018
316                                                  111852
317                                                  107587
318                                                  122100
319                                                  119037
320                                                   96095
321                                                   75898
322                                                   95599
323                                                    6588
324                                                   20021
325                                                   24925
326                                                   28483
327                                                   28819
328                                                   32607
329                                                   28741
330                                                   30429
331                                                   26995
332                                                   27147
333                                                   26731
334                                                   21877
335                                                   30146
336                                                   29893
337                                                   27637
338                                                   31253
339                                                   27655
340                                                   26720
341                                                   28969
342                                                   12651
343                                                    1361
344                                                    1181
345                                                     980
346                                                     842
347                                                    1285
348                                                    1298
349                                                     740
350                                                    1243
351                                                    1201
352                                                    1123
353                                                     981
354                                                    1794
355                                                    5956
356                                                    5307
357                                                    9663
358                                                    9669
359                                                   12285
360                                                    4785
361                                                    8403
362                                                    8156
363                                                    7514
364                                                    8036
365                                                    7148
366                                                    9689
367                                                    5261
368                                                    6674
369                                                    4272
370                                                    5131
371                                                    6836
372                                                    7329
373                                                    9906
374                                                   10645
375                                                   12510
376                                                    9022
377                                                    4689
378                                                    6181
379                                                    5132
380                                                    5402
381                                                    5525
382                                                    7492
383                                                   12210
384                                                    9578
385                                                    9169
386                                                    7356
387                                                    7083
388                                                    5799
389                                                    7906
390                                                    8732
391                                                   10502
392                                                    7461
393                                                    8623
394                                                   13841
395                                                   10677
396                                                    8122
397                                                    8040
398                                                    8735
399                                                    8343
400                                                    6407
401                                                    6621
402                                                    6368
403                                                    9372
404                                                    4736
405                                                    4969
406                                                    7536
407                                                    4585
408                                                    4508
409                                                    3835
410                                                    3985
411                                                    3126
412                                                    1991
413                                                    3472
414                                                    4141
415                                                    4109
416                                                    3795
417                                                    4786
418                                                    3238
419                                                    2988
420                                                    4317
421                                                    5771
422                                                    3715
423                                                    4104
424                                                    6495
425                                                    7663
426                                                    9267
427                                                    8133
428                                                    8267
429                                                    9591
430                                                    9953
431                                                   10298
432                                                   10785
433                                                   48850
434                                                   35648
435                                                   37439
436                                                   32659
437                                                   45384
438                                                   29118
439                                                   48364
440                                                   28406
441                                                   25247
442                                                   25451
443                                                    8443
444                                                   17838
445                                                   26463
446                                                   35543
447                                                   31716
448                                                   45702
449                                                   70120
450                                                   45204
451                                                   19376
452                                                   30583
453                                                   25309
454                                                   27155
455                                                   24048
456                                                   29301
457                                                   55607
458                                                   50300
459                                                   46314
460                                                   38646
461                                                   37403
462                                                   31807
463                                                   34505
464                                                   44794
465                                                   34788
466                                                   54478
467                                                   50335
468                                                   30461
469                                                   47309
470                                                   35909
471                                                   28290
472                                                   28121
473                                                  106003
474                                                   85024
475                                                   82988
476                                                   89099
477                                                  137076
478                                                  149636
479                                                    3773
480                                                    3985
481                                                    8663
482                                                   10386
483                                                    7897
484                                                    6286
485                                                    7735
486                                                    6532
487                                                    4580
488                                                    6276
489                                                    6701
490                                                    6866
491                                                    9521
492                                                   12536
493                                                   15403
494                                                   12126
495                                                    6321
496                                                    6969
497                                                    9269
498                                                    7432
499                                                    7958
500                                                   13247
501                                                   10302
502                                                   10437
503                                                    9455
504                                                   10778
505                                                   10739
506                                                    5953
507                                                    6470
508                                                    8076
509                                                    8305
510                                                    5394
511                                                    6018
512                                                    8551
513                                                    5963
514                                                    5380
515                                                    5578
516                                                    7887
517                                                    8839
518                                                    8914
519                                                    8526
520                                                    9184
521                                                    9221
522                                                    9649
523                                                   10363
524                                                   11457
525                                                   18793
526                                                    7137
527                                                    7817
528                                                   21628
529                                                   20483
530                                                    7632
531                                                    9854
532                                                    4568
533                                                    3769
534                                                    3875
535                                                    4385
536                                                    4144
537                                                    5414
538                                                    6026
539                                                    5372
540                                                    5677
541                                                    5525
542                                                    4316
543                                                    5635
544                                                    6409
545                                                    6759
546                                                    7096
547                                                    7223
548                                                    6914
549                                                    6919
550                                                    6172
551                                                    7923
552                                                    7427
553                                                    7349
554                                                    7715
555                                                    8347
556                                                    9057
557                                                    7417
558                                                    7609
559                                                    8124
560                                                    8439
561                                                    8841
562                                                    7871
563                                                    8108
564                                                    7588
565                                                    7403
566                                                    7998
567                                                    6818
568                                                    9419
569                                                   10272
570                                                    8536
571                                                   10262
572                                                   11300
573                                                    8934
574                                                    8534
575                                                   11257
576                                                   10500
577                                                    9831
578                                                   10274
579                                                   16169
580                                                   14538
581                                                   16323
582                                                   17934
583                                                   17865
584                                                   17436
585                                                   18930
586                                                   19044
587                                                   16701
588                                                   11252
589                                                    9048
590                                                   20761
591                                                   22501
592                                                   21281
593                                                   23514
594                                                   24473
595                                                   24494
596                                                   24144
597                                                   20261
598                                                   25521
599                                                   24605
600                                                   23598
601                                                   22084
602                                                   26284
603                                                   29064
604                                                   29071
605                                                   29536
606                                                   26992
607                                                   27349
608                                                   26851
609                                                   28707
610                                                   30293
611                                                   31309
612                                                   29694
613                                                   25486
614                                                   25141
615                                                   24055
616                                                   25593
617                                                   24715
618                                                   25230
619                                                   24870
620                                                   24175
621                                                   21257
622                                                   21276
623                                                   23631
624                                                   28907
625                                                   13588
626                                                   15072
627                                                   22007
628                                                   18872
629                                                   28186
630                                                   30480
631                                                   38668
632                                                    1795
633                                                    1894
634                                                    1043
635                                                    1254
636                                                    1793
637                                                    1738
638                                                    1227
639                                                    1921
640                                                    1760
641                                                    2470
642                                                    2123
643                                                    4151
644                                                    5259
645                                                    2091
646                                                    3083
647                                                    3413
648                                                   96943
649                                                    8433
650                                                    5647
651                                                    4583
652                                                    5374
653                                                    6224
654                                                    5562
655                                                    4985
656                                                    2269
657                                                    2899
658                                                    3185
659                                                    2719
660                                                    2250
661                                                   15731
662                                                   14352
663                                                   11405
664                                                   12276
665                                                   13558
666                                                   18912
667                                                   17292
668                                                   13956
669                                                   17991
670                                                   13910
671                                                   17338
672                                                   14534
673                                                   18665
674                                                   23687
675                                                   22446
676                                                   22845
677                                                   23607
678                                                   26346
679                                                   24731
680                                                   23209
681                                                   25182
682                                                   21753
683                                                   25697
684                                                   24139
685                                                   18538
686                                                   17418
687                                                    1886
688                                                    1963
689                                                    1632
690                                                    1563
691                                                    1656
692                                                    1373
693                                                    1412
694                                                    1492
695                                                    1600
696                                                    1855
697                                                    1643
698                                                    1662
699                                                    1817
700                                                    2091
701                                                    2033
702                                                    2198
703                                                    2647
704                                                    2373
705                                                   20153
706                                                   19687
707                                                   22051
708                                                   23278
709                                                   20438
710                                                   22925
711                                                   20860
712                                                   17864
713                                                   17308
714                                                   18135
715                                                   18295
716                                                   14572
717                                                   16177
718                                                   13438
719                                                    5370
720                                                    4270
721                                                    5228
722                                                    5446
723                                                    5165
724                                                    5425
725                                                    5712
726                                                    4934
727                                                    5945
728                                                    7610
729                                                    3630
730                                                    5925
731                                                    5987
732                                                    5014
733                                                    3338
734                                                    4486
735                                                    3615
736                                                    2415
737                                                  129602
738                                                  115255
739                                                  124506
740                                                  132772
741                                                  138459
742                                                  152065
743                                                  140337
744                                                  142392
745                                                  121293
746                                                  140366
747                                                  139017
748                                                  118099
749                                                  113903
750                                                  128481
751                                                  127256
752                                                    8486
753                                                    7919
754                                                    9049
755                                                    9819
756                                                   11245
757                                                   11569
758                                                   10196
759                                                    9399
760                                                    8276
761                                                   10375
762                                                    8821
763                                                   10287
764                                                   10311
765                                                    9802
766                                                   10483
767                                                   10438
768                                                   10271
769                                                    8476
770                                                    8789
771                                                    8194
772                                                    8382
773                                                    9586
774                                                    7061
775                                                    8255
776                                                    7285
777                                                    9005
778                                                    8084
779                                                    7230
780                                                    7041
781                                                    8798
782                                                    8815
783                                                    8724
784                                                   32924
785                                                   35334
786                                                   33776
787                                                   28048
788                                                   20131
789                                                   26530
790                                                   12768
791                                                   16058
792                                                   11957
793                                                    9884
794                                                   13963
795                                                   10853
796                                                   10489
797                                                    7548
798                                                    7365
799                                                    9059
800                                                   17422
801                                                   17640
802                                                   15794
803                                                   16982
804                                                   22029
805                                                   23549
806                                                   17940
807                                                   20575
808                                                   17339
809                                                   22376
810                                                   24482
811                                                    3522
812                                                    1034
813                                                    1314
814                                                    1312
815                                                    1390
816                                                    1388
817                                                    1678
818                                                    1569
819                                                     845
820                                                    1452
821                                                    2101
822                                                    2246
823                                                    1909
824                                                    2137
825                                                    2395
826                                                    7165
827                                                    9015
828                                                    9530
829                                                   11104
830                                                   12229
831                                                   11172
832                                                    9934
833                                                    8942
834                                                   10399
835                                                   10754
836                                                   10348
837                                                    9510
838                                                    9053
839                                                    7790
840                                                   11380
841                                                   12486
842                                                   12289
843                                                   13828
844                                                   18017
845                                                   14956
846                                                   13995
847                                                   16041
848                                                   13331
849                                                   13549
850                                                   13864
851                                                   11843
852                                                   11745
853                                                   12883
854                                                   23752
855                                                   13041
856                                                   14985
857                                                   12931
858                                                   12234
859                                                   12457
860                                                   15173
861                                                   18568
862                                                   13285
863                                                   11046
864                                                   13122
865                                                   13054
866                                                   24797
867                                                   13396
868                                                   13783
869                                                   13475
870                                                    9387
871                                                    9412
872                                                    9584
873                                                   11203
874                                                    9881
875                                                   11977
876                                                    4224
877                                                    2726
878                                                    2596
879                                                    1422
880                                                    1841
881                                                    2820
882                                                    5041
883                                                    3994
884                                                    4093
885                                                    3201
886                                                    3332
887                                                    2856
888                                                    1552
889                                                    1972
890                                                    1646
891                                                    2988
892                                                    4779
893                                                    4088
894                                                    4178
895                                                    2568
896                                                    4409
897                                                    5786
898                                                    5056
899                                                    4709
900                                                    2474
901                                                    3194
902                                                    2943
903                                                    6512
904                                                    5292
905                                                    5491
906                                                    5487
907                                                    6985
908                                                    6092
909                                                   10410
910                                                    7716
911                                                    6042
912                                                    8314
913                                                   59524
914                                                   57491
915                                                   59194
916                                                   65406
917                                                   73696
918                                                   64855
919                                                   64680
920                                                   70420
921                                                   63222
922                                                   75147
923                                                   72818
924                                                   67081
925                                                   67791
926                                                   70179
927                                                   75022
928                                                    3098
929                                                    3102
930                                                    4157
931                                                    3779
932                                                    4842
933                                                    1100
934                                                    2976
935                                                    5275
936                                                    3543
937                                                    3478
938                                                    4011
939                                                    3197
940                                                    3749
941                                                    4160
942                                                    2428
943                                                    2068
944                                                    3584
945                                                    3102
946                                                  168954
947                                                  167349
948                                                  141033
949                                                  138392
950                                                  107165
951                                                    7072
952                                                    8230
953                                                    8918
954                                                    8579
955                                                    9103
956                                                    8629
957                                                     937
958                                                     515
959                                                    1179
960                                                    1834
961                                                   63156
962                                                   68467
963                                                   74313
964                                                   71501
965                                                   70882
966                                                   70273
967                                                   69241
968                                                   67167
969                                                   63623
970                                                   70365
971                                                   70931
972                                                   90179
973                                                   82176
974                                                   73866
975                                                   73310
976                                                   59564
977                                                   63800
978                                                   68543
979                                                   81679
980                                                  112813
981                                                   76002
982                                                   70664
983                                                   71188
984                                                   88625
985                                                   73975
986                                                   69388
987                                                   87897
988                                                   93329
989                                                   58560
990                                                   46602
991                                                   49056
992                                                   42233
993                                                   42756
994                                                   39261
995                                                  160288
996                                                  170195
997                                                  181964
998                                                  191985
999                                                  194488
1000                                                 186554
1001                                                 202281
1002                                                 205224
1003                                                 180814
1004                                                 171036
1005                                                 191467
1006                                                 186710
1007                                                   7634
1008                                                   6467
1009                                                   7966
1010                                                   3825
1011                                                   4734
1012                                                   8517
1013                                                   7565
1014                                                   5500
1015                                                   5927
1016                                                   5470
1017                                                   6883
1018                                                   8465
1019                                                   6193
1020                                                   8059
1021                                                   7423
1022                                                   7071
1023                                                   6967
1024                                                   7139
1025                                                   4682
1026                                                   4270
1027                                                   4435
1028                                                   4382
1029                                                   3741
1030                                                   4321
1031                                                   4819
1032                                                  10676
1033                                                  13643
1034                                                  14667
1035                                                  18043
1036                                                  21653
1037                                                  15955
1038                                                  16901
1039                                                  17467
1040                                                  16766
1041                                                  15607
1042                                                  15499
1043                                                  16771
1044                                                  14161
1045                                                  10230
1046                                                  11022
1047                                                   9895
1048                                                  10328
1049                                                  10161
1050                                                  10239
1051                                                   9126
1052                                                  53711
1053                                                  60257
1054                                                  60186
1055                                                  49093
1056                                                  54502
1057                                                  56583
1058                                                  54027
1059                                                  60468
1060                                                  17023
1061                                                  17336
1062                                                  15825
1063                                                  16796
1064                                                  16819
1065                                                  16126
1066                                                  13514
1067                                                  14322
1068                                                  14781
1069                                                  17418
1070                                                  15475
1071                                                  15490
1072                                                  20029
1073                                                  27316
1074                                                  28171
1075                                                  28248
1076                                                  28189
1077                                                  24536
1078                                                  13531
1079                                                  11092
1080                                                  10729
1081                                                  11025
1082                                                  10434
1083                                                  10081
1084                                                   9280
1085                                                  11244
1086                                                  12305
1087                                                  15322
1088                                                  13272
1089                                                  12367
1090                                                  10742
1091                                                  14971
1092                                                  10297
1093                                                  13472
1094                                                  14053
1095                                                  12656
1096                                                  12012
1097                                                  11388
1098                                                  14134
1099                                                   9180
1100                                                   8343
1101                                                  13340
1102                                                   9284
1103                                                  10274
1104                                                   8323
1105                                                   9771
1106                                                   9681
1107                                                   8392
1108                                                   8721
1109                                                  10247
1110                                                  12113
1111                                                  11544
1112                                                  12473
1113                                                   7803
1114                                                   8032
1115                                                   8020
1116                                                   6628
1117                                                   8040
1118                                                   8230
1119                                                   7198
1120                                                   8188
1121                                                   8707
1122                                                   5103
1123                                                   3563
1124                                                   4572
1125                                                   5626
1126                                                   7058
1127                                                   6504
1128                                                   6821
1129                                                   6663
1130                                                   5955
1131                                                   5255
1132                                                   5322
1133                                                   6332
1134                                                   6765
1135                                                   6274
1136                                                   6283
1137                                                   6244
1138                                                   6509
1139                                                   5971
1140                                                   6022
1141                                                   6057
1142                                                   6617
1143                                                   5376
1144                                                   5559
1145                                                   6748
1146                                                   5268
1147                                                   5692
1148                                                   5635
1149                                                  13284
1150                                                  11560
1151                                                  12349
1152                                                  11498
1153                                                  12179
1154                                                  13012
1155                                                  11472
1156                                                  13014
1157                                                  13509
1158                                                  14174
1159                                                  12674
1160                                                  12771
1161                                                  15165
1162                                                  11138
1163                                                  14114
1164                                                  12511
1165                                                  12982
1166                                                  12595
1167                                                  13630
1168                                                  14060
1169                                                  12550
1170                                                  15451
1171                                                  12594
1172                                                  14043
1173                                                  14388
1174                                                  18541
1175                                                  17851
1176                                                  15142
1177                                                  14737
1178                                                  15701
1179                                                  17622
1180                                                  19344
1181                                                  20213
1182                                                  19951
1183                                                  18853
1184                                                  19027
1185                                                  20337
1186                                                  22703
1187                                                  19095
1188                                                  32192
1189                                                  28335
1190                                                  22836
1191                                                  19329
1192                                                  21525
1193                                                  22296
1194                                                  13351
1195                                                  10110
1196                                                  16832
1197                                                  14099
1198                                                   8311
1199                                                  12280
1200                                                  15691
1201                                                  24038
1202                                                  25806
1203                                                  23897
1204                                                  24852
1205                                                  22559
1206                                                  20842
1207                                                  19402
1208                                                  22792
1209                                                  21331
1210                                                  23032
1211                                                  21232
1212                                                  21304
1213                                                  20171
1214                                                  18687
1215                                                  17686
1216                                                  21218
1217                                                  18754
1218                                                  19203
1219                                                  19434
1220                                                  17708
1221                                                  20442
1222                                                  17203
1223                                                  18097
1224                                                  19911
1225                                                  27571
1226                                                  26827
1227                                                  22873
1228                                                  26592
1229                                                  29231
1230                                                  25513
1231                                                  27718
1232                                                  25718
1233                                                  23238
1234                                                  21772
1235                                                  27205
1236                                                  30854
1237                                                  26846
1238                                                  24671
1239                                                  27149
1240                                                  29977
1241                                                  28587
1242                                                  25302
1243                                                  28034
1244                                                  40059
1245                                                  34268
1246                                                  31895
1247                                                  29025
1248                                                  14402
1249                                                  12922
1250                                                  14716
1251                                                  11851
1252                                                  14718
1253                                                  14335
1254                                                  14072
1255                                                  76472
1256                                                  83783
1257                                                  90946
1258                                                  71648
1259                                                  77245
1260                                                  77686
1261                                                  77416
1262                                                   2675
1263                                                   2722
1264                                                   3285
1265                                                   2839
1266                                                   3114
1267                                                   2597
1268                                                   2798
1269                                                   3628
1270                                                   2820
1271                                                   2803
1272                                                   2414
1273                                                   2418
1274                                                   2375
1275                                                   2914
1276                                                   3048
1277                                                   2078
1278                                                   2233
1279                                                   3503
1280                                                   3628
1281                                                   3375
1282                                                   3011
1283                                                   3536
1284                                                   4236
1285                                                   3960
1286                                                   3368
1287                                                   2274
1288                                                   6579
1289                                                   7427
1290                                                   6087
1291                                                   6583
1292                                                   2936
1293                                                   5270
1294                                                   5158
1295                                                   4112
1296                                                   3591
1297                                                   4715
1298                                                   5429
1299                                                   8848
1300                                                   6859
1301                                                   6999
1302                                                   7773
1303                                                   7973
1304                                                   4552
1305                                                   6470
1306                                                   2790
1307                                                   2508
1308                                                   2664
1309                                                   3406
1310                                                   3056
1311                                                   3153
1312                                                   3299
1313                                                   2976
1314                                                   4182
1315                                                   3224
1316                                                   3200
1317                                                   2858
1318                                                   2614
1319                                                   2461
1320                                                   2065
1321                                                   6400
1322                                                   3289
1323                                                   7152
1324                                                   6570
1325                                                   6200
1326                                                   6481
1327                                                   3715
1328                                                   3019
1329                                                   4155
1330                                                   2856
1331                                                   3705
1332                                                   4103
1333                                                1093956
1334                                                1075539
1335                                                1045992
1336                                                 138955
1337                                                 148010
1338                                                 174251
1339                                                 153187
1340                                                 122625
1341                                                 111321
1342                                                 139472
1343                                                 149611
1344                                                 143490
1345                                                 154828
1346                                                 139145
1347                                                 157710
1348                                                 178607
1349                                                 180689
1350                                                 162322
1351                                                 151281
1352                                                   9576
1353                                                  10965
1354                                                   8873
1355                                                   9529
1356                                                  10464
1357                                                  11857
1358                                                   7657
1359                                                  16138
1360                                                  10788
1361                                                   8436
1362                                                  20243
1363                                                  17722
1364                                                  15721
1365                                                  11884
1366                                                  12309
1367                                                  14449
1368                                                  15205
1369                                                   5704
1370                                                  13380
1371                                                  13870
1372                                                  11805
1373                                                  14636
1374                                                   6512
1375                                                  17876
1376                                                  16747
1377                                                  25742
1378                                                  25055
1379                                                  24475
1380                                                  21552
1381                                                  21709
1382                                                  20326
1383                                                  20151
1384                                                  33987
1385                                                  36228
     NUMERO TOTAL DE AGUACATE CON PLU 4046-PEQUEÑO VENDIDOS
1                                                     31207
2                                                     33565
3                                                    109081
4                                                    130025
5                                                     84591
6                                                     89192
7                                                     62315
8                                                     73349
9                                                     79162
10                                                    59561
11                                                    65245
12                                                     3560
13                                                     2689
14                                                     3178
15                                                   254128
16                                                   151421
17                                                   147450
18                                                    66346
19                                                    72930
20                                                    83635
21                                                       99
22                                                       51
23                                                       34
24                                                       51
25                                                       22
26                                                       18
27                                                       79
28                                                       58
29                                                     2233
30                                                     2379
31                                                     2291
32                                                     1326
33                                                     1628
34                                                       10
35                                                       18
36                                                       10
37                                                        9
38                                                        8
39                                                       13
40                                                       27
41                                                        8
42                                                       12
43                                                       20
44                                                        3
45                                                       16
46                                                       21
47                                                      297
48                                                      185
49                                                      116
50                                                       99
51                                                       19
52                                                       20
53                                                        2
54                                                       13
55                                                       83
56                                                       72
57                                                       76
58                                                        3
59                                                       90
60                                                    15960
61                                                    14400
62                                                    23147
63                                                      338
64                                                      292
65                                                      327
66                                                      250
67                                                      274
68                                                      272
69                                                      151
70                                                      359
71                                                      228
72                                                      200
73                                                      288
74                                                      279
75                                                      414
76                                                      336
77                                                      326
78                                                      279
79                                                      335
80                                                      405
81                                                      466
82                                                      296
83                                                      234
84                                                      256
85                                                      304
86                                                      348
87                                                      347
88                                                      156
89                                                      152
90                                                      379
91                                                       21
92                                                       59
93                                                      117
94                                                      149
95                                                       83
96                                                      107
97                                                      146
98                                                       66
99                                                       46
100                                                      89
101                                                     223
102                                                      75
103                                                     192
104                                                      30
105                                                     138
106                                                     136
107                                                     113
108                                                      33
109                                                      97
110                                                      64
111                                                      54
112                                                     179
113                                                      49
114                                                     173
115                                                      89
116                                                     117
117                                                    1361
118                                                    1942
119                                                      83
120                                                      68
121                                                      81
122                                                     122
123                                                     160
124                                                     133
125                                                      74
126                                                     124
127                                                     276
128                                                     274
129                                                      85
130                                                      46
131                                                      79
132                                                      53
133                                                      82
134                                                     184
135                                                     100
136                                                      88
137                                                     149
138                                                      84
139                                                     153
140                                                      59
141                                                     670
142                                                     304
143                                                      49
144                                                      74
145                                                      40
146                                                      79
147                                                      88
148                                                    1601
149                                                    1536
150                                                    1102
151                                                    1229
152                                                     940
153                                                    1105
154                                                    1096
155                                                    1395
156                                                    1338
157                                                    1461
158                                                    2048
159                                                    1846
160                                                    1225
161                                                    1354
162                                                    1288
163                                                    1209
164                                                     693
165                                                     847
166                                                    3063
167                                                    1394
168                                                    3272
169                                                    1528
170                                                    1982
171                                                    1979
172                                                    2222
173                                                    3811
174                                                    2211
175                                                    3452
176                                                    2258
177                                                    2739
178                                                    2844
179                                                    1930
180                                                    2237
181                                                    2076
182                                                    1816
183                                                    3467
184                                                    2746
185                                                    3933
186                                                    2918
187                                                    2667
188                                                    1766
189                                                    2688
190                                                    1901
191                                                    4161
192                                                    2988
193                                                    3471
194                                                    1363
195                                                     693
196                                                    1744
197                                                    3599
198                                                    3999
199                                                    6353
200                                                    3802
201                                                    3613
202                                                    4205
203                                                    3575
204                                                    5391
205                                                    4854
206                                                    1877
207                                                    1760
208                                                    1810
209                                                    1825
210                                                    1870
211                                                    1771
212                                                    1876
213                                                     503
214                                                     395
215                                                     327
216                                                     431
217                                                     319
218                                                     406
219                                                    3093
220                                                    3226
221                                                    3696
222                                                    4931
223                                                      61
224                                                      58
225                                                     873
226                                                    1222
227                                                    1179
228                                                    1290
229                                                    1365
230                                                    1356
231                                                    1799
232                                                    2116
233                                                    1873
234                                                    2222
235                                                    2850
236                                                     953
237                                                     791
238                                                    1083
239                                                    1360
240                                                     962
241                                                    1047
242                                                    1419
243                                                    1221
244                                                    1210
245                                                    1404
246                                                    1414
247                                                    1562
248                                                    1808
249                                                    1761
250                                                    1802
251                                                    1763
252                                                    2893
253                                                    3894
254                                                    7913
255                                                     557
256                                                     647
257                                                    5767
258                                                    8531
259                                                    8288
260                                                    6831
261                                                   10612
262                                                   10962
263                                                     510
264                                                     585
265                                                     613
266                                                     685
267                                                     777
268                                                     475
269                                                    8882
270                                                      57
271                                                     370
272                                                     375
273                                                     368
274                                                     316
275                                                     400
276                                                     332
277                                                     487
278                                                     681
279                                                     734
280                                                    1696
281                                                    1430
282                                                    1591
283                                                    1372
284                                                    1097
285                                                    1373
286                                                    1375
287                                                    1255
288                                                    1054
289                                                       0
290                                                       0
291                                                    1395
292                                                    1524
293                                                    1544
294                                                    1691
295                                                     896
296                                                    1127
297                                                    1715
298                                                    1400
299                                                     947
300                                                     676
301                                                     639
302                                                     842
303                                                     816
304                                                     483
305                                                     538
306                                                     541
307                                                     633
308                                                     705
309                                                    1228
310                                                     896
311                                                     740
312                                                       0
313                                                      25
314                                                       0
315                                                       0
316                                                   21468
317                                                   18290
318                                                   21826
319                                                   22140
320                                                   17621
321                                                    9139
322                                                   13352
323                                                     164
324                                                      57
325                                                      50
326                                                      57
327                                                      39
328                                                      89
329                                                      84
330                                                      73
331                                                      79
332                                                     100
333                                                      94
334                                                      98
335                                                      93
336                                                      92
337                                                     699
338                                                      70
339                                                      84
340                                                      76
341                                                      81
342                                                      40
343                                                      84
344                                                      38
345                                                      59
346                                                      43
347                                                      69
348                                                      66
349                                                      18
350                                                     105
351                                                     117
352                                                      98
353                                                     105
354                                                    1070
355                                                     277
356                                                     252
357                                                     221
358                                                     415
359                                                     237
360                                                     208
361                                                      64
362                                                     152
363                                                      20
364                                                     104
365                                                      47
366                                                     187
367                                                      15
368                                                      73
369                                                     276
370                                                      35
371                                                      48
372                                                      62
373                                                     189
374                                                      84
375                                                     218
376                                                     167
377                                                      52
378                                                     152
379                                                      65
380                                                      36
381                                                     134
382                                                      29
383                                                      19
384                                                     202
385                                                     168
386                                                      38
387                                                      53
388                                                     122
389                                                      20
390                                                     108
391                                                      29
392                                                      23
393                                                      25
394                                                     105
395                                                     134
396                                                      80
397                                                      33
398                                                     219
399                                                     118
400                                                     161
401                                                     717
402                                                     657
403                                                      89
404                                                     128
405                                                     149
406                                                     190
407                                                     127
408                                                      99
409                                                     385
410                                                     149
411                                                     150
412                                                    1455
413                                                    2096
414                                                    2307
415                                                    2933
416                                                    2538
417                                                     938
418                                                     379
419                                                     267
420                                                     707
421                                                    1017
422                                                     297
423                                                     410
424                                                    1493
425                                                    2324
426                                                    2869
427                                                    2504
428                                                    2592
429                                                    3176
430                                                    2964
431                                                    3346
432                                                    3690
433                                                    9328
434                                                    5615
435                                                    5592
436                                                    4691
437                                                    9062
438                                                    4166
439                                                    8938
440                                                    3701
441                                                    3243
442                                                    5224
443                                                    1932
444                                                    3985
445                                                    4175
446                                                    3507
447                                                    3786
448                                                    4208
449                                                    9239
450                                                    5170
451                                                    3097
452                                                    5398
453                                                    5199
454                                                    4520
455                                                    3527
456                                                    3377
457                                                    4035
458                                                    4835
459                                                    4226
460                                                    3521
461                                                    3233
462                                                    2285
463                                                    4303
464                                                    5436
465                                                    4328
466                                                    5556
467                                                    4483
468                                                    3080
469                                                    5328
470                                                    2964
471                                                    4689
472                                                    2290
473                                                    6301
474                                                    6089
475                                                    6112
476                                                    5609
477                                                    6844
478                                                    6082
479                                                    2848
480                                                    2264
481                                                     565
482                                                    1179
483                                                     705
484                                                     930
485                                                     869
486                                                    1020
487                                                     677
488                                                     824
489                                                     868
490                                                     855
491                                                     782
492                                                     765
493                                                    1346
494                                                    1240
495                                                     573
496                                                     863
497                                                     729
498                                                     666
499                                                     625
500                                                     856
501                                                    1248
502                                                    1028
503                                                     580
504                                                     595
505                                                     623
506                                                     686
507                                                    2026
508                                                    2130
509                                                    3221
510                                                    1437
511                                                    2044
512                                                    2904
513                                                    1750
514                                                    1150
515                                                    1537
516                                                    2974
517                                                    3684
518                                                    3685
519                                                    3374
520                                                    4112
521                                                    3418
522                                                    3641
523                                                    4127
524                                                    4721
525                                                    2802
526                                                    1911
527                                                    1807
528                                                    5637
529                                                    5280
530                                                     154
531                                                     194
532                                                    1450
533                                                    1377
534                                                    1284
535                                                    1688
536                                                    1532
537                                                    1621
538                                                    1982
539                                                    1770
540                                                    1550
541                                                    1044
542                                                    1300
543                                                    1179
544                                                    1400
545                                                    1733
546                                                    1675
547                                                    1513
548                                                    1312
549                                                    1197
550                                                    1456
551                                                    1616
552                                                    1534
553                                                    1607
554                                                    1597
555                                                    1785
556                                                    1932
557                                                    1496
558                                                    1478
559                                                    1424
560                                                    1745
561                                                    1726
562                                                    1570
563                                                    1318
564                                                    1210
565                                                    1313
566                                                    1156
567                                                    1001
568                                                    1465
569                                                     865
570                                                     748
571                                                     914
572                                                    1169
573                                                    1854
574                                                     653
575                                                    1074
576                                                     908
577                                                     734
578                                                    1290
579                                                    5599
580                                                    4731
581                                                    5669
582                                                    7264
583                                                    7103
584                                                    5927
585                                                    6205
586                                                    5898
587                                                    2326
588                                                     523
589                                                     696
590                                                    1173
591                                                     916
592                                                    1004
593                                                    1244
594                                                    1085
595                                                     809
596                                                     880
597                                                    1618
598                                                    1769
599                                                    2254
600                                                    1681
601                                                    1599
602                                                    1394
603                                                    1760
604                                                    1423
605                                                    2214
606                                                    1610
607                                                    1205
608                                                    1445
609                                                    1398
610                                                    1454
611                                                    1846
612                                                    1507
613                                                    1308
614                                                    1173
615                                                    1124
616                                                    1257
617                                                    1130
618                                                    1353
619                                                    1787
620                                                    1144
621                                                    1146
622                                                    1014
623                                                    1638
624                                                     542
625                                                     794
626                                                     794
627                                                    6159
628                                                    5596
629                                                    5346
630                                                    1924
631                                                   14243
632                                                      38
633                                                      14
634                                                     105
635                                                      48
636                                                     123
637                                                     300
638                                                     511
639                                                     623
640                                                     286
641                                                     633
642                                                     531
643                                                    2178
644                                                    2153
645                                                       0
646                                                       1
647                                                    2573
648                                                   42763
649                                                    1281
650                                                     594
651                                                     759
652                                                     901
653                                                    1320
654                                                     790
655                                                     652
656                                                      59
657                                                     142
658                                                     367
659                                                      21
660                                                     166
661                                                     319
662                                                     390
663                                                     345
664                                                     371
665                                                     544
666                                                     507
667                                                     521
668                                                     599
669                                                     538
670                                                     639
671                                                     588
672                                                     517
673                                                    1270
674                                                    1028
675                                                     792
676                                                     964
677                                                    1138
678                                                    1030
679                                                    1010
680                                                    1035
681                                                    1026
682                                                     964
683                                                    1413
684                                                     809
685                                                    1109
686                                                    1147
687                                                      45
688                                                      52
689                                                      41
690                                                      34
691                                                      63
692                                                      58
693                                                      64
694                                                      67
695                                                      76
696                                                     110
697                                                     111
698                                                     108
699                                                      71
700                                                      81
701                                                      52
702                                                      52
703                                                      74
704                                                      53
705                                                       9
706                                                       8
707                                                      12
708                                                      17
709                                                      10
710                                                      12
711                                                      21
712                                                      86
713                                                     182
714                                                     155
715                                                     139
716                                                      13
717                                                      14
718                                                      15
719                                                       6
720                                                       4
721                                                      16
722                                                      28
723                                                       5
724                                                       4
725                                                       0
726                                                       7
727                                                       0
728                                                       0
729                                                       2
730                                                       7
731                                                       9
732                                                       0
733                                                       1
734                                                       0
735                                                       2
736                                                       0
737                                                   29243
738                                                   25514
739                                                   26222
740                                                   31037
741                                                   34599
742                                                   48806
743                                                   40795
744                                                   33579
745                                                   31150
746                                                   28993
747                                                   27835
748                                                   18668
749                                                   15244
750                                                   20884
751                                                   18861
752                                                      21
753                                                       7
754                                                      16
755                                                      31
756                                                      43
757                                                      36
758                                                      64
759                                                      31
760                                                      13
761                                                      22
762                                                      23
763                                                      69
764                                                      18
765                                                      66
766                                                      92
767                                                      33
768                                                      29
769                                                      27
770                                                       6
771                                                      46
772                                                      80
773                                                     285
774                                                     296
775                                                     314
776                                                     257
777                                                     421
778                                                     146
779                                                     291
780                                                     281
781                                                     300
782                                                     248
783                                                     276
784                                                      25
785                                                      29
786                                                      38
787                                                     124
788                                                     107
789                                                      92
790                                                     398
791                                                     351
792                                                     295
793                                                     314
794                                                     341
795                                                     221
796                                                     572
797                                                     656
798                                                     647
799                                                     525
800                                                    4745
801                                                    4507
802                                                    4139
803                                                    4980
804                                                    6552
805                                                    6045
806                                                    5320
807                                                    5403
808                                                    5178
809                                                    7525
810                                                     556
811                                                      32
812                                                       7
813                                                      19
814                                                       0
815                                                       3
816                                                       3
817                                                      10
818                                                       0
819                                                       0
820                                                       3
821                                                      18
822                                                      24
823                                                      42
824                                                       6
825                                                      28
826                                                     176
827                                                     377
828                                                     249
829                                                    1033
830                                                     395
831                                                     864
832                                                     443
833                                                     275
834                                                     282
835                                                     306
836                                                    1004
837                                                     357
838                                                     364
839                                                     477
840                                                      35
841                                                      36
842                                                      27
843                                                      72
844                                                      87
845                                                     143
846                                                      75
847                                                     333
848                                                      84
849                                                      37
850                                                      73
851                                                      44
852                                                     121
853                                                      64
854                                                     550
855                                                      89
856                                                     340
857                                                     149
858                                                     108
859                                                     310
860                                                     198
861                                                     477
862                                                      44
863                                                     198
864                                                     495
865                                                     173
866                                                     604
867                                                     110
868                                                     255
869                                                     209
870                                                      45
871                                                      96
872                                                     102
873                                                     119
874                                                      38
875                                                     152
876                                                     116
877                                                     102
878                                                      67
879                                                      60
880                                                      54
881                                                     174
882                                                     187
883                                                     227
884                                                     196
885                                                     196
886                                                     333
887                                                     302
888                                                      84
889                                                     121
890                                                      74
891                                                     166
892                                                     435
893                                                     513
894                                                     551
895                                                     985
896                                                    1264
897                                                    1322
898                                                    1261
899                                                    3021
900                                                    1050
901                                                     736
902                                                    1084
903                                                    1223
904                                                    1055
905                                                    1048
906                                                    1149
907                                                    1028
908                                                     905
909                                                    1805
910                                                    1214
911                                                     914
912                                                    2768
913                                                    6445
914                                                    6151
915                                                    5550
916                                                    8451
917                                                   12052
918                                                   12786
919                                                   11203
920                                                   10621
921                                                   11686
922                                                   10649
923                                                   10765
924                                                    9065
925                                                    9903
926                                                    9096
927                                                   10042
928                                                       1
929                                                       0
930                                                       3
931                                                       9
932                                                     139
933                                                      25
934                                                      33
935                                                     325
936                                                     838
937                                                    1154
938                                                    1363
939                                                     738
940                                                     318
941                                                     546
942                                                    1224
943                                                    1044
944                                                    1074
945                                                    1208
946                                                    4000
947                                                    6816
948                                                    6350
949                                                    3384
950                                                    3841
951                                                      61
952                                                      89
953                                                     104
954                                                     117
955                                                      94
956                                                     167
957                                                     103
958                                                     400
959                                                     417
960                                                     537
961                                                    5281
962                                                    5986
963                                                    5950
964                                                    5540
965                                                    5302
966                                                    5761
967                                                    6709
968                                                    6354
969                                                    5061
970                                                    5245
971                                                    4879
972                                                    5734
973                                                    8611
974                                                    4774
975                                                    4392
976                                                    3895
977                                                    5740
978                                                    5994
979                                                    9032
980                                                   17823
981                                                    6138
982                                                    6849
983                                                    6758
984                                                    8040
985                                                    6752
986                                                    8495
987                                                   12071
988                                                    9963
989                                                    7829
990                                                    6492
991                                                    6679
992                                                    6002
993                                                    6642
994                                                    6072
995                                                    6639
996                                                    8951
997                                                    8675
998                                                   13019
999                                                   11401
1000                                                  10975
1001                                                  11814
1002                                                  12709
1003                                                  11465
1004                                                  14747
1005                                                  18318
1006                                                  14633
1007                                                    248
1008                                                    180
1009                                                    319
1010                                                    175
1011                                                    199
1012                                                    239
1013                                                    497
1014                                                    486
1015                                                    251
1016                                                    439
1017                                                    590
1018                                                    808
1019                                                    767
1020                                                    811
1021                                                    781
1022                                                    768
1023                                                   2155
1024                                                   3870
1025                                                   2188
1026                                                   2091
1027                                                   1570
1028                                                   1487
1029                                                   1292
1030                                                   1879
1031                                                   1562
1032                                                    969
1033                                                   1162
1034                                                   1528
1035                                                   2738
1036                                                   5098
1037                                                   2252
1038                                                   2303
1039                                                   2786
1040                                                   2383
1041                                                   2318
1042                                                   2748
1043                                                   3650
1044                                                   2594
1045                                                   1446
1046                                                   2571
1047                                                   1907
1048                                                   2882
1049                                                   1987
1050                                                   3244
1051                                                   4146
1052                                                   1120
1053                                                   1702
1054                                                   1617
1055                                                   1296
1056                                                   1297
1057                                                   1505
1058                                                   1395
1059                                                   1074
1060                                                   2069
1061                                                   2011
1062                                                   1738
1063                                                   1671
1064                                                   1802
1065                                                    188
1066                                                    180
1067                                                    236
1068                                                    183
1069                                                    176
1070                                                    197
1071                                                    583
1072                                                   3506
1073                                                   8822
1074                                                   6086
1075                                                   2185
1076                                                   3131
1077                                                   6208
1078                                                     89
1079                                                    132
1080                                                     77
1081                                                     59
1082                                                     74
1083                                                    143
1084                                                    132
1085                                                     96
1086                                                    192
1087                                                    196
1088                                                    442
1089                                                     96
1090                                                    140
1091                                                    131
1092                                                     90
1093                                                    146
1094                                                    169
1095                                                    419
1096                                                    384
1097                                                    141
1098                                                    139
1099                                                    270
1100                                                    140
1101                                                    296
1102                                                    278
1103                                                    316
1104                                                    311
1105                                                    183
1106                                                    231
1107                                                    303
1108                                                    299
1109                                                    202
1110                                                    209
1111                                                    231
1112                                                    655
1113                                                    226
1114                                                    259
1115                                                    358
1116                                                    312
1117                                                    353
1118                                                   2654
1119                                                   2222
1120                                                   2355
1121                                                   2079
1122                                                   1251
1123                                                   1253
1124                                                   1473
1125                                                   2006
1126                                                   2609
1127                                                   2177
1128                                                   2184
1129                                                   2305
1130                                                   2136
1131                                                   1982
1132                                                   1862
1133                                                   2222
1134                                                   1968
1135                                                   2026
1136                                                   2156
1137                                                   2073
1138                                                   2085
1139                                                   1795
1140                                                   1644
1141                                                   1737
1142                                                   1809
1143                                                   1718
1144                                                   1708
1145                                                   1653
1146                                                   1503
1147                                                   1631
1148                                                   1907
1149                                                   2437
1150                                                    468
1151                                                    692
1152                                                    771
1153                                                    863
1154                                                    952
1155                                                    713
1156                                                    755
1157                                                   1596
1158                                                   2804
1159                                                   2230
1160                                                   1926
1161                                                   1139
1162                                                   1398
1163                                                   1008
1164                                                    930
1165                                                   1048
1166                                                    820
1167                                                    785
1168                                                    694
1169                                                   1163
1170                                                    853
1171                                                   1456
1172                                                    941
1173                                                   2884
1174                                                   7760
1175                                                   7412
1176                                                   7080
1177                                                   8275
1178                                                   8641
1179                                                   9956
1180                                                  10941
1181                                                  10984
1182                                                  11100
1183                                                   9739
1184                                                  10238
1185                                                  10833
1186                                                  11900
1187                                                  10381
1188                                                  18705
1189                                                  16390
1190                                                  12621
1191                                                  10517
1192                                                   9571
1193                                                   8857
1194                                                   3754
1195                                                   1826
1196                                                   5952
1197                                                   4163
1198                                                   2009
1199                                                   4003
1200                                                   5756
1201                                                  10702
1202                                                  10769
1203                                                   9679
1204                                                  10640
1205                                                   9604
1206                                                   8773
1207                                                   7404
1208                                                   9037
1209                                                   7819
1210                                                   9014
1211                                                   7773
1212                                                   8315
1213                                                   7369
1214                                                   6332
1215                                                   6728
1216                                                   8014
1217                                                   6708
1218                                                   7333
1219                                                   7272
1220                                                   7224
1221                                                   8436
1222                                                   5876
1223                                                   6273
1224                                                   7269
1225                                                    792
1226                                                    932
1227                                                    788
1228                                                   1118
1229                                                   1277
1230                                                   1122
1231                                                   1080
1232                                                    770
1233                                                    846
1234                                                    883
1235                                                   1052
1236                                                   1290
1237                                                   1135
1238                                                   1190
1239                                                   1216
1240                                                   1335
1241                                                   1132
1242                                                    729
1243                                                   1003
1244                                                   1411
1245                                                   1634
1246                                                   1740
1247                                                    800
1248                                                    136
1249                                                    182
1250                                                    138
1251                                                    184
1252                                                    179
1253                                                    208
1254                                                    225
1255                                                   1400
1256                                                   2021
1257                                                   2085
1258                                                   2089
1259                                                   2029
1260                                                   2181
1261                                                   2656
1262                                                    182
1263                                                    257
1264                                                    157
1265                                                    184
1266                                                    276
1267                                                    215
1268                                                    272
1269                                                    368
1270                                                    104
1271                                                    236
1272                                                    149
1273                                                    168
1274                                                    181
1275                                                    255
1276                                                    182
1277                                                    122
1278                                                    214
1279                                                    290
1280                                                    273
1281                                                    128
1282                                                    146
1283                                                    324
1284                                                    359
1285                                                    306
1286                                                    417
1287                                                    121
1288                                                     44
1289                                                     27
1290                                                     19
1291                                                     27
1292                                                      9
1293                                                     32
1294                                                    101
1295                                                     23
1296                                                     44
1297                                                    150
1298                                                    239
1299                                                   1495
1300                                                    558
1301                                                    657
1302                                                   1988
1303                                                   2394
1304                                                     60
1305                                                   1060
1306                                                      0
1307                                                      0
1308                                                      1
1309                                                      0
1310                                                      0
1311                                                      0
1312                                                      0
1313                                                      0
1314                                                      0
1315                                                      0
1316                                                      0
1317                                                      0
1318                                                      0
1319                                                      0
1320                                                      0
1321                                                    109
1322                                                    126
1323                                                    174
1324                                                    451
1325                                                    489
1326                                                    476
1327                                                   1053
1328                                                   1256
1329                                                    958
1330                                                   1234
1331                                                   1712
1332                                                    969
1333                                                 114942
1334                                                 113516
1335                                                 112812
1336                                                  19918
1337                                                  20937
1338                                                  31939
1339                                                  25307
1340                                                  16846
1341                                                  17650
1342                                                  22989
1343                                                  21079
1344                                                  19509
1345                                                  23404
1346                                                  19613
1347                                                  26942
1348                                                  42642
1349                                                  35365
1350                                                  29483
1351                                                  20505
1352                                                   1785
1353                                                   1952
1354                                                   1474
1355                                                   1545
1356                                                   1845
1357                                                   1562
1358                                                    927
1359                                                   2617
1360                                                   1665
1361                                                   1182
1362                                                    144
1363                                                    147
1364                                                    214
1365                                                     24
1366                                                     98
1367                                                    123
1368                                                     76
1369                                                    161
1370                                                     87
1371                                                     93
1372                                                     72
1373                                                     83
1374                                                   2188
1375                                                    946
1376                                                   5151
1377                                                  10368
1378                                                   9522
1379                                                   9731
1380                                                   9721
1381                                                   9960
1382                                                   9368
1383                                                  10165
1384                                                    928
1385                                                   1147
     NUMERO TOTAL DE AGUACATE CON PLU 4225-LARGO VENDIDOS
1                                                  224562
2                                                  226981
3                                                  304926
4                                                  285048
5                                                  275588
6                                                  288024
7                                                  296817
8                                                  293405
9                                                  322017
10                                                 315414
11                                                 318096
12                                                  37971
13                                                  30568
14                                                  35899
15                                                  48864
16                                                 360906
17                                                 304989
18                                                 129937
19                                                 126903
20                                                 140864
21                                                    165
22                                                    112
23                                                     92
24                                                    184
25                                                    125
26                                                    108
27                                                    211
28                                                    131
29                                                   3021
30                                                   3304
31                                                   2855
32                                                   2651
33                                                   2752
34                                                    836
35                                                    822
36                                                    857
37                                                    814
38                                                    794
39                                                    972
40                                                   1201
41                                                   1091
42                                                   1359
43                                                   1161
44                                                   1262
45                                                   1124
46                                                   1081
47                                                   1041
48                                                   1066
49                                                   1353
50                                                   1957
51                                                   2152
52                                                   1646
53                                                   1530
54                                                   1626
55                                                   1124
56                                                   1019
57                                                   1275
58                                                    760
59                                                    104
60                                                  48820
61                                                  48933
62                                                  52641
63                                                   1219
64                                                   1201
65                                                   1256
66                                                   1331
67                                                   1401
68                                                   1766
69                                                   1496
70                                                   1442
71                                                   1265
72                                                   1517
73                                                   1458
74                                                   1515
75                                                   1741
76                                                   1507
77                                                   1433
78                                                   1378
79                                                   1525
80                                                   1602
81                                                   1283
82                                                   1054
83                                                   1312
84                                                   1460
85                                                   1235
86                                                    957
87                                                    744
88                                                    970
89                                                    883
90                                                   2654
91                                                    660
92                                                    572
93                                                    171
94                                                    143
95                                                    186
96                                                    222
97                                                    176
98                                                     91
99                                                    392
100                                                  3733
101                                                  1874
102                                                  2154
103                                                  2179
104                                                  1477
105                                                  2080
106                                                  2079
107                                                  2199
108                                                  1785
109                                                  2144
110                                                  2269
111                                                  4317
112                                                  2460
113                                                  2509
114                                                  3668
115                                                  2173
116                                                  2302
117                                                  2054
118                                                  2656
119                                                  2503
120                                                  2488
121                                                  2832
122                                                  2585
123                                                  3787
124                                                  2522
125                                                  3375
126                                                  2958
127                                                  2787
128                                                  2489
129                                                  3012
130                                                  2855
131                                                  3797
132                                                  2161
133                                                  2637
134                                                  2893
135                                                  1928
136                                                  1846
137                                                  2276
138                                                  2234
139                                                  2525
140                                                  2159
141                                                  3747
142                                                  1797
143                                                  4531
144                                                  1603
145                                                  2234
146                                                  3191
147                                                  4364
148                                                    45
149                                                    44
150                                                    50
151                                                    49
152                                                    20
153                                                    61
154                                                    55
155                                                    61
156                                                    62
157                                                  2505
158                                                  2644
159                                                  2978
160                                                  2724
161                                                  2836
162                                                  2771
163                                                  3329
164                                                  2697
165                                                  2557
166                                                  3222
167                                                  3460
168                                                  8029
169                                                  9002
170                                                  8760
171                                                 11877
172                                                 12987
173                                                 12299
174                                                  9782
175                                                 11143
176                                                 10984
177                                                  9860
178                                                 11396
179                                                  8910
180                                                  9080
181                                                  8168
182                                                  6858
183                                                  9967
184                                                  9226
185                                                  9577
186                                                 10860
187                                                 11540
188                                                 10027
189                                                 16785
190                                                  8814
191                                                  9766
192                                                 11097
193                                                  9549
194                                                 10912
195                                                  7147
196                                                 10901
197                                                 21854
198                                                 19017
199                                                 20047
200                                                 18439
201                                                 20744
202                                                 19851
203                                                 18759
204                                                 20200
205                                                 17360
206                                                    48
207                                                    51
208                                                    28
209                                                    23
210                                                    48
211                                                    42
212                                                    56
213                                                  1620
214                                                  1816
215                                                  1855
216                                                  2068
217                                                  1596
218                                                  1535
219                                                 10615
220                                                 12040
221                                                 12225
222                                                 10792
223                                                  1949
224                                                  1494
225                                                  3593
226                                                  4055
227                                                  3816
228                                                  4536
229                                                  4884
230                                                  4541
231                                                  4371
232                                                  5065
233                                                  5096
234                                                  4379
235                                                  5161
236                                                 12235
237                                                 13499
238                                                 15980
239                                                 16197
240                                                 11681
241                                                 12985
242                                                 13915
243                                                 10524
244                                                 13972
245                                                 13395
246                                                 14090
247                                                 13617
248                                                 13253
249                                                 13513
250                                                 13737
251                                                 12145
252                                                 13047
253                                                 15665
254                                                 15213
255                                                 11750
256                                                 13403
257                                                 11753
258                                                 14816
259                                                 18816
260                                                 18169
261                                                 20744
262                                                 21346
263                                                  1237
264                                                  1527
265                                                  1455
266                                                  1269
267                                                   622
268                                                   794
269                                                  7231
270                                                   973
271                                                  1128
272                                                  1301
273                                                  1199
274                                                  1027
275                                                  1610
276                                                  1800
277                                                  2058
278                                                  2106
279                                                  1478
280                                                  1464
281                                                  2098
282                                                  2271
283                                                  1814
284                                                  1659
285                                                  1894
286                                                  1735
287                                                  2065
288                                                  2013
289                                                    76
290                                                    63
291                                                  2238
292                                                  3491
293                                                  3602
294                                                  3622
295                                                  2912
296                                                  5374
297                                                  4946
298                                                  4568
299                                                  6091
300                                                  6555
301                                                  6754
302                                                  6128
303                                                  7611
304                                                  9803
305                                                 10811
306                                                  7808
307                                                  6731
308                                                  9032
309                                                  8991
310                                                 10096
311                                                  9009
312                                                  1508
313                                                   264
314                                                   182
315                                                   223
316                                                 49401
317                                                 44679
318                                                 51896
319                                                 56358
320                                                 52990
321                                                 53304
322                                                 54624
323                                                  2762
324                                                 16648
325                                                 22005
326                                                 25011
327                                                 24967
328                                                 29521
329                                                 25376
330                                                 26384
331                                                 23404
332                                                 24050
333                                                 24273
334                                                 19190
335                                                 27851
336                                                 27758
337                                                 25426
338                                                 29470
339                                                 26189
340                                                 25684
341                                                 27362
342                                                 10422
343                                                   813
344                                                   873
345                                                   715
346                                                   481
347                                                   822
348                                                   648
349                                                   379
350                                                   744
351                                                   856
352                                                   738
353                                                   692
354                                                   188
355                                                   184
356                                                   162
357                                                   195
358                                                   341
359                                                   186
360                                                   249
361                                                  3552
362                                                  3988
363                                                  3180
364                                                  3640
365                                                  3046
366                                                  5911
367                                                  3074
368                                                  3159
369                                                  2734
370                                                  3658
371                                                  3842
372                                                  3169
373                                                  3116
374                                                  3101
375                                                  5314
376                                                  4192
377                                                  3720
378                                                  4183
379                                                  3574
380                                                  3832
381                                                  3695
382                                                  3331
383                                                  3863
384                                                  3690
385                                                  3744
386                                                  3299
387                                                  3160
388                                                  3429
389                                                  3652
390                                                  4143
391                                                  3535
392                                                  3505
393                                                  3861
394                                                  6947
395                                                  3140
396                                                  3364
397                                                  2818
398                                                  2778
399                                                  2755
400                                                  3228
401                                                  2831
402                                                  3388
403                                                  5929
404                                                  2709
405                                                  3104
406                                                  5286
407                                                  2376
408                                                  2429
409                                                  3048
410                                                  2769
411                                                  1635
412                                                    92
413                                                   185
414                                                   135
415                                                   193
416                                                   191
417                                                  2372
418                                                  2653
419                                                  2457
420                                                  2856
421                                                  2519
422                                                  2700
423                                                  2810
424                                                  2658
425                                                  3252
426                                                  3199
427                                                  2823
428                                                  2648
429                                                  3095
430                                                  3659
431                                                  3970
432                                                  3872
433                                                 19919
434                                                 22373
435                                                 15902
436                                                 13912
437                                                 24011
438                                                 14257
439                                                 28673
440                                                 19605
441                                                 19599
442                                                 18866
443                                                  4815
444                                                 11359
445                                                 11905
446                                                 11531
447                                                 10296
448                                                 13328
449                                                 31315
450                                                 18565
451                                                 12761
452                                                 16529
453                                                 15227
454                                                 16430
455                                                 14456
456                                                 15394
457                                                 16488
458                                                 19430
459                                                 20281
460                                                 14622
461                                                 14647
462                                                 11252
463                                                 13793
464                                                 21065
465                                                 15961
466                                                 17186
467                                                 15498
468                                                 11181
469                                                 16420
470                                                 12313
471                                                  9473
472                                                  9485
473                                                 23536
474                                                 22961
475                                                 27856
476                                                 26861
477                                                 22067
478                                                 28783
479                                                   212
480                                                   180
481                                                  2881
482                                                  5084
483                                                  3573
484                                                  3350
485                                                  2632
486                                                  3824
487                                                  2326
488                                                  2625
489                                                  2915
490                                                  2659
491                                                  3275
492                                                  2809
493                                                  4722
494                                                  4534
495                                                  3403
496                                                  3718
497                                                  3821
498                                                  3284
499                                                  3548
500                                                  4252
501                                                  4556
502                                                  4846
503                                                  3965
504                                                  4221
505                                                  3963
506                                                  2616
507                                                  2529
508                                                  3053
509                                                  3921
510                                                  3459
511                                                  2692
512                                                  3742
513                                                  2997
514                                                  3520
515                                                  3148
516                                                  3091
517                                                  3192
518                                                  3164
519                                                  3328
520                                                  2937
521                                                  3562
522                                                  3890
523                                                  3944
524                                                  4140
525                                                  8416
526                                                  4598
527                                                  3688
528                                                 15480
529                                                 13778
530                                                  2819
531                                                  2961
532                                                  2868
533                                                  2178
534                                                  2306
535                                                  2235
536                                                  2162
537                                                  2602
538                                                  3037
539                                                  3106
540                                                  3616
541                                                  3808
542                                                  2583
543                                                  4136
544                                                  4712
545                                                  4759
546                                                  5064
547                                                  5358
548                                                  5222
549                                                  5359
550                                                  4408
551                                                  5967
552                                                  5582
553                                                  5412
554                                                  5808
555                                                  6221
556                                                  6762
557                                                  5680
558                                                  5967
559                                                  6372
560                                                  6492
561                                                  6795
562                                                  5977
563                                                  6587
564                                                  6043
565                                                  5919
566                                                  6505
567                                                  5573
568                                                  6546
569                                                  7228
570                                                  6107
571                                                  6460
572                                                  7700
573                                                  6534
574                                                  6987
575                                                  9006
576                                                  7918
577                                                  8359
578                                                  8196
579                                                  8335
580                                                  7497
581                                                  7628
582                                                  7440
583                                                  8384
584                                                  7823
585                                                  9341
586                                                 10039
587                                                 11143
588                                                  7912
589                                                  5317
590                                                 16843
591                                                 18643
592                                                 17080
593                                                 20051
594                                                 20414
595                                                 20861
596                                                 20543
597                                                 16299
598                                                 21502
599                                                 19463
600                                                 20025
601                                                 18772
602                                                 22261
603                                                 25145
604                                                 25739
605                                                 25311
606                                                 23719
607                                                 24024
608                                                 23217
609                                                 25120
610                                                 27106
611                                                 27742
612                                                 26093
613                                                 22553
614                                                 22169
615                                                 21364
616                                                 22353
617                                                 21872
618                                                 22132
619                                                 22322
620                                                 23000
621                                                 20051
622                                                 20231
623                                                 21869
624                                                 18491
625                                                 11346
626                                                 10958
627                                                 13585
628                                                 12638
629                                                 20682
630                                                 25561
631                                                 15260
632                                                  1230
633                                                   965
634                                                   907
635                                                   938
636                                                   854
637                                                   912
638                                                   671
639                                                  1072
640                                                  1282
641                                                  1787
642                                                  1459
643                                                  1739
644                                                  2715
645                                                   225
646                                                   173
647                                                   180
648                                                 39556
649                                                  5282
650                                                  4865
651                                                  3479
652                                                  3285
653                                                  2865
654                                                  3627
655                                                  3047
656                                                   278
657                                                   296
658                                                   267
659                                                   249
660                                                   263
661                                                  3788
662                                                  4323
663                                                  4739
664                                                  4536
665                                                  4724
666                                                  5069
667                                                  5064
668                                                  5931
669                                                  5589
670                                                  6918
671                                                  6921
672                                                  5400
673                                                  7508
674                                                 12583
675                                                 11006
676                                                 11778
677                                                 11798
678                                                 13921
679                                                 13031
680                                                 10983
681                                                 12714
682                                                  9976
683                                                 11979
684                                                 11476
685                                                  7239
686                                                  6981
687                                                   505
688                                                   511
689                                                   543
690                                                   523
691                                                   574
692                                                   474
693                                                   535
694                                                   564
695                                                   540
696                                                   618
697                                                   504
698                                                   623
699                                                   603
700                                                   597
701                                                   722
702                                                   546
703                                                   680
704                                                   935
705                                                  1694
706                                                  1677
707                                                  1892
708                                                  1617
709                                                  1490
710                                                  1676
711                                                  1659
712                                                  2341
713                                                  1192
714                                                  1066
715                                                  1200
716                                                  1275
717                                                  1015
718                                                  2182
719                                                   393
720                                                   473
721                                                   440
722                                                   544
723                                                   645
724                                                   492
725                                                   711
726                                                   844
727                                                   548
728                                                   651
729                                                   508
730                                                   385
731                                                   526
732                                                   547
733                                                   924
734                                                   451
735                                                   293
736                                                   286
737                                                 48087
738                                                 44390
739                                                 53539
740                                                 59949
741                                                 63108
742                                                 66115
743                                                 62854
744                                                 64299
745                                                 48281
746                                                 44771
747                                                 44903
748                                                 42687
749                                                 40785
750                                                 52053
751                                                 52718
752                                                  3663
753                                                  3854
754                                                  3865
755                                                  4551
756                                                  3777
757                                                  4320
758                                                  3477
759                                                  3911
760                                                  4182
761                                                  4285
762                                                  4306
763                                                  4094
764                                                  4696
765                                                  4586
766                                                  4682
767                                                  4739
768                                                  4984
769                                                  5055
770                                                  5370
771                                                  5111
772                                                  4880
773                                                  4583
774                                                  4784
775                                                  5327
776                                                  4833
777                                                  6462
778                                                  5187
779                                                  4785
780                                                  4591
781                                                  6235
782                                                  5760
783                                                  5908
784                                                 25147
785                                                 28054
786                                                 23237
787                                                 20717
788                                                 11897
789                                                 18594
790                                                  4418
791                                                  3639
792                                                  3983
793                                                  4231
794                                                  3270
795                                                  4753
796                                                  1882
797                                                  1882
798                                                  2092
799                                                  1737
800                                                   393
801                                                   340
802                                                   412
803                                                   572
804                                                   478
805                                                   525
806                                                   500
807                                                   507
808                                                   520
809                                                   865
810                                                  3537
811                                                  3300
812                                                   891
813                                                  1057
814                                                   940
815                                                   904
816                                                   944
817                                                  1091
818                                                  1014
819                                                   739
820                                                  1052
821                                                  1364
822                                                  1581
823                                                  1182
824                                                  1421
825                                                  1593
826                                                   214
827                                                   266
828                                                   283
829                                                   569
830                                                   228
831                                                   270
832                                                   291
833                                                   238
834                                                   444
835                                                   273
836                                                   301
837                                                   465
838                                                   441
839                                                   345
840                                                  2620
841                                                  2880
842                                                  3107
843                                                  3318
844                                                  3878
845                                                  3793
846                                                  4982
847                                                  6341
848                                                  4346
849                                                  4372
850                                                  4283
851                                                  4563
852                                                  5069
853                                                  5815
854                                                 14022
855                                                  4954
856                                                  6314
857                                                  4614
858                                                  4361
859                                                  4317
860                                                  7086
861                                                 10236
862                                                  6007
863                                                  4396
864                                                  6057
865                                                  6545
866                                                 17563
867                                                  5604
868                                                  7325
869                                                  7177
870                                                  3548
871                                                  3494
872                                                  3411
873                                                  4601
874                                                  4063
875                                                  7697
876                                                   891
877                                                   748
878                                                   531
879                                                   547
880                                                   464
881                                                   704
882                                                  1311
883                                                   908
884                                                   666
885                                                   675
886                                                  1007
887                                                  1483
888                                                   489
889                                                   584
890                                                   553
891                                                  1342
892                                                  2976
893                                                  2422
894                                                  2353
895                                                   251
896                                                   126
897                                                   165
898                                                   147
899                                                   243
900                                                   127
901                                                   214
902                                                   337
903                                                   194
904                                                   115
905                                                   145
906                                                   131
907                                                  1971
908                                                  2000
909                                                  2506
910                                                  2783
911                                                  2539
912                                                  3688
913                                                 21219
914                                                 16592
915                                                 22829
916                                                 26775
917                                                 29226
918                                                 24890
919                                                 25484
920                                                 27741
921                                                 20167
922                                                 18027
923                                                 16810
924                                                 19028
925                                                 18851
926                                                 24077
927                                                 24449
928                                                  1196
929                                                  1000
930                                                  1074
931                                                   993
932                                                   728
933                                                   385
934                                                   446
935                                                  1885
936                                                    74
937                                                    62
938                                                    71
939                                                    70
940                                                    26
941                                                    36
942                                                    96
943                                                    77
944                                                   129
945                                                    66
946                                                 37303
947                                                 41002
948                                                 41162
949                                                 40533
950                                                 50474
951                                                  2903
952                                                  2826
953                                                  2500
954                                                  2557
955                                                  2782
956                                                  2919
957                                                   680
958                                                     6
959                                                     0
960                                                    24
961                                                 14350
962                                                 16316
963                                                 17740
964                                                 17479
965                                                 19352
966                                                 17860
967                                                 14019
968                                                 16665
969                                                 14783
970                                                 22378
971                                                 23575
972                                                 28472
973                                                 29308
974                                                 24947
975                                                 21954
976                                                 21116
977                                                 25935
978                                                 27973
979                                                 33482
980                                                 52648
981                                                 30135
982                                                 27571
983                                                 25947
984                                                 35367
985                                                 33878
986                                                 34732
987                                                 41311
988                                                 40186
989                                                 20624
990                                                 19170
991                                                 21233
992                                                 18195
993                                                 18205
994                                                 20106
995                                                 35154
996                                                 43472
997                                                 45536
998                                                 48649
999                                                 47210
1000                                                44592
1001                                                42990
1002                                                53526
1003                                                46927
1004                                                48735
1005                                                55900
1006                                                52057
1007                                                 1434
1008                                                 1220
1009                                                 1676
1010                                                 1228
1011                                                 1047
1012                                                 1618
1013                                                 1531
1014                                                 1591
1015                                                  827
1016                                                 1794
1017                                                 3096
1018                                                 1911
1019                                                 1411
1020                                                 4168
1021                                                 3949
1022                                                 3446
1023                                                  173
1024                                                  219
1025                                                  289
1026                                                  266
1027                                                  215
1028                                                  118
1029                                                  145
1030                                                  208
1031                                                  108
1032                                                 4707
1033                                                 6156
1034                                                 6648
1035                                                 6522
1036                                                 8574
1037                                                 6632
1038                                                 7258
1039                                                 6673
1040                                                 6794
1041                                                 5747
1042                                                 6194
1043                                                 6356
1044                                                 5686
1045                                                 3283
1046                                                 4025
1047                                                 3464
1048                                                 3345
1049                                                 3845
1050                                                 3588
1051                                                 3680
1052                                                14609
1053                                                14818
1054                                                15508
1055                                                15708
1056                                                16452
1057                                                16920
1058                                                19190
1059                                                22609
1060                                                 2392
1061                                                 2500
1062                                                 2305
1063                                                 2449
1064                                                 2450
1065                                                 2363
1066                                                 1941
1067                                                 2270
1068                                                 1919
1069                                                 2518
1070                                                 2405
1071                                                 4085
1072                                                 2496
1073                                                 3673
1074                                                 8191
1075                                                10316
1076                                                 8105
1077                                                 9747
1078                                                 5190
1079                                                 4064
1080                                                 4393
1081                                                 4371
1082                                                 5141
1083                                                 3621
1084                                                 3703
1085                                                 4253
1086                                                 4979
1087                                                 4273
1088                                                 3627
1089                                                 4600
1090                                                 4331
1091                                                 4471
1092                                                 4299
1093                                                 4564
1094                                                 4856
1095                                                 4852
1096                                                 4690
1097                                                 4659
1098                                                 5216
1099                                                 5177
1100                                                 5020
1101                                                 5183
1102                                                 5304
1103                                                 5326
1104                                                 5216
1105                                                 6860
1106                                                 5523
1107                                                 4791
1108                                                 5184
1109                                                 6575
1110                                                 6330
1111                                                 6808
1112                                                 3232
1113                                                 1466
1114                                                 1880
1115                                                 1952
1116                                                 2074
1117                                                 1992
1118                                                 3299
1119                                                 2803
1120                                                 2815
1121                                                 3059
1122                                                 2444
1123                                                 1982
1124                                                 2438
1125                                                 2820
1126                                                 3617
1127                                                 3528
1128                                                 3605
1129                                                 3466
1130                                                 2881
1131                                                 2481
1132                                                 3059
1133                                                 3239
1134                                                 3979
1135                                                 3502
1136                                                 3467
1137                                                 3329
1138                                                 3600
1139                                                 3450
1140                                                 3656
1141                                                 3854
1142                                                 4379
1143                                                 3243
1144                                                 3230
1145                                                 4786
1146                                                 3493
1147                                                 3665
1148                                                 3364
1149                                                 6895
1150                                                 7239
1151                                                 7420
1152                                                 6109
1153                                                 6224
1154                                                 6964
1155                                                 6514
1156                                                 8162
1157                                                 8858
1158                                                10042
1159                                                 9323
1160                                                 9140
1161                                                10924
1162                                                 7310
1163                                                 7204
1164                                                 6082
1165                                                 6974
1166                                                 6870
1167                                                 8531
1168                                                 9184
1169                                                 8507
1170                                                 9893
1171                                                 9485
1172                                                 9922
1173                                                10030
1174                                                 8377
1175                                                 8345
1176                                                 7072
1177                                                 5745
1178                                                 6277
1179                                                 6931
1180                                                 7789
1181                                                 8064
1182                                                 8152
1183                                                 7981
1184                                                 8212
1185                                                 8427
1186                                                 9825
1187                                                 8026
1188                                                12705
1189                                                11491
1190                                                 9443
1191                                                 7908
1192                                                 7792
1193                                                 8680
1194                                                 5234
1195                                                 3948
1196                                                 6286
1197                                                 5797
1198                                                 3654
1199                                                 5496
1200                                                 6915
1201                                                10234
1202                                                11691
1203                                                10552
1204                                                10979
1205                                                10282
1206                                                 8840
1207                                                 8502
1208                                                10351
1209                                                10178
1210                                                10581
1211                                                 9709
1212                                                 9720
1213                                                 9827
1214                                                 9141
1215                                                 7914
1216                                                10054
1217                                                 8786
1218                                                 8809
1219                                                 8961
1220                                                 7672
1221                                                 9046
1222                                                 8476
1223                                                 8467
1224                                                10453
1225                                                10569
1226                                                10692
1227                                                 8753
1228                                                11280
1229                                                12683
1230                                                 9881
1231                                                11176
1232                                                 9709
1233                                                 8040
1234                                                 8062
1235                                                10952
1236                                                12809
1237                                                11056
1238                                                11984
1239                                                11029
1240                                                13120
1241                                                13395
1242                                                12910
1243                                                12855
1244                                                16588
1245                                                18664
1246                                                21572
1247                                                14582
1248                                                 3139
1249                                                 3401
1250                                                 3524
1251                                                 3604
1252                                                 2712
1253                                                 3882
1254                                                 3925
1255                                                16197
1256                                                18485
1257                                                19427
1258                                                17723
1259                                                16157
1260                                                19176
1261                                                23890
1262                                                 1029
1263                                                  832
1264                                                 1186
1265                                                 1209
1266                                                 1166
1267                                                 1023
1268                                                  947
1269                                                 1504
1270                                                 1022
1271                                                  946
1272                                                  826
1273                                                 1025
1274                                                  861
1275                                                 1032
1276                                                 1195
1277                                                  586
1278                                                 1025
1279                                                 1531
1280                                                 1678
1281                                                 1619
1282                                                 2076
1283                                                 1828
1284                                                 1808
1285                                                 2580
1286                                                 1869
1287                                                 1042
1288                                                 1255
1289                                                 1201
1290                                                  734
1291                                                  913
1292                                                  476
1293                                                 1053
1294                                                 1107
1295                                                 2396
1296                                                 2900
1297                                                 2885
1298                                                 1946
1299                                                 1378
1300                                                 2535
1301                                                 3501
1302                                                 2315
1303                                                 2139
1304                                                 3436
1305                                                 2846
1306                                                  149
1307                                                  264
1308                                                  137
1309                                                  145
1310                                                  164
1311                                                  143
1312                                                  199
1313                                                  262
1314                                                  261
1315                                                  110
1316                                                  177
1317                                                  173
1318                                                  138
1319                                                  112
1320                                                  128
1321                                                 1004
1322                                                  660
1323                                                  929
1324                                                 2906
1325                                                 2780
1326                                                 2787
1327                                                   82
1328                                                   82
1329                                                   54
1330                                                   97
1331                                                  127
1332                                                   74
1333                                               249231
1334                                               256920
1335                                               250862
1336                                                26608
1337                                                28269
1338                                                25750
1339                                                26921
1340                                                24295
1341                                                22295
1342                                                25397
1343                                                30452
1344                                                32862
1345                                                32438
1346                                                39964
1347                                                37509
1348                                                42954
1349                                                51355
1350                                                57477
1351                                                50839
1352                                                  935
1353                                                 2235
1354                                                 1690
1355                                                 2234
1356                                                 2819
1357                                                 4565
1358                                                 4057
1359                                                 3673
1360                                                 3993
1361                                                 3689
1362                                                10950
1363                                                 8428
1364                                                 7229
1365                                                 4456
1366                                                 4097
1367                                                 4410
1368                                                 4721
1369                                                 1077
1370                                                 5923
1371                                                 6502
1372                                                 4806
1373                                                 5175
1374                                                 2578
1375                                                10002
1376                                                 9366
1377                                                10850
1378                                                10818
1379                                                11687
1380                                                 9544
1381                                                 9215
1382                                                 8809
1383                                                 8043
1384                                                12632
1385                                                18370
     NUMERO TOTAL DE AGUACATE CON PLU 4770-GRANDE VENDIDOS
1                                                    61666
2                                                    60261
3                                                     3840
4                                                     3399
5                                                    95627
6                                                    93957
7                                                    87407
8                                                    85663
9                                                    61656
10                                                  100808
11                                                  114859
12                                                   18551
13                                                   19625
14                                                   19397
15                                                     187
16                                                    5531
17                                                   10148
18                                                     813
19                                                     659
20                                                     714
21                                                       0
22                                                       0
23                                                       0
24                                                       0
25                                                       0
26                                                       0
27                                                       0
28                                                       0
29                                                       0
30                                                       0
31                                                       0
32                                                       0
33                                                       0
34                                                       0
35                                                       0
36                                                       0
37                                                       0
38                                                       0
39                                                       0
40                                                       0
41                                                       0
42                                                       0
43                                                       0
44                                                       0
45                                                       0
46                                                       0
47                                                       0
48                                                       0
49                                                       0
50                                                       0
51                                                       0
52                                                       0
53                                                       0
54                                                       0
55                                                       0
56                                                       0
57                                                       0
58                                                       0
59                                                       0
60                                                       3
61                                                       3
62                                                       0
63                                                     809
64                                                     867
65                                                     929
66                                                    1018
67                                                    1026
68                                                    1194
69                                                    1270
70                                                    1084
71                                                     861
72                                                    1019
73                                                    1144
74                                                    1197
75                                                    1017
76                                                    1081
77                                                    1059
78                                                    1159
79                                                    1349
80                                                    1474
81                                                    1191
82                                                    1151
83                                                    1400
84                                                    1256
85                                                    1128
86                                                     920
87                                                     766
88                                                     833
89                                                     906
90                                                       0
91                                                       0
92                                                       0
93                                                      18
94                                                      21
95                                                       9
96                                                       9
97                                                      18
98                                                      11
99                                                       0
100                                                      7
101                                                    231
102                                                   2410
103                                                     15
104                                                      0
105                                                      1
106                                                      0
107                                                      0
108                                                      0
109                                                      0
110                                                      6
111                                                      4
112                                                      3
113                                                      3
114                                                      3
115                                                      0
116                                                      0
117                                                      3
118                                                      1
119                                                      1
120                                                      0
121                                                      4
122                                                      0
123                                                      0
124                                                      0
125                                                      0
126                                                      8
127                                                      1
128                                                     18
129                                                     18
130                                                      3
131                                                      4
132                                                      5
133                                                      1
134                                                      0
135                                                      3
136                                                      0
137                                                      0
138                                                      0
139                                                      0
140                                                      3
141                                                      3
142                                                      0
143                                                     16
144                                                      9
145                                                     12
146                                                      0
147                                                      0
148                                                     15
149                                                     26
150                                                      6
151                                                     21
152                                                      8
153                                                      7
154                                                      8
155                                                     25
156                                                     27
157                                                      0
158                                                      0
159                                                      0
160                                                      0
161                                                      0
162                                                      0
163                                                      0
164                                                      0
165                                                      0
166                                                      0
167                                                      0
168                                                    708
169                                                    516
170                                                    234
171                                                     47
172                                                    537
173                                                   1110
174                                                    816
175                                                   1179
176                                                    845
177                                                    922
178                                                    790
179                                                    214
180                                                     68
181                                                     53
182                                                    123
183                                                   1168
184                                                    876
185                                                    417
186                                                     90
187                                                    506
188                                                    467
189                                                     34
190                                                     11
191                                                     86
192                                                     24
193                                                     44
194                                                     46
195                                                     38
196                                                     61
197                                                    571
198                                                    852
199                                                    806
200                                                    230
201                                                     94
202                                                     90
203                                                    132
204                                                   1166
205                                                    857
206                                                      0
207                                                      0
208                                                      0
209                                                      0
210                                                      0
211                                                      0
212                                                      0
213                                                     11
214                                                     51
215                                                     26
216                                                     30
217                                                     13
218                                                     28
219                                                      0
220                                                      0
221                                                      2
222                                                      0
223                                                    628
224                                                    772
225                                                      0
226                                                      0
227                                                      0
228                                                      0
229                                                      0
230                                                      0
231                                                      0
232                                                      0
233                                                      0
234                                                      0
235                                                      0
236                                                      0
237                                                      0
238                                                      0
239                                                      0
240                                                      0
241                                                      0
242                                                      0
243                                                      0
244                                                      0
245                                                      0
246                                                      0
247                                                      0
248                                                      0
249                                                      0
250                                                      0
251                                                      0
252                                                      0
253                                                      0
254                                                      0
255                                                     15
256                                                     35
257                                                      7
258                                                     56
259                                                     50
260                                                     16
261                                                    197
262                                                     37
263                                                    451
264                                                    542
265                                                    541
266                                                    486
267                                                    450
268                                                    358
269                                                    736
270                                                      0
271                                                      0
272                                                      0
273                                                      0
274                                                      9
275                                                      0
276                                                      0
277                                                      2
278                                                      0
279                                                      0
280                                                      0
281                                                      0
282                                                      0
283                                                      0
284                                                      0
285                                                      0
286                                                      0
287                                                      0
288                                                      0
289                                                      0
290                                                      0
291                                                     62
292                                                      0
293                                                      0
294                                                      0
295                                                      0
296                                                      0
297                                                      0
298                                                      0
299                                                    267
300                                                    240
301                                                    330
302                                                    449
303                                                    462
304                                                    331
305                                                    286
306                                                    321
307                                                    316
308                                                    432
309                                                    301
310                                                    496
311                                                    541
312                                                      0
313                                                      0
314                                                      0
315                                                      0
316                                                      9
317                                                     12
318                                                      8
319                                                      0
320                                                      2
321                                                      6
322                                                      8
323                                                    514
324                                                      0
325                                                      0
326                                                      0
327                                                      0
328                                                      0
329                                                      0
330                                                      0
331                                                      0
332                                                      0
333                                                      0
334                                                      0
335                                                      0
336                                                      0
337                                                      0
338                                                      0
339                                                      0
340                                                      0
341                                                      0
342                                                      0
343                                                      0
344                                                      0
345                                                      0
346                                                      0
347                                                      0
348                                                      0
349                                                      0
350                                                      0
351                                                      0
352                                                      0
353                                                      0
354                                                      0
355                                                     11
356                                                     24
357                                                     23
358                                                     18
359                                                    537
360                                                     20
361                                                     14
362                                                      4
363                                                     11
364                                                      3
365                                                      3
366                                                      0
367                                                     21
368                                                      3
369                                                      1
370                                                     12
371                                                      3
372                                                      7
373                                                     14
374                                                      6
375                                                     11
376                                                     10
377                                                      0
378                                                      3
379                                                     10
380                                                      3
381                                                      1
382                                                      3
383                                                      8
384                                                      1
385                                                      8
386                                                      4
387                                                      0
388                                                     15
389                                                      0
390                                                      4
391                                                      0
392                                                     15
393                                                      5
394                                                      0
395                                                      1
396                                                      0
397                                                      0
398                                                      0
399                                                      0
400                                                      3
401                                                     11
402                                                      0
403                                                      0
404                                                      7
405                                                      0
406                                                     13
407                                                     16
408                                                      4
409                                                      4
410                                                      7
411                                                      0
412                                                      8
413                                                     24
414                                                     63
415                                                     33
416                                                     42
417                                                      0
418                                                      0
419                                                      0
420                                                      0
421                                                      0
422                                                      0
423                                                      0
424                                                      0
425                                                      0
426                                                      0
427                                                      0
428                                                      0
429                                                      0
430                                                      0
431                                                      0
432                                                      0
433                                                      2
434                                                      0
435                                                    772
436                                                    529
437                                                    482
438                                                    238
439                                                    195
440                                                     97
441                                                    139
442                                                     58
443                                                     33
444                                                     89
445                                                    791
446                                                   1516
447                                                    601
448                                                   1497
449                                                    492
450                                                    545
451                                                   1276
452                                                   1352
453                                                   1468
454                                                   1881
455                                                   1723
456                                                   2406
457                                                   2930
458                                                   2347
459                                                   1935
460                                                    389
461                                                    175
462                                                    322
463                                                   2707
464                                                   2695
465                                                   2631
466                                                   2672
467                                                   2804
468                                                   2404
469                                                   2449
470                                                   2499
471                                                   1200
472                                                   2221
473                                                    484
474                                                    230
475                                                    111
476                                                    141
477                                                   1273
478                                                   3117
479                                                      0
480                                                      0
481                                                      2
482                                                      3
483                                                      9
484                                                      3
485                                                      0
486                                                      0
487                                                      0
488                                                      0
489                                                      4
490                                                      0
491                                                     19
492                                                      0
493                                                      8
494                                                     39
495                                                     23
496                                                     16
497                                                      4
498                                                     14
499                                                     17
500                                                     21
501                                                     25
502                                                     15
503                                                     29
504                                                      0
505                                                      5
506                                                     23
507                                                      0
508                                                      0
509                                                      0
510                                                      0
511                                                      0
512                                                      0
513                                                      0
514                                                      0
515                                                      0
516                                                      0
517                                                      0
518                                                      0
519                                                      0
520                                                      0
521                                                      0
522                                                      0
523                                                      0
524                                                      0
525                                                      5
526                                                      1
527                                                     18
528                                                      0
529                                                     10
530                                                    259
531                                                    331
532                                                      3
533                                                      0
534                                                      0
535                                                      0
536                                                      3
537                                                      3
538                                                      0
539                                                      0
540                                                      0
541                                                      5
542                                                      0
543                                                      0
544                                                      8
545                                                      9
546                                                      3
547                                                      4
548                                                      0
549                                                      3
550                                                      0
551                                                      0
552                                                      3
553                                                      3
554                                                      0
555                                                      0
556                                                      0
557                                                      0
558                                                      0
559                                                      0
560                                                      0
561                                                      0
562                                                      0
563                                                      0
564                                                      0
565                                                      0
566                                                      0
567                                                      0
568                                                      0
569                                                      0
570                                                      0
571                                                      0
572                                                      0
573                                                      0
574                                                      0
575                                                      0
576                                                      0
577                                                      0
578                                                      0
579                                                      0
580                                                      0
581                                                      0
582                                                      0
583                                                      0
584                                                      0
585                                                      0
586                                                      0
587                                                      0
588                                                      0
589                                                      0
590                                                      0
591                                                      9
592                                                      0
593                                                      0
594                                                      0
595                                                      0
596                                                      0
597                                                      0
598                                                      0
599                                                      0
600                                                      1
601                                                      0
602                                                      4
603                                                      0
604                                                     14
605                                                      3
606                                                      0
607                                                      0
608                                                      0
609                                                      0
610                                                      0
611                                                      0
612                                                      0
613                                                      0
614                                                      0
615                                                      0
616                                                      0
617                                                      0
618                                                      0
619                                                      0
620                                                      0
621                                                      0
622                                                      0
623                                                      0
624                                                     42
625                                                     24
626                                                     70
627                                                     81
628                                                     31
629                                                     83
630                                                     35
631                                                    520
632                                                      1
633                                                      0
634                                                      3
635                                                      5
636                                                    193
637                                                      0
638                                                      0
639                                                      0
640                                                      0
641                                                      0
642                                                      0
643                                                      4
644                                                      4
645                                                      0
646                                                      0
647                                                      0
648                                                     61
649                                                      9
650                                                      9
651                                                     11
652                                                      9
653                                                      9
654                                                     14
655                                                      9
656                                                      0
657                                                      0
658                                                      0
659                                                      0
660                                                      0
661                                                      0
662                                                      0
663                                                      0
664                                                      0
665                                                      0
666                                                      0
667                                                      0
668                                                      0
669                                                      0
670                                                      0
671                                                      0
672                                                      0
673                                                    197
674                                                    209
675                                                    180
676                                                    142
677                                                    140
678                                                    217
679                                                    181
680                                                    206
681                                                    263
682                                                    229
683                                                    193
684                                                    188
685                                                    227
686                                                    271
687                                                      0
688                                                      0
689                                                      0
690                                                      0
691                                                      0
692                                                      0
693                                                      0
694                                                      0
695                                                      0
696                                                      0
697                                                      0
698                                                      0
699                                                      0
700                                                      0
701                                                      0
702                                                      0
703                                                      0
704                                                      0
705                                                      0
706                                                      0
707                                                      0
708                                                      0
709                                                      0
710                                                      0
711                                                      0
712                                                      0
713                                                      0
714                                                      0
715                                                      0
716                                                      0
717                                                      0
718                                                      0
719                                                      0
720                                                      0
721                                                      0
722                                                      0
723                                                      0
724                                                      0
725                                                      0
726                                                      0
727                                                      0
728                                                      0
729                                                      0
730                                                      0
731                                                      0
732                                                      0
733                                                      0
734                                                      0
735                                                      0
736                                                      0
737                                                      0
738                                                      0
739                                                      0
740                                                      0
741                                                      2
742                                                      0
743                                                      0
744                                                      0
745                                                      0
746                                                      2
747                                                      0
748                                                      0
749                                                      0
750                                                      5
751                                                      9
752                                                    158
753                                                    131
754                                                    177
755                                                    194
756                                                    161
757                                                    181
758                                                    161
759                                                    131
760                                                    174
761                                                    118
762                                                    157
763                                                    222
764                                                    242
765                                                    175
766                                                    201
767                                                    243
768                                                    251
769                                                    322
770                                                    348
771                                                    372
772                                                    337
773                                                    302
774                                                    343
775                                                    398
776                                                    439
777                                                    585
778                                                    414
779                                                    414
780                                                    403
781                                                    655
782                                                    705
783                                                    559
784                                                      0
785                                                      0
786                                                      0
787                                                      0
788                                                      0
789                                                      0
790                                                      0
791                                                      0
792                                                      0
793                                                      0
794                                                      0
795                                                      0
796                                                      0
797                                                      0
798                                                      0
799                                                      0
800                                                     86
801                                                     16
802                                                     36
803                                                     27
804                                                     21
805                                                     39
806                                                     21
807                                                     22
808                                                     41
809                                                     59
810                                                      0
811                                                      0
812                                                      0
813                                                      0
814                                                      0
815                                                      0
816                                                      0
817                                                      0
818                                                      0
819                                                      0
820                                                      0
821                                                      0
822                                                      0
823                                                      0
824                                                      0
825                                                      0
826                                                     15
827                                                     36
828                                                     21
829                                                     18
830                                                   1254
831                                                     17
832                                                     16
833                                                      9
834                                                     11
835                                                      8
836                                                     12
837                                                      9
838                                                     14
839                                                     19
840                                                      1
841                                                      1
842                                                      3
843                                                      1
844                                                      1
845                                                      0
846                                                      3
847                                                      3
848                                                      0
849                                                      0
850                                                      3
851                                                      8
852                                                     36
853                                                     16
854                                                      7
855                                                     14
856                                                      0
857                                                     58
858                                                     12
859                                                      4
860                                                      3
861                                                     15
862                                                      4
863                                                     12
864                                                      0
865                                                      0
866                                                     46
867                                                      1
868                                                      4
869                                                      1
870                                                     12
871                                                     10
872                                                     10
873                                                      7
874                                                     18
875                                                     12
876                                                      2
877                                                      5
878                                                      7
879                                                      5
880                                                      8
881                                                     12
882                                                      0
883                                                      0
884                                                      0
885                                                      5
886                                                      0
887                                                      2
888                                                      1
889                                                      0
890                                                      1
891                                                      4
892                                                      4
893                                                      0
894                                                      2
895                                                      4
896                                                      7
897                                                      6
898                                                      9
899                                                      9
900                                                      0
901                                                     11
902                                                     13
903                                                      0
904                                                      0
905                                                      0
906                                                      0
907                                                      0
908                                                      0
909                                                      0
910                                                      0
911                                                      0
912                                                      0
913                                                      0
914                                                      0
915                                                      0
916                                                      0
917                                                      2
918                                                      0
919                                                      0
920                                                      0
921                                                      0
922                                                      0
923                                                      0
924                                                      0
925                                                      0
926                                                      0
927                                                      0
928                                                      0
929                                                      0
930                                                      0
931                                                      0
932                                                      0
933                                                      0
934                                                      0
935                                                      0
936                                                      0
937                                                      0
938                                                      0
939                                                      0
940                                                      0
941                                                      0
942                                                      0
943                                                      0
944                                                      0
945                                                      0
946                                                    622
947                                                    841
948                                                    688
949                                                    661
950                                                   1387
951                                                      0
952                                                      0
953                                                      0
954                                                      0
955                                                      0
956                                                      0
957                                                      0
958                                                      0
959                                                      0
960                                                      0
961                                                    178
962                                                    102
963                                                    170
964                                                    119
965                                                     85
966                                                     73
967                                                    101
968                                                    133
969                                                     90
970                                                     77
971                                                     12
972                                                     57
973                                                    234
974                                                     93
975                                                    235
976                                                   1931
977                                                   1806
978                                                   1229
979                                                    685
980                                                   1179
981                                                    630
982                                                   1575
983                                                   2033
984                                                   1665
985                                                   1022
986                                                    166
987                                                     91
988                                                    162
989                                                    198
990                                                     75
991                                                   1040
992                                                    117
993                                                    339
994                                                   1025
995                                                   1627
996                                                   1596
997                                                   1087
998                                                   1883
999                                                    637
1000                                                  1426
1001                                                  1781
1002                                                  1500
1003                                                   880
1004                                                   165
1005                                                    86
1006                                                   172
1007                                                     0
1008                                                     0
1009                                                     0
1010                                                     0
1011                                                     0
1012                                                     0
1013                                                     0
1014                                                     0
1015                                                     0
1016                                                     0
1017                                                     0
1018                                                     0
1019                                                     0
1020                                                     0
1021                                                     0
1022                                                     0
1023                                                     0
1024                                                     0
1025                                                     0
1026                                                     0
1027                                                     0
1028                                                     0
1029                                                     0
1030                                                     0
1031                                                     0
1032                                                     6
1033                                                     7
1034                                                     5
1035                                                    42
1036                                                     7
1037                                                     8
1038                                                     0
1039                                                    20
1040                                                    19
1041                                                     0
1042                                                     3
1043                                                     2
1044                                                    15
1045                                                     8
1046                                                     0
1047                                                     0
1048                                                     0
1049                                                     0
1050                                                     0
1051                                                     0
1052                                                   414
1053                                                   367
1054                                                  1134
1055                                                   380
1056                                                    60
1057                                                    24
1058                                                   973
1059                                                  1121
1060                                                     0
1061                                                     0
1062                                                     2
1063                                                     7
1064                                                     2
1065                                                     2
1066                                                     0
1067                                                    10
1068                                                     7
1069                                                     0
1070                                                    23
1071                                                    13
1072                                                     0
1073                                                    18
1074                                                    25
1075                                                     8
1076                                                     5
1077                                                     3
1078                                                   203
1079                                                   145
1080                                                   151
1081                                                   159
1082                                                   215
1083                                                   108
1084                                                    93
1085                                                   122
1086                                                   174
1087                                                   109
1088                                                   103
1089                                                   126
1090                                                   147
1091                                                   116
1092                                                   161
1093                                                   138
1094                                                   149
1095                                                   145
1096                                                   133
1097                                                   136
1098                                                   174
1099                                                   196
1100                                                   219
1101                                                   294
1102                                                   281
1103                                                   365
1104                                                   311
1105                                                   374
1106                                                   307
1107                                                   294
1108                                                   257
1109                                                   531
1110                                                   401
1111                                                   416
1112                                                    56
1113                                                     0
1114                                                     0
1115                                                     0
1116                                                     0
1117                                                     0
1118                                                     0
1119                                                     0
1120                                                     1
1121                                                     0
1122                                                     0
1123                                                     0
1124                                                     3
1125                                                     0
1126                                                     0
1127                                                     0
1128                                                     0
1129                                                     0
1130                                                     1
1131                                                     3
1132                                                     0
1133                                                     1
1134                                                     0
1135                                                     0
1136                                                     0
1137                                                     0
1138                                                     0
1139                                                     0
1140                                                     3
1141                                                     0
1142                                                     0
1143                                                     1
1144                                                     0
1145                                                    12
1146                                                     0
1147                                                     0
1148                                                     0
1149                                                     0
1150                                                     0
1151                                                     0
1152                                                     0
1153                                                     0
1154                                                     0
1155                                                     0
1156                                                     0
1157                                                     0
1158                                                     0
1159                                                     0
1160                                                     0
1161                                                     0
1162                                                     0
1163                                                     0
1164                                                     0
1165                                                     0
1166                                                     0
1167                                                     0
1168                                                     0
1169                                                     2
1170                                                     2
1171                                                     2
1172                                                     0
1173                                                     0
1174                                                     0
1175                                                     0
1176                                                     0
1177                                                     0
1178                                                     0
1179                                                     0
1180                                                     0
1181                                                     0
1182                                                     0
1183                                                     0
1184                                                     0
1185                                                     0
1186                                                     0
1187                                                     0
1188                                                     0
1189                                                     0
1190                                                     0
1191                                                     0
1192                                                     0
1193                                                     0
1194                                                     0
1195                                                     0
1196                                                     0
1197                                                     0
1198                                                     3
1199                                                     0
1200                                                     0
1201                                                     0
1202                                                     4
1203                                                     3
1204                                                     9
1205                                                     4
1206                                                     3
1207                                                     0
1208                                                     3
1209                                                     3
1210                                                     6
1211                                                     0
1212                                                     0
1213                                                     0
1214                                                    12
1215                                                     0
1216                                                     0
1217                                                     0
1218                                                     0
1219                                                     3
1220                                                     3
1221                                                     3
1222                                                     0
1223                                                     0
1224                                                     0
1225                                                    39
1226                                                    23
1227                                                     8
1228                                                    17
1229                                                    15
1230                                                    25
1231                                                     8
1232                                                     8
1233                                                    19
1234                                                     8
1235                                                     9
1236                                                     9
1237                                                    13
1238                                                    16
1239                                                     8
1240                                                    36
1241                                                    77
1242                                                    11
1243                                                    21
1244                                                    25
1245                                                    43
1246                                                    47
1247                                                    12
1248                                                    61
1249                                                    81
1250                                                   103
1251                                                    86
1252                                                   113
1253                                                   128
1254                                                    87
1255                                                    97
1256                                                   136
1257                                                   133
1258                                                   103
1259                                                   160
1260                                                   172
1261                                                   111
1262                                                     0
1263                                                     0
1264                                                     9
1265                                                     0
1266                                                     0
1267                                                     0
1268                                                     0
1269                                                     0
1270                                                     2
1271                                                     0
1272                                                     0
1273                                                     0
1274                                                     0
1275                                                     0
1276                                                     0
1277                                                     0
1278                                                     0
1279                                                     0
1280                                                     0
1281                                                     0
1282                                                    20
1283                                                     4
1284                                                    17
1285                                                     0
1286                                                     0
1287                                                     0
1288                                                     0
1289                                                     0
1290                                                     0
1291                                                     0
1292                                                     0
1293                                                     0
1294                                                     0
1295                                                    20
1296                                                    11
1297                                                    18
1298                                                     4
1299                                                     9
1300                                                    16
1301                                                     0
1302                                                     2
1303                                                    12
1304                                                     7
1305                                                     0
1306                                                     0
1307                                                     0
1308                                                     0
1309                                                     0
1310                                                     0
1311                                                     0
1312                                                     0
1313                                                     0
1314                                                     0
1315                                                     0
1316                                                     0
1317                                                     0
1318                                                     0
1319                                                     0
1320                                                     0
1321                                                     0
1322                                                     0
1323                                                     0
1324                                                     0
1325                                                     0
1326                                                     0
1327                                                     0
1328                                                     0
1329                                                     0
1330                                                     0
1331                                                     0
1332                                                     0
1333                                                   941
1334                                                  2257
1335                                                  2119
1336                                                    58
1337                                                    60
1338                                                   163
1339                                                    62
1340                                                    25
1341                                                    42
1342                                                    55
1343                                                    74
1344                                                    50
1345                                                    68
1346                                                    90
1347                                                   108
1348                                                   315
1349                                                   701
1350                                                  1244
1351                                                  1247
1352                                                     0
1353                                                     0
1354                                                     0
1355                                                     0
1356                                                     0
1357                                                     0
1358                                                     0
1359                                                     0
1360                                                     0
1361                                                    11
1362                                                     0
1363                                                     3
1364                                                     0
1365                                                     8
1366                                                     1
1367                                                     0
1368                                                     1
1369                                                     6
1370                                                    98
1371                                                   225
1372                                                   140
1373                                                   151
1374                                                     0
1375                                                     0
1376                                                     0
1377                                                     0
1378                                                     0
1379                                                     0
1380                                                     0
1381                                                     0
1382                                                     0
1383                                                     0
1384                                                    24
1385                                                     9
     Total Bags  (BOLSAS TOTALES) Small Bags (BOLSAS PEQUEÑAS)
1                           59042                        57804
2                           54407                        48140
3                           74658                        74025
4                           59465                        57223
5                           64007                        59543
6                           74882                        69716
7                           69781                        66070
8                           85292                        77980
9                           89060                        79456
10                          77432                        69985
11                          92390                        82437
12                          33990                        27064
13                          33872                        25625
14                          38937                        30262
15                          96658                        54423
16                          82294                        80015
17                          98955                        94446
18                         161350                       102890
19                         163448                       107522
20                         162887                        93345
21                           1185                         1185
22                            913                          913
23                           1049                         1049
24                           1339                         1339
25                           1054                         1054
26                            928                          928
27                           1252                         1252
28                           1610                         1610
29                            139                            0
30                             22                            0
31                            433                           50
32                              0                            0
33                             68                            0
34                            323                          117
35                            297                           17
36                            130                          123
37                             86                            3
38                            136                           33
39                            211                          137
40                            328                          203
41                            355                          230
42                            223                          203
43                            221                          207
44                            117                          117
45                           1483                         1483
46                           1532                         1532
47                           1356                         1356
48                           1704                         1704
49                           1888                         1888
50                           1311                         1305
51                           1218                         1218
52                           1098                         1098
53                           1604                         1604
54                           1406                         1406
55                           1456                         1456
56                           1853                         1853
57                           2077                         2077
58                           1185                         1185
59                            420                          418
60                           9016                         7989
61                           6668                         6608
62                          10423                        10423
63                           1115                         1115
64                            606                          606
65                           1481                         1481
66                           1660                         1660
67                           1502                         1502
68                           1370                         1370
69                           1363                         1363
70                           1094                         1094
71                            852                          835
72                           1150                         1150
73                           1072                         1072
74                            679                          679
75                            652                          652
76                            502                          502
77                           1223                         1223
78                           1553                         1553
79                            883                          883
80                           1294                         1294
81                           1306                         1306
82                            971                          971
83                           1218                         1218
84                            898                          898
85                            977                          977
86                            470                          470
87                            840                          840
88                            432                          432
89                           1026                         1026
90                            522                          237
91                              3                            3
92                             80                           80
93                           2482                         1452
94                            659                          428
95                            911                          911
96                            804                          804
97                           1057                         1057
98                           1674                         1674
99                            732                          732
100                          1698                         1619
101                          1671                         1671
102                          2284                         2284
103                           352                          349
104                           126                           90
105                            99                           83
106                           214                          202
107                           566                          554
108                           602                          399
109                           577                          386
110                           516                          396
111                           184                          159
112                            59                           59
113                           307                          307
114                           216                          209
115                           379                          373
116                           509                          509
117                           336                          336
118                           479                          479
119                            89                           89
120                            51                           48
121                            43                           43
122                           136                          136
123                           349                          349
124                           135                          135
125                           327                          300
126                           462                          462
127                           413                          413
128                           412                          412
129                           435                          435
130                           582                          582
131                           605                          605
132                           625                          625
133                           533                          533
134                           752                          752
135                           759                          759
136                           286                          286
137                           424                          424
138                           409                          409
139                           609                          609
140                           829                          829
141                           414                          414
142                           653                          653
143                           627                          627
144                           235                          235
145                           267                          267
146                           193                          193
147                           350                          350
148                           507                          507
149                          1000                         1000
150                           650                          650
151                           293                          293
152                           590                          590
153                           550                          550
154                           857                          857
155                           578                          578
156                           553                          553
157                            30                           30
158                            40                           40
159                           158                           43
160                           273                          257
161                           230                          223
162                           297                          297
163                           117                          117
164                            23                           23
165                           379                          270
166                           439                            0
167                           146                          104
168                           413                          321
169                          1889                          170
170                          1542                          301
171                          1551                          429
172                          1309                          899
173                           696                          696
174                          1859                         1855
175                          3523                         3331
176                          2455                         2064
177                          1823                         1734
178                          1263                         1242
179                          2798                         2798
180                          2360                         2360
181                           502                          502
182                           722                          722
183                          1132                         1125
184                          2886                         2886
185                          4818                         4818
186                          7947                         7947
187                          3863                         3832
188                          3911                         3911
189                          4758                         4758
190                          4181                         4173
191                          2555                         2555
192                          1330                         1330
193                          3557                         3557
194                          2015                         2015
195                          1327                         1327
196                          2111                         2111
197                         15859                        15096
198                         26439                        25235
199                         20093                        19683
200                         29410                        29029
201                         23427                        23397
202                         16099                        16093
203                         23414                        23393
204                         22028                        21514
205                         34575                        34488
206                           880                          880
207                          1476                         1476
208                          1153                         1153
209                           642                          642
210                          1335                         1335
211                          1083                         1083
212                          1150                         1150
213                           237                           90
214                           447                          447
215                           795                          795
216                          1357                         1357
217                          1147                         1147
218                          1814                         1814
219                          4251                            7
220                          3167                            0
221                          1226                            0
222                          2427                            0
223                           722                          620
224                          1073                          994
225                           179                          112
226                           193                          193
227                           237                          237
228                           180                          180
229                           157                          157
230                            78                           78
231                           220                          220
232                           177                          177
233                           291                          291
234                           233                          233
235                           172                          172
236                            30                            3
237                            65                           38
238                            16                           16
239                            26                           26
240                             0                            0
241                             0                            0
242                            13                           13
243                            54                           54
244                            16                           16
245                             3                            3
246                             6                            6
247                            22                           22
248                            50                           50
249                            16                           16
250                            25                           25
251                            28                           28
252                            13                           13
253                             0                            0
254                            16                           16
255                          4284                           12
256                          3681                           31
257                          5387                           15
258                          3353                            0
259                           582                            0
260                            85                            0
261                           349                            0
262                          1059                            0
263                           528                          528
264                           538                          430
265                           797                          661
266                          1106                         1023
267                          1017                          970
268                           678                          675
269                          5567                         5375
270                           123                            0
271                            37                            0
272                           168                            0
273                           249                            0
274                           201                            0
275                           281                            0
276                            52                            0
277                            42                            0
278                             0                            0
279                           128                           25
280                           362                          362
281                           234                          123
282                           244                           57
283                           265                          117
284                           275                           73
285                            58                            7
286                           107                          107
287                           100                          100
288                            70                           70
289                           407                          407
290                           357                          357
291                           943                          943
292                          2650                         2607
293                          2200                         2173
294                          2747                         2723
295                          1215                         1190
296                          1068                            0
297                           396                           23
298                          1946                           84
299                          6685                         6685
300                          5205                         5196
301                          5424                         5399
302                          4216                         4210
303                          5649                         5634
304                          7672                         7645
305                          9899                         9892
306                         14065                        14047
307                         12716                        12716
308                          9028                         9025
309                          3551                         3534
310                          3301                         3301
311                          6977                         6748
312                           327                          311
313                          4815                         1055
314                          3570                          387
315                          4794                          854
316                         40973                        34502
317                         44606                        39261
318                         48370                        38872
319                         40540                        27969
320                         25483                        17096
321                         13448                        13409
322                         27615                        27404
323                          3148                         2767
324                          3315                         3315
325                          2869                         2869
326                          3415                         3415
327                          3813                         3813
328                          2998                         2998
329                          3281                         3276
330                          3972                         3972
331                          3512                         3512
332                          2997                         2997
333                          2363                         2363
334                          2588                         2588
335                          2202                         2202
336                          2043                         2043
337                          1512                         1512
338                          1713                         1713
339                          1382                         1382
340                           961                          961
341                          1527                         1527
342                          2189                         2184
343                           463                          463
344                           270                          223
345                           206                          151
346                           317                          317
347                           393                          393
348                           583                          583
349                           343                          343
350                           395                          373
351                           227                          143
352                           287                          287
353                           185                          173
354                           537                          500
355                          5484                         5484
356                          4868                         4868
357                          9225                         9221
358                          8895                         8646
359                         11326                         9574
360                          4307                         1531
361                          4773                         4456
362                          4012                         3905
363                          4304                         4300
364                          4290                         4290
365                          4053                         4007
366                          3591                         3372
367                          2150                         2143
368                          3439                         3331
369                          1261                         1080
370                          1426                         1237
371                          2943                         2855
372                          4091                         3938
373                          6587                         6492
374                          7454                         7427
375                          6966                         6848
376                          4653                         4653
377                           917                          833
378                          1844                         1676
379                          1483                         1189
380                          1532                         1532
381                          1694                         1694
382                          4130                         4130
383                          8320                         8320
384                          5685                         5685
385                          5248                         5248
386                          4014                         4014
387                          3871                         3871
388                          2234                         2234
389                          4234                         4219
390                          4476                         4437
391                          6937                         6925
392                          3919                         3866
393                          4731                         4470
394                          6788                         6560
395                          7402                         7325
396                          4678                         4044
397                          5189                         5145
398                          5738                         5738
399                          5470                         5470
400                          3016                         3016
401                          3062                         3050
402                          2322                         2313
403                          3355                         3355
404                          1892                         1892
405                          1716                         1698
406                          2047                         1900
407                          2067                         1886
408                          1977                         1971
409                           398                          377
410                          1059                          505
411                          1340                         1054
412                           435                          390
413                          1167                         1157
414                          1637                         1620
415                           950                          940
416                          1023                         1023
417                          1477                         1361
418                           207                          178
419                           264                          264
420                           754                          733
421                          2236                         2219
422                           718                          718
423                           884                          884
424                          2343                         2280
425                          2086                          614
426                          3199                          710
427                          2806                          411
428                          3028                          455
429                          3320                          348
430                          3330                          421
431                          2982                          592
432                          3223                          767
433                         19602                        11426
434                          7660                         7620
435                         15172                        14699
436                         13526                        13521
437                         11828                        11823
438                         10456                        10376
439                         10558                        10325
440                          5003                         4922
441                          2266                         2221
442                          1303                          778
443                          1662                         1662
444                          2404                         1942
445                          9592                         9213
446                         18990                        18657
447                         17033                        16887
448                         26669                        26584
449                         29074                        28384
450                         20924                        20924
451                          2242                         2179
452                          7304                         6946
453                          3415                         3060
454                          4323                         4250
455                          4342                         4337
456                          8125                         7609
457                         32154                        31257
458                         23689                        23056
459                         19872                        19365
460                         20113                        18563
461                         19348                        18633
462                         17947                        16812
463                         13702                        11497
464                         15598                        15280
465                         11868                        11027
466                         29063                        27009
467                         27550                        27093
468                         13796                        12724
469                         23112                        21877
470                         18133                        17606
471                         12928                        10464
472                         14126                         7033
473                         75682                        75224
474                         55744                        55092
475                         48908                        48446
476                         56488                        55962
477                        106893                       106402
478                        111654                       101869
479                           712                          707
480                          1541                         1010
481                          5214                         5214
482                          4119                         4119
483                          3610                         3510
484                          2003                         1991
485                          4233                         4214
486                          1687                         1633
487                          1577                         1554
488                          2827                         2717
489                          2914                         2785
490                          3352                         3228
491                          5445                         5419
492                          8962                         8857
493                          9327                         9245
494                          6312                         6312
495                          2322                         2289
496                          2372                         2240
497                          4715                         4647
498                          3467                         3467
499                          3768                         3587
500                          8119                         6665
501                          4472                         4063
502                          4548                         3592
503                          4882                         3662
504                          5962                         5110
505                          6148                         5230
506                          2627                         1144
507                          1915                         1849
508                          2893                         2789
509                          1162                         1049
510                           498                          485
511                          1281                         1219
512                          1905                         1846
513                          1216                         1109
514                           711                          489
515                           894                          843
516                          1821                         1495
517                          1964                          584
518                          2065                          562
519                          1824                          443
520                          2135                          524
521                          2242                          581
522                          2118                          434
523                          2292                          472
524                          2597                          462
525                          7569                          704
526                           627                          172
527                          2304                          386
528                           512                          259
529                          1415                         1038
530                          4400                         4029
531                          6368                         5709
532                           248                          248
533                           215                          215
534                           286                          286
535                           462                          462
536                           448                          433
537                          1188                         1128
538                          1008                          999
539                           497                          494
540                           510                          510
541                           668                          668
542                           433                          433
543                           320                          320
544                           289                          269
545                           258                          251
546                           354                          344
547                           349                          345
548                           380                          380
549                           360                          360
550                           308                          308
551                           340                          317
552                           308                          308
553                           326                          326
554                           311                          311
555                           342                          342
556                           364                          364
557                           242                          242
558                           164                          164
559                           328                          328
560                           202                          202
561                           319                          319
562                           324                          324
563                           203                          203
564                           335                          331
565                           171                          171
566                           338                          334
567                           245                          241
568                          1408                          540
569                          2178                          380
570                          1681                          720
571                          2887                          830
572                          2431                          498
573                           546                          546
574                           893                          893
575                          1177                         1177
576                          1673                         1673
577                           738                          738
578                           789                          756
579                          2235                         2235
580                          2309                         2309
581                          3026                         3026
582                          3230                         3217
583                          2378                         2293
584                          3686                         3620
585                          3384                         3338
586                          3106                         3079
587                          3232                         3232
588                          2818                         2818
589                          3035                         3035
590                          2745                         2717
591                          2934                         2891
592                          3196                         3173
593                          2219                         2166
594                          2974                         2947
595                          2824                         2771
596                          2721                         2704
597                          2343                         2303
598                          2250                         2210
599                          2888                         2862
600                          1891                         1877
601                          1713                         1709
602                          2624                         2614
603                          2159                         2149
604                          1894                         1884
605                          2008                         2005
606                          1662                         1659
607                          2120                         2117
608                          2189                         2182
609                          2190                         2186
610                          1733                         1723
611                          1720                         1714
612                          2094                         2094
613                          1624                         1624
614                          1799                         1799
615                          1567                         1567
616                          1984                         1984
617                          1712                         1712
618                          1745                         1745
619                           761                          761
620                            31                           31
621                            60                           53
622                            31                           31
623                           124                           87
624                          9833                          801
625                          1424                          601
626                          3250                          688
627                          2181                          664
628                           607                          533
629                          2076                         1610
630                          2960                          363
631                          8645                         7049
632                           526                           43
633                           915                           27
634                            28                            0
635                           262                            0
636                           623                          124
637                           525                           55
638                            45                           45
639                           226                           99
640                           192                            7
641                            50                           44
642                           132                            0
643                           231                          218
644                           388                          305
645                          1866                          520
646                          2909                          797
647                           660                          650
648                         14564                        11573
649                          1862                         1805
650                           180                          177
651                           333                          333
652                          1179                         1146
653                          2031                         1994
654                          1130                         1117
655                          1277                         1232
656                          1931                         1931
657                          2461                         2461
658                          2552                         2552
659                          2449                         2449
660                          1820                         1820
661                         11623                         5403
662                          9638                         5433
663                          6321                         5368
664                          7368                         6809
665                          8289                         4856
666                         13336                         4253
667                         11707                         4932
668                          7425                         4617
669                         11864                         3851
670                          6353                         2357
671                          9829                         8160
672                          8617                         8579
673                          9689                         9685
674                          9867                         9864
675                         10468                        10461
676                          9961                         9958
677                         10531                        10531
678                         11178                        11175
679                         10509                        10504
680                         10985                        10985
681                         11179                        11171
682                         10584                        10562
683                         12112                        12104
684                         11665                        11662
685                          9962                         9944
686                          9020                         8998
687                          1337                          383
688                          1399                          382
689                          1047                          127
690                          1006                          120
691                          1019                           97
692                           841                           40
693                           813                           75
694                           861                          152
695                           984                          175
696                          1127                          133
697                          1029                          199
698                           931                           90
699                          1143                          186
700                          1413                          471
701                          1260                          409
702                          1599                          482
703                          1893                          440
704                          1384                          575
705                         18450                        16339
706                         18002                        16435
707                         20147                        18534
708                         21644                        19934
709                         18938                        17150
710                         21236                        19576
711                         19181                        17542
712                         15437                        14866
713                         15933                        14681
714                         16914                        15510
715                         16956                        15585
716                         13284                        12822
717                         15148                        12903
718                         11242                        10636
719                          4970                          731
720                          3793                          487
721                          4773                          637
722                          4873                          830
723                          4516                         1073
724                          4930                          948
725                          5001                          980
726                          4083                         1050
727                          5397                         1203
728                          6959                         1220
729                          3119                          900
730                          5533                         1181
731                          5453                         1313
732                          4466                         1003
733                          2413                         1180
734                          4035                          739
735                          3320                          973
736                          2129                          637
737                         52273                        52248
738                         45352                        45271
739                         44744                        44692
740                         41786                        41755
741                         40750                        40700
742                         37143                        37121
743                         36688                        36679
744                         44514                        44485
745                         41863                        41815
746                         66600                        66546
747                         66279                        66110
748                         56744                        55680
749                         57875                        57767
750                         55539                        55471
751                         55667                        55589
752                          4644                         4345
753                          3926                         3802
754                          4990                         4734
755                          5042                         4819
756                          7264                         7117
757                          7031                         6886
758                          6493                         6321
759                          5326                         5148
760                          3907                         3656
761                          5950                         5560
762                          4335                         4169
763                          5902                         5892
764                          5356                         5203
765                          4974                         4971
766                          5508                         5501
767                          5423                         5419
768                          5008                         5008
769                          3072                         3072
770                          3064                         3064
771                          2665                         2661
772                          3084                         3081
773                          4416                         4416
774                          1639                         1639
775                          2216                         1790
776                          1757                         1583
777                          1537                         1270
778                          2336                         1778
779                          1741                         1615
780                          1766                         1766
781                          1608                         1600
782                          2102                         1909
783                          1980                         1582
784                          7752                         7734
785                          7251                         7240
786                         10501                        10492
787                          7207                         7207
788                          8127                         8127
789                          7845                         7845
790                          7940                         6127
791                         12068                         2049
792                          7679                         2518
793                          5339                         2167
794                         10351                         2220
795                          5809                         3808
796                          8035                         4142
797                          5011                         4019
798                          4626                         3489
799                          6797                         4339
800                         12198                        11998
801                         12777                        12690
802                         11208                        11031
803                         11403                        11256
804                         14979                        14966
805                         16940                        16816
806                         12100                        12016
807                         14643                        14580
808                         11599                        11415
809                         13927                        13826
810                         20252                        11224
811                           189                            6
812                           136                            6
813                           238                           13
814                           372                           86
815                           483                          327
816                           442                          419
817                           577                          577
818                           555                          555
819                           106                           87
820                           396                          370
821                           720                          717
822                           641                          575
823                           685                          615
824                           710                          562
825                           774                          690
826                          6760                         6760
827                          8336                         8336
828                          8976                         8976
829                          9484                         9460
830                         10351                        10299
831                         10021                         9961
832                          9185                         9185
833                          8421                         8421
834                          9661                         9661
835                         10167                        10167
836                          9031                         9031
837                          8679                         8679
838                          8234                         8234
839                          6948                         6948
840                          8724                         8724
841                          9569                         9531
842                          9153                         9091
843                         10436                        10435
844                         14049                        14049
845                         11021                        11021
846                          8935                         8935
847                          9363                         9363
848                          8900                         8890
849                          9140                         9128
850                          9506                         9502
851                          7227                         7227
852                          6520                         6516
853                          6987                         6987
854                          9173                         8419
855                          7984                         7752
856                          8331                         8243
857                          8110                         8110
858                          7753                         7753
859                          7826                         7826
860                          7886                         7886
861                          7840                         7840
862                          7229                         7225
863                          6439                         6439
864                          6570                         6539
865                          6335                         6006
866                          6583                         6461
867                          7680                         7680
868                          6199                         6179
869                          6089                         5969
870                          5782                         5751
871                          5812                         5602
872                          6062                         6039
873                          6476                         6278
874                          5761                         5593
875                          4115                         3948
876                          3215                         1939
877                          1871                          759
878                          1991                         1812
879                           810                          807
880                          1315                         1315
881                          1930                         1737
882                          3543                         1315
883                          2859                          787
884                          3232                         2182
885                          2325                         2290
886                          1992                         1989
887                          1068                         1068
888                           978                          978
889                          1267                         1267
890                          1018                         1014
891                          1477                         1477
892                          1365                         1358
893                          1153                         1150
894                          1271                         1269
895                          1328                         1328
896                          3012                         3012
897                          4293                         4071
898                          3640                         3252
899                          1436                         1433
900                          1297                          526
901                          2232                          593
902                          1509                          424
903                          5094                         5038
904                          4121                         4037
905                          4298                         4281
906                          4207                         4200
907                          3986                         3968
908                          3187                         3121
909                          6099                         6062
910                          3719                         3699
911                          2590                         2520
912                          1859                          390
913                         31860                        31836
914                         34748                        34692
915                         30815                        30770
916                         30180                        30159
917                         32417                        32377
918                         27179                        27160
919                         27993                        27988
920                         32058                        32042
921                         31370                        31337
922                         46471                        46451
923                         45243                        45097
924                         38988                        38021
925                         39037                        39001
926                         37007                        36988
927                         40531                        40510
928                          1900                         1174
929                          2103                         1289
930                          3080                         1065
931                          2777                          713
932                          3975                         3069
933                           690                          658
934                          2497                         2497
935                          3064                         3061
936                          2631                         1938
937                          2261                         2250
938                          2577                         2540
939                          2389                         1481
940                          3405                         1366
941                          3577                         1622
942                          1108                         1108
943                           947                          927
944                          2381                         1372
945                          1828                         1189
946                        127029                       112343
947                        118691                       100375
948                         92834                        81240
949                         93811                        84139
950                         51464                        36181
951                          4107                         2453
952                          5315                         3217
953                          6313                         1602
954                          5905                         1778
955                          6227                         2483
956                          5543                         1631
957                           153                          150
958                           109                          106
959                           762                          762
960                          1274                         1095
961                         43347                        43299
962                         46063                        46016
963                         50453                        50267
964                         48363                        48214
965                         46143                        46069
966                         46579                        46411
967                         48413                        48266
968                         44015                        43894
969                         43690                        43667
970                         42665                        42665
971                         42465                        42465
972                         55916                        55916
973                         44024                        44024
974                         44051                        44051
975                         46729                        46723
976                         32621                        32621
977                         30320                        30320
978                         33347                        33342
979                         38480                        37772
980                         41163                        39893
981                         39099                        38971
982                         34668                        34668
983                         36450                        36450
984                         43553                        43553
985                         32322                        32298
986                         25996                        25957
987                         34425                        34342
988                         43017                        43017
989                         29909                        29581
990                         20866                        20511
991                         20104                        19821
992                         17919                        17792
993                         17570                        17104
994                         12058                        11935
995                        116869                       104842
996                        116175                       106878
997                        126666                       115566
998                        128434                       116899
999                        135240                       124038
1000                       129562                       120158
1001                       145695                       132557
1002                       137489                       121186
1003                       121542                       109123
1004                       107389                        96848
1005                       117163                       107372
1006                       119847                       113186
1007                         5952                         4501
1008                         5068                         3898
1009                         5971                         4053
1010                         2421                         1697
1011                         3489                         3379
1012                         6660                         5291
1013                         5536                         4452
1014                         3423                         1720
1015                         4849                         4658
1016                         3237                         2043
1017                         3197                         3197
1018                         5746                         5739
1019                         4015                         4009
1020                         3080                         3080
1021                         2693                         2690
1022                         2856                         2853
1023                         4639                         4639
1024                         3050                         2911
1025                         2204                         1853
1026                         1913                         1509
1027                         2649                         1034
1028                         2777                         1186
1029                         2304                          761
1030                         2234                          969
1031                         3149                         1042
1032                         4994                         4994
1033                         6317                         6276
1034                         6487                         6487
1035                         8740                         8566
1036                         7973                         7735
1037                         7064                         7043
1038                         7339                         7339
1039                         7989                         7989
1040                         7570                         7570
1041                         7542                         7535
1042                         6553                         6506
1043                         6763                         6682
1044                         5865                         5865
1045                         5493                         5426
1046                         4425                         4374
1047                         4524                         4431
1048                         4101                         4090
1049                         4329                         3929
1050                         3407                         1814
1051                         1300                          381
1052                        37563                        26291
1053                        43370                        34314
1054                        41901                        32057
1055                        31705                        22812
1056                        36689                        20459
1057                        38118                        19391
1058                        32468                        20083
1059                        35664                        25961
1060                        12562                         1473
1061                        12825                         1483
1062                        11781                         1491
1063                        12669                         1436
1064                        12565                         1712
1065                        13574                         1315
1066                        11393                         1399
1067                        11806                         1405
1068                        12673                         1402
1069                        14724                         1616
1070                        12850                         1238
1071                        10809                         1081
1072                        14027                         1686
1073                        14803                         2466
1074                        13869                         1356
1075                        15738                          173
1076                        16949                          276
1077                         8579                          227
1078                         8049                         7934
1079                         6751                         6726
1080                         6109                         5863
1081                         6437                         6324
1082                         5004                         4909
1083                         6209                         6070
1084                         5352                         5306
1085                         6774                         6614
1086                         6960                         6881
1087                        10744                        10587
1088                         9099                         8867
1089                         7545                         7472
1090                         6123                         5874
1091                        10253                         9603
1092                         5747                         5319
1093                         8625                         8027
1094                         8879                         8315
1095                         7240                         6961
1096                         6804                         6470
1097                         6453                         6442
1098                         8605                         8221
1099                         3537                         3278
1100                         2964                         2842
1101                         7567                         6798
1102                         3421                         2205
1103                         4267                         2844
1104                         2485                         2170
1105                         2355                         2134
1106                         3620                         3169
1107                         3005                         2645
1108                         2981                         2649
1109                         2939                         2489
1110                         5173                         3146
1111                         4089                         3443
1112                         8530                         6523
1113                         6110                         3594
1114                         5894                         3564
1115                         5710                         3208
1116                         4242                         3088
1117                         5695                         4347
1118                         2277                         2277
1119                         2173                         2173
1120                         3016                         3013
1121                         3569                         3565
1122                         1409                         1409
1123                          327                          322
1124                          659                          656
1125                          800                          796
1126                          832                          825
1127                          799                          797
1128                         1031                         1030
1129                          892                          882
1130                          937                          897
1131                          789                          786
1132                          401                          401
1133                          869                          865
1134                          818                          818
1135                          747                          744
1136                          661                          654
1137                          842                          842
1138                          825                          825
1139                          726                          726
1140                          720                          720
1141                          466                          466
1142                          428                          428
1143                          414                          414
1144                          621                          621
1145                          297                          297
1146                          272                          265
1147                          396                          396
1148                          364                          364
1149                         3953                         3953
1150                         3852                         3852
1151                         4236                         4236
1152                         4619                         4619
1153                         5092                         5092
1154                         5096                         5096
1155                         4245                         4234
1156                         4097                         4097
1157                         3056                         3056
1158                         1328                         1328
1159                         1121                         1121
1160                         1705                         1705
1161                         3102                         3102
1162                         2431                         2427
1163                         5902                         5872
1164                         5499                         5495
1165                         4960                         4960
1166                         4905                         4872
1167                         4314                         4311
1168                         4183                         4180
1169                         2879                         2849
1170                         4704                         4700
1171                         1652                         1621
1172                         3181                          560
1173                         1474                          687
1174                         2404                         2404
1175                         2094                         2094
1176                          990                          990
1177                          717                          712
1178                          783                          783
1179                          734                          734
1180                          613                          609
1181                         1166                         1161
1182                          699                          694
1183                         1132                         1132
1184                          578                          578
1185                         1078                         1078
1186                          979                          979
1187                          688                          688
1188                          782                          782
1189                          454                          454
1190                          772                          768
1191                          904                          901
1192                         4161                         4161
1193                         4758                         4758
1194                         4363                         4356
1195                         4336                         4327
1196                         4594                         4578
1197                         4139                         4137
1198                         2645                         2622
1199                         2781                         2766
1200                         3021                         3011
1201                         3102                         3070
1202                         3342                         3338
1203                         3663                         3610
1204                         3224                         3201
1205                         2668                         2643
1206                         3227                         3204
1207                         3495                         3476
1208                         3402                         3391
1209                         3331                         3323
1210                         3431                         3388
1211                         3749                         3728
1212                         3268                         3268
1213                         2974                         2974
1214                         3202                         3202
1215                         3044                         3044
1216                         3150                         3150
1217                         3260                         3260
1218                         3060                         3060
1219                         3199                         3199
1220                         2810                         2810
1221                         2957                         2957
1222                         2851                         2841
1223                         3357                         3347
1224                         2189                         2189
1225                        16171                          985
1226                        15179                         1219
1227                        13324                         1001
1228                        14177                         1096
1229                        15256                         1355
1230                        14484                         1049
1231                        15454                         1402
1232                        15232                         1062
1233                        14333                         1386
1234                        12819                         1109
1235                        15193                         1110
1236                        16747                          939
1237                        14643                         1079
1238                        11480                         1107
1239                        14897                         1581
1240                        15486                         1686
1241                        13983                         1378
1242                        11652                          484
1243                        14155                          612
1244                        22035                          281
1245                        13926                          262
1246                         8536                          290
1247                        13630                         9407
1248                        11066                        10838
1249                         9257                         8506
1250                        10952                         8976
1251                         7976                         6712
1252                        11714                        11247
1253                        10117                         8988
1254                         9835                         9260
1255                        58778                        56974
1256                        63141                        52500
1257                        69301                        46009
1258                        51733                        33649
1259                        58899                        51415
1260                        56158                        40265
1261                        50760                        43832
1262                         1464                          912
1263                         1633                          612
1264                         1933                          560
1265                         1445                          368
1266                         1672                          507
1267                         1358                          380
1268                         1579                          520
1269                         1755                          599
1270                         1692                          567
1271                         1621                          624
1272                         1439                          391
1273                         1224                          370
1274                         1333                          312
1275                         1627                          479
1276                         1671                          452
1277                         1370                          309
1278                          993                          304
1279                         1682                          564
1280                         1677                          572
1281                         1628                          587
1282                          769                           31
1283                         1379                          106
1284                         2054                           37
1285                         1074                           84
1286                         1082                           72
1287                         1111                          784
1288                         5280                         1960
1289                         6199                         2021
1290                         5334                         2025
1291                         5643                         1750
1292                         2451                          516
1293                         4185                           58
1294                         3949                          101
1295                         1673                           71
1296                          636                          190
1297                         1662                          697
1298                         3241                         1704
1299                         5966                         1876
1300                         3750                         2144
1301                         2841                         1491
1302                         3469                         1541
1303                         3428                         2034
1304                         1049                         1037
1305                         2564                         2401
1306                         2641                          861
1307                         2245                          745
1308                         2525                          894
1309                         3261                         1101
1310                         2892                         1093
1311                         3010                         1266
1312                         3100                         1083
1313                         2714                         1110
1314                         3921                         1018
1315                         3114                          958
1316                         3023                         1160
1317                         2685                          924
1318                         2477                          754
1319                         2349                          918
1320                         1936                          711
1321                         5288                         3874
1322                         2503                         1737
1323                         6049                         5081
1324                         3213                         3209
1325                         2930                         2924
1326                         3218                         3218
1327                         2580                         2041
1328                         1681                         1542
1329                         3143                         1276
1330                         1525                          853
1331                         1866                         1368
1332                         3059                         1234
1333                       728659                       622446
1334                       702629                       571726
1335                       680088                       588833
1336                        92372                        59737
1337                        98744                        64497
1338                       116399                        77304
1339                       100897                        65389
1340                        81460                        44948
1341                        71333                        40018
1342                        91030                        60325
1343                        98006                        61941
1344                        91069                        51643
1345                        98917                        65125
1346                        79479                        50741
1347                        93151                        56352
1348                        92697                        56821
1349                        93267                        60488
1350                        74118                        36399
1351                        78690                        32458
1352                         6855                         6717
1353                         6777                         6543
1354                         5709                         5639
1355                         5749                         5722
1356                         5800                         5797
1357                         5730                         5720
1358                         2673                         2629
1359                         9848                         9817
1360                         5130                         5010
1361                         3553                         3403
1362                         9149                         9138
1363                         9144                         9144
1364                         8278                         8278
1365                         7396                         7390
1366                         8113                         8079
1367                         9916                         9911
1368                        10406                        10406
1369                         4460                         1777
1370                         7271                         6882
1371                         7050                         6824
1372                         6786                         6661
1373                         9226                         9000
1374                         1747                         1747
1375                         6928                         6918
1376                         2230                         2230
1377                         4523                         4523
1378                         4716                         4716
1379                         3058                         3058
1380                         2287                         2283
1381                         2533                         2533
1382                         2149                         2149
1383                         1943                         1943
1384                        20403                         1470
1385                        16702                         1630
     Large Bags  (BOLSAS GRANDES) XLarge Bags (BOLSAS EXTRAGRANDES)
1                            1096                            143.16
2                            1587                           4679.64
3                             103                            529.17
4                             269                           1972.50
5                            4442                             22.22
6                            5165                              1.11
7                            3699                             11.73
8                            7213                             98.07
9                            9520                             85.15
10                           7393                             54.44
11                           7822                           2131.11
12                           1682                           5244.45
13                           2276                           5970.66
14                           2715                           5960.56
15                          42234                              0.00
16                            148                           2131.28
17                            932                           3577.24
18                          56578                           1881.77
19                          54905                           1021.76
20                          68261                           1281.02
21                              0                              0.00
22                              0                              0.00
23                              0                              0.00
24                              0                              0.00
25                              0                              0.00
26                              0                              0.00
27                              0                              0.00
28                              0                              0.00
29                            139                              0.00
30                             22                              0.00
31                            383                              0.00
32                              0                              0.00
33                             68                              0.00
34                            206                              0.00
35                            281                              0.00
36                              6                              0.00
37                             83                              0.00
38                            102                              0.00
39                             75                              0.00
40                            125                              0.00
41                            125                              0.00
42                             20                              0.00
43                             15                              0.00
44                              0                              0.00
45                              0                              0.00
46                              0                              0.00
47                              0                              0.00
48                              0                              0.00
49                              0                              0.00
50                              7                              0.00
51                              0                              0.00
52                              0                              0.00
53                              0                              0.00
54                              0                              0.00
55                              0                              0.00
56                              0                              0.00
57                              0                              0.00
58                              0                              0.00
59                              3                              0.00
60                           1027                              0.00
61                             60                              0.00
62                              0                              0.00
63                              0                              0.00
64                              0                              0.00
65                              0                              0.00
66                              0                              0.00
67                              0                              0.00
68                              0                              0.00
69                              0                              0.00
70                              0                              0.00
71                             17                              0.00
72                              0                              0.00
73                              0                              0.00
74                              0                              0.00
75                              0                              0.00
76                              0                              0.00
77                              0                              0.00
78                              0                              0.00
79                              0                              0.00
80                              0                              0.00
81                              0                              0.00
82                              0                              0.00
83                              0                              0.00
84                              0                              0.00
85                              0                              0.00
86                              0                              0.00
87                              0                              0.00
88                              0                              0.00
89                              0                              0.00
90                            285                              0.00
91                              0                              0.00
92                              0                              0.00
93                           1030                              0.00
94                            232                              0.00
95                              0                              0.00
96                              0                              0.00
97                              0                              0.00
98                              0                              0.00
99                              0                              0.00
100                            79                              0.00
101                             0                              0.00
102                             0                              0.00
103                             3                              0.00
104                            36                              0.00
105                            16                              0.00
106                            12                              0.00
107                            12                              0.00
108                           204                              0.00
109                           191                              0.00
110                           120                              0.00
111                            25                              0.00
112                             0                              0.00
113                             0                              0.00
114                             6                              0.00
115                             6                              0.00
116                             0                              0.00
117                             0                              0.00
118                             0                              0.00
119                             0                              0.00
120                             3                              0.00
121                             0                              0.00
122                             0                              0.00
123                             0                              0.00
124                             0                              0.00
125                            27                              0.00
126                             0                              0.00
127                             0                              0.00
128                             0                              0.00
129                             0                              0.00
130                             0                              0.00
131                             0                              0.00
132                             0                              0.00
133                             0                              0.00
134                             0                              0.00
135                             0                              0.00
136                             0                              0.00
137                             0                              0.00
138                             0                              0.00
139                             0                              0.00
140                             0                              0.00
141                             0                              0.00
142                             0                              0.00
143                             0                              0.00
144                             0                              0.00
145                             0                              0.00
146                             0                              0.00
147                             0                              0.00
148                             0                              0.00
149                             0                              0.00
150                             0                              0.00
151                             0                              0.00
152                             0                              0.00
153                             0                              0.00
154                             0                              0.00
155                             0                              0.00
156                             0                              0.00
157                             0                              0.00
158                             0                              0.00
159                           114                              0.00
160                            16                              0.00
161                             7                              0.00
162                             0                              0.00
163                             0                              0.00
164                             0                              0.00
165                           109                              0.00
166                           439                              0.00
167                            42                              0.00
168                            92                              0.00
169                          1719                              0.00
170                          1241                              0.00
171                          1123                              0.00
172                           410                              0.00
173                             0                              0.00
174                             4                              0.00
175                           193                              0.00
176                           391                              0.00
177                            89                              0.00
178                            21                              0.00
179                             0                              0.00
180                             0                              0.00
181                             0                              0.00
182                             0                              0.00
183                             7                              0.00
184                             0                              0.00
185                             0                              0.00
186                             0                              0.00
187                            31                              0.00
188                             0                              0.00
189                             0                              0.00
190                             9                              0.00
191                             0                              0.00
192                             0                              0.00
193                             0                              0.00
194                             0                              0.00
195                             0                              0.00
196                             0                              0.00
197                           763                              0.00
198                          1204                              0.00
199                           410                              0.00
200                           381                              0.00
201                            30                              0.00
202                             6                              0.00
203                            21                              0.00
204                           514                              0.00
205                            86                              0.00
206                             0                              0.00
207                             0                              0.00
208                             0                              0.00
209                             0                              0.00
210                             0                              0.00
211                             0                              0.00
212                             0                              0.00
213                           147                              0.00
214                             0                              0.00
215                             0                              0.00
216                             0                              0.00
217                             0                              0.00
218                             0                              0.00
219                          4244                              0.00
220                          3167                              0.00
221                          1226                              0.00
222                          2427                              0.00
223                           101                              0.00
224                            79                              0.00
225                            67                              0.00
226                             0                              0.00
227                             0                              0.00
228                             0                              0.00
229                             0                              0.00
230                             0                              0.00
231                             0                              0.00
232                             0                              0.00
233                             0                              0.00
234                             0                              0.00
235                             0                              0.00
236                            27                              0.00
237                            27                              0.00
238                             0                              0.00
239                             0                              0.00
240                             0                              0.00
241                             0                              0.00
242                             0                              0.00
243                             0                              0.00
244                             0                              0.00
245                             0                              0.00
246                             0                              0.00
247                             0                              0.00
248                             0                              0.00
249                             0                              0.00
250                             0                              0.00
251                             0                              0.00
252                             0                              0.00
253                             0                              0.00
254                             0                              0.00
255                          4272                              0.00
256                          3650                              0.00
257                          5372                              0.00
258                          3353                              0.00
259                           582                              0.00
260                            85                              0.00
261                           349                              0.00
262                          1059                              0.00
263                             0                              0.00
264                           108                              0.00
265                           137                              0.00
266                            83                              0.00
267                            47                              0.00
268                             3                              0.00
269                           192                              0.00
270                           123                              0.00
271                            37                              0.00
272                           168                              0.00
273                           249                              0.00
274                           201                              0.00
275                           281                              0.00
276                            52                              0.00
277                            42                              0.00
278                             0                              0.00
279                           103                              0.00
280                             0                              0.00
281                           111                              0.00
282                           187                              0.00
283                           148                              0.00
284                           202                              0.00
285                            51                              0.00
286                             0                              0.00
287                             0                              0.00
288                             0                              0.00
289                             0                              0.00
290                             0                              0.00
291                             0                              0.00
292                            43                              0.00
293                            27                              0.00
294                            24                              0.00
295                            25                              0.00
296                          1068                              0.00
297                           374                              0.00
298                          1863                              0.00
299                             0                              0.00
300                             9                              0.00
301                            25                              0.00
302                             6                              0.00
303                            16                              0.00
304                            27                              0.00
305                             7                              0.00
306                            18                              0.00
307                             0                              0.00
308                             3                              0.00
309                            17                              0.00
310                             0                              0.00
311                           229                              0.00
312                            16                              0.00
313                          3760                              0.00
314                          3183                              0.00
315                          3940                              0.00
316                          6471                              0.00
317                          5346                              0.00
318                          9498                              0.00
319                         12571                              0.00
320                          8387                              0.00
321                            39                              0.00
322                           210                              0.00
323                           381                              0.00
324                             0                              0.00
325                             0                              0.00
326                             0                              0.00
327                             0                              0.00
328                             0                              0.00
329                             4                              0.00
330                             0                              0.00
331                             0                              0.00
332                             0                              0.00
333                             0                              0.00
334                             0                              0.00
335                             0                              0.00
336                             0                              0.00
337                             0                              0.00
338                             0                              0.00
339                             0                              0.00
340                             0                              0.00
341                             0                              0.00
342                             4                              0.00
343                             0                              0.00
344                            47                              0.00
345                            56                              0.00
346                             0                              0.00
347                             0                              0.00
348                             0                              0.00
349                             0                              0.00
350                            21                              0.00
351                            84                              0.00
352                             0                              0.00
353                            11                              0.00
354                            37                              0.00
355                             0                              0.00
356                             0                              0.00
357                             4                              0.00
358                           249                              0.00
359                          1751                              0.00
360                          2776                              0.00
361                           316                              0.00
362                           107                              0.00
363                             4                              0.00
364                             0                              0.00
365                            46                              0.00
366                           219                              0.00
367                             8                              0.00
368                           108                              0.00
369                           180                              0.00
370                           189                              0.00
371                            88                              0.00
372                           154                              0.00
373                            96                              0.00
374                            27                              0.00
375                           118                              0.00
376                             0                              0.00
377                            84                              0.00
378                           167                              0.00
379                           294                              0.00
380                             0                              0.00
381                             0                              0.00
382                             0                              0.00
383                             0                              0.00
384                             0                              0.00
385                             0                              0.00
386                             0                              0.00
387                             0                              0.00
388                             0                              0.00
389                            15                              0.00
390                            39                              0.00
391                            12                              0.00
392                            53                              0.00
393                           261                              0.00
394                           228                              0.00
395                            77                              0.00
396                           634                              0.00
397                            44                              0.00
398                             0                              0.00
399                             0                              0.00
400                             0                              0.00
401                            12                              0.00
402                             9                              0.00
403                             0                              0.00
404                             0                              0.00
405                            18                              0.00
406                           147                              0.00
407                           180                              0.00
408                             6                              0.00
409                            21                              0.00
410                           555                              0.00
411                           286                              0.00
412                            45                              0.00
413                            10                              0.00
414                            17                              0.00
415                            10                              0.00
416                             0                              0.00
417                           116                              0.00
418                            29                              0.00
419                             0                              0.00
420                            21                              0.00
421                            16                              0.00
422                             0                              0.00
423                             0                              0.00
424                            64                              0.00
425                          1472                              0.00
426                          2489                              0.00
427                          2395                              0.00
428                          2572                              0.00
429                          2972                              0.00
430                          2909                              0.00
431                          2390                              0.00
432                          2456                              0.00
433                          8176                              0.00
434                            39                              0.00
435                           474                              0.00
436                             5                              0.00
437                             5                              0.00
438                            80                              0.00
439                           233                              0.00
440                            81                              0.00
441                            46                              0.00
442                           525                              0.00
443                             0                              0.00
444                           462                              0.00
445                           379                              0.00
446                           333                              0.00
447                           146                              0.00
448                            85                              0.00
449                           690                              0.00
450                             0                              0.00
451                            62                              0.00
452                           358                              0.00
453                           355                              0.00
454                            74                              0.00
455                             5                              0.00
456                           516                              0.00
457                           897                              0.00
458                           633                              0.00
459                           507                              0.00
460                          1550                              0.00
461                           715                              0.00
462                          1135                              0.00
463                          2206                              0.00
464                           318                              0.00
465                           841                              0.00
466                          2055                              0.00
467                           457                              0.00
468                          1072                              0.00
469                          1236                              0.00
470                           527                              0.00
471                          2464                              0.00
472                          7093                              0.00
473                           457                              0.00
474                           652                              0.00
475                           462                              0.00
476                           526                              0.00
477                           491                              0.00
478                          9785                              0.00
479                             6                              0.00
480                           531                              0.00
481                             0                              0.00
482                             0                              0.00
483                           101                              0.00
484                            11                              0.00
485                            19                              0.00
486                            54                              0.00
487                            23                              0.00
488                           110                              0.00
489                           129                              0.00
490                           124                              0.00
491                            26                              0.00
492                           105                              0.00
493                            82                              0.00
494                             0                              0.00
495                            33                              0.00
496                           132                              0.00
497                            68                              0.00
498                             0                              0.00
499                           181                              0.00
500                          1454                              0.00
501                           410                              0.00
502                           956                              0.00
503                          1220                              0.00
504                           852                              0.00
505                           918                              0.00
506                          1483                              0.00
507                            66                              0.00
508                           104                              0.00
509                           113                              0.00
510                            13                              0.00
511                            62                              0.00
512                            59                              0.00
513                           107                              0.00
514                           222                              0.00
515                            50                              0.00
516                           327                              0.00
517                          1380                              0.00
518                          1504                              0.00
519                          1381                              0.00
520                          1612                              0.00
521                          1661                              0.00
522                          1684                              0.00
523                          1820                              0.00
524                          2134                              0.00
525                          6865                              0.00
526                           455                              0.00
527                          1918                              0.00
528                           253                              0.00
529                           378                              0.00
530                           371                              0.00
531                           660                              0.00
532                             0                              0.00
533                             0                              0.00
534                             0                              0.00
535                             0                              0.00
536                            15                              0.00
537                            59                              0.00
538                             9                              0.00
539                             3                              0.00
540                             0                              0.00
541                             0                              0.00
542                             0                              0.00
543                             0                              0.00
544                            20                              0.00
545                             7                              0.00
546                            10                              0.00
547                             3                              0.00
548                             0                              0.00
549                             0                              0.00
550                             0                              0.00
551                            23                              0.00
552                             0                              0.00
553                             0                              0.00
554                             0                              0.00
555                             0                              0.00
556                             0                              0.00
557                             0                              0.00
558                             0                              0.00
559                             0                              0.00
560                             0                              0.00
561                             0                              0.00
562                             0                              0.00
563                             0                              0.00
564                             3                              0.00
565                             0                              0.00
566                             3                              0.00
567                             3                              0.00
568                           868                              0.00
569                          1798                              0.00
570                           961                              0.00
571                          2057                              0.00
572                          1933                              0.00
573                             0                              0.00
574                             0                              0.00
575                             0                              0.00
576                             0                              0.00
577                             0                              0.00
578                            33                              0.00
579                             0                              0.00
580                             0                              0.00
581                             0                              0.00
582                            13                              0.00
583                            85                              0.00
584                            66                              0.00
585                            47                              0.00
586                            27                              0.00
587                             0                              0.00
588                             0                              0.00
589                             0                              0.00
590                            28                              0.00
591                            43                              0.00
592                            23                              0.00
593                            53                              0.00
594                            27                              0.00
595                            53                              0.00
596                            17                              0.00
597                            40                              0.00
598                            40                              0.00
599                            27                              0.00
600                            13                              0.00
601                             3                              0.00
602                            10                              0.00
603                            10                              0.00
604                            10                              0.00
605                             3                              0.00
606                             3                              0.00
607                             3                              0.00
608                             7                              0.00
609                             3                              0.00
610                            10                              0.00
611                             7                              0.00
612                             0                              0.00
613                             0                              0.00
614                             0                              0.00
615                             0                              0.00
616                             0                              0.00
617                             0                              0.00
618                             0                              0.00
619                             0                              0.00
620                             0                              0.00
621                             7                              0.00
622                             0                              0.00
623                            37                              0.00
624                          9032                              0.00
625                           824                              0.00
626                          2562                              0.00
627                          1517                              0.00
628                            74                              0.00
629                           466                              0.00
630                          2597                              0.00
631                          1596                              0.00
632                           483                              0.00
633                           888                              0.00
634                            28                              0.00
635                           262                              0.00
636                           500                              0.00
637                           471                              0.00
638                             0                              0.00
639                           127                              0.00
640                           184                              0.00
641                             5                              0.00
642                           132                              0.00
643                            13                              0.00
644                            83                              0.00
645                          1345                              0.00
646                          2111                              0.00
647                            10                              0.00
648                          2991                              0.00
649                            57                              0.00
650                             3                              0.00
651                             0                              0.00
652                            33                              0.00
653                            37                              0.00
654                            13                              0.00
655                            45                              0.00
656                             0                              0.00
657                             0                              0.00
658                             0                              0.00
659                             0                              0.00
660                             0                              0.00
661                          6220                              0.00
662                          4206                              0.00
663                           953                              0.00
664                           559                              0.00
665                          3433                              0.00
666                          9083                              0.00
667                          6774                              0.00
668                          2808                              0.00
669                          8013                              0.00
670                          3996                              0.00
671                          1670                              0.00
672                            38                              0.00
673                             4                              0.00
674                             3                              0.00
675                             7                              0.00
676                             3                              0.00
677                             0                              0.00
678                             3                              0.00
679                             6                              0.00
680                             0                              0.00
681                             8                              0.00
682                            22                              0.00
683                             8                              0.00
684                             3                              0.00
685                            18                              0.00
686                            22                              0.00
687                           954                              0.00
688                          1017                              0.00
689                           916                              4.56
690                           886                              0.00
691                           923                              0.00
692                           801                              0.00
693                           738                              0.00
694                           707                              1.50
695                           809                              0.00
696                           994                              0.00
697                           830                              0.00
698                           841                              0.00
699                           957                              0.00
700                           942                              0.00
701                           851                              0.00
702                          1118                              0.00
703                          1453                              0.00
704                           809                              0.00
705                          2110                              0.00
706                          1567                              0.00
707                          1614                              0.00
708                          1710                              0.00
709                          1788                              0.00
710                          1660                              0.00
711                          1638                              0.00
712                           571                              0.00
713                          1252                              0.00
714                          1404                              0.00
715                          1371                              0.00
716                           463                              0.00
717                          2245                              0.00
718                           606                              0.00
719                          4239                              0.00
720                          3306                              0.00
721                          4136                              0.00
722                          4043                              0.00
723                          3442                              0.00
724                          3982                              0.00
725                          4021                              0.00
726                          3033                              0.00
727                          4194                              0.00
728                          5739                              0.00
729                          2219                              0.00
730                          4352                              0.00
731                          4140                              0.00
732                          3463                              0.00
733                          1233                              0.00
734                          3296                              0.00
735                          2346                              0.00
736                          1492                              0.00
737                            25                              0.00
738                            81                              0.00
739                            52                              0.00
740                            31                              0.00
741                            50                              0.00
742                            22                              0.00
743                             9                              0.00
744                            29                              0.00
745                            47                              0.00
746                            53                              0.00
747                           169                              0.00
748                          1063                              0.00
749                           107                              0.00
750                            67                              0.00
751                            78                              0.00
752                           299                              0.00
753                           124                              0.00
754                           256                              0.00
755                           223                              0.00
756                           147                              0.00
757                           145                              0.00
758                           173                              0.00
759                           178                              0.00
760                           251                              0.00
761                           389                              0.00
762                           167                              0.00
763                             9                              0.00
764                           152                              0.00
765                             3                              0.00
766                             7                              0.00
767                             4                              0.00
768                             0                              0.00
769                             0                              0.00
770                             0                              0.00
771                             4                              0.00
772                             3                              0.00
773                             0                              0.00
774                             0                              0.00
775                           426                              0.00
776                           174                              0.00
777                           267                              0.00
778                           559                              0.00
779                           126                              0.00
780                             0                              0.00
781                             8                              0.00
782                           193                              0.00
783                           398                              0.00
784                            19                              0.00
785                            11                              0.00
786                             9                              0.00
787                             0                              0.00
788                             0                              0.00
789                             0                              0.00
790                          1813                              0.00
791                         10020                              0.00
792                          5162                              0.00
793                          3172                              0.00
794                          8131                              0.00
795                          2001                              0.00
796                          3893                              0.00
797                           992                              0.00
798                          1137                              0.00
799                          2459                              0.00
800                           200                              0.00
801                            88                              0.00
802                           177                              0.00
803                           146                              0.00
804                            13                              0.00
805                           124                              0.00
806                            84                              0.00
807                            64                              0.00
808                           184                              0.00
809                           101                              0.00
810                          9028                              0.00
811                           183                              0.00
812                           130                              0.00
813                           225                              0.00
814                           287                              0.00
815                           156                              0.00
816                            23                              0.00
817                             0                              0.00
818                             0                              0.00
819                            20                              0.00
820                            26                              0.00
821                             3                              0.00
822                            66                              0.00
823                            70                              0.00
824                           148                              0.00
825                            85                              0.00
826                             0                              0.00
827                             0                              0.00
828                             0                              0.00
829                            24                              0.00
830                            52                              0.00
831                            60                              0.00
832                             0                              0.00
833                             0                              0.00
834                             0                              0.00
835                             0                              0.00
836                             0                              0.00
837                             0                              0.00
838                             0                              0.00
839                             0                              0.00
840                             0                              0.00
841                            38                              0.00
842                            62                              0.00
843                             2                              0.00
844                             0                              0.00
845                             0                              0.00
846                             0                              0.00
847                             0                              0.00
848                            11                              0.00
849                            12                              0.00
850                             5                              0.00
851                             0                              0.00
852                             4                              0.00
853                             0                              0.00
854                           754                              0.00
855                           232                              0.00
856                            88                              0.00
857                             0                              0.00
858                             0                              0.00
859                             0                              0.00
860                             0                              0.00
861                             0                              0.00
862                             4                              0.00
863                             0                              0.00
864                            31                              0.00
865                           329                              0.00
866                           123                              0.00
867                             0                              0.00
868                            19                              0.00
869                           120                              0.00
870                            31                              0.00
871                           210                              0.00
872                            23                              0.00
873                           198                              0.00
874                           168                              0.00
875                           168                              0.00
876                          1277                              0.00
877                          1112                              0.00
878                           178                              0.00
879                             3                              0.00
880                             0                              0.00
881                           193                              0.00
882                          2228                              0.00
883                          2072                              0.00
884                          1050                              0.00
885                            35                              0.00
886                             3                              0.00
887                             0                              0.00
888                             0                              0.00
889                             0                              0.00
890                             3                              0.00
891                             0                              0.00
892                             7                              0.00
893                             3                              0.00
894                             2                              0.00
895                             0                              0.00
896                             0                              0.00
897                           222                              0.00
898                           388                              0.00
899                             3                              0.00
900                           771                              0.00
901                          1639                              0.00
902                          1085                              0.00
903                            56                              0.00
904                            84                              0.00
905                            17                              0.00
906                             7                              0.00
907                            18                              0.00
908                            66                              0.00
909                            38                              0.00
910                            19                              0.00
911                            70                              0.00
912                          1469                              0.00
913                            25                              0.00
914                            56                              0.00
915                            46                              0.00
916                            21                              0.00
917                            40                              0.00
918                            19                              0.00
919                             5                              0.00
920                            16                              0.00
921                            32                              0.00
922                            20                              0.00
923                           145                              0.00
924                           967                              0.00
925                            36                              0.00
926                            18                              0.00
927                            20                              0.00
928                           727                              0.00
929                           813                              0.00
930                          2015                              0.00
931                          2063                              0.00
932                           906                              0.00
933                            33                              0.00
934                             0                              0.00
935                             3                              0.00
936                           693                              0.00
937                            11                              0.00
938                            37                              0.00
939                           908                              0.00
940                          2040                              0.00
941                          1955                              0.00
942                             0                              0.00
943                            20                              0.00
944                          1009                              0.00
945                           639                              0.00
946                         14686                              0.00
947                         18315                              0.00
948                         11593                              0.00
949                          9673                              0.00
950                         15283                              0.00
951                          1654                              0.00
952                          2098                              0.00
953                          4711                              0.00
954                          4126                              0.00
955                          3744                              0.00
956                          3913                              0.00
957                             3                              0.00
958                             3                              0.00
959                             0                              0.00
960                           179                              0.00
961                            48                              0.00
962                            48                              0.00
963                           187                              0.00
964                           148                              0.00
965                            74                              0.00
966                           167                              0.00
967                           148                              0.00
968                           121                              0.00
969                            22                              0.00
970                             0                              0.00
971                             0                              0.00
972                             0                              0.00
973                             0                              0.00
974                             0                              0.00
975                             6                              0.00
976                             0                              0.00
977                             0                              0.00
978                             5                              0.00
979                           708                              0.00
980                          1270                              0.00
981                           128                              0.00
982                             0                              0.00
983                             0                              0.00
984                             0                              0.00
985                            24                              0.00
986                            39                              0.00
987                            83                              0.00
988                             0                              0.00
989                           328                              0.00
990                           355                              0.00
991                           283                              0.00
992                           127                              0.00
993                           466                              0.00
994                           123                              0.00
995                         12027                              0.00
996                          9297                              0.00
997                         11100                              0.00
998                         11535                              0.00
999                         11203                              0.00
1000                         9403                              0.00
1001                        13138                              0.00
1002                        16304                              0.00
1003                        12419                              0.00
1004                        10541                              0.00
1005                         9790                              0.00
1006                         6661                              0.00
1007                         1450                              0.00
1008                         1170                              0.00
1009                         1918                              0.00
1010                          724                              0.00
1011                          110                              0.00
1012                         1369                              0.00
1013                         1085                              0.00
1014                         1703                              0.00
1015                          191                              0.00
1016                         1194                              0.00
1017                            0                              0.00
1018                            7                              0.00
1019                            7                              0.00
1020                            0                              0.00
1021                            3                              0.00
1022                            3                              0.00
1023                            0                              0.00
1024                          139                              0.00
1025                          351                              0.00
1026                          404                              0.00
1027                         1615                              0.00
1028                         1591                              0.00
1029                         1543                              0.00
1030                         1265                              0.00
1031                         2106                              0.00
1032                            0                              0.00
1033                           41                              0.00
1034                            0                              0.00
1035                          175                              0.00
1036                          239                              0.00
1037                           21                              0.00
1038                            0                              0.00
1039                            0                              0.00
1040                            0                              0.00
1041                            7                              0.00
1042                           47                              0.00
1043                           81                              0.00
1044                            0                              0.00
1045                           68                              0.00
1046                           51                              0.00
1047                           92                              0.00
1048                           11                              0.00
1049                          400                              0.00
1050                         1594                              0.00
1051                          919                              0.00
1052                        11272                              0.00
1053                         9056                              0.00
1054                         9844                              0.00
1055                         8885                              8.01
1056                        16230                              0.00
1057                        18727                              0.00
1058                        12385                              0.00
1059                         9697                              5.30
1060                        11078                             11.11
1061                        11325                             16.61
1062                        10277                             12.89
1063                        11234                              0.00
1064                        10852                              0.00
1065                        12250                              9.10
1066                         9963                             30.86
1067                        10378                             23.54
1068                        11193                             77.95
1069                        13002                            105.17
1070                        11612                              0.00
1071                         9721                              7.26
1072                        12341                              0.00
1073                        12337                              0.00
1074                        12513                              0.00
1075                        15565                              0.00
1076                        16673                              0.00
1077                         8351                              0.00
1078                          114                              0.00
1079                           25                              0.00
1080                          246                              0.00
1081                          113                              0.00
1082                           96                              0.00
1083                          139                              0.00
1084                           45                              0.00
1085                          160                              0.00
1086                           79                              0.00
1087                          157                              0.00
1088                          233                              0.00
1089                           74                              0.00
1090                          249                              0.00
1091                          650                              0.00
1092                          428                              0.00
1093                          598                              0.00
1094                          564                              0.00
1095                          279                              0.00
1096                          334                              0.00
1097                           11                              0.00
1098                          384                              0.00
1099                          260                              0.00
1100                          123                              0.00
1101                          769                              0.00
1102                         1216                              0.00
1103                         1423                              0.00
1104                          315                              0.00
1105                          221                              0.00
1106                          451                              0.00
1107                          360                              0.00
1108                          332                              0.00
1109                          450                              0.00
1110                         2027                              0.00
1111                          646                              0.00
1112                         2007                              0.00
1113                         2516                              0.00
1114                         2330                              0.00
1115                         2502                              0.00
1116                         1155                              0.00
1117                         1348                              0.00
1118                            0                              0.00
1119                            0                              0.00
1120                            3                              0.00
1121                            3                              0.00
1122                            0                              0.00
1123                            5                              0.00
1124                            3                              0.00
1125                            3                              0.00
1126                            7                              0.00
1127                            2                              0.00
1128                            2                              0.00
1129                            9                              0.00
1130                           40                              0.00
1131                            4                              0.00
1132                            0                              0.00
1133                            4                              0.00
1134                            0                              0.00
1135                            3                              0.00
1136                            7                              0.00
1137                            0                              0.00
1138                            0                              0.00
1139                            0                              0.00
1140                            0                              0.00
1141                            0                              0.00
1142                            0                              0.00
1143                            0                              0.00
1144                            0                              0.00
1145                            0                              0.00
1146                            7                              0.00
1147                            0                              0.00
1148                            0                              0.00
1149                            0                              0.00
1150                            0                              0.00
1151                            0                              0.00
1152                            0                              0.00
1153                            0                              0.00
1154                            0                              0.00
1155                           11                              0.00
1156                            0                              0.00
1157                            0                              0.00
1158                            0                              0.00
1159                            0                              0.00
1160                            0                              0.00
1161                            0                              0.00
1162                            3                              0.00
1163                           30                              0.00
1164                            3                              0.00
1165                            0                              0.00
1166                           33                              0.00
1167                            3                              0.00
1168                            3                              0.00
1169                           29                              0.00
1170                            4                              0.00
1171                           31                              0.00
1172                         2621                              0.00
1173                          787                              0.00
1174                            0                              0.00
1175                            0                              0.00
1176                            0                              0.00
1177                            4                              0.00
1178                            0                              0.00
1179                            0                              0.00
1180                            4                              0.00
1181                            4                              0.00
1182                            4                              0.00
1183                            0                              0.00
1184                            0                              0.00
1185                            0                              0.00
1186                            0                              0.00
1187                            0                              0.00
1188                            0                              0.00
1189                            0                              0.00
1190                            4                              0.00
1191                            3                              0.00
1192                            0                              0.00
1193                            0                              0.00
1194                            7                              0.00
1195                           10                              0.00
1196                           16                              0.00
1197                            2                              0.00
1198                           22                              0.00
1199                           16                              0.00
1200                           10                              0.00
1201                           32                              0.00
1202                            4                              0.00
1203                           53                              0.00
1204                           23                              0.00
1205                           25                              0.00
1206                           22                              0.00
1207                           20                              0.00
1208                           10                              0.00
1209                            8                              0.00
1210                           43                              0.00
1211                           22                              0.00
1212                            0                              0.00
1213                            0                              0.00
1214                            0                              0.00
1215                            0                              0.00
1216                            0                              0.00
1217                            0                              0.00
1218                            0                              0.00
1219                            0                              0.00
1220                            0                              0.00
1221                            0                              0.00
1222                           10                              0.00
1223                           10                              0.00
1224                            0                              0.00
1225                        15159                             27.19
1226                        13949                             11.40
1227                        12312                              9.95
1228                        13070                             11.32
1229                        13872                             29.67
1230                        13434                              0.00
1231                        14045                              7.04
1232                        14155                             14.07
1233                        12885                             61.88
1234                        11693                             16.82
1235                        14019                             64.40
1236                        15793                             15.44
1237                        13564                              0.00
1238                        10371                              2.80
1239                        13312                              4.21
1240                        13800                              0.00
1241                        12606                              0.00
1242                        11168                              0.00
1243                        13544                              0.00
1244                        21753                              0.00
1245                        13664                              0.00
1246                         8246                              0.00
1247                         4223                              0.00
1248                          228                              0.00
1249                          751                              0.00
1250                         1976                              0.00
1251                         1265                              0.00
1252                          468                              0.00
1253                         1128                              0.00
1254                          575                              0.00
1255                         1804                              0.00
1256                        10641                              0.00
1257                        23292                              0.00
1258                        18084                              0.00
1259                         7484                              0.00
1260                        15893                              0.00
1261                         6928                              0.00
1262                          552                              0.00
1263                         1021                              0.00
1264                         1359                             14.30
1265                         1035                             42.87
1266                         1165                              0.00
1267                          978                              0.00
1268                         1059                              0.00
1269                         1157                              0.00
1270                         1126                              0.00
1271                          996                              0.00
1272                         1044                              4.59
1273                          850                              4.56
1274                         1020                              0.00
1275                         1148                              0.00
1276                         1219                              0.00
1277                         1061                              0.00
1278                          690                              0.00
1279                         1119                              0.00
1280                         1105                              0.00
1281                         1041                              0.00
1282                          737                              0.00
1283                         1274                              0.00
1284                         2016                              0.00
1285                          990                              0.00
1286                         1010                              0.00
1287                          327                              0.00
1288                         3319                              0.00
1289                         4178                              0.00
1290                         3309                              0.00
1291                         3893                              0.00
1292                         1935                              0.00
1293                         4127                              0.00
1294                         3848                              0.00
1295                         1602                              0.00
1296                          446                              0.00
1297                          964                              0.00
1298                         1536                              0.00
1299                         4091                              0.00
1300                         1606                              0.00
1301                         1350                              0.00
1302                         1928                              0.00
1303                         1394                              0.00
1304                           12                              0.00
1305                          163                              0.00
1306                         1780                              0.00
1307                         1499                              0.00
1308                         1631                              0.00
1309                         2160                              0.00
1310                         1799                              0.00
1311                         1743                              0.00
1312                         2017                              0.00
1313                         1604                              0.00
1314                         2903                              0.00
1315                         2156                              0.00
1316                         1863                              0.00
1317                         1761                              0.00
1318                         1723                              0.00
1319                         1431                              0.00
1320                         1225                              0.00
1321                         1413                              0.00
1322                          767                              0.00
1323                          969                              0.00
1324                            3                              0.00
1325                            7                              0.00
1326                            0                              0.00
1327                          538                              0.00
1328                          138                              0.00
1329                         1867                              0.00
1330                          672                              0.00
1331                          498                              0.00
1332                         1825                              0.00
1333                       106081                            132.23
1334                       130802                            101.44
1335                        91250                              5.30
1336                        32599                             35.71
1337                        34166                             80.17
1338                        39088                              7.42
1339                        35462                             45.75
1340                        36435                             76.58
1341                        31209                            105.84
1342                        30665                             41.09
1343                        35933                            132.23
1344                        39324                            101.44
1345                        33792                              0.00
1346                        28729                              8.80
1347                        36794                              4.40
1348                        35876                              0.00
1349                        32779                              0.00
1350                        37715                              2.94
1351                        46232                              0.00
1352                          138                              0.00
1353                          235                              0.00
1354                           70                              0.00
1355                           27                              0.00
1356                            3                              0.00
1357                           10                              0.00
1358                           44                              0.00
1359                           31                              0.00
1360                          119                              0.00
1361                          150                              0.00
1362                           11                              0.00
1363                            0                              0.00
1364                            0                              0.00
1365                            6                              0.00
1366                           34                              0.00
1367                            5                              0.00
1368                            0                              0.00
1369                         2684                              0.00
1370                          390                              0.00
1371                          226                              0.00
1372                          125                              0.00
1373                          226                              0.00
1374                            0                              0.00
1375                           10                              0.00
1376                            0                              0.00
1377                            0                              0.00
1378                            0                              0.00
1379                            0                              0.00
1380                            3                              0.00
1381                            0                              0.00
1382                            0                              0.00
1383                            0                              0.00
1384                        18905                             27.70
1385                        15064                              7.33
      type (TIPO) year (AÑO)     region (REGION)
1    conventional       2016             Chicago
2    conventional       2016             Chicago
3    conventional       2016        SanFrancisco
4    conventional       2016        SanFrancisco
5    conventional       2017             Chicago
6    conventional       2017             Chicago
7    conventional       2017             Chicago
8    conventional       2017             Chicago
9    conventional       2017             Chicago
10   conventional       2017             Chicago
11   conventional       2017             Chicago
12   conventional       2017         GrandRapids
13   conventional       2017         GrandRapids
14   conventional       2017         GrandRapids
15   conventional       2017   MiamiFtLauderdale
16   conventional       2017        SanFrancisco
17   conventional       2017        SanFrancisco
18   conventional       2017             Seattle
19   conventional       2017             Seattle
20   conventional       2017             Seattle
21        organic       2015              Albany
22        organic       2015              Albany
23        organic       2015              Albany
24        organic       2015              Albany
25        organic       2015              Albany
26        organic       2015              Albany
27        organic       2015              Albany
28        organic       2015              Albany
29        organic       2015             Atlanta
30        organic       2015             Atlanta
31        organic       2015             Atlanta
32        organic       2015             Atlanta
33        organic       2015             Atlanta
34        organic       2015               Boise
35        organic       2015               Boise
36        organic       2015               Boise
37        organic       2015               Boise
38        organic       2015               Boise
39        organic       2015               Boise
40        organic       2015               Boise
41        organic       2015               Boise
42        organic       2015               Boise
43        organic       2015               Boise
44        organic       2015               Boise
45        organic       2015              Boston
46        organic       2015              Boston
47        organic       2015              Boston
48        organic       2015              Boston
49        organic       2015              Boston
50        organic       2015              Boston
51        organic       2015              Boston
52        organic       2015              Boston
53        organic       2015              Boston
54        organic       2015              Boston
55        organic       2015              Boston
56        organic       2015              Boston
57        organic       2015              Boston
58        organic       2015              Boston
59        organic       2015    BuffaloRochester
60        organic       2015          California
61        organic       2015          California
62        organic       2015          California
63        organic       2015           Charlotte
64        organic       2015           Charlotte
65        organic       2015           Charlotte
66        organic       2015           Charlotte
67        organic       2015           Charlotte
68        organic       2015           Charlotte
69        organic       2015           Charlotte
70        organic       2015           Charlotte
71        organic       2015           Charlotte
72        organic       2015           Charlotte
73        organic       2015           Charlotte
74        organic       2015           Charlotte
75        organic       2015           Charlotte
76        organic       2015           Charlotte
77        organic       2015           Charlotte
78        organic       2015           Charlotte
79        organic       2015           Charlotte
80        organic       2015           Charlotte
81        organic       2015           Charlotte
82        organic       2015           Charlotte
83        organic       2015           Charlotte
84        organic       2015           Charlotte
85        organic       2015           Charlotte
86        organic       2015           Charlotte
87        organic       2015           Charlotte
88        organic       2015           Charlotte
89        organic       2015           Charlotte
90        organic       2015            Columbus
91        organic       2015         GrandRapids
92        organic       2015         GrandRapids
93        organic       2015  HarrisburgScranton
94        organic       2015  HarrisburgScranton
95        organic       2015  HarrisburgScranton
96        organic       2015  HarrisburgScranton
97        organic       2015  HarrisburgScranton
98        organic       2015  HarrisburgScranton
99        organic       2015  HarrisburgScranton
100       organic       2015 HartfordSpringfield
101       organic       2015 HartfordSpringfield
102       organic       2015 HartfordSpringfield
103       organic       2015 HartfordSpringfield
104       organic       2015 HartfordSpringfield
105       organic       2015 HartfordSpringfield
106       organic       2015 HartfordSpringfield
107       organic       2015 HartfordSpringfield
108       organic       2015 HartfordSpringfield
109       organic       2015 HartfordSpringfield
110       organic       2015 HartfordSpringfield
111       organic       2015 HartfordSpringfield
112       organic       2015 HartfordSpringfield
113       organic       2015 HartfordSpringfield
114       organic       2015 HartfordSpringfield
115       organic       2015 HartfordSpringfield
116       organic       2015 HartfordSpringfield
117       organic       2015 HartfordSpringfield
118       organic       2015 HartfordSpringfield
119       organic       2015 HartfordSpringfield
120       organic       2015 HartfordSpringfield
121       organic       2015 HartfordSpringfield
122       organic       2015 HartfordSpringfield
123       organic       2015 HartfordSpringfield
124       organic       2015 HartfordSpringfield
125       organic       2015 HartfordSpringfield
126       organic       2015 HartfordSpringfield
127       organic       2015 HartfordSpringfield
128       organic       2015 HartfordSpringfield
129       organic       2015 HartfordSpringfield
130       organic       2015 HartfordSpringfield
131       organic       2015 HartfordSpringfield
132       organic       2015 HartfordSpringfield
133       organic       2015 HartfordSpringfield
134       organic       2015 HartfordSpringfield
135       organic       2015 HartfordSpringfield
136       organic       2015 HartfordSpringfield
137       organic       2015 HartfordSpringfield
138       organic       2015 HartfordSpringfield
139       organic       2015 HartfordSpringfield
140       organic       2015 HartfordSpringfield
141       organic       2015 HartfordSpringfield
142       organic       2015 HartfordSpringfield
143       organic       2015 HartfordSpringfield
144       organic       2015 HartfordSpringfield
145       organic       2015 HartfordSpringfield
146       organic       2015 HartfordSpringfield
147       organic       2015 HartfordSpringfield
148       organic       2015        Jacksonville
149       organic       2015        Jacksonville
150       organic       2015        Jacksonville
151       organic       2015        Jacksonville
152       organic       2015        Jacksonville
153       organic       2015        Jacksonville
154       organic       2015        Jacksonville
155       organic       2015        Jacksonville
156       organic       2015        Jacksonville
157       organic       2015            LasVegas
158       organic       2015            LasVegas
159       organic       2015            LasVegas
160       organic       2015            LasVegas
161       organic       2015            LasVegas
162       organic       2015            LasVegas
163       organic       2015            LasVegas
164       organic       2015            LasVegas
165       organic       2015            LasVegas
166       organic       2015            LasVegas
167       organic       2015            LasVegas
168       organic       2015             NewYork
169       organic       2015             NewYork
170       organic       2015             NewYork
171       organic       2015             NewYork
172       organic       2015             NewYork
173       organic       2015             NewYork
174       organic       2015             NewYork
175       organic       2015             NewYork
176       organic       2015             NewYork
177       organic       2015             NewYork
178       organic       2015             NewYork
179       organic       2015             NewYork
180       organic       2015             NewYork
181       organic       2015             NewYork
182       organic       2015             NewYork
183       organic       2015             NewYork
184       organic       2015             NewYork
185       organic       2015             NewYork
186       organic       2015             NewYork
187       organic       2015             NewYork
188       organic       2015             NewYork
189       organic       2015             NewYork
190       organic       2015             NewYork
191       organic       2015             NewYork
192       organic       2015             NewYork
193       organic       2015             NewYork
194       organic       2015             NewYork
195       organic       2015             NewYork
196       organic       2015             NewYork
197       organic       2015           Northeast
198       organic       2015           Northeast
199       organic       2015           Northeast
200       organic       2015           Northeast
201       organic       2015           Northeast
202       organic       2015           Northeast
203       organic       2015           Northeast
204       organic       2015           Northeast
205       organic       2015           Northeast
206       organic       2015             Orlando
207       organic       2015             Orlando
208       organic       2015             Orlando
209       organic       2015             Orlando
210       organic       2015             Orlando
211       organic       2015             Orlando
212       organic       2015             Orlando
213       organic       2015        Philadelphia
214       organic       2015        Philadelphia
215       organic       2015        Philadelphia
216       organic       2015        Philadelphia
217       organic       2015        Philadelphia
218       organic       2015        Philadelphia
219       organic       2015            Portland
220       organic       2015            Portland
221       organic       2015            Portland
222       organic       2015            Portland
223       organic       2015   RaleighGreensboro
224       organic       2015   RaleighGreensboro
225       organic       2015          Sacramento
226       organic       2015          Sacramento
227       organic       2015          Sacramento
228       organic       2015          Sacramento
229       organic       2015          Sacramento
230       organic       2015          Sacramento
231       organic       2015          Sacramento
232       organic       2015          Sacramento
233       organic       2015          Sacramento
234       organic       2015          Sacramento
235       organic       2015          Sacramento
236       organic       2015        SanFrancisco
237       organic       2015        SanFrancisco
238       organic       2015        SanFrancisco
239       organic       2015        SanFrancisco
240       organic       2015        SanFrancisco
241       organic       2015        SanFrancisco
242       organic       2015        SanFrancisco
243       organic       2015        SanFrancisco
244       organic       2015        SanFrancisco
245       organic       2015        SanFrancisco
246       organic       2015        SanFrancisco
247       organic       2015        SanFrancisco
248       organic       2015        SanFrancisco
249       organic       2015        SanFrancisco
250       organic       2015        SanFrancisco
251       organic       2015        SanFrancisco
252       organic       2015        SanFrancisco
253       organic       2015        SanFrancisco
254       organic       2015        SanFrancisco
255       organic       2015             Seattle
256       organic       2015             Seattle
257       organic       2015             Seattle
258       organic       2015             Seattle
259       organic       2015             Seattle
260       organic       2015             Seattle
261       organic       2015             Seattle
262       organic       2015             Seattle
263       organic       2015       SouthCarolina
264       organic       2015       SouthCarolina
265       organic       2015       SouthCarolina
266       organic       2015       SouthCarolina
267       organic       2015       SouthCarolina
268       organic       2015       SouthCarolina
269       organic       2015           Southeast
270       organic       2015             Spokane
271       organic       2015             Spokane
272       organic       2015             Spokane
273       organic       2015             Spokane
274       organic       2015             Spokane
275       organic       2015             Spokane
276       organic       2015             Spokane
277       organic       2015             Spokane
278       organic       2015             Spokane
279       organic       2015             StLouis
280       organic       2015             StLouis
281       organic       2015             StLouis
282       organic       2015             StLouis
283       organic       2015             StLouis
284       organic       2015             StLouis
285       organic       2015             StLouis
286       organic       2015             StLouis
287       organic       2015             StLouis
288       organic       2015             StLouis
289       organic       2015            Syracuse
290       organic       2015            Syracuse
291       organic       2015    WestTexNewMexico
292       organic       2015    WestTexNewMexico
293       organic       2015    WestTexNewMexico
294       organic       2015    WestTexNewMexico
295       organic       2015    WestTexNewMexico
296       organic       2016             Atlanta
297       organic       2016             Atlanta
298       organic       2016             Atlanta
299       organic       2016 BaltimoreWashington
300       organic       2016 BaltimoreWashington
301       organic       2016 BaltimoreWashington
302       organic       2016 BaltimoreWashington
303       organic       2016 BaltimoreWashington
304       organic       2016 BaltimoreWashington
305       organic       2016 BaltimoreWashington
306       organic       2016 BaltimoreWashington
307       organic       2016 BaltimoreWashington
308       organic       2016 BaltimoreWashington
309       organic       2016 BaltimoreWashington
310       organic       2016 BaltimoreWashington
311       organic       2016 BaltimoreWashington
312       organic       2016               Boise
313       organic       2016    BuffaloRochester
314       organic       2016    BuffaloRochester
315       organic       2016    BuffaloRochester
316       organic       2016          California
317       organic       2016          California
318       organic       2016          California
319       organic       2016          California
320       organic       2016          California
321       organic       2016          California
322       organic       2016          California
323       organic       2016           Charlotte
324       organic       2016             Chicago
325       organic       2016             Chicago
326       organic       2016             Chicago
327       organic       2016             Chicago
328       organic       2016             Chicago
329       organic       2016             Chicago
330       organic       2016             Chicago
331       organic       2016             Chicago
332       organic       2016             Chicago
333       organic       2016             Chicago
334       organic       2016             Chicago
335       organic       2016             Chicago
336       organic       2016             Chicago
337       organic       2016             Chicago
338       organic       2016             Chicago
339       organic       2016             Chicago
340       organic       2016             Chicago
341       organic       2016             Chicago
342       organic       2016             Chicago
343       organic       2016         GrandRapids
344       organic       2016         GrandRapids
345       organic       2016         GrandRapids
346       organic       2016         GrandRapids
347       organic       2016         GrandRapids
348       organic       2016         GrandRapids
349       organic       2016         GrandRapids
350       organic       2016         GrandRapids
351       organic       2016         GrandRapids
352       organic       2016         GrandRapids
353       organic       2016         GrandRapids
354       organic       2016         GrandRapids
355       organic       2016  HarrisburgScranton
356       organic       2016  HarrisburgScranton
357       organic       2016  HarrisburgScranton
358       organic       2016  HarrisburgScranton
359       organic       2016  HarrisburgScranton
360       organic       2016  HarrisburgScranton
361       organic       2016 HartfordSpringfield
362       organic       2016 HartfordSpringfield
363       organic       2016 HartfordSpringfield
364       organic       2016 HartfordSpringfield
365       organic       2016 HartfordSpringfield
366       organic       2016 HartfordSpringfield
367       organic       2016 HartfordSpringfield
368       organic       2016 HartfordSpringfield
369       organic       2016 HartfordSpringfield
370       organic       2016 HartfordSpringfield
371       organic       2016 HartfordSpringfield
372       organic       2016 HartfordSpringfield
373       organic       2016 HartfordSpringfield
374       organic       2016 HartfordSpringfield
375       organic       2016 HartfordSpringfield
376       organic       2016 HartfordSpringfield
377       organic       2016 HartfordSpringfield
378       organic       2016 HartfordSpringfield
379       organic       2016 HartfordSpringfield
380       organic       2016 HartfordSpringfield
381       organic       2016 HartfordSpringfield
382       organic       2016 HartfordSpringfield
383       organic       2016 HartfordSpringfield
384       organic       2016 HartfordSpringfield
385       organic       2016 HartfordSpringfield
386       organic       2016 HartfordSpringfield
387       organic       2016 HartfordSpringfield
388       organic       2016 HartfordSpringfield
389       organic       2016 HartfordSpringfield
390       organic       2016 HartfordSpringfield
391       organic       2016 HartfordSpringfield
392       organic       2016 HartfordSpringfield
393       organic       2016 HartfordSpringfield
394       organic       2016 HartfordSpringfield
395       organic       2016 HartfordSpringfield
396       organic       2016 HartfordSpringfield
397       organic       2016 HartfordSpringfield
398       organic       2016 HartfordSpringfield
399       organic       2016 HartfordSpringfield
400       organic       2016 HartfordSpringfield
401       organic       2016 HartfordSpringfield
402       organic       2016 HartfordSpringfield
403       organic       2016 HartfordSpringfield
404       organic       2016 HartfordSpringfield
405       organic       2016 HartfordSpringfield
406       organic       2016 HartfordSpringfield
407       organic       2016 HartfordSpringfield
408       organic       2016 HartfordSpringfield
409       organic       2016 HartfordSpringfield
410       organic       2016 HartfordSpringfield
411       organic       2016        Indianapolis
412       organic       2016        Jacksonville
413       organic       2016        Jacksonville
414       organic       2016        Jacksonville
415       organic       2016        Jacksonville
416       organic       2016        Jacksonville
417       organic       2016            LasVegas
418       organic       2016            LasVegas
419       organic       2016            LasVegas
420       organic       2016            LasVegas
421       organic       2016            LasVegas
422       organic       2016            LasVegas
423       organic       2016            LasVegas
424       organic       2016            LasVegas
425       organic       2016            LasVegas
426       organic       2016            LasVegas
427       organic       2016            LasVegas
428       organic       2016            LasVegas
429       organic       2016            LasVegas
430       organic       2016            LasVegas
431       organic       2016            LasVegas
432       organic       2016            LasVegas
433       organic       2016          LosAngeles
434       organic       2016          LosAngeles
435       organic       2016             NewYork
436       organic       2016             NewYork
437       organic       2016             NewYork
438       organic       2016             NewYork
439       organic       2016             NewYork
440       organic       2016             NewYork
441       organic       2016             NewYork
442       organic       2016             NewYork
443       organic       2016             NewYork
444       organic       2016             NewYork
445       organic       2016             NewYork
446       organic       2016             NewYork
447       organic       2016             NewYork
448       organic       2016             NewYork
449       organic       2016             NewYork
450       organic       2016             NewYork
451       organic       2016             NewYork
452       organic       2016             NewYork
453       organic       2016             NewYork
454       organic       2016             NewYork
455       organic       2016             NewYork
456       organic       2016             NewYork
457       organic       2016             NewYork
458       organic       2016             NewYork
459       organic       2016             NewYork
460       organic       2016             NewYork
461       organic       2016             NewYork
462       organic       2016             NewYork
463       organic       2016             NewYork
464       organic       2016             NewYork
465       organic       2016             NewYork
466       organic       2016             NewYork
467       organic       2016             NewYork
468       organic       2016             NewYork
469       organic       2016             NewYork
470       organic       2016             NewYork
471       organic       2016             NewYork
472       organic       2016             NewYork
473       organic       2016           Northeast
474       organic       2016           Northeast
475       organic       2016           Northeast
476       organic       2016           Northeast
477       organic       2016           Northeast
478       organic       2016           Northeast
479       organic       2016             Orlando
480       organic       2016             Orlando
481       organic       2016        Philadelphia
482       organic       2016        Philadelphia
483       organic       2016        Philadelphia
484       organic       2016        Philadelphia
485       organic       2016        Philadelphia
486       organic       2016        Philadelphia
487       organic       2016        Philadelphia
488       organic       2016        Philadelphia
489       organic       2016        Philadelphia
490       organic       2016        Philadelphia
491       organic       2016        Philadelphia
492       organic       2016        Philadelphia
493       organic       2016        Philadelphia
494       organic       2016        Philadelphia
495       organic       2016        Philadelphia
496       organic       2016        Philadelphia
497       organic       2016        Philadelphia
498       organic       2016        Philadelphia
499       organic       2016        Philadelphia
500       organic       2016        Philadelphia
501       organic       2016        Philadelphia
502       organic       2016        Philadelphia
503       organic       2016        Philadelphia
504       organic       2016        Philadelphia
505       organic       2016        Philadelphia
506       organic       2016        Philadelphia
507       organic       2016       PhoenixTucson
508       organic       2016       PhoenixTucson
509       organic       2016       PhoenixTucson
510       organic       2016       PhoenixTucson
511       organic       2016       PhoenixTucson
512       organic       2016       PhoenixTucson
513       organic       2016       PhoenixTucson
514       organic       2016       PhoenixTucson
515       organic       2016       PhoenixTucson
516       organic       2016       PhoenixTucson
517       organic       2016       PhoenixTucson
518       organic       2016       PhoenixTucson
519       organic       2016       PhoenixTucson
520       organic       2016       PhoenixTucson
521       organic       2016       PhoenixTucson
522       organic       2016       PhoenixTucson
523       organic       2016       PhoenixTucson
524       organic       2016       PhoenixTucson
525       organic       2016            Portland
526       organic       2016            Portland
527       organic       2016            Portland
528       organic       2016            Portland
529       organic       2016            Portland
530       organic       2016   RaleighGreensboro
531       organic       2016   RaleighGreensboro
532       organic       2016          Sacramento
533       organic       2016          Sacramento
534       organic       2016          Sacramento
535       organic       2016          Sacramento
536       organic       2016          Sacramento
537       organic       2016          Sacramento
538       organic       2016          Sacramento
539       organic       2016          Sacramento
540       organic       2016          Sacramento
541       organic       2016          Sacramento
542       organic       2016          Sacramento
543       organic       2016          Sacramento
544       organic       2016          Sacramento
545       organic       2016          Sacramento
546       organic       2016          Sacramento
547       organic       2016          Sacramento
548       organic       2016          Sacramento
549       organic       2016          Sacramento
550       organic       2016          Sacramento
551       organic       2016          Sacramento
552       organic       2016          Sacramento
553       organic       2016          Sacramento
554       organic       2016          Sacramento
555       organic       2016          Sacramento
556       organic       2016          Sacramento
557       organic       2016          Sacramento
558       organic       2016          Sacramento
559       organic       2016          Sacramento
560       organic       2016          Sacramento
561       organic       2016          Sacramento
562       organic       2016          Sacramento
563       organic       2016          Sacramento
564       organic       2016          Sacramento
565       organic       2016          Sacramento
566       organic       2016          Sacramento
567       organic       2016          Sacramento
568       organic       2016            SanDiego
569       organic       2016            SanDiego
570       organic       2016            SanDiego
571       organic       2016            SanDiego
572       organic       2016            SanDiego
573       organic       2016            SanDiego
574       organic       2016            SanDiego
575       organic       2016            SanDiego
576       organic       2016            SanDiego
577       organic       2016            SanDiego
578       organic       2016            SanDiego
579       organic       2016        SanFrancisco
580       organic       2016        SanFrancisco
581       organic       2016        SanFrancisco
582       organic       2016        SanFrancisco
583       organic       2016        SanFrancisco
584       organic       2016        SanFrancisco
585       organic       2016        SanFrancisco
586       organic       2016        SanFrancisco
587       organic       2016        SanFrancisco
588       organic       2016        SanFrancisco
589       organic       2016        SanFrancisco
590       organic       2016        SanFrancisco
591       organic       2016        SanFrancisco
592       organic       2016        SanFrancisco
593       organic       2016        SanFrancisco
594       organic       2016        SanFrancisco
595       organic       2016        SanFrancisco
596       organic       2016        SanFrancisco
597       organic       2016        SanFrancisco
598       organic       2016        SanFrancisco
599       organic       2016        SanFrancisco
600       organic       2016        SanFrancisco
601       organic       2016        SanFrancisco
602       organic       2016        SanFrancisco
603       organic       2016        SanFrancisco
604       organic       2016        SanFrancisco
605       organic       2016        SanFrancisco
606       organic       2016        SanFrancisco
607       organic       2016        SanFrancisco
608       organic       2016        SanFrancisco
609       organic       2016        SanFrancisco
610       organic       2016        SanFrancisco
611       organic       2016        SanFrancisco
612       organic       2016        SanFrancisco
613       organic       2016        SanFrancisco
614       organic       2016        SanFrancisco
615       organic       2016        SanFrancisco
616       organic       2016        SanFrancisco
617       organic       2016        SanFrancisco
618       organic       2016        SanFrancisco
619       organic       2016        SanFrancisco
620       organic       2016        SanFrancisco
621       organic       2016        SanFrancisco
622       organic       2016        SanFrancisco
623       organic       2016        SanFrancisco
624       organic       2016             Seattle
625       organic       2016             Seattle
626       organic       2016             Seattle
627       organic       2016             Seattle
628       organic       2016             Seattle
629       organic       2016             Seattle
630       organic       2016             Seattle
631       organic       2016           Southeast
632       organic       2016             Spokane
633       organic       2016             Spokane
634       organic       2016             Spokane
635       organic       2016             Spokane
636       organic       2016             Spokane
637       organic       2016             Spokane
638       organic       2016             Spokane
639       organic       2016             Spokane
640       organic       2016             Spokane
641       organic       2016             Spokane
642       organic       2016             Spokane
643       organic       2016             StLouis
644       organic       2016             StLouis
645       organic       2016            Syracuse
646       organic       2016            Syracuse
647       organic       2016               Tampa
648       organic       2016                West
649       organic       2016    WestTexNewMexico
650       organic       2016    WestTexNewMexico
651       organic       2016    WestTexNewMexico
652       organic       2016    WestTexNewMexico
653       organic       2016    WestTexNewMexico
654       organic       2016    WestTexNewMexico
655       organic       2016    WestTexNewMexico
656       organic       2017              Albany
657       organic       2017              Albany
658       organic       2017              Albany
659       organic       2017              Albany
660       organic       2017              Albany
661       organic       2017             Atlanta
662       organic       2017             Atlanta
663       organic       2017             Atlanta
664       organic       2017             Atlanta
665       organic       2017             Atlanta
666       organic       2017             Atlanta
667       organic       2017             Atlanta
668       organic       2017             Atlanta
669       organic       2017             Atlanta
670       organic       2017             Atlanta
671       organic       2017             Atlanta
672       organic       2017             Atlanta
673       organic       2017 BaltimoreWashington
674       organic       2017 BaltimoreWashington
675       organic       2017 BaltimoreWashington
676       organic       2017 BaltimoreWashington
677       organic       2017 BaltimoreWashington
678       organic       2017 BaltimoreWashington
679       organic       2017 BaltimoreWashington
680       organic       2017 BaltimoreWashington
681       organic       2017 BaltimoreWashington
682       organic       2017 BaltimoreWashington
683       organic       2017 BaltimoreWashington
684       organic       2017 BaltimoreWashington
685       organic       2017 BaltimoreWashington
686       organic       2017 BaltimoreWashington
687       organic       2017               Boise
688       organic       2017               Boise
689       organic       2017               Boise
690       organic       2017               Boise
691       organic       2017               Boise
692       organic       2017               Boise
693       organic       2017               Boise
694       organic       2017               Boise
695       organic       2017               Boise
696       organic       2017               Boise
697       organic       2017               Boise
698       organic       2017               Boise
699       organic       2017               Boise
700       organic       2017               Boise
701       organic       2017               Boise
702       organic       2017               Boise
703       organic       2017               Boise
704       organic       2017               Boise
705       organic       2017              Boston
706       organic       2017              Boston
707       organic       2017              Boston
708       organic       2017              Boston
709       organic       2017              Boston
710       organic       2017              Boston
711       organic       2017              Boston
712       organic       2017              Boston
713       organic       2017              Boston
714       organic       2017              Boston
715       organic       2017              Boston
716       organic       2017              Boston
717       organic       2017              Boston
718       organic       2017              Boston
719       organic       2017    BuffaloRochester
720       organic       2017    BuffaloRochester
721       organic       2017    BuffaloRochester
722       organic       2017    BuffaloRochester
723       organic       2017    BuffaloRochester
724       organic       2017    BuffaloRochester
725       organic       2017    BuffaloRochester
726       organic       2017    BuffaloRochester
727       organic       2017    BuffaloRochester
728       organic       2017    BuffaloRochester
729       organic       2017    BuffaloRochester
730       organic       2017    BuffaloRochester
731       organic       2017    BuffaloRochester
732       organic       2017    BuffaloRochester
733       organic       2017    BuffaloRochester
734       organic       2017    BuffaloRochester
735       organic       2017    BuffaloRochester
736       organic       2017    BuffaloRochester
737       organic       2017          California
738       organic       2017          California
739       organic       2017          California
740       organic       2017          California
741       organic       2017          California
742       organic       2017          California
743       organic       2017          California
744       organic       2017          California
745       organic       2017          California
746       organic       2017          California
747       organic       2017          California
748       organic       2017          California
749       organic       2017          California
750       organic       2017          California
751       organic       2017          California
752       organic       2017           Charlotte
753       organic       2017           Charlotte
754       organic       2017           Charlotte
755       organic       2017           Charlotte
756       organic       2017           Charlotte
757       organic       2017           Charlotte
758       organic       2017           Charlotte
759       organic       2017           Charlotte
760       organic       2017           Charlotte
761       organic       2017           Charlotte
762       organic       2017           Charlotte
763       organic       2017           Charlotte
764       organic       2017           Charlotte
765       organic       2017           Charlotte
766       organic       2017           Charlotte
767       organic       2017           Charlotte
768       organic       2017           Charlotte
769       organic       2017           Charlotte
770       organic       2017           Charlotte
771       organic       2017           Charlotte
772       organic       2017           Charlotte
773       organic       2017           Charlotte
774       organic       2017           Charlotte
775       organic       2017           Charlotte
776       organic       2017           Charlotte
777       organic       2017           Charlotte
778       organic       2017           Charlotte
779       organic       2017           Charlotte
780       organic       2017           Charlotte
781       organic       2017           Charlotte
782       organic       2017           Charlotte
783       organic       2017           Charlotte
784       organic       2017             Chicago
785       organic       2017             Chicago
786       organic       2017             Chicago
787       organic       2017             Chicago
788       organic       2017             Chicago
789       organic       2017             Chicago
790       organic       2017    CincinnatiDayton
791       organic       2017    CincinnatiDayton
792       organic       2017    CincinnatiDayton
793       organic       2017    CincinnatiDayton
794       organic       2017    CincinnatiDayton
795       organic       2017    CincinnatiDayton
796       organic       2017            Columbus
797       organic       2017            Columbus
798       organic       2017            Columbus
799       organic       2017            Columbus
800       organic       2017              Denver
801       organic       2017              Denver
802       organic       2017              Denver
803       organic       2017              Denver
804       organic       2017              Denver
805       organic       2017              Denver
806       organic       2017              Denver
807       organic       2017              Denver
808       organic       2017              Denver
809       organic       2017              Denver
810       organic       2017             Detroit
811       organic       2017         GrandRapids
812       organic       2017         GrandRapids
813       organic       2017         GrandRapids
814       organic       2017         GrandRapids
815       organic       2017         GrandRapids
816       organic       2017         GrandRapids
817       organic       2017         GrandRapids
818       organic       2017         GrandRapids
819       organic       2017         GrandRapids
820       organic       2017         GrandRapids
821       organic       2017         GrandRapids
822       organic       2017         GrandRapids
823       organic       2017         GrandRapids
824       organic       2017         GrandRapids
825       organic       2017         GrandRapids
826       organic       2017  HarrisburgScranton
827       organic       2017  HarrisburgScranton
828       organic       2017  HarrisburgScranton
829       organic       2017  HarrisburgScranton
830       organic       2017  HarrisburgScranton
831       organic       2017  HarrisburgScranton
832       organic       2017  HarrisburgScranton
833       organic       2017  HarrisburgScranton
834       organic       2017  HarrisburgScranton
835       organic       2017  HarrisburgScranton
836       organic       2017  HarrisburgScranton
837       organic       2017  HarrisburgScranton
838       organic       2017  HarrisburgScranton
839       organic       2017  HarrisburgScranton
840       organic       2017 HartfordSpringfield
841       organic       2017 HartfordSpringfield
842       organic       2017 HartfordSpringfield
843       organic       2017 HartfordSpringfield
844       organic       2017 HartfordSpringfield
845       organic       2017 HartfordSpringfield
846       organic       2017 HartfordSpringfield
847       organic       2017 HartfordSpringfield
848       organic       2017 HartfordSpringfield
849       organic       2017 HartfordSpringfield
850       organic       2017 HartfordSpringfield
851       organic       2017 HartfordSpringfield
852       organic       2017 HartfordSpringfield
853       organic       2017 HartfordSpringfield
854       organic       2017 HartfordSpringfield
855       organic       2017 HartfordSpringfield
856       organic       2017 HartfordSpringfield
857       organic       2017 HartfordSpringfield
858       organic       2017 HartfordSpringfield
859       organic       2017 HartfordSpringfield
860       organic       2017 HartfordSpringfield
861       organic       2017 HartfordSpringfield
862       organic       2017 HartfordSpringfield
863       organic       2017 HartfordSpringfield
864       organic       2017 HartfordSpringfield
865       organic       2017 HartfordSpringfield
866       organic       2017 HartfordSpringfield
867       organic       2017 HartfordSpringfield
868       organic       2017 HartfordSpringfield
869       organic       2017 HartfordSpringfield
870       organic       2017 HartfordSpringfield
871       organic       2017 HartfordSpringfield
872       organic       2017 HartfordSpringfield
873       organic       2017 HartfordSpringfield
874       organic       2017 HartfordSpringfield
875       organic       2017 HartfordSpringfield
876       organic       2017        Jacksonville
877       organic       2017        Jacksonville
878       organic       2017        Jacksonville
879       organic       2017        Jacksonville
880       organic       2017        Jacksonville
881       organic       2017        Jacksonville
882       organic       2017        Jacksonville
883       organic       2017        Jacksonville
884       organic       2017        Jacksonville
885       organic       2017        Jacksonville
886       organic       2017        Jacksonville
887       organic       2017        Jacksonville
888       organic       2017        Jacksonville
889       organic       2017        Jacksonville
890       organic       2017        Jacksonville
891       organic       2017        Jacksonville
892       organic       2017        Jacksonville
893       organic       2017        Jacksonville
894       organic       2017        Jacksonville
895       organic       2017        Jacksonville
896       organic       2017        Jacksonville
897       organic       2017        Jacksonville
898       organic       2017        Jacksonville
899       organic       2017        Jacksonville
900       organic       2017        Jacksonville
901       organic       2017        Jacksonville
902       organic       2017        Jacksonville
903       organic       2017            LasVegas
904       organic       2017            LasVegas
905       organic       2017            LasVegas
906       organic       2017            LasVegas
907       organic       2017            LasVegas
908       organic       2017            LasVegas
909       organic       2017            LasVegas
910       organic       2017            LasVegas
911       organic       2017            LasVegas
912       organic       2017            LasVegas
913       organic       2017          LosAngeles
914       organic       2017          LosAngeles
915       organic       2017          LosAngeles
916       organic       2017          LosAngeles
917       organic       2017          LosAngeles
918       organic       2017          LosAngeles
919       organic       2017          LosAngeles
920       organic       2017          LosAngeles
921       organic       2017          LosAngeles
922       organic       2017          LosAngeles
923       organic       2017          LosAngeles
924       organic       2017          LosAngeles
925       organic       2017          LosAngeles
926       organic       2017          LosAngeles
927       organic       2017          LosAngeles
928       organic       2017          Louisville
929       organic       2017          Louisville
930       organic       2017          Louisville
931       organic       2017          Louisville
932       organic       2017   MiamiFtLauderdale
933       organic       2017   MiamiFtLauderdale
934       organic       2017   MiamiFtLauderdale
935       organic       2017   MiamiFtLauderdale
936       organic       2017   MiamiFtLauderdale
937       organic       2017   MiamiFtLauderdale
938       organic       2017   MiamiFtLauderdale
939       organic       2017   MiamiFtLauderdale
940       organic       2017   MiamiFtLauderdale
941       organic       2017   MiamiFtLauderdale
942       organic       2017   MiamiFtLauderdale
943       organic       2017   MiamiFtLauderdale
944       organic       2017   MiamiFtLauderdale
945       organic       2017   MiamiFtLauderdale
946       organic       2017            Midsouth
947       organic       2017            Midsouth
948       organic       2017            Midsouth
949       organic       2017            Midsouth
950       organic       2017            Midsouth
951       organic       2017           Nashville
952       organic       2017           Nashville
953       organic       2017           Nashville
954       organic       2017           Nashville
955       organic       2017           Nashville
956       organic       2017           Nashville
957       organic       2017    NewOrleansMobile
958       organic       2017    NewOrleansMobile
959       organic       2017    NewOrleansMobile
960       organic       2017    NewOrleansMobile
961       organic       2017             NewYork
962       organic       2017             NewYork
963       organic       2017             NewYork
964       organic       2017             NewYork
965       organic       2017             NewYork
966       organic       2017             NewYork
967       organic       2017             NewYork
968       organic       2017             NewYork
969       organic       2017             NewYork
970       organic       2017             NewYork
971       organic       2017             NewYork
972       organic       2017             NewYork
973       organic       2017             NewYork
974       organic       2017             NewYork
975       organic       2017             NewYork
976       organic       2017             NewYork
977       organic       2017             NewYork
978       organic       2017             NewYork
979       organic       2017             NewYork
980       organic       2017             NewYork
981       organic       2017             NewYork
982       organic       2017             NewYork
983       organic       2017             NewYork
984       organic       2017             NewYork
985       organic       2017             NewYork
986       organic       2017             NewYork
987       organic       2017             NewYork
988       organic       2017             NewYork
989       organic       2017             NewYork
990       organic       2017             NewYork
991       organic       2017             NewYork
992       organic       2017             NewYork
993       organic       2017             NewYork
994       organic       2017             NewYork
995       organic       2017           Northeast
996       organic       2017           Northeast
997       organic       2017           Northeast
998       organic       2017           Northeast
999       organic       2017           Northeast
1000      organic       2017           Northeast
1001      organic       2017           Northeast
1002      organic       2017           Northeast
1003      organic       2017           Northeast
1004      organic       2017           Northeast
1005      organic       2017           Northeast
1006      organic       2017           Northeast
1007      organic       2017             Orlando
1008      organic       2017             Orlando
1009      organic       2017             Orlando
1010      organic       2017             Orlando
1011      organic       2017             Orlando
1012      organic       2017             Orlando
1013      organic       2017             Orlando
1014      organic       2017             Orlando
1015      organic       2017             Orlando
1016      organic       2017             Orlando
1017      organic       2017             Orlando
1018      organic       2017             Orlando
1019      organic       2017             Orlando
1020      organic       2017             Orlando
1021      organic       2017             Orlando
1022      organic       2017             Orlando
1023      organic       2017             Orlando
1024      organic       2017             Orlando
1025      organic       2017             Orlando
1026      organic       2017             Orlando
1027      organic       2017             Orlando
1028      organic       2017             Orlando
1029      organic       2017             Orlando
1030      organic       2017             Orlando
1031      organic       2017             Orlando
1032      organic       2017        Philadelphia
1033      organic       2017        Philadelphia
1034      organic       2017        Philadelphia
1035      organic       2017        Philadelphia
1036      organic       2017        Philadelphia
1037      organic       2017        Philadelphia
1038      organic       2017        Philadelphia
1039      organic       2017        Philadelphia
1040      organic       2017        Philadelphia
1041      organic       2017        Philadelphia
1042      organic       2017        Philadelphia
1043      organic       2017        Philadelphia
1044      organic       2017        Philadelphia
1045      organic       2017        Philadelphia
1046      organic       2017       PhoenixTucson
1047      organic       2017       PhoenixTucson
1048      organic       2017       PhoenixTucson
1049      organic       2017       PhoenixTucson
1050      organic       2017       PhoenixTucson
1051      organic       2017       PhoenixTucson
1052      organic       2017              Plains
1053      organic       2017              Plains
1054      organic       2017              Plains
1055      organic       2017              Plains
1056      organic       2017              Plains
1057      organic       2017              Plains
1058      organic       2017              Plains
1059      organic       2017              Plains
1060      organic       2017            Portland
1061      organic       2017            Portland
1062      organic       2017            Portland
1063      organic       2017            Portland
1064      organic       2017            Portland
1065      organic       2017            Portland
1066      organic       2017            Portland
1067      organic       2017            Portland
1068      organic       2017            Portland
1069      organic       2017            Portland
1070      organic       2017            Portland
1071      organic       2017            Portland
1072      organic       2017            Portland
1073      organic       2017            Portland
1074      organic       2017            Portland
1075      organic       2017            Portland
1076      organic       2017            Portland
1077      organic       2017            Portland
1078      organic       2017   RaleighGreensboro
1079      organic       2017   RaleighGreensboro
1080      organic       2017   RaleighGreensboro
1081      organic       2017   RaleighGreensboro
1082      organic       2017   RaleighGreensboro
1083      organic       2017   RaleighGreensboro
1084      organic       2017   RaleighGreensboro
1085      organic       2017   RaleighGreensboro
1086      organic       2017   RaleighGreensboro
1087      organic       2017   RaleighGreensboro
1088      organic       2017   RaleighGreensboro
1089      organic       2017   RaleighGreensboro
1090      organic       2017   RaleighGreensboro
1091      organic       2017   RaleighGreensboro
1092      organic       2017   RaleighGreensboro
1093      organic       2017   RaleighGreensboro
1094      organic       2017   RaleighGreensboro
1095      organic       2017   RaleighGreensboro
1096      organic       2017   RaleighGreensboro
1097      organic       2017   RaleighGreensboro
1098      organic       2017   RaleighGreensboro
1099      organic       2017   RaleighGreensboro
1100      organic       2017   RaleighGreensboro
1101      organic       2017   RaleighGreensboro
1102      organic       2017   RaleighGreensboro
1103      organic       2017   RaleighGreensboro
1104      organic       2017   RaleighGreensboro
1105      organic       2017   RaleighGreensboro
1106      organic       2017   RaleighGreensboro
1107      organic       2017   RaleighGreensboro
1108      organic       2017   RaleighGreensboro
1109      organic       2017   RaleighGreensboro
1110      organic       2017   RaleighGreensboro
1111      organic       2017   RaleighGreensboro
1112      organic       2017     RichmondNorfolk
1113      organic       2017             Roanoke
1114      organic       2017             Roanoke
1115      organic       2017             Roanoke
1116      organic       2017             Roanoke
1117      organic       2017             Roanoke
1118      organic       2017          Sacramento
1119      organic       2017          Sacramento
1120      organic       2017          Sacramento
1121      organic       2017          Sacramento
1122      organic       2017          Sacramento
1123      organic       2017          Sacramento
1124      organic       2017          Sacramento
1125      organic       2017          Sacramento
1126      organic       2017          Sacramento
1127      organic       2017          Sacramento
1128      organic       2017          Sacramento
1129      organic       2017          Sacramento
1130      organic       2017          Sacramento
1131      organic       2017          Sacramento
1132      organic       2017          Sacramento
1133      organic       2017          Sacramento
1134      organic       2017          Sacramento
1135      organic       2017          Sacramento
1136      organic       2017          Sacramento
1137      organic       2017          Sacramento
1138      organic       2017          Sacramento
1139      organic       2017          Sacramento
1140      organic       2017          Sacramento
1141      organic       2017          Sacramento
1142      organic       2017          Sacramento
1143      organic       2017          Sacramento
1144      organic       2017          Sacramento
1145      organic       2017          Sacramento
1146      organic       2017          Sacramento
1147      organic       2017          Sacramento
1148      organic       2017          Sacramento
1149      organic       2017            SanDiego
1150      organic       2017            SanDiego
1151      organic       2017            SanDiego
1152      organic       2017            SanDiego
1153      organic       2017            SanDiego
1154      organic       2017            SanDiego
1155      organic       2017            SanDiego
1156      organic       2017            SanDiego
1157      organic       2017            SanDiego
1158      organic       2017            SanDiego
1159      organic       2017            SanDiego
1160      organic       2017            SanDiego
1161      organic       2017            SanDiego
1162      organic       2017            SanDiego
1163      organic       2017            SanDiego
1164      organic       2017            SanDiego
1165      organic       2017            SanDiego
1166      organic       2017            SanDiego
1167      organic       2017            SanDiego
1168      organic       2017            SanDiego
1169      organic       2017            SanDiego
1170      organic       2017            SanDiego
1171      organic       2017            SanDiego
1172      organic       2017            SanDiego
1173      organic       2017            SanDiego
1174      organic       2017        SanFrancisco
1175      organic       2017        SanFrancisco
1176      organic       2017        SanFrancisco
1177      organic       2017        SanFrancisco
1178      organic       2017        SanFrancisco
1179      organic       2017        SanFrancisco
1180      organic       2017        SanFrancisco
1181      organic       2017        SanFrancisco
1182      organic       2017        SanFrancisco
1183      organic       2017        SanFrancisco
1184      organic       2017        SanFrancisco
1185      organic       2017        SanFrancisco
1186      organic       2017        SanFrancisco
1187      organic       2017        SanFrancisco
1188      organic       2017        SanFrancisco
1189      organic       2017        SanFrancisco
1190      organic       2017        SanFrancisco
1191      organic       2017        SanFrancisco
1192      organic       2017        SanFrancisco
1193      organic       2017        SanFrancisco
1194      organic       2017        SanFrancisco
1195      organic       2017        SanFrancisco
1196      organic       2017        SanFrancisco
1197      organic       2017        SanFrancisco
1198      organic       2017        SanFrancisco
1199      organic       2017        SanFrancisco
1200      organic       2017        SanFrancisco
1201      organic       2017        SanFrancisco
1202      organic       2017        SanFrancisco
1203      organic       2017        SanFrancisco
1204      organic       2017        SanFrancisco
1205      organic       2017        SanFrancisco
1206      organic       2017        SanFrancisco
1207      organic       2017        SanFrancisco
1208      organic       2017        SanFrancisco
1209      organic       2017        SanFrancisco
1210      organic       2017        SanFrancisco
1211      organic       2017        SanFrancisco
1212      organic       2017        SanFrancisco
1213      organic       2017        SanFrancisco
1214      organic       2017        SanFrancisco
1215      organic       2017        SanFrancisco
1216      organic       2017        SanFrancisco
1217      organic       2017        SanFrancisco
1218      organic       2017        SanFrancisco
1219      organic       2017        SanFrancisco
1220      organic       2017        SanFrancisco
1221      organic       2017        SanFrancisco
1222      organic       2017        SanFrancisco
1223      organic       2017        SanFrancisco
1224      organic       2017        SanFrancisco
1225      organic       2017             Seattle
1226      organic       2017             Seattle
1227      organic       2017             Seattle
1228      organic       2017             Seattle
1229      organic       2017             Seattle
1230      organic       2017             Seattle
1231      organic       2017             Seattle
1232      organic       2017             Seattle
1233      organic       2017             Seattle
1234      organic       2017             Seattle
1235      organic       2017             Seattle
1236      organic       2017             Seattle
1237      organic       2017             Seattle
1238      organic       2017             Seattle
1239      organic       2017             Seattle
1240      organic       2017             Seattle
1241      organic       2017             Seattle
1242      organic       2017             Seattle
1243      organic       2017             Seattle
1244      organic       2017             Seattle
1245      organic       2017             Seattle
1246      organic       2017             Seattle
1247      organic       2017             Seattle
1248      organic       2017       SouthCarolina
1249      organic       2017       SouthCarolina
1250      organic       2017       SouthCarolina
1251      organic       2017       SouthCarolina
1252      organic       2017       SouthCarolina
1253      organic       2017       SouthCarolina
1254      organic       2017       SouthCarolina
1255      organic       2017           Southeast
1256      organic       2017           Southeast
1257      organic       2017           Southeast
1258      organic       2017           Southeast
1259      organic       2017           Southeast
1260      organic       2017           Southeast
1261      organic       2017           Southeast
1262      organic       2017             Spokane
1263      organic       2017             Spokane
1264      organic       2017             Spokane
1265      organic       2017             Spokane
1266      organic       2017             Spokane
1267      organic       2017             Spokane
1268      organic       2017             Spokane
1269      organic       2017             Spokane
1270      organic       2017             Spokane
1271      organic       2017             Spokane
1272      organic       2017             Spokane
1273      organic       2017             Spokane
1274      organic       2017             Spokane
1275      organic       2017             Spokane
1276      organic       2017             Spokane
1277      organic       2017             Spokane
1278      organic       2017             Spokane
1279      organic       2017             Spokane
1280      organic       2017             Spokane
1281      organic       2017             Spokane
1282      organic       2017             Spokane
1283      organic       2017             Spokane
1284      organic       2017             Spokane
1285      organic       2017             Spokane
1286      organic       2017             Spokane
1287      organic       2017             Spokane
1288      organic       2017             StLouis
1289      organic       2017             StLouis
1290      organic       2017             StLouis
1291      organic       2017             StLouis
1292      organic       2017             StLouis
1293      organic       2017             StLouis
1294      organic       2017             StLouis
1295      organic       2017             StLouis
1296      organic       2017             StLouis
1297      organic       2017             StLouis
1298      organic       2017             StLouis
1299      organic       2017             StLouis
1300      organic       2017             StLouis
1301      organic       2017             StLouis
1302      organic       2017             StLouis
1303      organic       2017             StLouis
1304      organic       2017             StLouis
1305      organic       2017             StLouis
1306      organic       2017            Syracuse
1307      organic       2017            Syracuse
1308      organic       2017            Syracuse
1309      organic       2017            Syracuse
1310      organic       2017            Syracuse
1311      organic       2017            Syracuse
1312      organic       2017            Syracuse
1313      organic       2017            Syracuse
1314      organic       2017            Syracuse
1315      organic       2017            Syracuse
1316      organic       2017            Syracuse
1317      organic       2017            Syracuse
1318      organic       2017            Syracuse
1319      organic       2017            Syracuse
1320      organic       2017            Syracuse
1321      organic       2017               Tampa
1322      organic       2017               Tampa
1323      organic       2017               Tampa
1324      organic       2017               Tampa
1325      organic       2017               Tampa
1326      organic       2017               Tampa
1327      organic       2017               Tampa
1328      organic       2017               Tampa
1329      organic       2017               Tampa
1330      organic       2017               Tampa
1331      organic       2017               Tampa
1332      organic       2017               Tampa
1333      organic       2017             TotalUS
1334      organic       2017             TotalUS
1335      organic       2017             TotalUS
1336      organic       2017                West
1337      organic       2017                West
1338      organic       2017                West
1339      organic       2017                West
1340      organic       2017                West
1341      organic       2017                West
1342      organic       2017                West
1343      organic       2017                West
1344      organic       2017                West
1345      organic       2017                West
1346      organic       2017                West
1347      organic       2017                West
1348      organic       2017                West
1349      organic       2017                West
1350      organic       2017                West
1351      organic       2017                West
1352      organic       2017    WestTexNewMexico
1353      organic       2017    WestTexNewMexico
1354      organic       2017    WestTexNewMexico
1355      organic       2017    WestTexNewMexico
1356      organic       2017    WestTexNewMexico
1357      organic       2017    WestTexNewMexico
1358      organic       2017    WestTexNewMexico
1359      organic       2017    WestTexNewMexico
1360      organic       2017    WestTexNewMexico
1361      organic       2017    WestTexNewMexico
1362      organic       2018 HartfordSpringfield
1363      organic       2018 HartfordSpringfield
1364      organic       2018 HartfordSpringfield
1365      organic       2018 HartfordSpringfield
1366      organic       2018 HartfordSpringfield
1367      organic       2018 HartfordSpringfield
1368      organic       2018 HartfordSpringfield
1369      organic       2018        Jacksonville
1370      organic       2018   RaleighGreensboro
1371      organic       2018   RaleighGreensboro
1372      organic       2018   RaleighGreensboro
1373      organic       2018   RaleighGreensboro
1374      organic       2018          Sacramento
1375      organic       2018            SanDiego
1376      organic       2018            SanDiego
1377      organic       2018        SanFrancisco
1378      organic       2018        SanFrancisco
1379      organic       2018        SanFrancisco
1380      organic       2018        SanFrancisco
1381      organic       2018        SanFrancisco
1382      organic       2018        SanFrancisco
1383      organic       2018        SanFrancisco
1384      organic       2018             Seattle
1385      organic       2018             Seattle